Blame SPECS/alsa-utils.spec

3127cf
%define   baseversion     1.2.7
91b4e2
#define   fixversion      .2
91b4e2
%global   _hardened_build 1
91b4e2
91b4e2
Summary: Advanced Linux Sound Architecture (ALSA) utilities
91b4e2
Name:    alsa-utils
91b4e2
Version: %{baseversion}%{?fixversion}
06751b
Release: 1%{?dist}
91b4e2
License: GPLv2+
91b4e2
URL:     http://www.alsa-project.org/
91b4e2
Source:  ftp://ftp.alsa-project.org/pub/utils/alsa-utils-%{version}.tar.bz2
91b4e2
Patch1:  alsa-utils-git.patch
91b4e2
Source4: alsaunmute
91b4e2
Source5: alsaunmute.1
91b4e2
Source10: alsa.rules
91b4e2
Source11: alsactl.conf
91b4e2
Source20: alsa-restore.service
91b4e2
Source22: alsa-state.service
91b4e2
91b4e2
BuildRequires:  gcc
91b4e2
BuildRequires: alsa-lib-devel >= %{baseversion}
91b4e2
BuildRequires: libsamplerate-devel
91b4e2
BuildRequires: ncurses-devel
91b4e2
BuildRequires: gettext-devel
91b4e2
BuildRequires: xmlto
91b4e2
BuildRequires: python3-docutils
91b4e2
BuildRequires: systemd
91b4e2
Requires(post): systemd
91b4e2
Requires(preun): systemd
91b4e2
Requires(postun): systemd
91b4e2
# use latest alsa-lib - the executables in this package requires latest API
91b4e2
Requires: alsa-lib%{?_isa} >= %{baseversion}
06751b
%ifnarch s390x
91b4e2
Requires: alsa-ucm >= %{baseversion}
06751b
%endif
91b4e2
91b4e2
%description
91b4e2
This package contains command line utilities for the Advanced Linux Sound
91b4e2
Architecture (ALSA).
91b4e2
91b4e2
%package -n alsa-ucm-utils
91b4e2
Summary: Advanced Linux Sound Architecture (ALSA) - Use Case Manager
91b4e2
91b4e2
%description -n alsa-ucm-utils
91b4e2
This package contains Use Case Manager tools for Advanced Linux Sound
91b4e2
Architecture (ALSA) framework.
91b4e2
91b4e2
%package -n alsa-topology-utils
91b4e2
Summary: Advanced Linux Sound Architecture (ALSA) - Topology
91b4e2
Requires: alsa-topology >= %{baseversion}
91b4e2
91b4e2
%description -n alsa-topology-utils
91b4e2
This package contains topology tools for Advanced Linux Sound
91b4e2
Architecture (ALSA) framework.
91b4e2
91b4e2
%package alsabat
91b4e2
Summary: Advanced Linux Sound Architecture (ALSA) - Basic Audio Tester
91b4e2
BuildRequires: fftw-devel
91b4e2
BuildRequires: make
91b4e2
91b4e2
%description alsabat
91b4e2
This package contains tool for basic audio testing using Advanced Linux Sound
91b4e2
Architecture (ALSA) framework and Fast Fourier Transform library.
91b4e2
91b4e2
%prep
91b4e2
%setup -q -n %{name}-%{version}
91b4e2
%patch1 -p1 -b .alsa-git
91b4e2
91b4e2
%build
91b4e2
%configure CFLAGS="$RPM_OPT_FLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" --disable-alsaconf \
91b4e2
   --with-udev-rules-dir=%{_prefix}/lib/udev/rules.d \
91b4e2
   --with-systemdsystemunitdir=%{_unitdir}
91b4e2
make %{?_smp_mflags}
91b4e2
cp %{SOURCE4} .
91b4e2
91b4e2
%install
91b4e2
%global alsacfgdir %{_prefix}/lib/alsa
91b4e2
91b4e2
make install DESTDIR=%{buildroot}
91b4e2
%find_lang %{name}
91b4e2
91b4e2
# Install ALSA udev rules
91b4e2
mkdir -p %{buildroot}/%{_prefix}/lib/udev/rules.d
91b4e2
install -p -m 644 %{SOURCE10} %{buildroot}/%{_prefix}/lib/udev/rules.d/90-alsa-restore.rules
91b4e2
mkdir -p %{buildroot}/%{_unitdir}
91b4e2
install -p -m 644 %{SOURCE20} %{buildroot}/%{_unitdir}/alsa-restore.service
91b4e2
install -p -m 644 %{SOURCE22} %{buildroot}/%{_unitdir}/alsa-state.service
91b4e2
91b4e2
# Install support utilities
91b4e2
mkdir -p -m755 %{buildroot}/%{_bindir}
91b4e2
install -p -m 755 %{SOURCE4} %{buildroot}/%{_bindir}
91b4e2
mkdir -p -m755 %{buildroot}/%{_mandir}/man1
91b4e2
install -p -m 644 %{SOURCE5} %{buildroot}/%{_mandir}/man1/alsaunmute.1
91b4e2
91b4e2
# Move /usr/share/alsa/init to /usr/lib/alsa/init
91b4e2
mkdir -p -m 755 %{buildroot}%{alsacfgdir}
91b4e2
mv %{buildroot}%{_datadir}/alsa/init %{buildroot}%{alsacfgdir}
91b4e2
91b4e2
# Link /usr/lib/alsa/init to /usr/share/alsa/init back
91b4e2
ln -s ../../lib/alsa/init %{buildroot}%{_datadir}/alsa/init
91b4e2
91b4e2
# Create a place for global configuration
91b4e2
mkdir -p -m 755 %{buildroot}/etc/alsa
91b4e2
install -p -m 644 %{SOURCE11} %{buildroot}/etc/alsa
91b4e2
91b4e2
# Create /var/lib/alsa tree
91b4e2
mkdir -p -m 755 %{buildroot}%{_sharedstatedir}/alsa
91b4e2
3127cf
find %{buildroot} -name "*.la" -exec rm {} \;
3127cf
91b4e2
%files -f %{name}.lang
3127cf
%doc COPYING ChangeLog README.md TODO alsamixer/alsamixer.rc.example
91b4e2
%config /etc/alsa/*
91b4e2
%{_prefix}/lib/udev/rules.d/*
91b4e2
%{_unitdir}/*
91b4e2
%{_unitdir}/sound.target.wants/*
91b4e2
%{alsacfgdir}/init/*
91b4e2
%{_bindir}/aconnect
91b4e2
%{_bindir}/alsaloop
91b4e2
%{_bindir}/alsamixer
91b4e2
%{_bindir}/alsaunmute
91b4e2
%{_bindir}/amidi
91b4e2
%{_bindir}/amixer
91b4e2
%{_bindir}/aplay
91b4e2
%{_bindir}/aplaymidi
91b4e2
%{_bindir}/arecord
91b4e2
%{_bindir}/arecordmidi
91b4e2
%{_bindir}/aseqdump
91b4e2
%{_bindir}/aseqnet
91b4e2
%{_bindir}/axfer
91b4e2
%{_bindir}/iecset
91b4e2
%{_bindir}/speaker-test
91b4e2
%{_sbindir}/*
91b4e2
%exclude %{_sbindir}/alsabat-test.sh
91b4e2
%{_datadir}/alsa/
91b4e2
%{_datadir}/sounds/*
91b4e2
%{_mandir}/man7/*
91b4e2
%{_mandir}/man1/alsactl.1.gz
91b4e2
%{_mandir}/man1/alsaloop.1.gz
91b4e2
%{_mandir}/man1/alsamixer.1.gz
91b4e2
%{_mandir}/man1/alsaunmute.1.gz
91b4e2
%{_mandir}/man1/amidi.1.gz
91b4e2
%{_mandir}/man1/amixer.1.gz
91b4e2
%{_mandir}/man1/aplay.1.gz
91b4e2
%{_mandir}/man1/aplaymidi.1.gz
91b4e2
%{_mandir}/man1/arecord.1.gz
91b4e2
%{_mandir}/man1/arecordmidi.1.gz
91b4e2
%{_mandir}/man1/aseqdump.1.gz
91b4e2
%{_mandir}/man1/aseqnet.1.gz
91b4e2
%{_mandir}/man1/axfer.1.gz
91b4e2
%{_mandir}/man1/axfer-list.1.gz
91b4e2
%{_mandir}/man1/axfer-transfer.1.gz
91b4e2
%{_mandir}/man1/iecset.1.gz
91b4e2
%{_mandir}/man1/speaker-test.1.gz
91b4e2
%{_mandir}/man1/aconnect.1.gz
91b4e2
%{_mandir}/man1/alsa-info.sh.1.gz
91b4e2
91b4e2
%dir /etc/alsa/
91b4e2
%dir %{alsacfgdir}/
91b4e2
%dir %{alsacfgdir}/init/
91b4e2
%dir %{_sharedstatedir}/alsa/
91b4e2
91b4e2
%files -n alsa-ucm-utils
91b4e2
%{_bindir}/alsaucm
91b4e2
%{_mandir}/man1/alsaucm.1.gz
91b4e2
91b4e2
%files -n alsa-topology-utils
91b4e2
%{_bindir}/alsatplg
91b4e2
%{_mandir}/man1/alsatplg.1.gz
3127cf
%{_libdir}/alsa-topology/libalsatplg_module_*
91b4e2
91b4e2
%files alsabat
91b4e2
%{_bindir}/alsabat
91b4e2
%{_sbindir}/alsabat-test.sh
91b4e2
%{_mandir}/man1/alsabat.1.gz
91b4e2
91b4e2
%pre
91b4e2
if [ ! -r %{_unitdir}/alsa-state.service ]; then
91b4e2
  [ -d /etc/alsa ] || mkdir -m 0755 /etc/alsa
91b4e2
  echo "# Remove this file to disable the alsactl daemon mode" > \
91b4e2
                                                    /etc/alsa/state-daemon.conf
91b4e2
fi
91b4e2
91b4e2
%post
91b4e2
if [ -s /etc/alsa/asound.state -a ! -s /etc/asound.state ] ; then
91b4e2
  mv /etc/alsa/asound.state /etc/asound.state
91b4e2
fi
91b4e2
if [ -s /etc/asound.state -a ! -s %{_sharedstatedir}/alsa/asound.state ] ; then
91b4e2
  mv /etc/asound.state %{_sharedstatedir}/alsa/asound.state
91b4e2
fi
91b4e2
%systemd_post alsa-state.service
91b4e2
91b4e2
%preun
91b4e2
%systemd_preun alsa-state.service
91b4e2
91b4e2
%postun
91b4e2
%systemd_postun_with_restart alsa-state.service
91b4e2
91b4e2
%changelog
3127cf
* Fri Jul  8 2022 Jaroslav Kysela <perex@perex.cz> - 1.2.7-1
3127cf
* Updated to 1.2.7
3127cf
06751b
* Mon Dec 20 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.6-1
06751b
* Updated to 1.2.6
06751b
06751b
* Tue Aug 10 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5.1-3
06751b
* Fixes for 1.2.5.1
06751b
91b4e2
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.5.1-2
91b4e2
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
91b4e2
  Related: rhbz#1991688
91b4e2
91b4e2
* Mon Aug  9 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5.1-1
91b4e2
* Updated to 1.2.5.1
91b4e2
91b4e2
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.4-3
91b4e2
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
91b4e2
91b4e2
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
91b4e2
91b4e2
* Thu Oct 15 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.4-1
91b4e2
* Updated to 1.2.4
91b4e2
91b4e2
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-6
91b4e2
- Second attempt - Rebuilt for
91b4e2
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
91b4e2
91b4e2
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-5
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
91b4e2
91b4e2
* Fri Jul  3 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.3-4
91b4e2
* Fix the .spec (changelog0)
91b4e2
91b4e2
* Sun Jun  7 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.3-3
91b4e2
* Updated to 1.2.3
91b4e2
91b4e2
* Wed Feb 19 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.2-1
91b4e2
* Updated to 1.2.2
91b4e2
91b4e2
* Sun Feb  9 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.1-6
91b4e2
- UCM and topology fixes
91b4e2
91b4e2
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-5
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
91b4e2
91b4e2
* Fri Nov 15 2019 Jaroslav Kysela <perex@perex.cz> - 1.2.1-4
91b4e2
- Updated to 1.2.1
91b4e2
91b4e2
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
91b4e2
91b4e2
* Fri May 10 2019 Jaroslav Kysela <perex@perex.cz> - 1.1.9-1
91b4e2
- Updated to 1.1.9
91b4e2
91b4e2
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.8-3
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
91b4e2
91b4e2
* Mon Jan  7 2019 Jaroslav Kysela <perex@perex.cz> - 1.1.8-2
91b4e2
- Updated to 1.1.8
91b4e2
91b4e2
* Tue Oct 16 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.7-2
91b4e2
- Moved use case manager utility to alsa-ucm-utils
91b4e2
- Moved topology utility to alsa-topology-utils
91b4e2
- Updated to 1.1.7
91b4e2
91b4e2
* Fri Sep 07 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.6-5
91b4e2
- Added udev rules for PAZ00
91b4e2
91b4e2
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.6-3
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
91b4e2
91b4e2
* Tue Apr 03 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.6-1
91b4e2
- Updated to 1.1.6
91b4e2
91b4e2
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
91b4e2
91b4e2
* Tue Nov 14 2017 Jaroslav Kysela <perex@perex.cz> - 1.1.5-1
91b4e2
- Updated to 1.1.5
91b4e2
91b4e2
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4-3
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
91b4e2
91b4e2
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
91b4e2
91b4e2
* Tue May 16 2017 Jaroslav Kysela <perex@perex.cz> - 1.1.4-1
91b4e2
- Updated to 1.1.4
91b4e2
91b4e2
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
91b4e2
91b4e2
* Tue Sep 20 2016 Jaroslav Kysela <perex@perex.cz> - 1.1.3-1
91b4e2
- Updated to 1.1.3
91b4e2
91b4e2
* Tue Aug  2 2016 Jaroslav Kysela <perex@perex.cz> - 1.1.2-1
91b4e2
- Updated to 1.1.2
91b4e2
91b4e2
* Thu Mar 31 2016 Jaroslav Kysela <perex@perex.cz> - 1.1.1-1
91b4e2
- Updated to 1.1.1
91b4e2
- Renamed bat to alsabat (according 1.1.1)
91b4e2
91b4e2
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
91b4e2
91b4e2
* Tue Oct 27 2015 Jaroslav Kysela <perex@perex.cz> - 1.1.0-1
91b4e2
- Updated to 1.1.0
91b4e2
- update systemd unit configuration files
91b4e2
- create alsa-utils-bat package
91b4e2
91b4e2
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.29-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
91b4e2
91b4e2
* Thu Feb 26 2015 Jaroslav Kysela <perex@perex.cz> - 1.0.29-1
91b4e2
- Updated to 1.0.29
91b4e2
91b4e2
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.28-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
91b4e2
91b4e2
* Thu Jul 24 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.28-1
91b4e2
- Update to 1.0.28
91b4e2
91b4e2
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.27.2-6
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
91b4e2
91b4e2
* Fri Jan 10 2014 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.2-5
91b4e2
- Fix hardering build - rhbz#1008385
91b4e2
- Add systemd scripts for alsa-state.service - rhbz#856654
91b4e2
91b4e2
* Sun Dec 29 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.2-4
91b4e2
- Fix alsactl crash issue - rhbz#994832
91b4e2
91b4e2
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.27.2-3
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
91b4e2
91b4e2
* Fri Jul 19 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.2-2
91b4e2
- Fix alsa-state.service (rkill -> kill) - rhbz#986141
91b4e2
91b4e2
* Wed Jul 10 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.2-1
91b4e2
- Updated to 1.0.27.2
91b4e2
91b4e2
* Tue May 21 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.1-1
91b4e2
- Updated to 1.0.27.1
91b4e2
- Updated alsa-info.sh to 0.4.61
91b4e2
- Remove dependency on the dialog package (it is optional for alsa-info.sh)
91b4e2
91b4e2
* Mon Apr 15 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27-2
91b4e2
- Fix the new udev rules (missing GOTO) - bug#951750
91b4e2
- Fix the string size in alsactl (underflow)
91b4e2
91b4e2
* Fri Apr 12 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27-1
91b4e2
- Updated to 1.0.27, activated the alsactl daemon mode
91b4e2
- Updated alsa-info.sh to 0.4.61
91b4e2
91b4e2
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.26-2
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
91b4e2
91b4e2
* Thu Sep  6 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26-1
91b4e2
- Updated to 1.0.26
91b4e2
91b4e2
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.25-9
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
91b4e2
91b4e2
* Tue Apr  3 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.0.25-8
91b4e2
- bump Release to be larger than F-16
91b4e2
91b4e2
* Tue Jan 31 2012 Jaroslav Kysela <perex@perex.cz> 1.0.25-1
91b4e2
- update to 1.0.25 final
91b4e2
91b4e2
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1.0.24.1-8
91b4e2
- install everything in /usr
91b4e2
  https://fedoraproject.org/wiki/Features/UsrMove
91b4e2
91b4e2
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24.1-7
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
91b4e2
91b4e2
* Fri Jan  6 2012 Lennart Poettering <lpoetter@redhat.com> - 1.0.24.1-6
91b4e2
- Always build with systemd support
91b4e2
91b4e2
* Fri Jan  6 2012 Lennart Poettering <lpoetter@redhat.com> - 1.0.24.1-5
91b4e2
- When installing the Fedora service files make sure to override the
91b4e2
  actual service files with them instead of the symlinks to them
91b4e2
- Drop StandardOutput=syslog since that is the default now and we
91b4e2
  don't want to needlessly override the default
91b4e2
91b4e2
* Mon Oct 31 2011 Bastien Nocera <bnocera@redhat.com> 1.0.24.1-4
91b4e2
- Add patch to unmute MacBookAir4,1 speakers
91b4e2
91b4e2
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24.1-3
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
91b4e2
91b4e2
* Fri Jan 28 2011 Jaroslav Kysela <jkysela@redhat.com> 1.0.24.1-2
91b4e2
- add missing systemd files, add dependency on systemd-units
91b4e2
- use own udev rule file for /lib/udev/rules.d
91b4e2
- create /var/lib/alsa directory for asound.state
91b4e2
91b4e2
* Fri Jan 28 2011 Jaroslav Kysela <jkysela@redhat.com> 1.0.24.1-1
91b4e2
- updated to 1.0.24.1 final (new automake/autoconf)
91b4e2
91b4e2
* Fri Jan 28 2011 Jaroslav Kysela <jkysela@redhat.com> 1.0.24-1
91b4e2
- updated to 1.0.24 final
91b4e2
- updated alsa-info.sh script to 0.4.60
91b4e2
91b4e2
* Thu Jan 13 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.0.23-4
91b4e2
- Fix alsaunmute man page permissions, let rpmbuild compress it.
91b4e2
91b4e2
* Mon Jun 28 2010 Jaroslav Kysela <jkysela@redhat.com> 1.0.23-3
91b4e2
- add requires line (bug#526492) for specific alsa-lib package
91b4e2
- add requires line for dialog package (bug#561988)
91b4e2
- added man page for alsaunmute (bug#526174)
91b4e2
- updated alsa-info.sh script to 0.4.59
91b4e2
91b4e2
* Mon Jun 28 2010 Jaroslav Kysela <jkysela@redhat.com> 1.0.23-1
91b4e2
- updated to 1.0.23 final
91b4e2
91b4e2
* Sun Apr 18 2010 Thomas Spura <tomspur@fedoraproject.org> 1.0.22-2
91b4e2
- don't own %%{_datadir}/sounds (#569425)
91b4e2
91b4e2
* Fri Jan  1 2010 Jaroslav Kysela <jkysela@redhat.com> 1.0.22-1
91b4e2
- updated to 1.0.22 final
91b4e2
91b4e2
* Thu Sep  3 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.21-2
91b4e2
- added missing patch file
91b4e2
91b4e2
* Thu Sep  3 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.21-1
91b4e2
- updated to 1.0.21 final
91b4e2
- updated alsa-info.sh script to 0.4.58
91b4e2
91b4e2
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.20-4
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
91b4e2
91b4e2
* Fri May 15 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.20-3
91b4e2
- added missing Headphone Volume patch
91b4e2
91b4e2
* Fri May 15 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.20-2
91b4e2
- fixed Headphone Volume issue (bz#500956)
91b4e2
91b4e2
* Wed May 06 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.20-1
91b4e2
- updated to 1.0.20 final
91b4e2
- updated alsa-info.sh script to 0.4.56
91b4e2
91b4e2
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.19-4
91b4e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
91b4e2
91b4e2
* Mon Feb 09 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.19-3
91b4e2
- fixed volume initialization for some HDA codecs
91b4e2
- updated alsa-info.sh to 0.4.54
91b4e2
91b4e2
* Wed Feb 04 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.19-2
91b4e2
- add dir directive for /lib/alsa and /lib/alsa/init directories (bz#483324)
91b4e2
91b4e2
* Tue Jan 20 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.19-1
91b4e2
- updated to 1.0.19 final
91b4e2
91b4e2
* Tue Nov 04 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-5
91b4e2
- fixed building
91b4e2
91b4e2
* Tue Nov 04 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-4
91b4e2
- updated to 1.0.18 final
91b4e2
- updated alsa-info.sh script
91b4e2
91b4e2
* Thu Sep 18 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-3.rc3
91b4e2
- fixed alsa-info.sh link
91b4e2
91b4e2
* Thu Sep 18 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-2.rc3
91b4e2
- fixed /lib/alsa/init path for x86_64 (was /lib64/alsa/init)
91b4e2
- added /etc/alsa/asound.state -> /etc/asound.state shift to post section
91b4e2
- fix udev rules (ommited /dev/ prefix for the alsactl utility)
91b4e2
- added --ignore option for alsactl (added also to upstream)
91b4e2
91b4e2
* Thu Sep 11 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-1.rc3
91b4e2
- updated to 1.0.18rc3
91b4e2
- updated alsa-info.sh script to 0.4.51
91b4e2
- removed alsacard utility
91b4e2
- removed salsa utility
91b4e2
- changed alsaunmute to use 'alsactl init' now
91b4e2
- updated ALSA udevd rules to use alsactl
91b4e2
- moved /etc/alsa/asound.state back to /etc/asound.state
91b4e2
91b4e2
* Mon Jul 21 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.17-1
91b4e2
- updated to 1.0.17 final
91b4e2
- updated alsa-info.sh script to 0.4.48
91b4e2
91b4e2
* Mon Apr 28 2008 Martin Stransky <stransky@redhat.com> 1.0.16-3
91b4e2
- Added alsa-info.sh script to /usr/bin/alsa-info
91b4e2
91b4e2
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.16-2
91b4e2
- Autorebuild for GCC 4.3
91b4e2
91b4e2
* Mon Feb 18 2008 Martin Stransky <stransky@redhat.com> 1.0.16-1
91b4e2
- updated to 1.0.16 final
91b4e2
91b4e2
* Tue Jan 15 2008 Mikel Ward <mikel@mikelward.com>
91b4e2
- add salsa man page
91b4e2
91b4e2
* Mon Oct 29 2007 Martin Stransky <stransky@redhat.com> 1.0.15-1
91b4e2
- updated to 1.0.15 final
91b4e2
91b4e2
* Mon Oct 1 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.4.rc1
91b4e2
- moved saved volume settings back to /etc/alsa
91b4e2
  (per discussion at #293301)
91b4e2
91b4e2
* Mon Sep 24 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.3.rc1
91b4e2
- fixed #303151 - wrong salsa dir in /etc/udev/rules.d/90-alsa.rules
91b4e2
91b4e2
* Thu Sep 20 2007 Matthias Saou <http://freshrpms.net/> 1.0.15-0.2.rc1
91b4e2
- Update License field.
91b4e2
- Mark udev rule as config.
91b4e2
- Use find_lang macro again to include translations (why was it removed?).
91b4e2
91b4e2
* Wed Sep 19 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.1.rc1
91b4e2
- new upstream
91b4e2
- moved saved volume settings to /var/lib (#293301)
91b4e2
- patched alsactl for that (#255421)
91b4e2
91b4e2
* Thu Aug 16 2007 Martin Stransky <stransky@redhat.com> 1.0.14-2
91b4e2
- added an entry to alsaunmute for HP xw4550 (#252171)
91b4e2
91b4e2
* Wed Jul 25 2007 Martin Stransky <stransky@redhat.com> 1.0.14-1
91b4e2
- release bump
91b4e2
91b4e2
* Thu Jun 7 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.8
91b4e2
- new upstream
91b4e2
91b4e2
* Wed May 30 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.7.rc2
91b4e2
- updated alsanumute for Siemens Lifebook S7020 (#241639)
91b4e2
- unmute Master Mono for all drivers
91b4e2
91b4e2
* Wed May 2 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.6.rc2
91b4e2
- added fix for #238442 (unmute Mono channel for w4550,
91b4e2
  xw4600, xw6600, and xw8600)
91b4e2
91b4e2
* Wed Apr 18 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.5.rc2
91b4e2
- added more funcionality to salsa (save/load sound settings),
91b4e2
  moved volume settings to /etc/alsa/
91b4e2
91b4e2
* Tue Apr 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.4.rc2
91b4e2
- added support for large files
91b4e2
- minor fix in alsaunmute
91b4e2
- fixed #209239 - alsaconf: Stale language-dependent files
91b4e2
- fixed #233765 - alsa-utils : unowned directories
91b4e2
91b4e2
* Fri Jan 19 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.3.rc2
91b4e2
- new upstream
91b4e2
91b4e2
* Wed Jan 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.2.rc1
91b4e2
- added a config line for hda-intel driver
91b4e2
91b4e2
* Mon Dec 11 2006 Martin Stransky <stransky@redhat.com> 1.0.14-0.1.rc1
91b4e2
- new upstream
91b4e2
91b4e2
* Mon Oct 2 2006 Martin Stransky <stransky@redhat.com> 1.0.12-3
91b4e2
- fix for #207384 - Audio test fails during firstboot
91b4e2
91b4e2
* Fri Aug 25 2006 Martin Stransky <stransky@redhat.com> 1.0.12-2
91b4e2
- new upstream
91b4e2
91b4e2
* Mon Aug 07 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc2
91b4e2
- new upstream
91b4e2
91b4e2
* Thu Jul 20 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc1
91b4e2
- new upstream
91b4e2
91b4e2
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
91b4e2
- rebuild
91b4e2
91b4e2
* Tue May 30 2006 Martin Stransky <stransky@redhat.com> 1.0.11-7
91b4e2
- new upstream
91b4e2
91b4e2
* Wed May 3  2006 Martin Stransky <stransky@redhat.com> 1.0.11-6.rc2
91b4e2
- removed HW specific switch - it should be set by driver
91b4e2
91b4e2
* Thu Apr 6  2006 Martin Stransky <stransky@redhat.com> 1.0.11-5.rc2
91b4e2
- fixed rules file (#186494)
91b4e2
- fixed Audigi mixer switch (#187807)
91b4e2
91b4e2
* Mon Feb 20 2006 Martin Stransky <stransky@redhat.com> 1.0.11-3.rc2
91b4e2
- removed autoreconf
91b4e2
91b4e2
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-2.rc2.2
91b4e2
- bump again for double-long bug on ppc(64)
91b4e2
91b4e2
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-2.rc2.1
91b4e2
- rebuilt for new gcc4.1 snapshot and glibc changes
91b4e2
91b4e2
* Wed Jan 25 2006 Martin Stransky <stransky@redhat.com> 1.0.11-2.rc2
91b4e2
- added volume option to alsaunmute utility (for s-c-s)
91b4e2
91b4e2
* Thu Jan 12 2006 Martin Stransky <stransky@redhat.com> 1.0.11-1.rc2
91b4e2
- new upstream
91b4e2
91b4e2
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
91b4e2
- rebuilt
91b4e2
91b4e2
* Thu Nov 24 2005 Martin Stransky <stransky@redhat.com> 1.0.10rf-1
91b4e2
- new upstream version
91b4e2
- added alias for snd-azx
91b4e2
91b4e2
* Wed Nov 9 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-2
91b4e2
- fix for #169292 - RHEL4U2 xw4300 IntelHD internal speakers muted by default
91b4e2
91b4e2
* Tue Sep 27 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-1
91b4e2
- new upstream version
91b4e2
91b4e2
* Tue Aug 23 2005 Martin Stransky <stransky@redhat.com> 1.0.9-5
91b4e2
- unmute External Amplifier by default (#166153)
91b4e2
91b4e2
* Wed Jul 13 2005 Bill Nottingham <notting@redhat.com> 1.0.9-4
91b4e2
- migrate the alsa restore program to a udev rule, not a dev.d program
91b4e2
- conflict with appropriate udev
91b4e2
- move alsaunmute, alsacard to /bin
91b4e2
91b4e2
* Mon Jul 11 2005 Martin Stransky <stransky@redhat.com> 1.0.9-3
91b4e2
- New alsaunmute utility
91b4e2
- Add autoconf to BuildRequires (#162483)
91b4e2
91b4e2
* Thu Jun 16 2005 Martin Stransky <stransky@redhat.com> 1.0.9-2
91b4e2
- New upstream version
91b4e2
91b4e2
* Mon May 30 2005 Martin Stransky <stransky@redhat.com> 1.0.9-1
91b4e2
- New upstream version.
91b4e2
- moved alsacard utility from alsa-lib to alsa-tools
91b4e2
91b4e2
* Mon May 16 2005 Bill Nottingham <notting@redhat.com> 1.0.9rc2-2
91b4e2
- make sure 'Wave' playback channel isn't muted (#157850)
91b4e2
91b4e2
* Mon Apr 25 2005 Martin Stransky <stransky@redhat.com> 1.0.9rc2-1
91b4e2
- New upstream version
91b4e2
- add %%find_lang macro (#155719)
91b4e2
91b4e2
* Fri Apr 1 2005 Bill Nottingham <notting@redhat.com> 1.0.8-4
91b4e2
- replace the dev.d script with a program that calls alsactl to
91b4e2
  restore the volume if there is a saved config, and just unmutes
91b4e2
  the playback channels if there isn't one (#132575)
91b4e2
91b4e2
* Mon Mar 7 2005 Martin Stransky <stransky@redhat.com>
91b4e2
- rebuilt
91b4e2
91b4e2
* Wed Feb 16 2005 Martin Stransky <stransky@redhat.com> 1.0.8-2
91b4e2
- fix #148011 (add gettext-devel to BuildRequires)
91b4e2
- add $RPM_OPT_FLAGS to CFLAGS
91b4e2
91b4e2
* Wed Jan 26 2005 Martin Stransky <stransky@redhat.com> 1.0.8-1
91b4e2
- update to 1.0.8
91b4e2
- temporarily removed alsa-lauch.patch
91b4e2
91b4e2
* Sat Jan 08 2005 Colin Walters <walters@redhat.com> 1.0.7-2
91b4e2
- New patch alsa-utils-1.0.7-alsa-launch.patch, adds the
91b4e2
  alsa-launch command.
91b4e2
- New source file xinit-alsa-launch.sh, integrates alsa-launch
91b4e2
  into X startup
91b4e2
- BR xorg-x11-devel
91b4e2
91b4e2
* Thu Jan 06 2005 Colin Walters <walters@redhat.com> 1.0.7-1
91b4e2
- New upstream version
91b4e2
91b4e2
* Tue Oct 19 2004 Bill Nottingham <notting@redhat.com> 1.0.6-3
91b4e2
- tweak dev.d sound restore script (#133535, revisited)
91b4e2
91b4e2
* Thu Oct 14 2004 Bill Nottingham <notting@redhat.com> 1.0.6-2
91b4e2
- move alsactl to /sbin
91b4e2
- include a dev.d script for mixer restoring (#133535)
91b4e2
91b4e2
* Mon Aug 30 2004 Bill Nottingham <notting@redhat.com> 1.0.6-1
91b4e2
- update to 1.0.6
91b4e2
91b4e2
* Fri Jul  2 2004 Bill Nottingham <notting@redhat.com> 1.0.5-1
91b4e2
- update to 1.0.5
91b4e2
91b4e2
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
91b4e2
- rebuilt
91b4e2
91b4e2
* Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> 1.0.3-1
91b4e2
- update to 1.0.3
91b4e2
91b4e2
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
91b4e2
- rebuilt
91b4e2
91b4e2
* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 1.0.2-1
91b4e2
- update to 1.0.2
91b4e2
91b4e2
* Wed Dec 17 2003 Bill Nottingham <notting@redhat.com> 1.0.0-0.rc2
91b4e2
- import fedora.us RPM, take out save-alsamixer & alsaconf for now
91b4e2
91b4e2
* Thu Dec 11 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.4.rc2
91b4e2
- rename alsamixer-saver save-alsamixer
91b4e2
91b4e2
* Mon Dec  8 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.3.rc2
91b4e2
- Integrate Michael Schwendt's script alsamixer-saver; Still not quite sure if
91b4e2
  this script is the right way -- but mine didn't work...
91b4e2
91b4e2
* Sat Dec  6 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.2.rc2
91b4e2
- Update to 1.0.0rc2
91b4e2
- added alsamixer Script -- stores settings on shutdown, does nothing on startup
91b4e2
- some minor corrections in spec-file style
91b4e2
91b4e2
* Wed Dec  3 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.1.rc1
91b4e2
- Update to 1.0.0rc1
91b4e2
91b4e2
* Wed Aug  6 2003 Dams <anvil[AT]livna.org> 0:utils-0.fdr.1
91b4e2
- Initial build.