From 1cd2602f134b3d49818dfb648a90c1fa14bb4efa Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 7 Jan 2020 11:26:39 +0100 Subject: [PATCH 1/4] pciutils: Update version from 3.5.6 to 3.6.2 --- pciutils.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pciutils.be0 b/pciutils.be0 index 93696c8d2..517ddf1d8 100755 --- a/pciutils.be0 +++ b/pciutils.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION pciutils-3.5.6-0 +# BEE_VERSION pciutils-3.6.2-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) From 50efba81ff91623ecfe392d3d940690cc08d4048 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 7 Jan 2020 12:43:05 +0100 Subject: [PATCH 2/4] pciutils: Move PCI ID database out of package > 3. Getting new IDs > ~~~~~~~~~~~~~~~~~~~ > The database of PCI IDs (the pci.ids file) gets out of date much faster > than I release new versions of this package, so it is maintained separately. > > It lives at http://pci-ids.ucw.cz/, where you can browse the database, > download the most recent pci.ids file (e.g., by running the update-ids utility) > and also submit new entries. > > Alternatively, you can use `lspci -q' to query the central database > for new entries via network. Therefore, maintain `/usr/share/hwdata/pci.ids` directly on the distmaster. --- pciutils.be0 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pciutils.be0 b/pciutils.be0 index 517ddf1d8..ec65eb41d 100755 --- a/pciutils.be0 +++ b/pciutils.be0 @@ -68,6 +68,10 @@ mee_install() { bee_install install-lib \ SHAREDIR=${DATAROOTDIR}/hwdata \ SHARED=yes + + # /usr/share/hwdata/pci.ids is maintained on distmaster with + # `update-pciids` + rm -v "${D}${DATAROOTDIR}/hwdata/pci.ids" } ## by default this may be 'make install DESTDIR="${D}"' From 779a4155f69eab88e5350d825ba5122489ca93ce Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 22 Jan 2020 15:21:59 +0100 Subject: [PATCH 3/4] pciutils: Update version from 3.6.2 to 3.6.3 A manual page for `pci.ids` is added. [1]: https://github.com/pciutils/pciutils/releases --- pciutils.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pciutils.be0 b/pciutils.be0 index ec65eb41d..126152699 100755 --- a/pciutils.be0 +++ b/pciutils.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION pciutils-3.6.2-0 +# BEE_VERSION pciutils-3.6.3-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) From 2fbe1d0f27438cbe768b872909530dd724354575 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 22 Jan 2020 15:46:27 +0100 Subject: [PATCH 4/4] pciutils: Package PCI IDs database again Peter volunteered to keep the PCI IDs up-to-date. Increment revision to 1. --- pciutils.be0 | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pciutils.be0 b/pciutils.be0 index 126152699..fb222d132 100755 --- a/pciutils.be0 +++ b/pciutils.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION pciutils-3.6.3-0 +# BEE_VERSION pciutils-3.6.3-1 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -68,10 +68,6 @@ mee_install() { bee_install install-lib \ SHAREDIR=${DATAROOTDIR}/hwdata \ SHARED=yes - - # /usr/share/hwdata/pci.ids is maintained on distmaster with - # `update-pciids` - rm -v "${D}${DATAROOTDIR}/hwdata/pci.ids" } ## by default this may be 'make install DESTDIR="${D}"'