2008-11-04 09:46:31 +00:00
|
|
|
#define prever rc3
|
|
|
|
#define prever_dot .rc3
|
2007-09-25 09:01:22 +00:00
|
|
|
|
|
|
|
Summary: Advanced Linux Sound Architecture (ALSA) utilities
|
|
|
|
Name: alsa-utils
|
2008-09-11 09:03:42 +00:00
|
|
|
Version: 1.0.18
|
2008-11-04 09:46:31 +00:00
|
|
|
Release: 4%{?prever_dot}%{?dist}
|
2007-09-25 09:01:22 +00:00
|
|
|
License: GPLv2+
|
|
|
|
Group: Applications/Multimedia
|
|
|
|
URL: http://www.alsa-project.org/
|
|
|
|
Source: ftp://ftp.alsa-project.org/pub/utils/alsa-utils-%{version}%{?prever}.tar.bz2
|
2008-09-11 09:03:42 +00:00
|
|
|
Source4: alsaunmute
|
2008-04-28 10:40:55 +00:00
|
|
|
Source6: alsa-info.sh
|
2007-09-25 09:01:22 +00:00
|
|
|
Source10: alsa.rules
|
2008-09-11 09:03:42 +00:00
|
|
|
Source11: alsactl.conf
|
2008-09-11 11:54:09 +00:00
|
|
|
Patch0: alsa-utils-1.0.18-alsaconf.patch
|
|
|
|
Patch1: alsactl-fix-card-parsing.patch
|
2008-09-18 08:38:59 +00:00
|
|
|
Patch2: alsactl-add-ignore-option.patch
|
2007-09-25 09:01:22 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: alsa-lib-devel >= %{version}
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: gettext-devel
|
2008-09-11 11:54:09 +00:00
|
|
|
BuildRequires: xmlto
|
2007-09-25 09:01:22 +00:00
|
|
|
Conflicts: udev < 062
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
%description
|
|
|
|
This package contains command line utilities for the Advanced Linux Sound
|
|
|
|
Architecture (ALSA).
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%prep
|
2006-01-12 14:17:30 +00:00
|
|
|
%setup -q -n %{name}-%{version}%{?prever}
|
2007-09-25 09:01:22 +00:00
|
|
|
%patch0 -p1
|
2008-09-11 11:54:09 +00:00
|
|
|
%patch1 -p1
|
2008-09-18 08:38:59 +00:00
|
|
|
%patch2 -p1
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%build
|
2007-04-10 11:22:40 +00:00
|
|
|
%configure CFLAGS="$RPM_OPT_FLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" --sbindir=/sbin
|
2004-09-09 02:55:41 +00:00
|
|
|
%{__make} %{?_smp_mflags}
|
2008-09-11 11:54:09 +00:00
|
|
|
%{__cp} %{SOURCE4} .
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%install
|
2007-09-25 09:01:22 +00:00
|
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
2004-10-14 21:58:30 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2007-09-20 15:09:25 +00:00
|
|
|
%find_lang %{name}
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2007-04-18 12:28:22 +00:00
|
|
|
# Install ALSA udev rules
|
2007-09-20 15:09:25 +00:00
|
|
|
mkdir -p -m 755 $RPM_BUILD_ROOT/etc/udev/rules.d
|
|
|
|
install -p -m 644 %{SOURCE10} $RPM_BUILD_ROOT/etc/udev/rules.d/90-alsa.rules
|
2007-04-18 12:28:22 +00:00
|
|
|
|
|
|
|
# Install support utilities
|
2005-07-21 14:45:20 +00:00
|
|
|
mkdir -p -m755 $RPM_BUILD_ROOT/bin
|
2008-09-11 09:03:42 +00:00
|
|
|
install -p -m 755 alsaunmute %{buildroot}/bin/
|
2007-04-18 12:28:22 +00:00
|
|
|
|
|
|
|
# Link alsactl to /usr/sbin
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_sbindir}
|
|
|
|
ln -s ../../sbin/alsactl $RPM_BUILD_ROOT/%{_sbindir}/alsactl
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2008-09-11 11:54:09 +00:00
|
|
|
# Move /usr/share/alsa/init to /lib/alsa/init
|
2008-09-18 07:54:21 +00:00
|
|
|
mkdir -p -m 755 %{buildroot}/lib/alsa
|
|
|
|
mv %{buildroot}%{_datadir}/alsa/init %{buildroot}/lib/alsa
|
2008-09-11 11:54:09 +00:00
|
|
|
|
|
|
|
# Link /lib/alsa/init to /usr/share/alsa/init back
|
|
|
|
ln -s ../../../lib/alsa/init %{buildroot}%{_datadir}/alsa/init
|
|
|
|
|
2008-09-11 09:03:42 +00:00
|
|
|
# Create a place for global configuration
|
2008-09-11 11:54:09 +00:00
|
|
|
mkdir -p -m 755 %{buildroot}/etc/alsa
|
|
|
|
install -p -m 644 %{SOURCE11} %{buildroot}/etc/alsa
|
|
|
|
touch %{buildroot}/etc/asound.state
|
2008-01-21 14:19:16 +00:00
|
|
|
|
2008-04-28 10:40:55 +00:00
|
|
|
# Install alsa-info.sh script
|
2008-09-11 11:54:09 +00:00
|
|
|
install -p -m 755 %{SOURCE6} %{buildroot}/usr/bin/alsa-info
|
2008-09-18 08:38:59 +00:00
|
|
|
ln -s alsa-info %{buildroot}/usr/bin/alsa-info.sh
|
2008-04-28 10:40:55 +00:00
|
|
|
|
2004-09-09 02:55:32 +00:00
|
|
|
%clean
|
2004-09-09 02:55:41 +00:00
|
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2007-09-20 15:09:25 +00:00
|
|
|
%files -f %{name}.lang
|
2004-09-09 02:55:41 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc COPYING ChangeLog README TODO
|
2007-09-20 15:09:25 +00:00
|
|
|
%config /etc/udev/rules.d/*
|
2008-09-11 09:03:42 +00:00
|
|
|
%config /etc/alsa/*
|
2005-07-21 14:45:20 +00:00
|
|
|
/bin/*
|
2007-04-18 12:28:22 +00:00
|
|
|
/sbin/*
|
2008-09-18 07:54:21 +00:00
|
|
|
/lib/alsa/init/*
|
2004-09-09 02:55:41 +00:00
|
|
|
%{_bindir}/*
|
|
|
|
%{_sbindir}/*
|
2007-09-20 15:09:25 +00:00
|
|
|
%{_datadir}/alsa/
|
|
|
|
%{_datadir}/sounds/
|
2004-09-09 02:55:41 +00:00
|
|
|
%{_mandir}/man?/*
|
2007-10-01 09:54:09 +00:00
|
|
|
%dir /etc/alsa/
|
2008-09-11 09:03:42 +00:00
|
|
|
%ghost /etc/asound.state
|
2007-09-19 12:26:53 +00:00
|
|
|
|
2008-09-18 07:54:21 +00:00
|
|
|
%post
|
|
|
|
if [ -s /etc/alsa/asound.state -a ! -s /etc/asound.state ] ; then
|
|
|
|
mv /etc/alsa/asound.state /etc/asound.state
|
|
|
|
fi
|
2004-09-09 02:55:32 +00:00
|
|
|
|
|
|
|
%changelog
|
2008-11-04 09:46:31 +00:00
|
|
|
* Tue Nov 04 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-4
|
|
|
|
- updated to 1.0.18 final
|
|
|
|
- updated alsa-info.sh script
|
|
|
|
|
2008-09-18 08:38:59 +00:00
|
|
|
* Thu Sep 18 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-3.rc3
|
|
|
|
- fixed alsa-info.sh link
|
|
|
|
|
2008-09-18 07:54:21 +00:00
|
|
|
* Thu Sep 18 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-2.rc3
|
|
|
|
- fixed /lib/alsa/init path for x86_64 (was /lib64/alsa/init)
|
|
|
|
- added /etc/alsa/asound.state -> /etc/asound.state shift to %post section
|
|
|
|
- fix udev rules (ommited /dev/ prefix for the alsactl utility)
|
|
|
|
- added --ignore option for alsactl (added also to upstream)
|
|
|
|
|
2008-09-11 09:03:42 +00:00
|
|
|
* Thu Sep 11 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.18-1.rc3
|
|
|
|
- updated to 1.0.18rc3
|
|
|
|
- updated alsa-info.sh script to 0.4.51
|
|
|
|
- removed alsacard utility
|
|
|
|
- removed salsa utility
|
|
|
|
- changed alsaunmute to use 'alsactl init' now
|
|
|
|
- updated ALSA udevd rules to use alsactl
|
|
|
|
- moved /etc/alsa/asound.state back to /etc/asound.state
|
|
|
|
|
2008-07-21 10:11:54 +00:00
|
|
|
* Mon Jul 21 2008 Jaroslav Kysela <jkysela@redhat.com> 1.0.17-1
|
|
|
|
- updated to 1.0.17 final
|
|
|
|
- updated alsa-info.sh script to 0.4.48
|
|
|
|
|
2008-04-28 10:40:55 +00:00
|
|
|
* Mon Apr 28 2008 Martin Stransky <stransky@redhat.com> 1.0.16-3
|
|
|
|
- Added alsa-info.sh script to /usr/bin/alsa-info
|
|
|
|
|
2008-02-20 03:31:18 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.16-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-02-18 10:40:32 +00:00
|
|
|
* Mon Feb 18 2008 Martin Stransky <stransky@redhat.com> 1.0.16-1
|
|
|
|
- updated to 1.0.16 final
|
|
|
|
|
2008-01-21 14:19:16 +00:00
|
|
|
* Tue Jan 15 2008 Mikel Ward <mikel@mikelward.com>
|
|
|
|
- add salsa man page
|
|
|
|
|
2007-10-29 07:45:41 +00:00
|
|
|
* Mon Oct 29 2007 Martin Stransky <stransky@redhat.com> 1.0.15-1
|
|
|
|
- updated to 1.0.15 final
|
|
|
|
|
2007-10-01 09:54:09 +00:00
|
|
|
* Mon Oct 1 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.4.rc1
|
|
|
|
- moved saved volume settings back to /etc/alsa
|
|
|
|
(per discussion at #293301)
|
|
|
|
|
2007-09-24 14:56:44 +00:00
|
|
|
* Mon Sep 24 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.3.rc1
|
|
|
|
- fixed #303151 - wrong salsa dir in /etc/udev/rules.d/90-alsa.rules
|
|
|
|
|
2007-09-20 15:09:25 +00:00
|
|
|
* Thu Sep 20 2007 Matthias Saou <http://freshrpms.net/> 1.0.15-0.2.rc1
|
|
|
|
- Update License field.
|
|
|
|
- Mark udev rule as config.
|
|
|
|
- Use find_lang macro again to include translations (why was it removed?).
|
|
|
|
|
2007-09-19 12:26:53 +00:00
|
|
|
* Wed Sep 19 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.1.rc1
|
|
|
|
- new upstream
|
|
|
|
- moved saved volume settings to /var/lib (#293301)
|
|
|
|
- patched alsactl for that (#255421)
|
|
|
|
|
2007-08-16 11:43:55 +00:00
|
|
|
* Thu Aug 16 2007 Martin Stransky <stransky@redhat.com> 1.0.14-2
|
|
|
|
- added an entry to alsaunmute for HP xw4550 (#252171)
|
|
|
|
|
2007-07-25 10:45:00 +00:00
|
|
|
* Wed Jul 25 2007 Martin Stransky <stransky@redhat.com> 1.0.14-1
|
|
|
|
- release bump
|
|
|
|
|
2007-06-07 10:18:41 +00:00
|
|
|
* Thu Jun 7 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.8
|
|
|
|
- new upstream
|
|
|
|
|
2007-05-30 13:22:33 +00:00
|
|
|
* Wed May 30 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.7.rc2
|
|
|
|
- updated alsanumute for Siemens Lifebook S7020 (#241639)
|
|
|
|
- unmute Master Mono for all drivers
|
|
|
|
|
2007-05-02 12:49:40 +00:00
|
|
|
* Wed May 2 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.6.rc2
|
|
|
|
- added fix for #238442 (unmute Mono channel for w4550,
|
|
|
|
xw4600, xw6600, and xw8600)
|
|
|
|
|
2007-04-18 12:28:22 +00:00
|
|
|
* Wed Apr 18 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.5.rc2
|
|
|
|
- added more funcionality to salsa (save/load sound settings),
|
|
|
|
moved volume settings to /etc/alsa/
|
|
|
|
|
2007-04-10 11:22:40 +00:00
|
|
|
* Thu Apr 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.4.rc2
|
|
|
|
- added support for large files
|
|
|
|
- minor fix in alsaunmute
|
|
|
|
- fixed #209239 - alsaconf: Stale language-dependent files
|
2007-04-10 11:58:19 +00:00
|
|
|
- fixed #233765 - alsa-utils : unowned directories
|
2007-04-10 11:22:40 +00:00
|
|
|
|
2007-01-19 13:07:15 +00:00
|
|
|
* Fri Jan 19 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.3.rc2
|
|
|
|
- new upstream
|
|
|
|
|
2007-01-10 10:24:44 +00:00
|
|
|
* Wed Jan 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.2.rc1
|
|
|
|
- added a config line for hda-intel driver
|
|
|
|
|
2006-12-11 22:12:08 +00:00
|
|
|
* Mon Dec 11 2006 Martin Stransky <stransky@redhat.com> 1.0.14-0.1.rc1
|
|
|
|
- new upstream
|
|
|
|
|
2006-10-02 08:15:39 +00:00
|
|
|
* Mon Oct 2 2006 Martin Stransky <stransky@redhat.com> 1.0.12-3
|
|
|
|
- fix for #207384 - Audio test fails during firstboot
|
|
|
|
|
2006-08-25 10:47:56 +00:00
|
|
|
* Fri Aug 25 2006 Martin Stransky <stransky@redhat.com> 1.0.12-2
|
|
|
|
- new upstream
|
|
|
|
|
2006-08-07 12:49:58 +00:00
|
|
|
* Mon Aug 07 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc2
|
|
|
|
- new upstream
|
|
|
|
|
2006-07-20 13:36:29 +00:00
|
|
|
* Thu Jul 20 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc1
|
|
|
|
- new upstream
|
|
|
|
|
2006-07-12 05:08:17 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
|
|
|
|
- rebuild
|
|
|
|
|
2006-05-30 08:04:46 +00:00
|
|
|
* Tue May 30 2006 Martin Stransky <stransky@redhat.com> 1.0.11-7
|
|
|
|
- new upstream
|
|
|
|
|
2006-05-03 08:46:12 +00:00
|
|
|
* Wed May 3 2006 Martin Stransky <stransky@redhat.com> 1.0.11-6.rc2
|
|
|
|
- removed HW specific switch - it should be set by driver
|
|
|
|
|
2006-04-06 09:00:49 +00:00
|
|
|
* Thu Apr 6 2006 Martin Stransky <stransky@redhat.com> 1.0.11-5.rc2
|
2006-03-24 09:57:50 +00:00
|
|
|
- fixed rules file (#186494)
|
2006-04-06 08:52:39 +00:00
|
|
|
- fixed Audigi mixer switch (#187807)
|
2006-03-24 09:57:50 +00:00
|
|
|
|
2006-02-20 16:44:06 +00:00
|
|
|
* Mon Feb 20 2006 Martin Stransky <stransky@redhat.com> 1.0.11-3.rc2
|
|
|
|
- removed autoreconf
|
|
|
|
|
2006-02-11 01:34:47 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-2.rc2.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 10:52:22 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-2.rc2.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-01-25 09:53:26 +00:00
|
|
|
* Wed Jan 25 2006 Martin Stransky <stransky@redhat.com> 1.0.11-2.rc2
|
|
|
|
- added volume option to alsaunmute utility (for s-c-s)
|
|
|
|
|
2006-01-12 14:17:30 +00:00
|
|
|
* Thu Jan 12 2006 Martin Stransky <stransky@redhat.com> 1.0.11-1.rc2
|
|
|
|
- new upstream
|
|
|
|
|
2005-12-09 22:39:33 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-11-24 13:47:29 +00:00
|
|
|
* Thu Nov 24 2005 Martin Stransky <stransky@redhat.com> 1.0.10rf-1
|
|
|
|
- new upstream version
|
2005-11-10 09:12:44 +00:00
|
|
|
- added alias for snd-azx
|
|
|
|
|
2005-11-09 13:25:58 +00:00
|
|
|
* Wed Nov 9 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-2
|
|
|
|
- fix for #169292 - RHEL4U2 xw4300 IntelHD internal speakers muted by default
|
|
|
|
|
2005-09-27 15:31:22 +00:00
|
|
|
* Tue Sep 27 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-1
|
|
|
|
- new upstream version
|
|
|
|
|
2005-08-23 10:51:22 +00:00
|
|
|
* Tue Aug 23 2005 Martin Stransky <stransky@redhat.com> 1.0.9-5
|
|
|
|
- unmute External Amplifier by default (#166153)
|
|
|
|
|
2005-07-13 19:03:02 +00:00
|
|
|
* Wed Jul 13 2005 Bill Nottingham <notting@redhat.com> 1.0.9-4
|
|
|
|
- migrate the alsa restore program to a udev rule, not a dev.d program
|
|
|
|
- conflict with appropriate udev
|
2005-07-21 14:45:20 +00:00
|
|
|
- move alsaunmute, alsacard to /bin
|
2005-07-13 19:03:02 +00:00
|
|
|
|
|
|
|
* Mon Jul 11 2005 Martin Stransky <stransky@redhat.com> 1.0.9-3
|
2005-07-11 13:11:40 +00:00
|
|
|
- New alsaunmute utility
|
|
|
|
- Add autoconf to BuildRequires (#162483)
|
|
|
|
|
2005-06-16 09:39:07 +00:00
|
|
|
* Thu Jun 16 2005 Martin Stransky <stransky@redhat.com> 1.0.9-2
|
|
|
|
- New upstream version
|
|
|
|
|
2005-05-30 15:41:45 +00:00
|
|
|
* Mon May 30 2005 Martin Stransky <stransky@redhat.com> 1.0.9-1
|
|
|
|
- New upstream version.
|
|
|
|
- moved alsacard utility from alsa-lib to alsa-tools
|
|
|
|
|
2005-05-16 20:44:56 +00:00
|
|
|
* Mon May 16 2005 Bill Nottingham <notting@redhat.com> 1.0.9rc2-2
|
|
|
|
- make sure 'Wave' playback channel isn't muted (#157850)
|
|
|
|
|
2005-04-25 10:39:04 +00:00
|
|
|
* Mon Apr 25 2005 Martin Stransky <stransky@redhat.com> 1.0.9rc2-1
|
|
|
|
- New upstream version
|
2007-09-20 15:09:25 +00:00
|
|
|
- add %%find_lang macro (#155719)
|
2005-04-25 10:39:04 +00:00
|
|
|
|
2005-04-01 22:25:04 +00:00
|
|
|
* Fri Apr 1 2005 Bill Nottingham <notting@redhat.com> 1.0.8-4
|
|
|
|
- replace the dev.d script with a program that calls alsactl to
|
|
|
|
restore the volume if there is a saved config, and just unmutes
|
|
|
|
the playback channels if there isn't one (#132575)
|
|
|
|
|
2005-03-07 14:24:27 +00:00
|
|
|
* Mon Mar 7 2005 Martin Stransky <stransky@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Feb 16 2005 Martin Stransky <stransky@redhat.com> 1.0.8-2
|
2005-02-16 13:09:09 +00:00
|
|
|
- fix #148011 (add gettext-devel to BuildRequires)
|
|
|
|
- add $RPM_OPT_FLAGS to CFLAGS
|
|
|
|
|
2005-01-26 13:23:17 +00:00
|
|
|
* Wed Jan 26 2005 Martin Stransky <stransky@redhat.com> 1.0.8-1
|
|
|
|
- update to 1.0.8
|
|
|
|
- temporarily removed alsa-lauch.patch
|
|
|
|
|
2005-01-08 06:18:20 +00:00
|
|
|
* Sat Jan 08 2005 Colin Walters <walters@redhat.com> 1.0.7-2
|
|
|
|
- New patch alsa-utils-1.0.7-alsa-launch.patch, adds the
|
|
|
|
alsa-launch command.
|
|
|
|
- New source file xinit-alsa-launch.sh, integrates alsa-launch
|
|
|
|
into X startup
|
|
|
|
- BR xorg-x11-devel
|
|
|
|
|
2005-01-06 18:07:16 +00:00
|
|
|
* Thu Jan 06 2005 Colin Walters <walters@redhat.com> 1.0.7-1
|
|
|
|
- New upstream version
|
|
|
|
|
2004-10-20 03:11:19 +00:00
|
|
|
* Tue Oct 19 2004 Bill Nottingham <notting@redhat.com> 1.0.6-3
|
|
|
|
- tweak dev.d sound restore script (#133535, revisited)
|
|
|
|
|
2004-10-14 21:58:30 +00:00
|
|
|
* Thu Oct 14 2004 Bill Nottingham <notting@redhat.com> 1.0.6-2
|
|
|
|
- move alsactl to /sbin
|
|
|
|
- include a dev.d script for mixer restoring (#133535)
|
|
|
|
|
2004-09-09 02:57:16 +00:00
|
|
|
* Mon Aug 30 2004 Bill Nottingham <notting@redhat.com> 1.0.6-1
|
|
|
|
- update to 1.0.6
|
|
|
|
|
2004-09-09 02:57:13 +00:00
|
|
|
* Fri Jul 2 2004 Bill Nottingham <notting@redhat.com> 1.0.5-1
|
|
|
|
- update to 1.0.5
|
|
|
|
|
2004-09-09 02:56:49 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 02:56:47 +00:00
|
|
|
* Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> 1.0.3-1
|
|
|
|
- update to 1.0.3
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 1.0.2-1
|
|
|
|
- update to 1.0.2
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Wed Dec 17 2003 Bill Nottingham <notting@redhat.com> 1.0.0-0.rc2
|
|
|
|
- import fedora.us RPM, take out save-alsamixer & alsaconf for now
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Thu Dec 11 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.4.rc2
|
|
|
|
- rename alsamixer-saver save-alsamixer
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Mon Dec 8 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.3.rc2
|
|
|
|
- Integrate Michael Schwendt's script alsamixer-saver; Still not quite sure if
|
|
|
|
this script is the right way -- but mine didn't work...
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Sat Dec 6 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.2.rc2
|
|
|
|
- Update to 1.0.0rc2
|
|
|
|
- added alsamixer Script -- stores settings on shutdown, does nothing on startup
|
|
|
|
- some minor corrections in spec-file style
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Wed Dec 3 2003 Thorsten Leemhuis <fedora[AT]leemhuis.info> 1.0.0-0.fdr.0.1.rc1
|
|
|
|
- Update to 1.0.0rc1
|
2004-09-09 02:55:32 +00:00
|
|
|
|
2004-09-09 02:55:41 +00:00
|
|
|
* Wed Aug 6 2003 Dams <anvil[AT]livna.org> 0:utils-0.fdr.1
|
|
|
|
- Initial build.
|