commit:     b8a8688cf0b041bc7fd65de8d08d6b854ff175d0
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 23 01:37:19 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Jan 23 01:40:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8a8688c

sys-apps/pciutils: bump to v3.6.3

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 sys-apps/pciutils/Manifest              |   1 +
 sys-apps/pciutils/pciutils-3.6.3.ebuild | 120 ++++++++++++++++++++++++++++++++
 2 files changed, 121 insertions(+)

diff --git a/sys-apps/pciutils/Manifest b/sys-apps/pciutils/Manifest
index 1194244e3fd..dc16869a715 100644
--- a/sys-apps/pciutils/Manifest
+++ b/sys-apps/pciutils/Manifest
@@ -1,3 +1,4 @@
 DIST pciutils-3.5.6.tar.gz 442190 BLAKE2B 
9f1237828436f0566caa13e49a154b40fcc41ddd165268011012e55a33ea401e3b78ddffecc6f0ec36efb24b6d9338a691167ac094d0d26f855e42cd055701bb
 SHA512 
dcdca7e0bce69d1bee1fa5ea480a9f38534d66da576fdc710aefd8eeb0c18bf6ec5b39e63019d29d6bae0ec2d3881f5d07a4a105ca04c320d84c17821f7297e4
 DIST pciutils-3.6.1.tar.gz 455061 BLAKE2B 
a9dcce9a79aa66101a77d9299aa7c4f2ae3ab9d7ec597790de7396d65e9c700e4e866b5702412972abbf9ffc2996ebad52782a26d9206cc8d33d96566072fb90
 SHA512 
2a9c86d826932ac6242677bdd0c5288c264b964aa14314aa7eda5379e687822656081883a2a1c5f846037db9bdba616381f84104d0b3b62cd34acf653faf3990
 DIST pciutils-3.6.2.tar.gz 473699 BLAKE2B 
ae7563f2d17334f54e6b055d135138e21d105fa5f5b71061a6de638ecf26c35d9de79cb67a691f936f42fcedb9a1f300e046dd892429195a9f54f9536e313110
 SHA512 
ab2bab26dd11f941286593135b751b811fa6199d4b5fb8a18e74f72709ea598ab0c0efa31ad6ca70949966dcf80cdfb16d53e5d339b773c69e0a12f132bb8577
+DIST pciutils-3.6.3.tar.gz 488501 BLAKE2B 
77a1ad1e034dac0bfa67ae3a40c34fc394510bb61af1f929e8feb3eb12e9d44b48cfeee0ba786580531222c75c33613b423aa79e535316d2543ac1ba4224312c
 SHA512 
0f6b272cf83e0ff857e4d38c72935709826af054620cd8d70cf8765d5f547f32bdccf5c76a47c8b24d8081b48c16882132a3b503f6a329e73a66089877d5e47b

diff --git a/sys-apps/pciutils/pciutils-3.6.3.ebuild 
b/sys-apps/pciutils/pciutils-3.6.3.ebuild
new file mode 100644
index 00000000000..f3a83e518b7
--- /dev/null
+++ b/sys-apps/pciutils/pciutils-3.6.3.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib toolchain-funcs multilib-minimal flag-o-matic
+
+DESCRIPTION="Various utilities dealing with the PCI bus"
+HOMEPAGE="http://mj.ucw.cz/sw/pciutils/ 
https://git.kernel.org/?p=utils/pciutils/pciutils.git";
+SRC_URI="https://git.kernel.org/pub/scm/utils/pciutils/pciutils.git/snapshot/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="dns +kmod static-libs +udev zlib"
+
+# Have the sub-libs in RDEPEND with [static-libs] since, logically,
+# our libpci.a depends on libz.a/etc... at runtime.
+LIB_DEPEND="
+       zlib? ( >=sys-libs/zlib-1.2.8-r1[static-libs(+),${MULTILIB_USEDEP}] )
+       udev? ( >=virtual/libudev-208[static-libs(-),${MULTILIB_USEDEP}] )
+"
+DEPEND="
+       kmod? ( sys-apps/kmod )
+       static-libs? ( ${LIB_DEPEND} )
+       !static-libs? ( ${LIB_DEPEND//static-libs([+-]),} )
+"
+RDEPEND="
+       ${DEPEND}
+       sys-apps/hwids
+"
+DEPEND="
+       ${DEPEND}
+       kmod? ( virtual/pkgconfig )
+"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-3.1.9-static-pc.patch
+)
+
+MULTILIB_WRAPPED_HEADERS=( /usr/include/pci/config.h )
+
+switch_config() {
+       [[ $# -ne 2 ]] && return 1
+       local opt=$1 val=$2
+
+       sed "s@^\(${opt}=\).*\$@\1${val}@" -i Makefile || die
+       return 0
+}
+
+src_prepare() {
+       default
+
+       if use static-libs ; then
+               cp -pPR "${S}" "${S}.static" || die
+               mv "${S}.static" "${S}/static" || die
+       fi
+
+       multilib_copy_sources
+}
+
+multilib_src_configure() {
+       append-lfs-flags #471102
+}
+
+pemake() {
+       emake \
+               HOST="${CHOST}" \
+               CROSS_COMPILE="${CHOST}-" \
+               CC="$(tc-getCC)" \
+               AR="$(tc-getAR)" \
+               PKG_CONFIG="$(tc-getPKG_CONFIG)" \
+               RANLIB="$(tc-getRANLIB)" \
+               DNS=$(usex dns) \
+               IDSDIR='$(SHAREDIR)/misc' \
+               MANDIR='$(SHAREDIR)/man' \
+               PREFIX="${EPREFIX}/usr" \
+               SHARED="yes" \
+               STRIP="" \
+               ZLIB=$(usex zlib) \
+               PCI_COMPRESSED_IDS=0 \
+               PCI_IDS=pci.ids \
+               LIBDIR="\${PREFIX}/$(get_libdir)" \
+               LIBKMOD=$(multilib_native_usex kmod) \
+               HWDB=$(usex udev) \
+               "$@"
+}
+
+multilib_src_compile() {
+       pemake OPT="${CFLAGS}" all
+       if use static-libs ; then
+               pemake \
+                       -C "${BUILD_DIR}/static" \
+                       OPT="${CFLAGS}" \
+                       SHARED="no" \
+                       lib/libpci.a
+       fi
+}
+
+multilib_src_install() {
+       pemake DESTDIR="${D}" install install-lib
+       use static-libs && dolib.a "${BUILD_DIR}/static/lib/libpci.a"
+}
+
+multilib_src_install_all() {
+       dodoc ChangeLog README TODO
+
+       rm "${ED}"/usr/sbin/update-pciids "${ED}"/usr/share/misc/pci.ids \
+               "${ED}"/usr/share/man/man8/update-pciids.8*
+
+       newinitd "${FILESDIR}"/init.d-pciparm pciparm
+       newconfd "${FILESDIR}"/conf.d-pciparm pciparm
+}
+
+pkg_postinst() {
+       if [[ ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 
3.2.0 ; then
+               elog "The 'network-cron' USE flag is gone; if you want a more 
up-to-date"
+               elog "pci.ids file, you should use sys-apps/hwids-99999999 
(live ebuild)."
+       fi
+}

Reply via email to