Blame SPECS/pciutils.spec

19582b
Name:		pciutils
19582b
Version:	3.5.1
19582b
Release:	3%{?dist}
19582b
Source:		ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/%{name}-%{version}.tar.gz
19582b
Source1:        multilibconfigh
19582b
19582b
#change pci.ids directory to hwdata, fedora/rhel specific
19582b
Patch1:		pciutils-2.2.1-idpath.patch
19582b
19582b
#add support for directory with another pci.ids, rejected by upstream, rhbz#195327
19582b
Patch2:		pciutils-dir-d.patch
19582b
Patch3: pciutils-3.5.1-gen4speed.patch
19582b
19582b
License:	GPLv2+
19582b
URL:		http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml
19582b
BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
19582b
ExclusiveOS:	Linux
19582b
Requires:	hwdata
19582b
Requires:	%{name}-libs = %{version}-%{release}
19582b
BuildRequires:	sed, kmod-devel
19582b
Summary: PCI bus related utilities
19582b
Group: Applications/System
19582b
19582b
%description
19582b
The pciutils package contains various utilities for inspecting and
19582b
setting devices connected to the PCI bus. The utilities provided
19582b
require kernel version 2.1.82 or newer (which support the
19582b
/proc/bus/pci interface).
19582b
19582b
%package devel
19582b
Summary: Linux PCI development library
19582b
Group: Development/Libraries
19582b
Requires: zlib-devel pkgconfig %{name} = %{version}-%{release}
19582b
19582b
%description devel
19582b
This package contains a library for inspecting and setting
19582b
devices connected to the PCI bus.
19582b
19582b
%package libs
19582b
Summary: Linux PCI library
19582b
Group: System Environment/Libraries
19582b
19582b
%description libs
19582b
This package contains a library for inspecting and setting
19582b
devices connected to the PCI bus.
19582b
19582b
%package devel-static
19582b
Summary: Linux PCI static library
19582b
Group: System Environment/Libraries
19582b
Requires: %{name}-devel = %{version}-%{release}
19582b
19582b
%description devel-static
19582b
This package contains a static library for inspecting and setting
19582b
devices connected to the PCI bus.
19582b
19582b
%prep
19582b
%setup -q -n pciutils-%{version}
19582b
%patch1 -p1 -b .idpath
19582b
%patch2 -p1 -b .dird
19582b
%patch3 -p1 -b .gen4speed
19582b
19582b
%build
19582b
make SHARED="no" LIBKMOD="yes" ZLIB="no" STRIP="" OPT="$RPM_OPT_FLAGS" PREFIX="/usr" IDSDIR="/usr/share/hwdata" PCI_IDS="pci.ids" %{?_smp_mflags}
19582b
mv lib/libpci.a lib/libpci.a.toinstall
19582b
19582b
make clean
19582b
19582b
make SHARED="yes" LIBKMOD="yes" ZLIB="no" STRIP="" OPT="$RPM_OPT_FLAGS" PREFIX="/usr" LIBDIR="%{_libdir}" IDSDIR="/usr/share/hwdata" PCI_IDS="pci.ids" %{?_smp_mflags}
19582b
19582b
#fix lib vs. lib64 in libpci.pc (static Makefile is used)
19582b
sed -i "s|^libdir=.*$|libdir=%{_libdir}|" lib/libpci.pc
19582b
19582b
19582b
%install
19582b
rm -rf $RPM_BUILD_ROOT
19582b
19582b
install -d $RPM_BUILD_ROOT/{sbin,%{_sbindir},%{_mandir}/man8,%{_libdir},%{_libdir}/pkgconfig,%{_includedir}/pci}
19582b
19582b
install -p lspci setpci $RPM_BUILD_ROOT/%{_sbindir}
19582b
install -p update-pciids $RPM_BUILD_ROOT/%{_sbindir}
19582b
install -p -m 644 lspci.8 setpci.8 update-pciids.8 $RPM_BUILD_ROOT%{_mandir}/man8
19582b
install -p lib/libpci.so.* $RPM_BUILD_ROOT/%{_libdir}/
19582b
ln -s $(basename $RPM_BUILD_ROOT/%{_libdir}/*.so.*.*.*) $RPM_BUILD_ROOT%{_libdir}/libpci.so
19582b
19582b
mv lib/libpci.a.toinstall lib/libpci.a
19582b
install -p -m 644 lib/libpci.a $RPM_BUILD_ROOT%{_libdir}
19582b
/sbin/ldconfig -N $RPM_BUILD_ROOT/%{_libdir}
19582b
install -p lib/pci.h $RPM_BUILD_ROOT%{_includedir}/pci
19582b
install -p lib/header.h $RPM_BUILD_ROOT%{_includedir}/pci
19582b
install -p %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/pci/config.h
19582b
install -p lib/config.h $RPM_BUILD_ROOT%{_includedir}/pci/config.%{_lib}.h
19582b
install -p lib/types.h $RPM_BUILD_ROOT%{_includedir}/pci
19582b
install -p lib/libpci.pc $RPM_BUILD_ROOT%{_libdir}/pkgconfig
19582b
19582b
%post libs -p /sbin/ldconfig
19582b
19582b
%postun libs -p /sbin/ldconfig
19582b
19582b
%files
19582b
%defattr(-,root,root,-)
19582b
%doc README ChangeLog pciutils.lsm COPYING
19582b
%{_sbindir}/lspci
19582b
%{_sbindir}/setpci
19582b
%{_sbindir}/update-pciids
19582b
%{_mandir}/man8/*
19582b
19582b
%files libs
19582b
%doc COPYING
19582b
%defattr(-,root,root,-)
19582b
/%{_libdir}/libpci.so.*
19582b
19582b
%files devel-static
19582b
%defattr(-,root,root,-)
19582b
%{_libdir}/libpci.a
19582b
19582b
%files devel
19582b
%defattr(0644, root, root, 0755)
19582b
%{_libdir}/pkgconfig/libpci.pc
19582b
%{_libdir}/libpci.so
19582b
%{_includedir}/pci
19582b
19582b
%clean
19582b
rm -rf $RPM_BUILD_ROOT
19582b
19582b
%changelog
19582b
* Fri Oct 27 2017 Michal Hlavinka <mhlavink@redhat.com> - 3.5.1-3
19582b
- fix update-pciids url (#1493772)
19582b
19582b
* Mon Apr 03 2017 Michal Hlavinka <mhlavink@redhat.com> - 3.5.1-2
19582b
- show speed of gen4 pci cards (#1425167)
19582b
19582b
* Tue Jun 28 2016 Michal Hlavinka <mhlavink@redhat.com> - 3.5.1-1
19582b
- updated to 3.5.1
19582b
- adds support for 32-bit PCI domains (#1337658)
19582b
19582b
* Tue Jun 28 2016 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-5
19582b
- build with libkmod support enabled (#1304026)
19582b
19582b
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.2.1-4
19582b
- Mass rebuild 2014-01-24
19582b
19582b
* Wed Jan 08 2014 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-3
19582b
- fix lib vs libdir macros usage
19582b
19582b
* Wed Jan 08 2014 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-2
19582b
- pciutils needs explicit require for pciutils-libs
19582b
19582b
* Fri Jan 03 2014 Michal Hlavinka <mhlavink@redhat.com> - 3.2.1-1
19582b
- updated to 3.2.1
19582b
19582b
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.2.0-3
19582b
- Mass rebuild 2013-12-27
19582b
19582b
* Fri May 31 2013 Michal Hlavinka <mhlavink@redhat.com> - 3.2.0-2
19582b
- add aarch64 support (#969138)
19582b
19582b
* Mon Apr 22 2013 Michal Hlavinka <mhlavink@redhat.com> - 3.2.0-1
19582b
- updated to 3.2.0
19582b
19582b
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.10-3
19582b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
19582b
19582b
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.10-2
19582b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
19582b
19582b
* Tue Jun 26 2012 Michal Hlavinka <mhlavink@redhat.com> - 3.1.10-1
19582b
- updated to 3.1.10
19582b
19582b
* Mon Jan 16 2012 Michal Hlavinka <mhlavink@redhat.com> - 3.1.9-1
19582b
- updated to 3.1.9
19582b
19582b
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-2
19582b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
19582b
19582b
* Mon Oct 03 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.8-1
19582b
- updated to 3.1.8
19582b
19582b
* Thu Mar 17 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-6
19582b
- don't forget to close pci.ids directory
19582b
19582b
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.7-5
19582b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
19582b
19582b
* Wed Jan 26 2011 Dan Horák <dan[at]danny.cz> - 3.1.7-4
19582b
- fix the multilib header on s390x
19582b
19582b
* Tue Jan 18 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-3
19582b
- different approach to fix multilib issues
19582b
19582b
* Mon Jan 10 2011 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-2
19582b
- removed obsolete patches
19582b
19582b
* Mon Aug 30 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.7-1
19582b
- updated to 3.1.7
19582b
19582b
* Wed Jul 07 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-5
19582b
- follow licensing guideline update
19582b
19582b
* Thu Feb 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-4
19582b
- move update-pciids
19582b
19582b
* Thu Feb 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-3
19582b
- spec cleanup
19582b
19582b
* Wed Feb 03 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-2
19582b
- libpci moved to /lib
19582b
19582b
* Mon Jan 25 2010 Michal Hlavinka <mhlavink@redhat.com> - 3.1.6-1
19582b
- updated to 3.1.6
19582b
19582b
* Mon Nov 02 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-6
19582b
- spec cleanup
19582b
19582b
* Mon Oct 26 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-5
19582b
- fix build to enable -F option (#531020)
19582b
19582b
* Mon Oct 26 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-4
19582b
- enable direct hardware access method for 64bit architectures
19582b
19582b
* Mon Oct 12 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-3
19582b
- don't ship static library in -devel sub-package
19582b
19582b
* Tue Sep 01 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-2
19582b
- add COPYING to docs
19582b
19582b
* Tue Sep 01 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.4-1
19582b
- updated to 3.1.4
19582b
19582b
* Wed Jul 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.3-1
19582b
- updated to 3.1.3
19582b
19582b
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-6
19582b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
19582b
19582b
* Wed Apr 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 3.1.2-5
19582b
- add support for ARM
19582b
19582b
* Fri Feb 27 2009 Michal Hlavinka <mhlaivnk@redhat.com> - 3.1.2-4
19582b
- fix typo & rebuild
19582b
19582b
* Fri Feb 27 2009 Michal Hlavinka <mhlaivnk@redhat.com> - 3.1.2-3
19582b
- fix: lspci segfaults when pci.ids cannot be found (#487516)
19582b
19582b
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-2
19582b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
19582b
19582b
* Tue Feb 17 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.2-1
19582b
- version 3.1.2
19582b
- fix for the syntax error checks in setpci argument parser
19582b
19582b
* Wed Feb 04 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.1-1
19582b
- version 3.1.1
19582b
19582b
* Tue Jan 27 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.0-2
19582b
- fix typo in multilib patch - for s390x building
19582b
19582b
* Mon Jan 19 2009 Michal Hlavinka <mhlavink@redhat.com> 3.1.0-1
19582b
- version 3.1.0
19582b
19582b
* Tue Dec 09 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.3-1
19582b
- version 3.0.3
19582b
19582b
* Mon Sep 22 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.2-1
19582b
- version 3.0.2
19582b
19582b
* Fri Sep 19 2008 Michal Hlavinka <mhlavink@redhat.com> 3.0.1-1
19582b
- version 3.0.1
19582b
- add support for Super-H (sh3,sh4) (#446600)
19582b
- fix: broken -L in libpci.pc (#456469)
19582b
19582b
* Mon Sep 01 2008 Harald Hoyer <harald@redhat.com> 3.0.0-2
19582b
- rebuild to eliminate fuzz patches
19582b
19582b
* Mon Jun 02 2008 Harald Hoyer <harald@redhat.com> 3.0.0-1
19582b
- version 3.0.0
19582b
19582b
* Mon May 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.2.10-2
19582b
- add sparc support
19582b
19582b
* Wed Feb 20 2008 Harald Hoyer <harald@redhat.com> 2.2.10-1
19582b
- version 2.2.10
19582b
19582b
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.2.9-6
19582b
- Autorebuild for GCC 4.3
19582b
19582b
* Tue Jan 22 2008 Bill Nottingham <notting@redhat.com> 2.2.9-5
19582b
- put library back
19582b
19582b
* Mon Jan 21 2008 Harald Hoyer <harald@redhat.com> 2.2.9-4
19582b
- fixed segfault, if subdir does not exists
19582b
19582b
* Fri Jan 18 2008 Harald Hoyer <harald@redhat.com> 2.2.9-3
19582b
- removed static library, preserve timestamps on install (rhbz#226236)
19582b
- added modified patch from Michael E. Brown @ Dell, to also
19582b
  read all /usr/share/hwdata/pci.ids.d/*.ids files (rhbz#195327)
19582b
19582b
* Thu Jan 10 2008 Harald Hoyer <harald@redhat.com> 2.2.9-2
19582b
- added more requirements for pciutils-devel
19582b
19582b
* Tue Nov 20 2007 Harald Hoyer <harald@redhat.com> - 2.2.9-1
19582b
- version 2.2.9
19582b
- added package config file (rhbz#389451)
19582b
19582b
* Wed Aug 22 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-3
19582b
- changed license tag
19582b
19582b
* Thu Jul 12 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-2
19582b
- fixed update-pciids.sh
19582b
19582b
* Wed Jun 27 2007 Harald Hoyer <harald@redhat.com> - 2.2.6-1
19582b
- version 2.2.6
19582b
- fixed URL in update-pciids.sh 
19582b
19582b
* Thu May 31 2007 Harald Hoyer <harald@redhat.com> - 2.2.5-1
19582b
- version 2.2.5
19582b
19582b
* Thu Apr  5 2007 Peter Jones <pjones@redhat.com> - 2.2.4-3
19582b
- buildreq zlib-devel, so we know configure will find it consistently.
19582b
19582b
* Mon Apr  2 2007 Harald Hoyer <harald@redhat.com> - 2.2.4-2
19582b
- added alpha to multilib patch (#231790)
19582b
- specfile cleanup
19582b
- Resolves: rhbz#231790
19582b
19582b
* Fri Jan 26 2007 Harald Hoyer <harald@redhat.com> - 2.2.4-1
19582b
- version 2.2.4
19582b
- truncate long device names (#205948)
19582b
- Resolves: rhbz#205948
19582b
19582b
* Wed Aug  9 2006 Peter Jones <pjones@redhat.com> - 2.2.3-4
19582b
- Add definitions for more pci storage classes
19582b
19582b
* Mon Jul 17 2006 Jesse Keating <jkeating@redhat.com> - 2.2.3-3
19582b
- rebuild
19582b
19582b
* Fri Jun 02 2006 Harald Hoyer <harald@redhat.com> 2.2.3-2
19582b
- corrected multilib patch
19582b
19582b
* Tue May 23 2006 Harald Hoyer <harald@redhat.com> 2.2.3-1
19582b
- version 2.2.3
19582b
- multilib patch (bug #192743)
19582b
19582b
* Thu Feb 23 2006 Harald Hoyer <harald@redhat.com> 2.2.1-2
19582b
- added update-pciids shell script and manpage (bz #178582)
19582b
19582b
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-1.2
19582b
- bump again for double-long bug on ppc(64)
19582b
19582b
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-1.1
19582b
- rebuilt for new gcc4.1 snapshot and glibc changes
19582b
19582b
* Tue Dec 13 2005 Bill Nottingham <notting@redhat.com> - 2.2.1-1
19582b
- update to 2.2.1, adjust patches
19582b
19582b
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
19582b
- rebuilt
19582b
19582b
* Thu May 19 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-10
19582b
- allow 64-bit addresses on x86_64 (#158217, <Matt_Domsch@dell.com>)
19582b
19582b
* Tue May 10 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-9
19582b
- fix debuginfo generation
19582b
19582b
* Mon Mar 14 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-8
19582b
- add patch for glibc macros (#151032, <redhat-bugzilla@linuxnetz.de>)
19582b
19582b
* Wed Mar  2 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-7
19582b
- FC4. GCC 4. fore!
19582b
19582b
* Tue Jan 25 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-6
19582b
- remove explicit kernel dep (#146153)
19582b
19582b
* Fri Jan 21 2005 Bill Nottingham <notting@redhat.com> - 2.1.99.test8-5
19582b
- fix domain bug (#138722, #144383)
19582b
19582b
* Mon Nov 22 2004 Jeremy Katz <katzj@redhat.com> - 2.1.99.test8-4
19582b
- don't use dietlibc on x86 anymore
19582b
19582b
* Thu Sep  2 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test8-3
19582b
- change sysfs access for detecting devices who get fixed up in the
19582b
  kernel (#115522, #123802)
19582b
19582b
* Tue Aug 31 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test8-2
19582b
- update to test8
19582b
- fix headers
19582b
19582b
* Fri Jul  9 2004 Bill Nottingham <notting@redhat.com> 2.1.99.test7-1
19582b
- update to test7
19582b
- fix segfault on some x86-64 boxen
19582b
19582b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
19582b
- rebuilt
19582b
19582b
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
19582b
- rebuilt
19582b
19582b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
19582b
- rebuilt
19582b
19582b
* Mon Dec  8 2003 Bill Nottingham <notting@redhat.com> 2.1.11-4
19582b
- fix paths for pci.ids, etc. (#111665)
19582b
19582b
* Tue Nov 25 2003 Bill Nottingham <notting@redhat.com> 2.1.11-3
19582b
- remove a few calls to ->error() in the sysfs code
19582b
19582b
* Fri Nov 21 2003 Jeremy Katz <katzj@redhat.com> 2.1.11-2
19582b
- build a diet libpci_loader.a on i386
19582b
- always assume pread exists, it does with diet and all vaguely recent glibc
19582b
19582b
* Fri Nov 21 2003 Bill Nottingham <notting@redhat.com> 2.1.11-1
19582b
- update to 2.1.11
19582b
- add patch for sysfs & pci domains support (<willy@debian.org>)
19582b
19582b
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
19582b
- rebuilt
19582b
19582b
* Wed Feb 12 2003 Bill Nottingham <notting@redhat.com>
19582b
- don't segfault when there's no pci bus (#84146)
19582b
19582b
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
19582b
- rebuilt
19582b
19582b
* Thu Dec 05 2002 Elliot Lee <sopwith@redhat.com> 2.1.10-5
19582b
- Add patch4 for ppc64. The basic rule seems to be that on any platform
19582b
where it is possible to be running a 64-bit kernel, we need to always 
19582b
print out 64-bit addresses.
19582b
19582b
* Mon Nov  4 2002 Bill Nottingham <notting@redhat.com> 2.1.10-4
19582b
- fix dir perms on /usr/include/pci
19582b
19582b
* Tue Oct 15 2002 Bill Nottingham <notting@redhat.com> 2.1.10-3
19582b
- use %%{_libdir}
19582b
- own /usr/include/pci
19582b
- build library with -fPIC
19582b
19582b
* Mon Jul  8 2002 Bill Nottingham <notting@redhat.com> 2.1.10-2
19582b
- don't build with -fomit-frame-pointer
19582b
19582b
* Mon Jun 24 2002 Bill Nottingham <notting@redhat.com> 2.1.10-1
19582b
- update to 2.1.10
19582b
19582b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
19582b
- automated rebuild
19582b
19582b
* Mon Jun 17 2002 Bill Nottingham <notting@redhat.com> 2.1.9-4
19582b
- don't forcibly strip binaries
19582b
19582b
* Thu May 23 2002 Tim Powers <timp@redhat.com>
19582b
- automated rebuild
19582b
19582b
* Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
19582b
- rebuild
19582b
19582b
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
19582b
- require hwdata now that pci.ids is there
19582b
19582b
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
19582b
- automated rebuild
19582b
19582b
* Sun Dec 30 2001 Florian La Roche <Florian.LaRoche@redhat.de>
19582b
- man page is now owned by root
19582b
19582b
* Wed Oct 17 2001 Bill Nottingham <notting@redhat.com>
19582b
- dump all the patches, ship pci.ids direct out of sourceforge CVS
19582b
19582b
* Wed Sep 26 2001 Bill Nottingham <notting@redhat.com>
19582b
- broadcom bcm5820 id (#53592)
19582b
19582b
* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
19582b
- more ids
19582b
19582b
* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
19582b
- add newline in printf in PCI-X patch (#49277)
19582b
19582b
* Mon Jul  9 2001 Bill Nottingham <notting@redhat.com>
19582b
- update broadcom patch
19582b
- add new ids from 2.4.6
19582b
19582b
* Mon May 28 2001 Bill Nottingham <notting@redhat.com>
19582b
- add a couple of e1000 ids
19582b
19582b
* Thu Mar 22 2001 Bill Nottingham <notting@redhat.com>
19582b
- another megaraid id
19582b
19582b
* Wed Mar 21 2001 Bill Nottingham <notting@redhat.com>
19582b
- another megaraid id
19582b
19582b
* Wed Mar 14 2001 Preston Brown <pbrown@redhat.com>
19582b
- LSI SCSI PCI id
19582b
19582b
* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
19582b
- fix formatting problems
19582b
19582b
* Wed Feb 21 2001 Preston Brown <pbrown@redhat.com>
19582b
- add IBM ServeRAID entries
19582b
19582b
* Tue Feb 20 2001 Preston Brown <pbrown@redhat.com>
19582b
- i860 entries.
19582b
19582b
* Mon Feb 19 2001 Helge Deller <hdeller@redhat.de>
19582b
- added various pci ids 
19582b
19582b
* Fri Feb  2 2001 Bill Nottingham <notting@redhat.com>
19582b
- fix mishap in fixing mishap
19582b
19582b
* Thu Feb  1 2001 Bill Nottingham <notting@redhat.com>
19582b
- fix apparent mishap in pci.ids update from kernel (#25520)
19582b
19582b
* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
19582b
- pci.ids updates
19582b
19582b
* Tue Dec 12 2000 Bill Nottingham <notting@redhat.com>
19582b
- big pile of pci.ids updates
19582b
19582b
* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
19582b
- clean up patches to not generate badly-formatted files
19582b
19582b
* Tue Jul 25 2000 Preston Brown <pbrown@redhat.com>
19582b
- Vortex fixes laroche originally applied on kudzu moved here.
19582b
19582b
* Fri Jul 14 2000 Preston Brown <pbrown@redhat.com>
19582b
- pci ids for i815, new ati hardware
19582b
19582b
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
19582b
- automatic rebuild
19582b
19582b
* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
19582b
- yet more IDs
19582b
- PCI-X support from Matt Domsch
19582b
19582b
* Fri Jul  7 2000 Bill Nottingham <notting@redhat.com>
19582b
- some more QLogic ids
19582b
19582b
* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
19582b
- more IDs from Dell
19582b
19582b
* Sat Jun 10 2000 Bill Nottingham <notting@redhat.com>
19582b
- update to 2.1.8
19582b
19582b
* Fri Apr 21 2000 Bill Nottingham <notting@redhat.com>
19582b
- update to 2.1.7
19582b
19582b
* Mon Apr 17 2000 Bill Nottingham <notting@redhat.com>
19582b
- update to 2.1.6
19582b
19582b
* Fri Mar  3 2000 Bill Nottingham <notting@redhat.com>
19582b
- add a couple of ids
19582b
19582b
* Mon Feb 14 2000 Bill Nottingham <notting@redhat.com>
19582b
- update to 2.1.5
19582b
19582b
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
19582b
- handle compressed man pages
19582b
19582b
* Mon Jan 24 2000 Bill Nottingham <notting@redhat.com>
19582b
- update to 2.1.4
19582b
19582b
* Thu Jan 20 2000 Bill Nottingham <notting@redhat.com>
19582b
- update to 2.1.3
19582b
19582b
* Fri Dec 24 1999 Bill Nottingham <notting@redhat.com>
19582b
- update to 2.1.2
19582b
19582b
* Tue Jun 29 1999 Bill Nottingham <notting@redhat.com>
19582b
- add -devel package
19582b
19582b
* Thu May 20 1999 Bill Nottingham <notting@redhat.com>
19582b
- update to 2.0
19582b
19582b
* Mon Apr 19 1999 Jakub Jelinek <jj@ultra.linux.cz>
19582b
- update to 1.99.5
19582b
- fix sparc64 operation
19582b
19582b
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
19582b
- auto rebuild in the new build environment (release 2)
19582b
19582b
* Thu Feb  4 1999 Bill Nottingham <notting@redhat.com>
19582b
- initial build