Update to 3.8.0
This commit is contained in:
parent
0ea9573fd2
commit
b0b5e5741f
@ -2,7 +2,7 @@ diff -up pciutils-3.0.0/Makefile.idpath pciutils-3.0.0/Makefile
|
||||
--- pciutils-3.0.0/Makefile.idpath 2008-04-10 21:19:43.000000000 +0200
|
||||
+++ pciutils-3.0.0/Makefile 2008-09-01 15:16:19.000000000 +0200
|
||||
@@ -27,7 +27,7 @@ ABI_VERSION=.3
|
||||
PREFIX=/usr/local
|
||||
BINDIR=$(PREFIX)/bin
|
||||
SBINDIR=$(PREFIX)/sbin
|
||||
SHAREDIR=$(PREFIX)/share
|
||||
-IDSDIR=$(SHAREDIR)
|
||||
42
0002-avoid-addng-multiple-version-tags.patch
Normal file
42
0002-avoid-addng-multiple-version-tags.patch
Normal file
@ -0,0 +1,42 @@
|
||||
From 0478e1f3928bfaa34eb910ba2cbaf1dda8f84aab Mon Sep 17 00:00:00 2001
|
||||
From: Martin Mares <mj@ucw.cz>
|
||||
Date: Wed, 10 Aug 2022 13:34:28 +0700
|
||||
Subject: [PATCH] Avoid adding multiple version tags to the same symbol
|
||||
|
||||
This is apparently forbidden in most versions of binutils.
|
||||
---
|
||||
lib/filter.c | 12 ++++++++----
|
||||
1 file changed, 8 insertions(+), 4 deletions(-)
|
||||
|
||||
--- a/lib/filter.c
|
||||
+++ b/lib/filter.c
|
||||
@@ -303,21 +303,25 @@ pci_filter_match_v30(struct pci_filter_v
|
||||
// (their positions in struct pci_filter were declared as RFU).
|
||||
|
||||
STATIC_ALIAS(void pci_filter_init(struct pci_access *a, struct pci_filter *f), pci_filter_init_v38(a, f));
|
||||
+DEFINE_ALIAS(void pci_filter_init_v33(struct pci_access *a, struct pci_filter *f), pci_filter_init_v38);
|
||||
SYMBOL_VERSION(pci_filter_init_v30, pci_filter_init@LIBPCI_3.0);
|
||||
-SYMBOL_VERSION(pci_filter_init_v38, pci_filter_init@LIBPCI_3.3);
|
||||
+SYMBOL_VERSION(pci_filter_init_v33, pci_filter_init@LIBPCI_3.3);
|
||||
SYMBOL_VERSION(pci_filter_init_v38, pci_filter_init@@LIBPCI_3.8);
|
||||
|
||||
STATIC_ALIAS(char *pci_filter_parse_slot(struct pci_filter *f, char *str), pci_filter_parse_slot_v38(f, str));
|
||||
+DEFINE_ALIAS(char *pci_filter_parse_slot_v33(struct pci_filter *f, char *str), pci_filter_parse_slot_v38);
|
||||
SYMBOL_VERSION(pci_filter_parse_slot_v30, pci_filter_parse_slot@LIBPCI_3.0);
|
||||
-SYMBOL_VERSION(pci_filter_parse_slot_v38, pci_filter_parse_slot@LIBPCI_3.3);
|
||||
+SYMBOL_VERSION(pci_filter_parse_slot_v33, pci_filter_parse_slot@LIBPCI_3.3);
|
||||
SYMBOL_VERSION(pci_filter_parse_slot_v38, pci_filter_parse_slot@@LIBPCI_3.8);
|
||||
|
||||
STATIC_ALIAS(char *pci_filter_parse_id(struct pci_filter *f, char *str), pci_filter_parse_id_v38(f, str));
|
||||
+DEFINE_ALIAS(char *pci_filter_parse_id_v33(struct pci_filter *f, char *str), pci_filter_parse_id_v38);
|
||||
SYMBOL_VERSION(pci_filter_parse_id_v30, pci_filter_parse_id@LIBPCI_3.0);
|
||||
-SYMBOL_VERSION(pci_filter_parse_id_v38, pci_filter_parse_id@LIBPCI_3.3);
|
||||
+SYMBOL_VERSION(pci_filter_parse_id_v33, pci_filter_parse_id@LIBPCI_3.3);
|
||||
SYMBOL_VERSION(pci_filter_parse_id_v38, pci_filter_parse_id@@LIBPCI_3.8);
|
||||
|
||||
STATIC_ALIAS(int pci_filter_match(struct pci_filter *f, struct pci_dev *d), pci_filter_match_v38(f, d));
|
||||
+DEFINE_ALIAS(int pci_filter_match_v33(struct pci_filter *f, struct pci_dev *d), pci_filter_match_v38);
|
||||
SYMBOL_VERSION(pci_filter_match_v30, pci_filter_match@LIBPCI_3.0);
|
||||
-SYMBOL_VERSION(pci_filter_match_v38, pci_filter_match@LIBPCI_3.3);
|
||||
+SYMBOL_VERSION(pci_filter_match_v33, pci_filter_match@LIBPCI_3.3);
|
||||
SYMBOL_VERSION(pci_filter_match_v38, pci_filter_match@@LIBPCI_3.8);
|
||||
Binary file not shown.
BIN
pciutils-3.8.0.tar.gz
Normal file
BIN
pciutils-3.8.0.tar.gz
Normal file
Binary file not shown.
@ -1,14 +1,20 @@
|
||||
Name: pciutils
|
||||
Version: 3.6.4
|
||||
Release: 4
|
||||
Version: 3.8.0
|
||||
Release: 1
|
||||
Summary: PCI bus related utilities
|
||||
License: GPLv2+
|
||||
URL: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml
|
||||
Source0: https://mirrors.edge.kernel.org/pub/software/utils/pciutils/%{name}-%{version}.tar.gz
|
||||
|
||||
# patch0 is from fedora, change pci.ids directory from /usr/share to /usr/share/hwdata
|
||||
Patch0: 0000-pciutils-2.2.1-idpath.patch
|
||||
# patch1 is from fedora, rhbz#195327
|
||||
Patch1: 0001-pciutils-dir-d.patch
|
||||
#https://github.com/openwrt/packages/pull/19215
|
||||
Patch2: 0002-avoid-addng-multiple-version-tags.patch
|
||||
|
||||
ExclusiveOS: Linux
|
||||
BuildRequires: gcc git sed kmod-devel pkgconfig zlib-devel
|
||||
BuildRequires: gcc sed kmod-devel pkgconfig zlib-devel
|
||||
|
||||
%ifarch i686
|
||||
BuildRequires: which kmod-libs
|
||||
@ -20,12 +26,6 @@ Obsoletes: %{name}-libs
|
||||
Provides: %{name}-libs-debuginfo
|
||||
Obsoletes: %{name}-libs-debuginfo
|
||||
|
||||
#change pci.ids directory to hwdata, fedora/rhel specific
|
||||
Patch6000: 6000-pciutils-2.2.1-idpath.patch
|
||||
|
||||
#add support for directory with another pci.ids, rejected by upstream, rhbz#195327
|
||||
Patch6001: 6001-pciutils-dir-d.patch
|
||||
|
||||
%description
|
||||
The PCI Utilities are a collection of programs for inspecting and manipulating configuration
|
||||
of PCI devices, all based on a common portable library libpci which offers access to the PCI
|
||||
@ -56,7 +56,7 @@ Requires: man
|
||||
This contains man files for the using of pciutils.
|
||||
|
||||
%prep
|
||||
%autosetup -Sgit -n %{name}-%{version}
|
||||
%autosetup -n %{name}-%{version} -p1
|
||||
|
||||
%build
|
||||
make SHARED="no" ZLIB="no" LIBKMOD=yes STRIP="" OPT="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS" PREFIX="/usr" %{?_smp_mflags}
|
||||
@ -91,7 +91,7 @@ rm -rf $RPM_BUILD_ROOT/usr/share/hwdata/pci.ids*
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc README ChangeLog pciutils.lsm COPYING
|
||||
/sbin/lspci
|
||||
/usr/bin/lspci
|
||||
/sbin/setpci
|
||||
/sbin/update-pciids
|
||||
/%{_lib}/libpci.so.*
|
||||
@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT/usr/share/hwdata/pci.ids*
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%changelog
|
||||
* Tue Nov 7 2023 liyanan <liyanan61@h-partners.com> - 3.8.0-1
|
||||
- update to v3.8.0
|
||||
|
||||
* Tue Feb 9 2021 Zhiqiang Liu <liuzhiqiang26@huawei.com> - 3.6.4-4
|
||||
- solve i686 dependency problem and set release num to 4 for CI
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user