Blame SPECS/alsa-utils.spec

a3661c
%define  baseversion  1.1.6
a3661c
#define  fixversion   .1
a3661c
a3661c
Summary: Advanced Linux Sound Architecture (ALSA) utilities
a3661c
Name:    alsa-utils
a3661c
Version: %{baseversion}%{?fixversion}
a3661c
Release: 1%{?dist}
a3661c
License: GPLv2+
a3661c
Group:   Applications/Multimedia
a3661c
URL:     http://www.alsa-project.org/
a3661c
Source:  ftp://ftp.alsa-project.org/pub/utils/alsa-utils-%{version}.tar.bz2
a3661c
Source4: alsaunmute
a3661c
Source5: alsaunmute.1
a3661c
Source7: alsa-delay
a3661c
Source8: alsa-delay.1
a3661c
Source10: alsa.rules
a3661c
Source11: alsactl.conf
a3661c
Source20: alsa-restore.service
a3661c
Source22: alsa-state.service
a3661c
Patch0:  alsa-utils-1.1.6-post.patch
a3661c
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
a3661c
BuildRequires: alsa-lib-devel >= %{baseversion}
a3661c
BuildRequires: libsamplerate-devel
a3661c
BuildRequires: ncurses-devel
a3661c
BuildRequires: gettext-devel
a3661c
BuildRequires: xmlto python-docutils
a3661c
BuildRequires: systemd-units >= 39-2
a3661c
Conflicts: udev <= 179-2
a3661c
# use latest alsa-lib - the executables in this package requires latest API
a3661c
Requires: alsa-lib%{?_isa} >= %{baseversion}, systemd-units >= 39-2
a3661c
Conflicts: filesystem < 3
a3661c
a3661c
%description
a3661c
This package contains command line utilities for the Advanced Linux Sound
a3661c
Architecture (ALSA).
a3661c
a3661c
%prep
a3661c
%setup -q -n %{name}-%{version}
a3661c
%patch0 -p1 -b .post
a3661c
a3661c
%build
a3661c
%configure CFLAGS="$RPM_OPT_FLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" --disable-alsaconf \
a3661c
   --with-udev-rules-dir=%{_prefix}/lib/udev/rules.d \
a3661c
   --with-systemdsystemunitdir=%{_unitdir}
a3661c
%{__make} %{?_smp_mflags}
a3661c
%{__cp} %{SOURCE4} .
a3661c
a3661c
%install
a3661c
make install DESTDIR=$RPM_BUILD_ROOT
a3661c
%find_lang %{name}
a3661c
a3661c
# Install ALSA udev rules
a3661c
mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/udev/rules.d
a3661c
install -p -m 644 %{SOURCE10} $RPM_BUILD_ROOT/%{_prefix}/lib/udev/rules.d/90-alsa-restore.rules
a3661c
mkdir -p $RPM_BUILD_ROOT/%{_unitdir}
a3661c
install -p -m 644 %{SOURCE20} $RPM_BUILD_ROOT/%{_unitdir}/alsa-restore.service
a3661c
install -p -m 644 %{SOURCE22} $RPM_BUILD_ROOT/%{_unitdir}/alsa-state.service
a3661c
a3661c
# Install support utilities
a3661c
mkdir -p -m755 $RPM_BUILD_ROOT/%{_bindir}
a3661c
install -p -m 755 alsaunmute %{buildroot}/%{_bindir}
a3661c
mkdir -p -m755 $RPM_BUILD_ROOT/%{_mandir}/man1
a3661c
install -p -m 644 %{SOURCE5} %{buildroot}/%{_mandir}/man1/alsaunmute.1
a3661c
a3661c
# Move /usr/share/alsa/init to /usr/lib/alsa/init
a3661c
mkdir -p -m 755 %{buildroot}/%{_prefix}/lib/alsa
a3661c
mv %{buildroot}%{_datadir}/alsa/init %{buildroot}/%{_prefix}/lib/alsa
a3661c
a3661c
# Link /usr/lib/alsa/init to /usr/share/alsa/init back
a3661c
ln -s ../../lib/alsa/init %{buildroot}%{_datadir}/alsa/init
a3661c
a3661c
# Create a place for global configuration
a3661c
mkdir -p -m 755 %{buildroot}/etc/alsa
a3661c
install -p -m 644 %{SOURCE11} %{buildroot}/etc/alsa
a3661c
a3661c
# Create /var/lib/alsa tree
a3661c
mkdir -p -m 755 %{buildroot}/var/lib/alsa
a3661c
a3661c
# Install alsa-info.sh script
a3661c
rm -f %{buildroot}/usr/sbin/alsa-info.sh
a3661c
install -p -m 755 $RPM_BUILD_DIR/%{name}-%{version}/alsa-info/alsa-info.sh %{buildroot}/usr/sbin/alsa-info
a3661c
ln -s alsa-info %{buildroot}/usr/sbin/alsa-info.sh
a3661c
a3661c
# Install alsa-delay script
a3661c
install -p -m 755 %{SOURCE7} %{buildroot}/usr/bin/alsa-delay
a3661c
install -p -m 644 %{SOURCE8} %{buildroot}/%{_mandir}/man1/alsa-delay.1
a3661c
a3661c
%files -f %{name}.lang
a3661c
%defattr(-,root,root,-)
a3661c
%doc COPYING ChangeLog README TODO
a3661c
%config /etc/alsa/*
a3661c
%{_prefix}/lib/udev/rules.d/*
a3661c
%{_unitdir}/*
a3661c
%{_unitdir}/sound.target.wants/*
a3661c
%{_prefix}/lib/alsa/init/*
a3661c
%{_bindir}/*
a3661c
%{_sbindir}/*
a3661c
%{_datadir}/alsa/
a3661c
%{_datadir}/sounds/*
a3661c
%{_mandir}/man?/*
a3661c
%dir /etc/alsa/
a3661c
%dir %{_prefix}/lib/alsa/
a3661c
%dir %{_prefix}/lib/alsa/init/
a3661c
%dir /var/lib/alsa/
a3661c
a3661c
%pre
a3661c
if [ ! -r /lib/systemd/system/alsa-state.service ]; then
a3661c
  [ -d /etc/alsa ] || mkdir -m 0755 /etc/alsa
a3661c
  echo "# Remove this file to disable the alsactl daemon mode" > \
a3661c
    /etc/alsa/state-daemon.conf
a3661c
fi
a3661c
a3661c
%post
a3661c
if [ -s /etc/alsa/asound.state -a ! -s /etc/asound.state ] ; then
a3661c
  mv /etc/alsa/asound.state /etc/asound.state
a3661c
fi
a3661c
if [ -s /etc/asound.state -a ! -s /var/lib/alsa/asound.state ] ; then
a3661c
  mv /etc/asound.state /var/lib/alsa/asound.state
a3661c
fi
a3661c
a3661c
%changelog
a3661c
* Tue May 22 2018 Jaroslav Kysela <jkysela@redhat.com> - 1.1.6-1
a3661c
- Updated to 1.1.6
a3661c
- Resolves: rhbz#1578685
a3661c
a3661c
* Fri Mar 24 2017 Jaroslav Kysela <jkysela@redhat.com> - 1.1.3-2
a3661c
- Updated to 1.1.3
a3661c
- Resolves: rhbz#1399509
a3661c
a3661c
* Mon Jun  6 2016 Jaroslav Kysela <jkysela@redhat.com> - 1.1.1-1
a3661c
- Updated to 1.1.1
a3661c
- Add alsa-delay man page
a3661c
- Resolves: rhbz#1264129
a3661c
a3661c
* Fri Dec 12 2014 Jaroslav Kysela <jkysela@redhat.com> - 1.0.28-4
a3661c
- Fixed aplay -d regression
a3661c
- Resolves: rhbz#1172189
a3661c
a3661c
* Wed Sep 24 2014 Jaroslav Kysela <jkysela@redhat.com> - 1.0.28-3
a3661c
- alsactl locking fixes, coverity fixes
a3661c
a3661c
* Tue Sep 23 2014 Jaroslav Kysela <jkysela@redhat.com> - 1.0.28-2
a3661c
- Fixes for alsa-info.sh
a3661c
a3661c
* Mon Sep 15 2014 Jaroslav Kysela <jkysela@redhat.com> - 1.0.28-1
a3661c
- Updated to 1.0.28
a3661c
- Resolves: rhbz#1112206
a3661c
a3661c
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.0.27.2-5
a3661c
- Mass rebuild 2014-01-24
a3661c
a3661c
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.0.27.2-4
a3661c
- Mass rebuild 2013-12-27
a3661c
a3661c
* Tue Jul 30 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.2-3
a3661c
- Added an updated alsa-delay script from RHEL 6
a3661c
a3661c
* Fri Jul 19 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.2-2
a3661c
- Fix alsa-state.service (rkill -> kill) - rhbz#986141
a3661c
a3661c
* Wed Jul 10 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.2-1
a3661c
- Updated to 1.0.27.2
a3661c
a3661c
* Tue May 21 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27.1-1
a3661c
- Updated to 1.0.27.1
a3661c
- Updated alsa-info.sh to 0.4.61
a3661c
- Remove dependency on the dialog package (it is optional for alsa-info.sh)
a3661c
a3661c
* Mon Apr 15 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27-2
a3661c
- Fix the new udev rules (missing GOTO) - bug#951750
a3661c
- Fix the string size in alsactl (underflow)
a3661c
a3661c
* Fri Apr 12 2013 Jaroslav Kysela <jkysela@redhat.com> - 1.0.27-1
a3661c
- Updated to 1.0.27, activated the alsactl daemon mode
a3661c
- Updated alsa-info.sh to 0.4.61
a3661c
a3661c
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.26-2
a3661c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
a3661c
a3661c
* Thu Sep  6 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26-1
a3661c
- Updated to 1.0.26
a3661c
a3661c
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.25-9
a3661c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a3661c
a3661c
* Tue Apr  3 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.0.25-8
a3661c
- bump Release to be larger than F-16
a3661c
a3661c
* Tue Jan 31 2012 Jaroslav Kysela <perex@perex.cz> 1.0.25-1
a3661c
- update to 1.0.25 final
a3661c
a3661c
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1.0.24.1-8
a3661c
- install everything in /usr
a3661c
  https://fedoraproject.org/wiki/Features/UsrMove
a3661c
a3661c
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24.1-7
a3661c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
a3661c
a3661c
* Fri Jan  6 2012 Lennart Poettering <lpoetter@redhat.com> - 1.0.24.1-6
a3661c
- Always build with systemd support
a3661c
a3661c
* Fri Jan  6 2012 Lennart Poettering <lpoetter@redhat.com> - 1.0.24.1-5
a3661c
- When installing the Fedora service files make sure to override the
a3661c
  actual service files with them instead of the symlinks to them
a3661c
- Drop StandardOutput=syslog since that is the default now and we
a3661c
  don't want to needlessly override the default
a3661c
a3661c
* Mon Oct 31 2011 Bastien Nocera <bnocera@redhat.com> 1.0.24.1-4
a3661c
- Add patch to unmute MacBookAir4,1 speakers
a3661c
a3661c
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24.1-3
a3661c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a3661c
a3661c
* Fri Jan 28 2011 Jaroslav Kysela <jkysela@redhat.com> 1.0.24.1-2
a3661c
- add missing systemd files, add dependency on systemd-units
a3661c
- use own udev rule file for /lib/udev/rules.d
a3661c
- create /var/lib/alsa directory for asound.state
a3661c
a3661c
* Fri Jan 28 2011 Jaroslav Kysela <jkysela@redhat.com> 1.0.24.1-1
a3661c
- updated to 1.0.24.1 final (new automake/autoconf)
a3661c
a3661c
* Fri Jan 28 2011 Jaroslav Kysela <jkysela@redhat.com> 1.0.24-1
a3661c
- updated to 1.0.24 final
a3661c
- updated alsa-info.sh script to 0.4.60
a3661c
a3661c
* Thu Jan 13 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.0.23-4
a3661c
- Fix alsaunmute man page permissions, let rpmbuild compress it.
a3661c
a3661c
* Mon Jun 28 2010 Jaroslav Kysela <jkysela@redhat.com> 1.0.23-3
a3661c
- add requires line (bug#526492) for specific alsa-lib package
a3661c
- add requires line for dialog package (bug#561988)
a3661c
- added man page for alsaunmute (bug#526174)
a3661c
- updated alsa-info.sh script to 0.4.59
a3661c
a3661c
* Mon Jun 28 2010 Jaroslav Kysela <jkysela@redhat.com> 1.0.23-1
a3661c
- updated to 1.0.23 final
a3661c
a3661c
* Sun Apr 18 2010 Thomas Spura <tomspur@fedoraproject.org> 1.0.22-2
a3661c
- don't own %%{_datadir}/sounds (#569425)
a3661c
a3661c
* Fri Jan  1 2010 Jaroslav Kysela <jkysela@redhat.com> 1.0.22-1
a3661c
- updated to 1.0.22 final
a3661c
a3661c
* Thu Sep  3 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.21-2
a3661c
- added missing patch file
a3661c
a3661c
* Thu Sep  3 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.21-1
a3661c
- updated to 1.0.21 final
a3661c
- updated alsa-info.sh script to 0.4.58
a3661c
a3661c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.20-4
a3661c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a3661c
a3661c
* Fri May 15 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.20-3
a3661c
- added missing Headphone Volume patch
a3661c
a3661c
* Fri May 15 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.20-2
a3661c
- fixed Headphone Volume issue (bz#500956)
a3661c
a3661c
* Wed May 06 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.20-1
a3661c
- updated to 1.0.20 final
a3661c
- updated alsa-info.sh script to 0.4.56
a3661c
a3661c
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.19-4
a3661c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
a3661c
a3661c
* Mon Feb 09 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.19-3
a3661c
- fixed volume initialization for some HDA codecs
a3661c
- updated alsa-info.sh to 0.4.54
a3661c
a3661c
* Wed Feb 04 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.19-2
a3661c
- add dir directive for /lib/alsa and /lib/alsa/init directories (bz#483324)
a3661c
a3661c
* Tue Jan 20 2009 Jaroslav Kysela <jkysela@redhat.com> 1.0.19-1
a3661c
- updated to 1.0.19 final
a3661c
a3661c
* Tue Nov 04 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-5
a3661c
- fixed building
a3661c
a3661c
* Tue Nov 04 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-4
a3661c
- updated to 1.0.18 final
a3661c
- updated alsa-info.sh script
a3661c
a3661c
* Thu Sep 18 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-3.rc3
a3661c
- fixed alsa-info.sh link
a3661c
a3661c
* Thu Sep 18 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-2.rc3
a3661c
- fixed /lib/alsa/init path for x86_64 (was /lib64/alsa/init)
a3661c
- added /etc/alsa/asound.state -> /etc/asound.state shift to post section
a3661c
- fix udev rules (ommited /dev/ prefix for the alsactl utility)
a3661c
- added --ignore option for alsactl (added also to upstream)
a3661c
a3661c
* Thu Sep 11 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-1.rc3
a3661c
- updated to 1.0.18rc3
a3661c
- updated alsa-info.sh script to 0.4.51
a3661c
- removed alsacard utility
a3661c
- removed salsa utility
a3661c
- changed alsaunmute to use 'alsactl init' now
a3661c
- updated ALSA udevd rules to use alsactl
a3661c
- moved /etc/alsa/asound.state back to /etc/asound.state
a3661c
a3661c
* Mon Jul 21 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.17-1
a3661c
- updated to 1.0.17 final
a3661c
- updated alsa-info.sh script to 0.4.48
a3661c
a3661c
* Mon Apr 28 2008 Martin Stransky <stransky@redhat.com> 1.0.16-3
a3661c
- Added alsa-info.sh script to /usr/bin/alsa-info
a3661c
a3661c
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.16-2
a3661c
- Autorebuild for GCC 4.3
a3661c
a3661c
* Mon Feb 18 2008 Martin Stransky <stransky@redhat.com> 1.0.16-1
a3661c
- updated to 1.0.16 final
a3661c
a3661c
* Tue Jan 15 2008 Mikel Ward <mikel@mikelward.com>
a3661c
- add salsa man page
a3661c
a3661c
* Mon Oct 29 2007 Martin Stransky <stransky@redhat.com> 1.0.15-1
a3661c
- updated to 1.0.15 final
a3661c
a3661c
* Mon Oct 1 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.4.rc1
a3661c
- moved saved volume settings back to /etc/alsa
a3661c
  (per discussion at #293301)
a3661c
a3661c
* Mon Sep 24 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.3.rc1
a3661c
- fixed #303151 - wrong salsa dir in /etc/udev/rules.d/90-alsa.rules
a3661c
a3661c
* Thu Sep 20 2007 Matthias Saou <http://freshrpms.net/> 1.0.15-0.2.rc1
a3661c
- Update License field.
a3661c
- Mark udev rule as config.
a3661c
- Use find_lang macro again to include translations (why was it removed?).
a3661c
a3661c
* Wed Sep 19 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.1.rc1
a3661c
- new upstream
a3661c
- moved saved volume settings to /var/lib (#293301)
a3661c
- patched alsactl for that (#255421)
a3661c
a3661c
* Thu Aug 16 2007 Martin Stransky <stransky@redhat.com> 1.0.14-2
a3661c
- added an entry to alsaunmute for HP xw4550 (#252171)
a3661c
a3661c
* Wed Jul 25 2007 Martin Stransky <stransky@redhat.com> 1.0.14-1
a3661c
- release bump
a3661c
a3661c
* Thu Jun 7 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.8
a3661c
- new upstream
a3661c
a3661c
* Wed May 30 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.7.rc2
a3661c
- updated alsanumute for Siemens Lifebook S7020 (#241639)
a3661c
- unmute Master Mono for all drivers
a3661c
a3661c
* Wed May 2 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.6.rc2
a3661c
- added fix for #238442 (unmute Mono channel for w4550,
a3661c
  xw4600, xw6600, and xw8600)
a3661c
a3661c
* Wed Apr 18 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.5.rc2
a3661c
- added more funcionality to salsa (save/load sound settings),
a3661c
  moved volume settings to /etc/alsa/
a3661c
a3661c
* Tue Apr 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.4.rc2
a3661c
- added support for large files
a3661c
- minor fix in alsaunmute
a3661c
- fixed #209239 - alsaconf: Stale language-dependent files
a3661c
- fixed #233765 - alsa-utils : unowned directories
a3661c
a3661c
* Fri Jan 19 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.3.rc2
a3661c
- new upstream
a3661c
a3661c
* Wed Jan 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.2.rc1
a3661c
- added a config line for hda-intel driver
a3661c
a3661c
* Mon Dec 11 2006 Martin Stransky <stransky@redhat.com> 1.0.14-0.1.rc1
a3661c
- new upstream
a3661c
a3661c
* Mon Oct 2 2006 Martin Stransky <stransky@redhat.com> 1.0.12-3
a3661c
- fix for #207384 - Audio test fails during firstboot
a3661c
a3661c
* Fri Aug 25 2006 Martin Stransky <stransky@redhat.com> 1.0.12-2
a3661c
- new upstream
a3661c
a3661c
* Mon Aug 07 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc2
a3661c
- new upstream
a3661c
a3661c
* Thu Jul 20 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc1
a3661c
- new upstream
a3661c
a3661c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
a3661c
- rebuild
a3661c
a3661c
* Tue May 30 2006 Martin Stransky <stransky@redhat.com> 1.0.11-7
a3661c
- new upstream
a3661c
a3661c
* Wed May 3  2006 Martin Stransky <stransky@redhat.com> 1.0.11-6.rc2
a3661c
- removed HW specific switch - it should be set by driver
a3661c
a3661c
* Thu Apr 6  2006 Martin Stransky <stransky@redhat.com> 1.0.11-5.rc2
a3661c
- fixed rules file (#186494)
a3661c
- fixed Audigi mixer switch (#187807)
a3661c
a3661c
* Mon Feb 20 2006 Martin Stransky <stransky@redhat.com> 1.0.11-3.rc2
a3661c
- removed autoreconf
a3661c
a3661c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-2.rc2.2
a3661c
- bump again for double-long bug on ppc(64)
a3661c
a3661c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-2.rc2.1
a3661c
- rebuilt for new gcc4.1 snapshot and glibc changes
a3661c
a3661c
* Wed Jan 25 2006 Martin Stransky <stransky@redhat.com> 1.0.11-2.rc2
a3661c
- added volume option to alsaunmute utility (for s-c-s)
a3661c
a3661c
* Thu Jan 12 2006 Martin Stransky <stransky@redhat.com> 1.0.11-1.rc2
a3661c
- new upstream
a3661c
a3661c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
a3661c
- rebuilt
a3661c
a3661c
* Thu Nov 24 2005 Martin Stransky <stransky@redhat.com> 1.0.10rf-1
a3661c
- new upstream version
a3661c
- added alias for snd-azx
a3661c
a3661c
* Wed Nov 9 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-2
a3661c
- fix for #169292 - RHEL4U2 xw4300 IntelHD internal speakers muted by default
a3661c
a3661c
* Tue Sep 27 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-1
a3661c
- new upstream version
a3661c
a3661c
* Tue Aug 23 2005 Martin Stransky <stransky@redhat.com> 1.0.9-5
a3661c
- unmute External Amplifier by default (#166153)
a3661c
a3661c
* Wed Jul 13 2005 Bill Nottingham <notting@redhat.com> 1.0.9-4
a3661c
- migrate the alsa restore program to a udev rule, not a dev.d program
a3661c
- conflict with appropriate udev
a3661c
- move alsaunmute, alsacard to /bin
a3661c
a3661c
* Mon Jul 11 2005 Martin Stransky <stransky@redhat.com> 1.0.9-3
a3661c
- New alsaunmute utility
a3661c
- Add autoconf to BuildRequires (#162483)
a3661c
a3661c
* Thu Jun 16 2005 Martin Stransky <stransky@redhat.com> 1.0.9-2
a3661c
- New upstream version
a3661c
a3661c
* Mon May 30 2005 Martin Stransky <stransky@redhat.com> 1.0.9-1
a3661c
- New upstream version.
a3661c
- moved alsacard utility from alsa-lib to alsa-tools
a3661c
a3661c
* Mon May 16 2005 Bill Nottingham <notting@redhat.com> 1.0.9rc2-2
a3661c
- make sure 'Wave' playback channel isn't muted (#157850)
a3661c
a3661c
* Mon Apr 25 2005 Martin Stransky <stransky@redhat.com> 1.0.9rc2-1
a3661c
- New upstream version
a3661c
- add %%find_lang macro (#155719)
a3661c
a3661c
* Fri Apr 1 2005 Bill Nottingham <notting@redhat.com> 1.0.8-4
a3661c
- replace the dev.d script with a program that calls alsactl to
a3661c
  restore the volume if there is a saved config, and just unmutes
a3661c
  the playback channels if there isn't one (#132575)
a3661c
a3661c
* Mon Mar 7 2005 Martin Stransky <stransky@redhat.com>
a3661c
- rebuilt
a3661c
a3661c
* Wed Feb 16 2005 Martin Stransky <stransky@redhat.com> 1.0.8-2
a3661c
- fix #148011 (add gettext-devel to BuildRequires)
a3661c
- add $RPM_OPT_FLAGS to CFLAGS
a3661c
a3661c
* Wed Jan 26 2005 Martin Stransky <stransky@redhat.com> 1.0.8-1
a3661c
- update to 1.0.8
a3661c
- temporarily removed alsa-lauch.patch
a3661c
a3661c
* Sat Jan 08 2005 Colin Walters <walters@redhat.com> 1.0.7-2
a3661c
- New patch alsa-utils-1.0.7-alsa-launch.patch, adds the
a3661c
  alsa-launch command.
a3661c
- New source file xinit-alsa-launch.sh, integrates alsa-launch
a3661c
  into X startup
a3661c
- BR xorg-x11-devel
a3661c
a3661c
* Thu Jan 06 2005 Colin Walters <walters@redhat.com> 1.0.7-1
a3661c
- New upstream version
a3661c
a3661c
* Tue Oct 19 2004 Bill Nottingham <notting@redhat.com> 1.0.6-3
a3661c
- tweak dev.d sound restore script (#133535, revisited)
a3661c
a3661c
* Thu Oct 14 2004 Bill Nottingham <notting@redhat.com> 1.0.6-2
a3661c
- move alsactl to /sbin
a3661c
- include a dev.d script for mixer restoring (#133535)
a3661c
a3661c
* Mon Aug 30 2004 Bill Nottingham <notting@redhat.com> 1.0.6-1
a3661c
- update to 1.0.6
a3661c
a3661c
* Fri Jul  2 2004 Bill Nottingham <notting@redhat.com> 1.0.5-1
a3661c
- update to 1.0.5
a3661c
a3661c
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
a3661c
- rebuilt
a3661c
a3661c
* Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> 1.0.3-1
a3661c
- update to 1.0.3
a3661c
a3661c
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
a3661c
- rebuilt
a3661c
a3661c
* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 1.0.2-1
a3661c
- update to 1.0.2
a3661c
a3661c
* Wed Dec 17 2003 Bill Nottingham <notting@redhat.com> 1.0.0-0.rc2
a3661c
- import fedora.us RPM, take out save-alsamixer & alsaconf for now
a3661c
a3661c
* Thu Dec 11 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.4.rc2
a3661c
- rename alsamixer-saver save-alsamixer
a3661c
a3661c
* Mon Dec  8 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.3.rc2
a3661c
- Integrate Michael Schwendt's script alsamixer-saver; Still not quite sure if
a3661c
  this script is the right way -- but mine didn't work...
a3661c
a3661c
* Sat Dec  6 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.2.rc2
a3661c
- Update to 1.0.0rc2
a3661c
- added alsamixer Script -- stores settings on shutdown, does nothing on startup
a3661c
- some minor corrections in spec-file style
a3661c
a3661c
* Wed Dec  3 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.1.rc1
a3661c
- Update to 1.0.0rc1
a3661c
a3661c
* Wed Aug  6 2003 Dams <anvil[AT]livna.org> 0:utils-0.fdr.1
a3661c
- Initial build.