Skip to content

Commit

Permalink
pciutils: update to 3.7.0.2022.03.14
Browse files Browse the repository at this point in the history
- be aware of potential output string changes:
```
root:invidia:/scratch/local2/# diff xx.[12]
27c27
< 05:00.0 Serial Attached SCSI controller: Adaptec Smart Storage PQI 12G SAS/PCIe 3 (rev 01)
---
> 05:00.0 Serial Attached SCSI controller: Adaptec Smart Storage PQI SAS (rev 01)
```
  • Loading branch information
wwwutz committed Mar 14, 2022
1 parent 5496315 commit 9b0eb69
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pciutils.be0
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION pciutils-3.7.0.2020.02.12-0
# BEE_VERSION pciutils-3.7.0.2022.03.14-0

PCIURL="https://beehive.molgen.mpg.de/2e95cdfc98e810d03a6c53fa7d8403fb/pci.ids" # 2020.02.12
#PCIURL="http://pci-ids.ucw.cz/v2.2/pci.ids"
# PCIURL="http://pci-ids.ucw.cz/v2.2/pci.ids"
PCIURL="https://beehive.molgen.mpg.de/8e18d260f95f342dc135567357d4c5ac/pci.ids" # 2022.03.14

SRCURL[0]="https://beehive.molgen.mpg.de/e6e20482b4f25c5186e6a753c5edc361/pciutils-3.7.0.tar.xz"
#SRCURL[0]="https://www.kernel.org/pub/software/utils/pciutils/pciutils-${PKGVERSION[3]}.tar.xz"
Expand All @@ -20,7 +20,9 @@ SRCURL[0]="https://beehive.molgen.mpg.de/e6e20482b4f25c5186e6a753c5edc361/pciuti

mee_getsources_post() {
mkdir -p ${F}
# fetch_one_file "http://pci-ids.ucw.cz/v2.2/pci.ids"
# force reload
rm -fv ${F}/pci.ids
# fetch_one_file "http://pci-ids.ucw.cz/v2.2/pci.ids"
fetch_one_file ${PCIURL}
}

Expand All @@ -43,10 +45,8 @@ mee_install() {
bee_install install-lib \
SHAREDIR=${DATAROOTDIR}/hwdata \
SHARED=yes
}
mee_install_post() {

IDS=${D}${DATAROOTDIR}/hwdata/pci.ids
cp -v ${F}/pci.ids ${IDS}
grep Version: ${IDS}
}

0 comments on commit 9b0eb69

Please sign in to comment.