2008-09-10 13:42:34 +00:00
|
|
|
%define prever rc3
|
|
|
|
%define prever_dot .rc3
|
|
|
|
#define postver a
|
2005-05-30 15:33:26 +00:00
|
|
|
|
2007-09-24 13:19:19 +00:00
|
|
|
Summary: The Advanced Linux Sound Architecture (ALSA) library
|
2005-10-03 12:40:40 +00:00
|
|
|
Name: alsa-lib
|
2008-09-10 13:42:34 +00:00
|
|
|
Version: 1.0.18
|
2008-09-11 08:26:45 +00:00
|
|
|
Release: 5%{?prever_dot}%{?dist}
|
2007-09-20 14:52:53 +00:00
|
|
|
License: LGPLv2+
|
2005-10-03 12:40:40 +00:00
|
|
|
Group: System Environment/Libraries
|
2007-09-20 14:52:53 +00:00
|
|
|
Source: ftp://ftp.alsa-project.org/pub/lib/%{name}-%{version}%{?prever}%{?postver}.tar.bz2
|
2008-09-10 13:42:34 +00:00
|
|
|
Source10: asound.conf
|
2008-07-21 09:56:59 +00:00
|
|
|
Patch0: alsa-lib-1.0.17-config.patch
|
2007-09-24 13:15:26 +00:00
|
|
|
Patch2: alsa-lib-1.0.14-glibc-open.patch
|
2008-04-04 08:22:34 +00:00
|
|
|
Patch4: alsa-lib-1.0.16-no-dox-date.patch
|
2005-10-03 12:40:40 +00:00
|
|
|
URL: http://www.alsa-project.org/
|
2007-09-20 14:52:53 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
2004-09-09 02:54:24 +00:00
|
|
|
BuildRequires: doxygen
|
2007-09-20 14:52:53 +00:00
|
|
|
Requires(post): /sbin/ldconfig, coreutils
|
2004-09-09 02:54:24 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI
|
|
|
|
functionality to the Linux operating system.
|
|
|
|
|
|
|
|
This package includes the ALSA runtime libraries to simplify application
|
|
|
|
programming and provide higher level functionality as well as support for
|
|
|
|
the older OSS API, providing binary compatibility for most OSS programs.
|
|
|
|
|
|
|
|
%package devel
|
2007-09-20 14:52:53 +00:00
|
|
|
Summary: Development files from the ALSA library
|
2004-09-09 02:54:24 +00:00
|
|
|
Group: Development/Libraries
|
2007-09-20 14:52:53 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2004-09-09 02:54:24 +00:00
|
|
|
Requires: pkgconfig
|
2007-09-20 14:52:53 +00:00
|
|
|
|
2004-09-09 02:54:24 +00:00
|
|
|
%description devel
|
|
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI
|
|
|
|
functionality to the Linux operating system.
|
|
|
|
|
|
|
|
This package includes the ALSA development libraries for developing
|
|
|
|
against the ALSA libraries and interfaces.
|
|
|
|
|
|
|
|
%prep
|
2008-08-15 16:22:42 +00:00
|
|
|
%setup -q -n %{name}-%{version}%{?prever}%{?postver}
|
2007-08-16 10:48:00 +00:00
|
|
|
%patch0 -p1 -b .config
|
|
|
|
%patch2 -p1 -b .glibc-open
|
2008-04-04 08:22:34 +00:00
|
|
|
%patch4 -p1 -b .no-dox-date
|
2004-09-09 02:54:24 +00:00
|
|
|
|
|
|
|
%build
|
2008-09-10 13:42:34 +00:00
|
|
|
%configure --disable-aload
|
2007-09-20 14:52:53 +00:00
|
|
|
# Remove useless /usr/lib64 rpath on 64bit archs
|
|
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
2004-09-09 02:54:24 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
make doc
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
make DESTDIR=%{buildroot} install
|
|
|
|
|
2007-09-20 14:52:53 +00:00
|
|
|
# We need the library to be available even before /usr might be mounted
|
2004-10-14 19:30:06 +00:00
|
|
|
mkdir -p %{buildroot}/%{_lib}
|
|
|
|
mv %{buildroot}%{_libdir}/libasound.so.* %{buildroot}/%{_lib}
|
|
|
|
ln -snf ../../%{_lib}/libasound.so.2 %{buildroot}%{_libdir}/libasound.so
|
|
|
|
|
2008-09-10 13:42:34 +00:00
|
|
|
# Install global configuration files
|
|
|
|
install -p -m 644 %{SOURCE10} %{buildroot}/etc
|
|
|
|
|
2004-09-09 02:54:24 +00:00
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
2007-09-24 13:15:26 +00:00
|
|
|
%post -p /sbin/ldconfig
|
2004-09-09 02:54:24 +00:00
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
2007-09-20 14:52:53 +00:00
|
|
|
%defattr(-,root,root,-)
|
2004-09-09 02:54:24 +00:00
|
|
|
%doc COPYING ChangeLog TODO doc/asoundrc.txt
|
2008-09-10 13:42:34 +00:00
|
|
|
%config %{_sysconfdir}/asound.conf
|
2004-10-14 19:30:06 +00:00
|
|
|
/%{_lib}/libasound.so.*
|
2007-09-20 14:52:53 +00:00
|
|
|
%{_bindir}/aserver
|
|
|
|
%{_libdir}/alsa-lib/
|
2008-09-10 13:49:42 +00:00
|
|
|
%{_datadir}/alsa/
|
2004-09-09 02:54:24 +00:00
|
|
|
|
|
|
|
%files devel
|
2007-09-20 14:52:53 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc doc/doxygen/
|
|
|
|
%{_includedir}/alsa/
|
2004-09-09 02:54:24 +00:00
|
|
|
%{_includedir}/sys/asoundlib.h
|
|
|
|
%{_libdir}/libasound.so
|
|
|
|
%exclude %{_libdir}/libasound.la
|
|
|
|
%{_libdir}/pkgconfig/alsa.pc
|
|
|
|
%{_datadir}/aclocal/alsa.m4
|
|
|
|
|
|
|
|
%changelog
|
2008-09-11 08:26:45 +00:00
|
|
|
* Wed Sep 10 2008 Jaroslav Kysela <jkysela@redhat.com> - 1.0.18-5.rc3
|
|
|
|
- move alsactl.conf to alsa-utils package
|
|
|
|
|
2008-09-10 16:41:33 +00:00
|
|
|
* Wed Sep 10 2008 Jaroslav Kysela <jkysela@redhat.com> - 1.0.18-4.rc3
|
|
|
|
- fixed spec file
|
|
|
|
- fixed package version number (1.0.18-3.rc3 was tagged by accident)
|
|
|
|
|
2008-09-10 13:42:34 +00:00
|
|
|
* Wed Sep 10 2008 Jaroslav Kysela <jkysela@redhat.com> - 1.0.18-1.rc3
|
|
|
|
- updated to 1.0.18rc3
|
|
|
|
- moved /etc/alsa configuration files back to /usr/share/alsa
|
|
|
|
- removed pulse default patch (moved to /etc/asound.conf)
|
|
|
|
- added /etc/asound.conf and /etc/alsa/alsactl.conf
|
|
|
|
- disable /dev/aload device checking (obsolete for 2.6 kernels)
|
|
|
|
|
2008-08-15 16:22:42 +00:00
|
|
|
* Fri Aug 15 2008 Jaroslav Kysela <jkysela@redhat.com> - 1.0.17-3
|
|
|
|
- updated to 1.0.17a
|
|
|
|
|
2008-07-21 15:33:26 +00:00
|
|
|
* Mon Jul 21 2008 Jaroslav Kysela <jkysela@redhat.com> - 1.0.17-2
|
|
|
|
- added four patches from upstream (to better support pulseaudio)
|
|
|
|
|
2008-07-21 09:35:33 +00:00
|
|
|
* Mon Jul 21 2008 Jaroslav Kysela <jkysela@redhat.com> - 1.0.17-1
|
|
|
|
- updated to 1.0.17 final
|
|
|
|
|
2008-04-04 08:22:34 +00:00
|
|
|
* Thu Apr 3 2008 Jim Radford <radford@blackbean.org> - 1.0.16-3
|
|
|
|
- Fix multilib doxygen conflicts
|
|
|
|
|
2008-02-20 03:30:26 +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:33:27 +00:00
|
|
|
* Mon Feb 18 2008 Martin Stransky <stransky@redhat.com> 1.0.16-1
|
|
|
|
- updated to 1.0.16 final
|
|
|
|
|
2007-10-29 07:41:53 +00:00
|
|
|
* Mon Oct 29 2007 Martin Stransky <stransky@redhat.com> 1.0.15-1
|
|
|
|
- updated to 1.0.15 final
|
|
|
|
|
2007-10-17 23:00:08 +00:00
|
|
|
* Wed Oct 17 2007 Lennart Poettering <lpoetter@redhat.com> 1.0.15-0.3.rc3
|
|
|
|
- Add hook to /etc/alsa/alsa.conf so that /etc/alsa/default-pulse.conf
|
|
|
|
is loaded when it exists. This allows us to enable the pulse plugin by
|
|
|
|
default depending on whether it is installed or not.
|
|
|
|
|
2007-10-15 12:46:28 +00:00
|
|
|
* Mon Oct 15 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.3.rc3
|
|
|
|
- updated to 1.0.15rc3
|
|
|
|
|
2007-09-20 14:52:53 +00:00
|
|
|
* Thu Sep 20 2007 Matthias Saou <http://freshrpms.net/> 1.0.15-0.2.rc2
|
|
|
|
- Update License field.
|
|
|
|
- Use configdir instead of sysconfdir hacks (cleaner).
|
|
|
|
- Remove redundant optflags overriding.
|
|
|
|
- Switch to using main "version", and merge "postver" since this is the right
|
|
|
|
way of doing things (see NamingGuidelines#NonNumericRelease).
|
|
|
|
- Remove static library.
|
|
|
|
- Mark all of /etc/alsa as config, but not "noreplace".
|
|
|
|
- Remove useless rpath on 64bit archs.
|
|
|
|
|
2007-09-19 09:54:21 +00:00
|
|
|
* Wed Sep 19 2007 Martin Stransky <stransky@redhat.com> 1.0.15-0.1.rc2
|
|
|
|
- updated to 1.0.15rc2
|
|
|
|
|
2007-08-16 14:31:06 +00:00
|
|
|
* Thu Aug 16 2007 Martin Stransky <stransky@redhat.com> 1.0.14-3
|
|
|
|
- updated to 1.0.14a
|
|
|
|
|
2007-08-16 10:48:00 +00:00
|
|
|
* Wed Aug 15 2007 Lennart Poettering <lpoetter@redhat.com> 1.0.14-2
|
|
|
|
- fixed #251307 - fix plugindir directory specification
|
|
|
|
- fix build with newer glibc where open() is a macro
|
|
|
|
|
2007-07-25 10:42:01 +00:00
|
|
|
* Wed Jul 25 2007 Martin Stransky <stransky@redhat.com> 1.0.14-1
|
|
|
|
- bumped release number
|
|
|
|
- fixed #246011 - alsa-lib should own /usr/lib/alsa-lib/smixer
|
|
|
|
|
2007-06-07 10:05:33 +00:00
|
|
|
* Thu Jun 7 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.5
|
|
|
|
- new upstream
|
|
|
|
|
2007-04-10 12:29:19 +00:00
|
|
|
* Tue Apr 10 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.4.rc3
|
|
|
|
- added fix for #233764 - unowned directories
|
|
|
|
|
2007-03-08 11:31:12 +00:00
|
|
|
* Thu Mar 8 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.3.rc3
|
|
|
|
- new upstream
|
|
|
|
|
2007-01-19 13:04:42 +00:00
|
|
|
* Fri Jan 19 2007 Martin Stransky <stransky@redhat.com> 1.0.14-0.2.rc2
|
|
|
|
- new upstream
|
|
|
|
|
2006-12-11 22:17:01 +00:00
|
|
|
* Mon Dec 11 2006 Martin Stransky <stransky@redhat.com> 1.0.14-0.1.rc1
|
|
|
|
- new upstream
|
|
|
|
|
2006-08-25 10:45:31 +00:00
|
|
|
* Fri Aug 25 2006 Martin Stransky <stransky@redhat.com> 1.0.12-2
|
|
|
|
- new upstream
|
|
|
|
|
2006-08-07 12:28:08 +00:00
|
|
|
* Mon Aug 07 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc2
|
|
|
|
- new upstream
|
|
|
|
|
2006-07-20 13:15:15 +00:00
|
|
|
* Thu Jul 20 2006 Martin Stransky <stransky@redhat.com> 1.0.12-1.rc1
|
|
|
|
- new upstream
|
|
|
|
- removed ainit (no longer needed in the new upstream)
|
|
|
|
|
2006-07-19 14:51:53 +00:00
|
|
|
* Wed Jul 19 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-6.rc2
|
2006-07-19 14:50:50 +00:00
|
|
|
- fix release for upgrade path
|
|
|
|
|
2006-07-12 05:08:06 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-3.rc2.2.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-02-11 01:33:41 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-3.rc2.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 10:52:14 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.11-3.rc2.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-02-03 12:50:35 +00:00
|
|
|
* Fri Feb 3 2006 Martin Stransky <stransky@redhat.com> 1.0.11-3.rc2
|
|
|
|
- fix for #179446 - don't remove old SHM memory/keys during login
|
|
|
|
|
2006-01-13 15:52:56 +00:00
|
|
|
* Fri Jan 13 2006 Martin Stransky <stransky@redhat.com> 1.0.11-2.rc2
|
|
|
|
- fix for #169729 - Kernel update makes snd-atiixp-modem & slmodemd fail
|
|
|
|
- new ainit (0.7) should fix some problems with root users
|
|
|
|
|
2006-01-12 14:05:22 +00:00
|
|
|
* Tue Jan 12 2006 Martin Stransky <stransky@redhat.com> 1.0.11-1.rc2
|
|
|
|
- new upstream version
|
|
|
|
|
2006-01-03 20:20:15 +00:00
|
|
|
* Tue Jan 3 2006 Jesse Keating <jkeating@redhat.com> 1.0.10rf-4
|
|
|
|
- rebuilt
|
|
|
|
|
2005-12-09 10:23:14 +00:00
|
|
|
* Fri Dec 9 2005 Martin Stransky <stransky@redhat.com> 1.0.10rf-3
|
|
|
|
- rights for shared memory have been moved to config files
|
|
|
|
|
2005-12-02 12:04:59 +00:00
|
|
|
* Fri Dec 2 2005 Martin Stransky <stransky@redhat.com> 1.0.10rf-2
|
|
|
|
- fix in spec file (#159046)
|
|
|
|
|
2005-11-24 14:42:19 +00:00
|
|
|
* Thu Nov 24 2005 Martin Stransky <stransky@redhat.com> 1.0.10rf-1
|
|
|
|
- new upstream version
|
|
|
|
|
2005-10-03 12:40:40 +00:00
|
|
|
* Tue Sep 27 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-2
|
|
|
|
- fixes in config files, new ainit (for #166086)
|
|
|
|
|
2005-09-27 15:27:23 +00:00
|
|
|
* Tue Sep 27 2005 Martin Stransky <stransky@redhat.com> 1.0.10rc1-1
|
|
|
|
- new upstream version
|
|
|
|
|
2005-07-20 13:47:19 +00:00
|
|
|
* Wed Jul 20 2005 Martin Stransky <stransky@redhat.com> 1.0.9rf-3
|
|
|
|
- check for /var/run/console/console.lock (#162982)
|
|
|
|
|
2005-06-20 11:58:14 +00:00
|
|
|
* Thu Jun 16 2005 Martin Stransky <stransky@redhat.com> 1.0.9rf-2
|
|
|
|
- fix for #159411
|
|
|
|
|
2005-05-30 15:33:26 +00:00
|
|
|
* Mon May 30 2005 Martin Stransky <stransky@redhat.com> 1.0.9rf-1
|
|
|
|
- New upstream version
|
|
|
|
- moved alsacard utility to alsa-utils
|
|
|
|
|
2005-05-27 14:24:02 +00:00
|
|
|
* Fri May 27 2005 Martin Stransky <stransky@redhat.com> 1.0.9rc4-2
|
|
|
|
- alsacard utility for s-c-s
|
|
|
|
|
2005-05-24 20:43:46 +00:00
|
|
|
* Tue May 24 2005 Bill Nottingham <notting@redhat.com> 1.0.9rc4-1
|
|
|
|
- update to 1.0.9rc4 (#157180, #158547)
|
|
|
|
|
2005-05-18 13:07:49 +00:00
|
|
|
* Wed May 18 2005 Martin Stransky <stransky@redhat.com> 1.0.9rc2-5
|
|
|
|
- fix for #130593
|
|
|
|
- new ainit (dmix/dsnoop is default only for cards which really need it)
|
|
|
|
- fix dsnoop
|
|
|
|
- add fix for mixer (from https://bugs.gentoo.org/attachment.cgi?id=58918)
|
|
|
|
|
2005-05-04 17:51:46 +00:00
|
|
|
* Wed May 04 2005 Than Ngo <than@redhat.com> 1.0.9rc2-4
|
|
|
|
- apply patch to fix artsd daemon crash #156592
|
|
|
|
|
2005-05-03 11:47:58 +00:00
|
|
|
* Tue May 3 2005 Martin Stransky <stransky@redhat.com> 1.0.9rc2-3
|
|
|
|
- fixed ainit (#156278, #156505)
|
|
|
|
|
2005-04-28 16:23:13 +00:00
|
|
|
* Thu Apr 28 2005 David Woodhouse <dwmw2@redhat.com> 1.0.9rc2-2
|
|
|
|
- Fix bogus use of fgetc() in ainit. (#156278)
|
|
|
|
|
2005-04-27 12:41:25 +00:00
|
|
|
* Fri Apr 22 2005 Martin Stransky <stransky@redhat.com> 1.0.9rc2-1
|
|
|
|
- updated to 1.0.9rc2
|
2007-09-24 13:15:26 +00:00
|
|
|
- add ainit tool
|
2005-04-27 12:41:25 +00:00
|
|
|
- dmix is now default pcm device
|
|
|
|
|
2005-03-07 15:47:35 +00:00
|
|
|
* Mon Mar 7 2005 Martin Stransky <stransky@redhat.com> 1.0.8-4.devel
|
|
|
|
- gcc4 patch
|
2005-03-07 14:25:52 +00:00
|
|
|
|
2005-02-16 13:17:56 +00:00
|
|
|
* Wed Feb 15 2005 Martin Stransky <stransky@redhat.com> 1.0.8-3.devel
|
|
|
|
- add $RPM_OPT_FLAGS to CFLAGS
|
|
|
|
|
2005-02-11 09:25:37 +00:00
|
|
|
* Fri Feb 11 2005 Martin Stransky <stransky@redhat.com> 1.0.8-2.devel
|
|
|
|
- add alpha patch (#147388, thx to Sergey Tikhonov)
|
|
|
|
- fix alsa-mixer on ICH6 system (#146607)
|
|
|
|
|
2005-01-26 13:18:10 +00:00
|
|
|
* Wed Jan 26 2005 Martin Stransky <stransky@redhat.com> 1.0.8-1.devel
|
|
|
|
- update to 1.0.8
|
|
|
|
- temporarily removed alsa-lib-1.0.7-asym-config.patch
|
|
|
|
|
2005-01-10 12:21:01 +00:00
|
|
|
* Mon Jan 10 2005 Martin Stransky <stransky@redhat.com> 1.0.7-3.devel
|
|
|
|
- fix #144518 - stack protection control
|
|
|
|
|
2005-01-08 05:59:47 +00:00
|
|
|
* Sat Jan 08 2005 Colin Walters <walters@redhat.com> 1.0.7-2
|
|
|
|
- New patch alsa-lib-1.0.7-asym-config.patch, sets up asym
|
|
|
|
in the default config file and makes it easy to make it
|
|
|
|
the default via an environment variable. Also increases the
|
|
|
|
default dmix buffer variables.
|
|
|
|
- Mark /etc/alsa/alsa.conf as a config file, and use sysconfdir
|
|
|
|
variable
|
|
|
|
|
2005-01-06 18:07:10 +00:00
|
|
|
* Thu Jan 06 2005 Colin Walters <walters@redhat.com> 1.0.7-1
|
|
|
|
- New upstream version
|
|
|
|
|
2004-12-01 01:12:38 +00:00
|
|
|
* Tue Nov 30 2004 Bill Nottingham <notting@redhat.com> 1.0.6-6
|
|
|
|
- fix bad assertion that trips up gstreamer (fixes GNOME bug #159647)
|
2004-12-01 03:42:30 +00:00
|
|
|
- undef gets in case it's a macro (#141423)
|
2004-12-01 01:12:38 +00:00
|
|
|
|
2004-10-14 20:46:52 +00:00
|
|
|
* Thu Oct 14 2004 Bill Nottingham <notting@redhat.com> 1.0.6-3
|
2004-10-14 19:30:06 +00:00
|
|
|
- move libraries & data to root fs, needed at boot time
|
|
|
|
|
2004-09-09 02:56:11 +00:00
|
|
|
* Mon Aug 30 2004 Bill Nottingham <notting@redhat.com> 1.0.6-1
|
|
|
|
- update to 1.0.6
|
|
|
|
|
2004-09-09 02:56:05 +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:02 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 02:55:45 +00:00
|
|
|
* Mon May 17 2004 Colin Walters <walters@redhat.com> 1.0.4-1
|
|
|
|
- New upstream version
|
|
|
|
|
2004-09-09 02:55:38 +00:00
|
|
|
* Mon May 03 2004 Colin Walters <walters@redhat.com> 1.0.3a-2
|
|
|
|
- Add patch to avoid assert()ing on errors
|
|
|
|
|
2004-09-09 02:55:29 +00:00
|
|
|
* Thu Mar 11 2004 Bill Nottingham <notting@redhat.com> 1.0.3a-1
|
|
|
|
- update to 1.0.3a
|
|
|
|
|
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 02:54:24 +00:00
|
|
|
* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 1.0.2-1
|
|
|
|
- update to 1.0.2
|
|
|
|
|
|
|
|
* Thu Dec 11 2003 Bill Nottingham <notting@redhat.com> 1.0.0rc2-1
|
|
|
|
- update to 1.0.0rc2
|
|
|
|
|
|
|
|
* Mon Dec 1 2003 Bill Nottingham <notting@redhat.com> 0.9.8-3
|
|
|
|
- fix various specfile issues, including License: tag (#111153)
|
|
|
|
|
|
|
|
* Wed Nov 26 2003 Than Ngo <than@redhat.com> 0.9.8-2
|
|
|
|
- fixed dependant libraries check on x86_64
|
|
|
|
|
|
|
|
* Mon Nov 4 2003 Bill Nottingham <notting@redhat.com> - 0.9.8-1
|
|
|
|
- initial build, modify spec file from Matthias Saou
|