diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2007-11-02 21:25:49 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2007-11-02 21:25:49 +0000 |
commit | 7e4e55964202e2f17a16aea82321bc750c988dd9 (patch) | |
tree | 038a1a3dfbe5c740aa64a253de15a55fab691828 /sys-apps/pciutils/files | |
parent | stable ppc, bug #197743 (diff) | |
download | historical-7e4e55964202e2f17a16aea82321bc750c988dd9.tar.gz historical-7e4e55964202e2f17a16aea82321bc750c988dd9.tar.bz2 historical-7e4e55964202e2f17a16aea82321bc750c988dd9.zip |
Version bump. Contains an agreed-upon workaround for the HAL zlib issue, see the gentoo-dev list for the discussion.
Package-Manager: portage-2.1.3.16
Diffstat (limited to 'sys-apps/pciutils/files')
-rw-r--r-- | sys-apps/pciutils/files/digest-pciutils-2.2.8 | 3 | ||||
-rw-r--r-- | sys-apps/pciutils/files/pciutils-2.2.7-update-pciids-both-forms.patch | 22 |
2 files changed, 25 insertions, 0 deletions
diff --git a/sys-apps/pciutils/files/digest-pciutils-2.2.8 b/sys-apps/pciutils/files/digest-pciutils-2.2.8 new file mode 100644 index 000000000000..47465fb787be --- /dev/null +++ b/sys-apps/pciutils/files/digest-pciutils-2.2.8 @@ -0,0 +1,3 @@ +MD5 c0b742521a13ef624b9a0a237f46c1c8 pciutils-2.2.8.tar.gz 232602 +RMD160 a041fe7b65e0e60b6baeeca1daf77257fa84c30a pciutils-2.2.8.tar.gz 232602 +SHA256 8bdbcac28a80e05799c3e788bbb24417059537aff53b8bf16c7c8e08b3979fa2 pciutils-2.2.8.tar.gz 232602 diff --git a/sys-apps/pciutils/files/pciutils-2.2.7-update-pciids-both-forms.patch b/sys-apps/pciutils/files/pciutils-2.2.7-update-pciids-both-forms.patch new file mode 100644 index 000000000000..375945a835a3 --- /dev/null +++ b/sys-apps/pciutils/files/pciutils-2.2.7-update-pciids-both-forms.patch @@ -0,0 +1,22 @@ +diff -Nuar pciutils-2.2.7.orig/update-pciids.sh pciutils-2.2.7/update-pciids.sh +--- pciutils-2.2.7.orig/update-pciids.sh 2007-10-30 16:17:03.253630000 -0800 ++++ pciutils-2.2.7/update-pciids.sh 2007-10-30 16:39:46.810463056 -0800 +@@ -72,4 +72,18 @@ + rm -f ${DEST%.gz} ${DEST%.gz}.old + fi + ++# if the gzip version exists, but we are not using compressed mode, ++# erase the gzip version, as it is old and crufty ++if [ -z "$PCI_COMPRESSED_IDS" ] && [ -f $DEST.gz ]; then ++ rm -f ${DEST}.gz ++fi ++ ++# Lastly, because HAL still reads the plaintext version only and ++# has not yet migrated to using a library we leave the plaintext ++# version in addition to the gzip version. ++# They need to migrate because the pci.ids format will be changing. ++if [ ${DEST%.gz} != ${DEST} ] ; then ++ gzip -d <${DEST} >${DEST%.gz} ++fi ++ + ${quiet} || echo "Done." |