pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils/pciutils



Module Name:    pkgsrc
Committed By:   msaitoh
Date:           Mon Jun  1 15:47:53 UTC 2020

Modified Files:
        pkgsrc/sysutils/pciutils: Makefile distinfo
        pkgsrc/sysutils/pciutils/patches: patch-aa

Log Message:
Update pciutils to 3.7.0.

2020-05-31  Martin Mares <mj%ucw.cz@localhost>

        * Released as 3.7.0.

        * Added or improved the following capabilities: Designated
          Vendor-Specific, Compute eXpress Link, Resizable BARs,
          VF Resizable BARs, Link Capabilities 2, Link Status 2.

        * On Linux, lspci can show IOMMU groups.

        * setpci can be asked to skip bus scan and operate on a device
          completely specified by its domain/bus/dev/func address. This
          involved major internal cleanup.

        * The above feature of setpci uses the pci_get_dev() function,
          which obtains a struct pci_dev without doing a bus scan. This was
          always possible, but apparently little used, because back-ends
          frequently choked when operating on such devices. Fixed a lot
          of minor bugs related to this.

        * Also, back-ends which do not support domains now correctly fail when
          trying to access devices outside domain 0.

        * Semantics of pci_fill_info() and pci_dev->known_fields was
          underspecified, which lead to inconsistencies between back-ends.
          Improved documentation to give a more precise definition and updated
          all back-ends to conform to it. Most importantly,
          pci_dev->known_fields shows all fields requested over the lifetime
          of the pci_dev, but never those which are not supported by the
          back-end.

        * As usually, updated pci.ids to the current snapshot of the database.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 pkgsrc/sysutils/pciutils/Makefile
cvs rdiff -u -r1.34 -r1.35 pkgsrc/sysutils/pciutils/distinfo
cvs rdiff -u -r1.25 -r1.26 pkgsrc/sysutils/pciutils/patches/patch-aa

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/pciutils/Makefile
diff -u pkgsrc/sysutils/pciutils/Makefile:1.44 pkgsrc/sysutils/pciutils/Makefile:1.45
--- pkgsrc/sysutils/pciutils/Makefile:1.44      Tue Jan 28 01:46:58 2020
+++ pkgsrc/sysutils/pciutils/Makefile   Mon Jun  1 15:47:53 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.44 2020/01/28 01:46:58 msaitoh Exp $
+# $NetBSD: Makefile,v 1.45 2020/06/01 15:47:53 msaitoh Exp $
 
-DISTNAME=      pciutils-3.6.4
+DISTNAME=      pciutils-3.7.0
 CATEGORIES=    sysutils
 MASTER_SITES=  ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/
 MASTER_SITES+= https://www.kernel.org/pub/software/utils/pciutils/

Index: pkgsrc/sysutils/pciutils/distinfo
diff -u pkgsrc/sysutils/pciutils/distinfo:1.34 pkgsrc/sysutils/pciutils/distinfo:1.35
--- pkgsrc/sysutils/pciutils/distinfo:1.34      Tue Jan 28 01:46:58 2020
+++ pkgsrc/sysutils/pciutils/distinfo   Mon Jun  1 15:47:53 2020
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.34 2020/01/28 01:46:58 msaitoh Exp $
+$NetBSD: distinfo,v 1.35 2020/06/01 15:47:53 msaitoh Exp $
 
-SHA1 (pciutils-3.6.4.tar.gz) = c99196cf232ecf539a9a63c7da3f9f3500a4955d
-RMD160 (pciutils-3.6.4.tar.gz) = 76d18d1dd0fce7567bbd9fabcd35f0b987f1e495
-SHA512 (pciutils-3.6.4.tar.gz) = ace51681d8803a06fdfa7153a56f586616044823cb10b0e701a7fb57af0e38884537afc27be0885cf244c0a8dec7c6295baf226f1ef2868ed1eedff10565945f
-Size (pciutils-3.6.4.tar.gz) = 489925 bytes
-SHA1 (patch-aa) = e9f937fabf60baac2a999aa1d10f5e275e7ff7df
+SHA1 (pciutils-3.7.0.tar.gz) = 8688ce7351895df5b1eab91888ed9c313e35ee4b
+RMD160 (pciutils-3.7.0.tar.gz) = 49be0dbddad3bad0727527b154a23982730c6194
+SHA512 (pciutils-3.7.0.tar.gz) = 37c01619264d299ac1e367a022637d60ab2bf6e5533fe9d37b2d37fdc5070563b78bfedc200b6bcb9192ce43fdec09ff350080c3e3ba504b90766d004398efc5
+Size (pciutils-3.7.0.tar.gz) = 507777 bytes
+SHA1 (patch-aa) = f609713b035dd20dcdc1f8cdc15f9b280598e89a
 SHA1 (patch-ab) = 14786e702cceaea9146f34a5a301650d2092d689
 SHA1 (patch-ac) = 4b90e99c051391b9cd3a6c1f5781f41b4a855c29
 SHA1 (patch-lib_i386-io-sunos.h) = afb666796a6b220d868a41e4fb9fd9e42152faed

Index: pkgsrc/sysutils/pciutils/patches/patch-aa
diff -u pkgsrc/sysutils/pciutils/patches/patch-aa:1.25 pkgsrc/sysutils/pciutils/patches/patch-aa:1.26
--- pkgsrc/sysutils/pciutils/patches/patch-aa:1.25      Tue Jan 28 01:46:58 2020
+++ pkgsrc/sysutils/pciutils/patches/patch-aa   Mon Jun  1 15:47:53 2020
@@ -1,7 +1,9 @@
-$NetBSD: patch-aa,v 1.25 2020/01/28 01:46:58 msaitoh Exp $
+$NetBSD: patch-aa,v 1.26 2020/06/01 15:47:53 msaitoh Exp $
 
---- Makefile.orig      2020-01-26 04:42:39.000000000 +0900
-+++ Makefile   2020-01-27 17:53:24.373993086 +0900
+Adapt the Makefile to make it compliant with pkgsrc.
+
+--- Makefile.orig      2020-05-31 07:17:26.000000000 +0900
++++ Makefile   2020-06-01 17:39:19.929850506 +0900
 @@ -1,8 +1,7 @@
  # Makefile for The PCI Utilities
  # (c) 1998--2020 Martin Mares <mj%ucw.cz@localhost>
@@ -10,8 +12,8 @@ $NetBSD: patch-aa,v 1.25 2020/01/28 01:4
 -CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes
 +CFLAGS=-Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes
  
- VERSION=3.6.4
- DATE=2020-01-25
+ VERSION=3.7.0
+ DATE=2020-05-31
 @@ -13,7 +12,7 @@ RELEASE=
  CROSS_COMPILE=
  



Home | Main Index | Thread Index | Old Index