pciutils: update to 3.8.0
authorLucian Cristian <lucian.cristian@gmail.com>
Wed, 1 Jun 2022 14:55:00 +0000 (14:55 +0000)
committerRosen Penev <rosenp@gmail.com>
Sat, 20 Aug 2022 20:19:16 +0000 (13:19 -0700)
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
utils/pciutils/Makefile
utils/pciutils/patches/100-remove-no-timestamping.patch [deleted file]
utils/pciutils/patches/101-no-strip.patch
utils/pciutils/patches/102-compressed-ids.patch [deleted file]
utils/pciutils/patches/103-relative-path-ids.patch [deleted file]
utils/pciutils/patches/104-resolv.patch
utils/pciutils/patches/105-fix-host.patch [deleted file]
utils/pciutils/patches/106-hwdata.patch

index 84b8998fa09463a4b78837cd6f210e146b070579..104abbd27168aa41dde73c98d4c6c1568efe7475 100644 (file)
@@ -8,18 +8,16 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=pciutils
-PKG_VERSION:=3.7.0
-PKG_RELEASE:=2
+PKG_VERSION:=3.8.0
+PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=@KERNEL/software/utils/pciutils
-PKG_HASH:=9d40b97be8b6a2cdf96aead5a61881d1f7e4e0da9544a9bac4fba1ae9dcd40eb
+PKG_HASH:=91edbd0429a84705c9ad156d4ff38ccc724d41ea54c4c5b88e38e996f8a34f05
 
 PKG_MAINTAINER:=Lucian Cristian <lucian.cristian@gmail.com>
 PKG_LICENSE:=GPL-2.0
 PKG_LICENSE_FILES:=COPYING
-
-PKG_BUILD_PARALLEL:=1
 PKG_INSTALL:=1
 
 include $(INCLUDE_DIR)/package.mk
@@ -73,8 +71,9 @@ define Build/InstallDev
 endef
 
 define Package/pciutils/install
-       $(INSTALL_DIR) $(1)/usr/sbin
-       $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{lspci,setpci,update-pciids} $(1)/usr/sbin/
+       $(INSTALL_DIR) $(1)/usr/sbin $(1)/usr/bin
+       $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lspci $(1)/usr/bin
+       $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/setpci $(1)/usr/sbin/
 endef
 
 define Package/libpci/install
diff --git a/utils/pciutils/patches/100-remove-no-timestamping.patch b/utils/pciutils/patches/100-remove-no-timestamping.patch
deleted file mode 100644 (file)
index 93bc85f..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/update-pciids.sh
-+++ b/update-pciids.sh
-@@ -33,7 +33,7 @@ if which curl >/dev/null 2>&1 ; then
-       DL="curl -o $DEST.new $SRC"
-     ${quiet} && DL="$DL -s -S"
- elif which wget >/dev/null 2>&1 ; then
--      DL="wget --no-timestamping -O $DEST.new $SRC"
-+      DL="wget -O $DEST.new $SRC"
-       ${quiet} && DL="$DL -q"
- elif which lynx >/dev/null 2>&1 ; then
-       DL="eval lynx -source $SRC >$DEST.new"
index 2f1e022893c56676d525b59b27e5c00190053475..827a4531cce392827643e34a03be1ec5bed6fe43 100644 (file)
@@ -1,11 +1,13 @@
 --- a/Makefile
 +++ b/Makefile
-@@ -119,7 +119,7 @@ distclean: clean
+@@ -131,8 +131,8 @@ distclean: clean
  install: all
  # -c is ignored on Linux, but required on FreeBSD
-       $(DIRINSTALL) -m 755 $(DESTDIR)$(SBINDIR) $(DESTDIR)$(IDSDIR) $(DESTDIR)$(MANDIR)/man8 $(DESTDIR)$(MANDIR)/man7 $(DESTDIR)/$(MANDIR)/man5
--      $(INSTALL) -c -m 755 $(STRIP) lspci setpci $(DESTDIR)$(SBINDIR)
-+      $(INSTALL) -c -m 755 lspci setpci $(DESTDIR)$(SBINDIR)
+       $(DIRINSTALL) -m 755 $(DESTDIR)$(BINDIR) $(DESTDIR)$(SBINDIR) $(DESTDIR)$(IDSDIR) $(DESTDIR)$(MANDIR)/man8 $(DESTDIR)$(MANDIR)/man7 $(DESTDIR)/$(MANDIR)/man5
+-      $(INSTALL) -c -m 755 $(STRIP) lspci$(EXEEXT) $(DESTDIR)$(LSPCIDIR)
+-      $(INSTALL) -c -m 755 $(STRIP) setpci$(EXEEXT) $(DESTDIR)$(SBINDIR)
++      $(INSTALL) -c -m 755 lspci$(EXEEXT) $(DESTDIR)$(LSPCIDIR)
++      $(INSTALL) -c -m 755 setpci$(EXEEXT) $(DESTDIR)$(SBINDIR)
        $(INSTALL) -c -m 755 update-pciids $(DESTDIR)$(SBINDIR)
        $(INSTALL) -c -m 644 $(PCI_IDS) $(DESTDIR)$(IDSDIR)
        $(INSTALL) -c -m 644 lspci.8 setpci.8 update-pciids.8 $(DESTDIR)$(MANDIR)/man8
diff --git a/utils/pciutils/patches/102-compressed-ids.patch b/utils/pciutils/patches/102-compressed-ids.patch
deleted file mode 100644 (file)
index 2ea8605..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/update-pciids.sh
-+++ b/update-pciids.sh
-@@ -6,9 +6,8 @@ set -e
- SRC="https://pci-ids.ucw.cz/v2.2/pci.ids"
- DEST=pci.ids
- PCI_COMPRESSED_IDS=
--GREP=grep
--# if pci.ids is read-only (because the filesystem is read-only),
-+# if pci.ids.gz is read-only (because the filesystem is read-only),
- # then just skip this whole process.
- if ! touch ${DEST} >/dev/null 2>&1 ; then
-       ${quiet} || echo "${DEST} is read-only, exiting." 1>&2
-@@ -18,7 +17,7 @@ fi
- if [ "$PCI_COMPRESSED_IDS" = 1 ] ; then
-       DECOMP="cat"
-       SRC="$SRC.gz"
--      GREP=zgrep
-+      DEST="$DEST.gz"
- elif which bzip2 >/dev/null 2>&1 ; then
-       DECOMP="bzip2 -d"
-       SRC="$SRC.bz2"
-@@ -53,7 +52,7 @@ if ! $DECOMP <$DEST.new >$DEST.neww ; th
-       exit 1
- fi
--if ! $GREP >/dev/null "^C " $DEST.neww ; then
-+if ! zcat $DEST.neww | grep >/dev/null "^C " ; then
-       echo >&2 "update-pciids: missing class info, probably truncated file"
-       exit 1
- fi
diff --git a/utils/pciutils/patches/103-relative-path-ids.patch b/utils/pciutils/patches/103-relative-path-ids.patch
deleted file mode 100644 (file)
index c6d6906..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -88,7 +88,7 @@ lspci: LDLIBS+=$(LIBKMOD_LIBS)
- ls-kernel.o: CFLAGS+=$(LIBKMOD_CFLAGS)
- update-pciids: update-pciids.sh
--      sed <$< >$@ "s@^DEST=.*@DEST=$(IDSDIR)/$(PCI_IDS)@;s@^PCI_COMPRESSED_IDS=.*@PCI_COMPRESSED_IDS=$(PCI_COMPRESSED_IDS)@"
-+      sed <$< >$@ "s@^PCI_COMPRESSED_IDS=.*@PCI_COMPRESSED_IDS=$(PCI_COMPRESSED_IDS)@"
-       chmod +x $@
- # The example of use of libpci
index 0acfb81cb5bb607c22779f128fde921ca6d43667..485e1b9f508b57ce89ecba9f1f7741ec710e9345 100644 (file)
@@ -1,11 +1,11 @@
 --- a/lib/configure
 +++ b/lib/configure
-@@ -52,7 +52,7 @@ echo >>$c "#define PCI_OS_`echo $sys | t
+@@ -60,7 +60,7 @@ echo >>$c "#define PCI_OS_`echo $sys | t
  echo >$m 'WITH_LIBS='
  
  echo_n "Looking for access methods..."
 -LIBRESOLV=-lresolv
 +LIBRESOLV=
  LIBEXT=so
- case $sys in
+ EXEEXT=
+ SYSINCLUDE=/usr/include
diff --git a/utils/pciutils/patches/105-fix-host.patch b/utils/pciutils/patches/105-fix-host.patch
deleted file mode 100644 (file)
index 14f7ded..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/lib/configure
-+++ b/lib/configure
-@@ -39,7 +39,7 @@ if [ -z "$HOST" ] ; then
- fi
- [ -n "$RELEASE" ] && rel="${RELEASE}"
- # CAVEAT: tr on Solaris is a bit weird and the extra [] is otherwise harmless.
--host=`echo $HOST | sed -e 's/^\([^-]*\)-\([^-]*\)-\([^-]*\)-\([^-]*\)$/\1-\3/' -e 's/^\([^-]*\)-\([^-]*\)-\([^-]*\)$/\1-\2/' -e 's/^\([^-]*\)-\([^-]*\)$/\1--\2/' | tr '[A-Z]' '[a-z]'`
-+host=`echo $HOST | sed -e 's/^\([^-]*\)-\([^-]*\)-\([^-]*\)-\([^-]*\)$/\1-\3/' -e 's/^\([^-]*\)-\([^-]*\)$/\1--\2/' | tr '[A-Z]' '[a-z]'`
- cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
- sys=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
- echo " $host $rel $cpu $sys"
index ee63bc5bc158761abbe6a61bf70a1eb9d27915c9..e18ef78cd62c6e5bd342fc74a917a1e9ef0d2e94 100644 (file)
@@ -1,7 +1,7 @@
 --- a/Makefile
 +++ b/Makefile
-@@ -35,7 +35,7 @@ ABI_VERSION=.3
- PREFIX=/usr/local
+@@ -36,7 +36,7 @@ PREFIX=/usr/local
+ BINDIR=$(PREFIX)/bin
  SBINDIR=$(PREFIX)/sbin
  SHAREDIR=$(PREFIX)/share
 -IDSDIR=$(SHAREDIR)