sys-apps/pciutils: add 3.15.0

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2026-04-06 06:10:37 +01:00
parent 4b22570d1b
commit 37c1d113f2
2 changed files with 180 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST pciutils-3.14.0.tar.gz 722554 BLAKE2B 3ab270c4523cc1968d5f3a03d2564eff5560b60eb8307bafe44ee240a6636dc676fbf0a28effe3c9abc99bfc86a975aea066d634a5e5adaffb2c63ba226511d9 SHA512 35cabfd8af8b0673440c7eba77fae8cad295f2618376148233b735ac032499e23967f863d48656d4c6f38b250db013747c92ed9719a57cd4e2df3065056f6c27
DIST pciutils-3.14.0.tar.gz.asc 228 BLAKE2B 315f758e9b3a7e17cac14371bebd889e6725ba4bb223f2cfa690a6dbccea106b63fbaff36f098ec492173b6641ec49531d9284ec4ecd48fab29b800b8e9482b4 SHA512 0de5196d96d802a72eb2a5de953af67370424b03a72be91aa5a7240a69b939900db5aa48609d52e1c38f5609e6c40c20644f9d1853708e0fd55ea105efe88ab1
DIST pciutils-3.15.0.tar.gz 740612 BLAKE2B 29d3d38be6a3b8abce8db86e9160fc27ce966375f2ea441dff20cad9d7f7dfebe42a17d6054a406ed0d52035ad9c9071837e0e7650c954ff1c84514554f6c34f SHA512 7c62b42ec875580106274ec7b3e74170e07ff0314341299e257d428db5fd623d995671731715c3f051ba2026f380439d1e88c106cc552a63445e38b04bc1a709
DIST pciutils-3.15.0.tar.gz.asc 228 BLAKE2B 325159e25eae59f103ee675b1be867c94ba35ccbd2524c8ab04ca917083c871633360699747ed793b9b2cfa4d23efa60ec0bcb4e41af45f1b5022b605d68d62b SHA512 1d3edc44da06eac0ded96de317a496ed3f48a3df5c942848c463954bdf4b659bee596dddaec1558899dfc7a09638aad6a4d3533df7d98cbc9912dab82cad85db

View File

@@ -0,0 +1,178 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/martinmares.asc
inherit toolchain-funcs multilib-minimal flag-o-matic verify-sig
DESCRIPTION="Various utilities dealing with the PCI bus"
HOMEPAGE="https://mj.ucw.cz/sw/pciutils/ https://git.kernel.org/?p=utils/pciutils/pciutils.git"
SRC_URI="
https://mj.ucw.cz/download/linux/pci/${P}.tar.gz
verify-sig? ( https://mj.ucw.cz/download/linux/pci/${P}.tar.gz.sign -> ${P}.tar.gz.asc )
"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="dns +kmod static-libs +udev zlib"
REQUIRED_USE="static-libs? ( !udev )"
# Have the sub-libs in RDEPEND with [static-libs] since, logically,
# our libpci.a depends on libz.a/etc... at runtime.
LIB_DEPEND="zlib? ( >=virtual/zlib-1.2.8-r1:=[static-libs(+),${MULTILIB_USEDEP}] )"
DEPEND="
kmod? ( sys-apps/kmod )
udev? ( >=virtual/libudev-208[${MULTILIB_USEDEP}] )
static-libs? ( ${LIB_DEPEND} )
!static-libs? ( ${LIB_DEPEND//static-libs([+-]),} )
"
RDEPEND="
${DEPEND}
sys-apps/hwdata
"
# See bug #847133 re binutils check
BDEPEND="
|| ( >=sys-devel/binutils-2.37:* llvm-core/lld sys-devel/native-cctools )
kmod? ( virtual/pkgconfig )
verify-sig? ( sec-keys/openpgp-keys-martinmares )
"
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
}
check_binutils_version() {
if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! tc-ld-is-gold && ! tc-ld-is-lld ; then
# Okay, hopefully it's Binutils' bfd.
# bug #847133
# Convert this:
# ```
# GNU ld (Gentoo 2.38 p4) 2.38
# Copyright (C) 2022 Free Software Foundation, Inc.
# This program is free software; you may redistribute it under the terms of
# the GNU General Public License version 3 or (at your option) a later version.
# This program has absolutely no warranty.
# ```
#
# into...
# ```
# 2.38
# ```
local ver=$($(tc-getLD) --version 2>&1 | head -n 1 | rev | cut -d' ' -f1 | rev)
if ! [[ ${ver} =~ [0-9].[0-9][0-9] ]] ; then
# Skip if unrecognised format so we don't pass something
# odd into ver_cut.
return
fi
ver_major=$(ver_cut 1 "${ver}")
ver_minor=$(ver_cut 2 "${ver}")
# We use 2.37 here, not 2.35, as https://github.com/pciutils/pciutils/issues/98 mentions
# because we've had other miscompiles with older Binutils (not just build failures!)
# and we don't want people running any unsupported versions of Binutils. An example
# of this is where glibc is completely broken with old binutils: bug #802036. It's
# just not sustainable to support.
if [[ ${ver_major} -eq 2 && ${ver_minor} -lt 37 ]] ; then
eerror "Old version of binutils activated! ${P} cannot be built with an old version."
eerror "Please follow these steps:"
eerror "1. Select a newer binutils (>= 2.37) using binutils-config"
eerror " (If no such version is installed, run emerge -v1 sys-devel/binutils)"
eerror "2. Run: . /etc/profile"
eerror "3. Try emerging again with: emerge -v1 ${CATEGORY}/${P}"
eerror "4. Complete your world upgrade if you were performing one."
eerror "5. Perform a depclean (emerge -acv)"
eerror "\tYou MUST depclean after every world upgrade in future!"
die "Old binutils found! Change to a newer ld using binutils-config (bug #847133)."
fi
fi
}
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && check_binutils_version
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && check_binutils_version
}
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() {
# bug #640836, bug #852929
# Still broken in 3.10.0, see https://github.com/pciutils/pciutils/pull/144.
filter-lto
# bug #471102
append-lfs-flags
}
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)/hwdata' \
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/man/man8/update-pciids.8* || die
rm -r "${ED}"/usr/share/hwdata || die
newinitd "${FILESDIR}"/init.d-pciparm pciparm
newconfd "${FILESDIR}"/conf.d-pciparm pciparm
}