Blame SPECS/alsa-tools.spec

Packit 09a612
# If you want to skip building the firmware subpackage, define the macro
Packit 09a612
# _without_firmware to 1. This is not the actual firmware itself 
Packit 09a612
# (see alsa-firmware), it is some complementary tools.
Packit 09a612
# Do *NOT* set it to zero or have a commented out define here, or it will not
Packit 09a612
# work. (RPM spec file voodoo)
Packit 09a612
%if 0%{?rhel}
Packit 09a612
%global _without_tools 1
Packit 09a612
%endif
Packit 09a612
Packit 09a612
%ifarch ppc ppc64
Packit 09a612
# sb16_csp doesn't build on PPC; see bug #219010
Packit 09a612
%{?!_without_tools:     %global builddirstools as10k1 echomixer envy24control hdspconf hdspmixer hwmixvolume rmedigicontrol sbiload sscape_ctl us428control hda-verb hdajackretask hdajacksensetest }
Packit 09a612
%else
Packit 09a612
%{?!_without_tools:     %global builddirstools as10k1 echomixer envy24control hdspconf hdspmixer hwmixvolume rmedigicontrol sbiload sb16_csp sscape_ctl us428control hda-verb hdajackretask hdajacksensetest }
Packit 09a612
%endif
Packit 09a612
Packit 09a612
%{?!_without_firmware:  %global builddirsfirmw hdsploader mixartloader usx2yloader vxloader }
Packit 09a612
Packit 09a612
%{?!_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
Packit 09a612
Packit 09a612
# Note that the Version is intended to coincide with the version of ALSA
Packit 09a612
# included with the Fedora kernel, rather than necessarily the very latest
Packit 09a612
# upstream version of alsa-tools
Packit 09a612
Packit 09a612
Summary:        Specialist tools for ALSA
Packit 09a612
Name:           alsa-tools
Packit 09a612
Version:        1.1.6
Packit 09a612
Release:        1%{?dist}
Packit 09a612
Packit 09a612
# Checked at least one source file from all the sub-projects contained in
Packit 09a612
# the source tarball and they are consistent GPLv2+ - TJ 2007-11-15
Packit 09a612
License:        GPLv2+
Packit 09a612
Group:          Applications/Multimedia
Packit 09a612
URL:            http://www.alsa-project.org/
Packit 09a612
Source:         ftp://ftp.alsa-project.org/pub/tools/%{name}-%{version}.tar.bz2
Packit 09a612
Packit 09a612
Source1:        90-alsa-tools-firmware.rules
Packit 09a612
Packit 09a612
BuildRequires:  alsa-lib-devel >= %{version}
Packit 09a612
%if 0%{!?_without_tools:1}
Packit 09a612
BuildRequires:  gtk+-devel
Packit 09a612
BuildRequires:  gtk2-devel
Packit 09a612
BuildRequires:  gtk3-devel
Packit 09a612
BuildRequires:  fltk-devel
Packit 09a612
Buildrequires:  desktop-file-utils
Packit 09a612
Requires:       xorg-x11-fonts-misc
Packit 09a612
# Needed for hwmixvolume
Packit 09a612
Requires:       python-alsa
Packit 09a612
%endif
Packit 09a612
Packit 09a612
%description
Packit 09a612
This package contains several specialist tools for use with ALSA, including
Packit 09a612
a number of programs that provide access to special hardware facilities on
Packit 09a612
certain sound cards.
Packit 09a612
Packit 09a612
* as10k1 - AS10k1 Assembler
Packit 09a612
%ifnarch ppc ppc64
Packit 09a612
* cspctl - Sound Blaster 16 ASP/CSP control program
Packit 09a612
%endif
Packit 09a612
* echomixer - Mixer for Echo Audio (indigo) devices
Packit 09a612
* envy24control - Control tool for Envy24 (ice1712) based soundcards
Packit 09a612
* hdspmixer - Mixer for the RME Hammerfall DSP cards
Packit 09a612
* hwmixvolume - Control the volume of individual streams on sound cards that
Packit 09a612
  use hardware mixing
Packit 09a612
* rmedigicontrol - Control panel for RME Hammerfall cards
Packit 09a612
* sbiload - An OPL2/3 FM instrument loader for ALSA sequencer
Packit 09a612
* sscape_ctl - ALSA SoundScape control utility
Packit 09a612
* us428control - Control tool for Tascam 428
Packit 09a612
* hda-verb - Direct HDA codec access
Packit 09a612
* hdajackretask - Reassign the I/O jacks on the HDA hardware
Packit 09a612
* hdajacksensetest - The sense test for the I/O jacks on the HDA hardware
Packit 09a612
Packit 09a612
Packit 09a612
%package firmware
Packit 09a612
Summary:        ALSA tools for uploading firmware to some soundcards
Packit 09a612
Group:          Applications/System
Packit 09a612
Requires:       udev
Packit 09a612
Requires:       alsa-firmware
Packit 09a612
Requires:       fxload
Packit 09a612
Packit 09a612
Packit 09a612
%description firmware
Packit 09a612
This package contains tools for flashing firmware into certain sound cards.
Packit 09a612
The following tools are available:
Packit 09a612
Packit 09a612
* hdsploader   - for RME Hammerfall DSP cards
Packit 09a612
* mixartloader - for Digigram miXart soundcards
Packit 09a612
* vxloader     - for Digigram VX soundcards
Packit 09a612
* usx2yloader  - second phase firmware loader for Tascam USX2Y USB soundcards
Packit 09a612
Packit 09a612
Packit 09a612
%prep
Packit 09a612
%setup -q -n %{name}-%{version}
Packit 09a612
Packit 09a612
%build
Packit 09a612
mv seq/sbiload . ; rm -rf seq
Packit 09a612
for i in %{?builddirstools:%builddirstools} %{?builddirsfirmw:%builddirsfirmw}
Packit 09a612
do
Packit 09a612
  cd $i ; %configure
Packit 09a612
  make %{?_smp_mflags} || exit 1
Packit 09a612
  cd ..
Packit 09a612
done
Packit 09a612
Packit 09a612
%install
Packit 09a612
mkdir -p %{buildroot}%{_datadir}/{pixmaps,applications}
Packit 09a612
Packit 09a612
for i in %{?builddirstools:%builddirstools} %{?builddirsfirmw:%builddirsfirmw}
Packit 09a612
do
Packit 09a612
  case $i in
Packit 09a612
    usx2yloader)
Packit 09a612
      (cd $i ; %make_install hotplugdir=/lib/udev) || exit 1
Packit 09a612
      ;;
Packit 09a612
    *)
Packit 09a612
      (cd $i ; %make_install) || exit 1
Packit 09a612
      ;;
Packit 09a612
   esac
Packit 09a612
   if [[ -s "${i}"/README ]]
Packit 09a612
   then
Packit 09a612
      if [[ ! -d "%{buildroot}%{_pkgdocdir}/${i}" ]]
Packit 09a612
      then
Packit 09a612
         mkdir -p "%{buildroot}%{_pkgdocdir}/${i}"
Packit 09a612
      fi
Packit 09a612
      cp "${i}"/README "%{buildroot}%{_pkgdocdir}/${i}"
Packit 09a612
   fi
Packit 09a612
   if [[ -s "${i}"/COPYING ]]
Packit 09a612
   then
Packit 09a612
      if [[ ! -d "%{buildroot}%{_pkgdocdir}/${i}" ]]
Packit 09a612
      then
Packit 09a612
         mkdir -p "%{buildroot}%{_pkgdocdir}/${i}"
Packit 09a612
      fi
Packit 09a612
      cp "${i}"/COPYING "%{buildroot}%{_pkgdocdir}/${i}"
Packit 09a612
   fi
Packit 09a612
   if [[ -s %{buildroot}%{_datadir}/applications/${i}.desktop ]] ; then
Packit 09a612
      desktop-file-validate %{buildroot}%{_datadir}/applications/${i}.desktop
Packit 09a612
      desktop-file-install --dir %{buildroot}%{_datadir}/applications \
Packit 09a612
        %{buildroot}%{_datadir}/applications/${i}.desktop
Packit 09a612
   fi
Packit 09a612
done
Packit 09a612
Packit 09a612
# convert hotplug stuff to udev
Packit 09a612
rm -f %{buildroot}/lib/udev/tascam_fw.usermap
Packit 09a612
mkdir -p %{buildroot}/lib/udev/rules.d
Packit 09a612
install -m 644 %{SOURCE1} %{buildroot}/lib/udev/rules.d
Packit 09a612
Packit 09a612
%post
Packit 09a612
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
Packit 09a612
Packit 09a612
%postun
Packit 09a612
if [ $1 -eq 0 ] ; then
Packit 09a612
    touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
Packit 09a612
    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
Packit 09a612
fi
Packit 09a612
Packit 09a612
%posttrans
Packit 09a612
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
Packit 09a612
Packit 09a612
%if 0%{!?_without_tools:1}
Packit 09a612
%files
Packit 09a612
%dir %{_pkgdocdir}
Packit 09a612
%doc %{_pkgdocdir}/as10k1
Packit 09a612
%doc %{_pkgdocdir}/echomixer
Packit 09a612
%doc %{_pkgdocdir}/envy24control
Packit 09a612
%doc %{_pkgdocdir}/hdspconf
Packit 09a612
%doc %{_pkgdocdir}/hdspmixer
Packit 09a612
%doc %{_pkgdocdir}/hwmixvolume
Packit 09a612
%doc %{_pkgdocdir}/rmedigicontrol
Packit 09a612
%doc %{_pkgdocdir}/sbiload
Packit 09a612
%doc %{_pkgdocdir}/hda-verb
Packit 09a612
%doc %{_pkgdocdir}/hdajackretask
Packit 09a612
%{_bindir}/as10k1
Packit 09a612
%{_bindir}/echomixer
Packit 09a612
%{_bindir}/envy24control
Packit 09a612
%{_bindir}/hdspconf
Packit 09a612
%{_bindir}/hdspmixer
Packit 09a612
%{_bindir}/hwmixvolume
Packit 09a612
%{_bindir}/rmedigicontrol
Packit 09a612
%{_bindir}/sbiload
Packit 09a612
%{_bindir}/sscape_ctl
Packit 09a612
%{_bindir}/us428control
Packit 09a612
%{_bindir}/hda-verb
Packit 09a612
%{_bindir}/hdajackretask
Packit 09a612
%{_bindir}/hdajacksensetest
Packit 09a612
%{_datadir}/sounds/*
Packit 09a612
%{_datadir}/man/man1/envy24control.1.gz
Packit 09a612
%{_datadir}/applications/*.desktop
Packit 09a612
%{_datadir}/icons/hicolor/*/apps*
Packit 09a612
Packit 09a612
# sb16_csp stuff which is excluded for PPCx
Packit 09a612
%ifnarch ppc ppc64
Packit 09a612
%doc %{_pkgdocdir}/sb16_csp
Packit 09a612
%{_bindir}/cspctl
Packit 09a612
%{_datadir}/man/man1/cspctl.1.gz
Packit 09a612
%endif
Packit 09a612
Packit 09a612
%endif
Packit 09a612
Packit 09a612
%if 0%{!?_without_firmware:1}
Packit 09a612
%files firmware
Packit 09a612
%dir %{_pkgdocdir}
Packit 09a612
%doc %{_pkgdocdir}/hdsploader
Packit 09a612
%doc %{_pkgdocdir}/mixartloader
Packit 09a612
%doc %{_pkgdocdir}/usx2yloader
Packit 09a612
%doc %{_pkgdocdir}/vxloader
Packit 09a612
/lib/udev/rules.d/*.rules
Packit 09a612
/lib/udev/tascam_fpga
Packit 09a612
/lib/udev/tascam_fw
Packit 09a612
%{_bindir}/hdsploader
Packit 09a612
%{_bindir}/mixartloader
Packit 09a612
%{_bindir}/usx2yloader
Packit 09a612
%{_bindir}/vxloader
Packit 09a612
%endif
Packit 09a612
Packit 09a612
%changelog
Packit 09a612
* Tue Apr 03 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.6-1
Packit 09a612
- Updated to 1.1.6
Packit 09a612
Packit 09a612
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Packit 09a612
Packit 09a612
* Tue Nov 14 2017 Jaroslav Kysela <perex@perex.cz> - 1.1.5-1
Packit 09a612
- Updated to 1.1.5
Packit 09a612
Packit 09a612
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-4
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
Packit 09a612
Packit 09a612
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-3
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
Packit 09a612
Packit 09a612
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-2
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
Packit 09a612
Packit 09a612
* Wed Sep 21 2016 Jaroslav Kysela <perex@perex.cz> - 1.1.3-1
Packit 09a612
- Updated to 1.1.3
Packit 09a612
Packit 09a612
* Wed Mar 16 2016 Yaakov Selkowitz <yselkowi@redhat.com> - 1.1.0-3
Packit 09a612
- Fix FTBFS with GCC 6 (#1307312)
Packit 09a612
Packit 09a612
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
Packit 09a612
Packit 09a612
* Tue Oct 27 2015 Jaroslav Kysela <perex@perex.cz> - 1.1.0-1
Packit 09a612
- Updated to 1.1.0
Packit 09a612
Packit 09a612
* Fri Sep 18 2015 Richard Hughes <rhughes@redhat.com> - 1.0.29-5
Packit 09a612
- Remove no longer required AppData files
Packit 09a612
Packit 09a612
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.29-4
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
Packit 09a612
Packit 09a612
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.0.29-3
Packit 09a612
- Rebuilt for GCC 5 C++11 ABI change
Packit 09a612
Packit 09a612
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 1.0.29-2
Packit 09a612
- Add an AppData file for the software center
Packit 09a612
Packit 09a612
* Thu Feb 26 2015 Jaroslav Kysela <perex@perex.cz> - 1.0.29-1
Packit 09a612
- updated to 1.0.29
Packit 09a612
Packit 09a612
* Thu Feb 19 2015 Rex Dieter <rdieter@fedoraproject.org> 1.0.28-4
Packit 09a612
- rebuild (fltk)
Packit 09a612
Packit 09a612
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.28-3
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Packit 09a612
Packit 09a612
* Fri Jul 25 2014 Tim Jackson <rpm@timj.co.uk> 1.0.28-1
Packit 09a612
- don't use %%makeinstall (RHBZ #909622)
Packit 09a612
Packit 09a612
* Thu Jul 24 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.28-1
Packit 09a612
- Update to 1.0.28
Packit 09a612
Packit 09a612
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.27-4
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Packit 09a612
Packit 09a612
* Thu Aug  1 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.0.27-3
Packit 09a612
- Install docs to %%{_pkgdocdir} where available.
Packit 09a612
Packit 09a612
* Tue May 21 2013 Dan Horák <dan[at]danny.cz> - 1.0.27-2
Packit 09a612
- fix build on non-x86 arches
Packit 09a612
Packit 09a612
* Fri Apr 12 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27-1
Packit 09a612
- Updated to 1.0.27
Packit 09a612
Packit 09a612
* Sat Feb 09 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 1.0.26.1-3
Packit 09a612
- remove vendor tag from desktop file. https://fedorahosted.org/fpc/ticket/247
Packit 09a612
- clean up spec to follow current guidelines
Packit 09a612
- don't build -tools for RHEL. Bill Nottingham patch. Resolves rhbz#586030
Packit 09a612
Packit 09a612
* Fri Sep  7 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26.1-2
Packit 09a612
- Fixed gtk3-devel dependency (hdajackretask)
Packit 09a612
- Added description for hda-verb and hdajackretask
Packit 09a612
Packit 09a612
* Thu Sep  6 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26.1-1
Packit 09a612
- Updated to 1.0.26.1
Packit 09a612
- Added hda-verb and hdajackretask tools
Packit 09a612
Packit 09a612
* Thu Sep  6 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26-1
Packit 09a612
- Updated to 1.0.26
Packit 09a612
Packit 09a612
* Wed Aug 29 2012 Tim Jackson <rpm@timj.co.uk> - 1.0.25-4
Packit 09a612
- Move udev rules to /lib/udev/rules.d (rhbz #748206)
Packit 09a612
- remove %%BuildRoot and %%clean sections; no longer required
Packit 09a612
Packit 09a612
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.25-3
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Packit 09a612
Packit 09a612
* Wed Mar  7 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.0.25-2
Packit 09a612
- Bump build for ARM
Packit 09a612
Packit 09a612
* Tue Jan 31 2012 Jaroslav Kysela <perex@perex.cz> - 1.0.25-1
Packit 09a612
- Update to 1.0.25
Packit 09a612
Packit 09a612
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24.1-5
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
Packit 09a612
Packit 09a612
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1.0.24.1-4
Packit 09a612
- Rebuild for new libpng
Packit 09a612
Packit 09a612
* Fri Jun 10 2011 Adam Jackson <ajax@redhat.com> 1.0.24.1-3
Packit 09a612
- Rebuild for new libfltk
Packit 09a612
Packit 09a612
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24.1-2
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
Packit 09a612
Packit 09a612
* Thu Feb 03 2011 Tim Jackson <rpm@timj.co.uk> - 1.0.24.1-1
Packit 09a612
- Update to 1.0.24.1
Packit 09a612
Packit 09a612
* Mon May 03 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.23-1
Packit 09a612
- update to 1.0.23
Packit 09a612
Packit 09a612
* Sat Mar 06 2010 Tim Jackson <rpm@timj.co.uk> - 1.0.22-2
Packit 09a612
- Don't own /usr/share/sounds (#569415)
Packit 09a612
Packit 09a612
* Sun Jan 10 2010 Tim Jackson <rpm@timj.co.uk> - 1.0.22-1
Packit 09a612
- Update to 1.0.22
Packit 09a612
- use %%global instead of %%define
Packit 09a612
Packit 09a612
* Thu Sep 03 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.21-1
Packit 09a612
- Update to 1.0.21
Packit 09a612
Packit 09a612
* Wed Aug 26 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.20-4
Packit 09a612
- Add missing dep on xorg-x11-fonts-misc (#503284)
Packit 09a612
Packit 09a612
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.20-3
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
Packit 09a612
Packit 09a612
* Thu Jul 16 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.20-2
Packit 09a612
Packit 09a612
* Sun May 10 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.20-1.fc12.2
Packit 09a612
- Update to 1.0.20
Packit 09a612
Packit 09a612
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.19-3
Packit 09a612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
Packit 09a612
Packit 09a612
* Sat Feb 14 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.19-2
Packit 09a612
- Fix unowned directory problem (#483323)
Packit 09a612
Packit 09a612
* Sat Jan 24 2009 Tim Jackson <rpm@timj.co.uk> - 1.0.19-1
Packit 09a612
- Update to version 1.0.19
Packit 09a612
- Mark udev rules as config
Packit 09a612
Packit 09a612
* Fri Dec  5 2008 Jon McCann <jmccann@redhat.com> - 1.0.17-2
Packit 09a612
- Convert hotplug stuff to udev
Packit 09a612
Packit 09a612
* Thu Jul 17 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.17-1
Packit 09a612
- Update to version 1.0.17
Packit 09a612
Packit 09a612
* Mon May 19 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.16-4
Packit 09a612
- Make it build cleanly on ppc and ppc64 by excluding sb16_csp
Packit 09a612
Packit 09a612
* Sun May 18 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.16-3
Packit 09a612
- Really enable firmware subpackage
Packit 09a612
Packit 09a612
* Sun May 18 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.16-2
Packit 09a612
- Enable firmware subpackage - the accompanying alsa-firmware package is
Packit 09a612
  finally in Fedora
Packit 09a612
Packit 09a612
* Sat Mar 01 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.16-1
Packit 09a612
- Update to upstream 1.0.16 (fixes #434473)
Packit 09a612
Packit 09a612
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.15-3
Packit 09a612
- Autorebuild for GCC 4.3
Packit 09a612
Packit 09a612
* Sat Jan 05 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.15-2
Packit 09a612
- Update License tag to GPLv2+
Packit 09a612
- ExcludeArch ppc64 (bug #219010)
Packit 09a612
Packit 09a612
* Sat Jan 05 2008 Tim Jackson <rpm@timj.co.uk> - 1.0.15-1
Packit 09a612
- Update to upstream 1.0.15
Packit 09a612
- Add icon for envy24control
Packit 09a612
- Build echomixer
Packit 09a612
Packit 09a612
* Sat Dec 09 2006 Tim Jackson <rpm@timj.co.uk> - 1.0.12-4
Packit 09a612
- ExcludeArch ppc (#219010)
Packit 09a612
Packit 09a612
* Sun Nov 26 2006 Tim Jackson <rpm@timj.co.uk> - 1.0.12-3
Packit 09a612
- Add gtk2-devel BR
Packit 09a612
Packit 09a612
* Sun Nov 26 2006 Tim Jackson <rpm@timj.co.uk> - 1.0.12-2
Packit 09a612
- Own our docdir explicitly
Packit 09a612
Packit 09a612
* Sat Nov 25 2006 Tim Jackson <rpm@timj.co.uk> - 1.0.12-1
Packit 09a612
- Update to 1.0.12
Packit 09a612
- Resubmit to Fedora Extras 6
Packit 09a612
- Replace hotplug requirement with udev
Packit 09a612
Packit 09a612
* Mon Feb 13 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info>
Packit 09a612
- Rebuild for Fedora Extras 5
Packit 09a612
Packit 09a612
* Tue Dec 06 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.10-1
Packit 09a612
- Update to 1.0.10
Packit 09a612
Packit 09a612
* Fri May 06 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.9-1
Packit 09a612
- Update to 1.0.9
Packit 09a612
- Use disttag
Packit 09a612
- Remove gcc4 patch
Packit 09a612
Packit 09a612
* Fri May 06 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.8-3
Packit 09a612
- prune ac3dec from sources
Packit 09a612
Packit 09a612
* Thu May 05 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.8-2
Packit 09a612
- don't build ac3dec -- use a52dec instead
Packit 09a612
Packit 09a612
* Wed Apr 06 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 1.0.8-1
Packit 09a612
- Update to 1.0.8