From 7fe6984499f95d52b3c32af6ab771aa8f08c2dd4 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 22 Mar 2024 19:00:48 +0000 Subject: gentoo auto-resync : 22:03:2024 - 19:00:48 --- x11-libs/libpciaccess/Manifest | 3 -- .../files/libpciaccess-0.17-musl-lfs.patch | 40 ---------------------- x11-libs/libpciaccess/libpciaccess-0.17-r1.ebuild | 33 ------------------ 3 files changed, 76 deletions(-) delete mode 100644 x11-libs/libpciaccess/files/libpciaccess-0.17-musl-lfs.patch delete mode 100644 x11-libs/libpciaccess/libpciaccess-0.17-r1.ebuild (limited to 'x11-libs/libpciaccess') diff --git a/x11-libs/libpciaccess/Manifest b/x11-libs/libpciaccess/Manifest index c725fd29c1bf..02f1abd41709 100644 --- a/x11-libs/libpciaccess/Manifest +++ b/x11-libs/libpciaccess/Manifest @@ -1,6 +1,3 @@ -AUX libpciaccess-0.17-musl-lfs.patch 1579 BLAKE2B b7753c4e180287eb5c21d044c49557df6cb7c11e39470f234451f7681b774bf83a484ed3ed220d0ca019d2e9414116df9b7164514fe8302576b2612f35b9f171 SHA512 8f8085331dddd4b57e35b993f9c4f80f2c9623b31d9a74c7c44210866cca43f57ee747a0c8b6cb0dcd87f6fdb0e0dbb7c731ce519276f6864dce8065b2787023 -DIST libpciaccess-0.17.tar.xz 331768 BLAKE2B 41539b3d6385fe7c42b562c7602f87b07730bbbeea7d65d3cc8e5af974ed5f9985b0779d51891493dd241a36bb171a3744e3b1f3fd30bee8a19bb5bd785f4c5f SHA512 8484605c66ef18c8d8a3e029a6d33e26fcaa450c1263790d89ac8b0a160ffb2dfceaa6140ac9ad7d8087283ecbec8ac801f757e44890d547c3cbecd2c922ca47 DIST libpciaccess-0.18.tar.xz 64452 BLAKE2B 06309f98aee985c92c2389344fdd0fcb4bebc6c69d71198e6bf5bc165dce85c7fd54aa1ff9454ee430264a8e1ff283976508285523d48d9948e242c53157761f SHA512 54dff9a493344586d072edf8c8eb8f7960c7dfd64aa5c51a8ec8d4e341f703fd39eb606ee41c4fdd9d5aad3372b7efe6e0fe96eadc575ea91de276320ebc3fbd -EBUILD libpciaccess-0.17-r1.ebuild 729 BLAKE2B 5e3f6a138221cccfd825ad6796bd40e1253d7870b2b38a2a7d5c43a7f22c91b9c22c6192e3d87371414d110fef20b7cee937a2bc12a56ebebba66845163cb5af SHA512 08fd6bc92746274ce06bf5e04021b8c54fec249884dc833e0178a89dd49a2099426b6f470c26fc55e0a8c0556657159f453317bba44df4359c80d9ff06dd3217 EBUILD libpciaccess-0.18.ebuild 681 BLAKE2B e9d212dc357520f06930599862398e04403e8eed60ad80858fab5ebaacbc05f1be7005ba6e3ea6c7335427ceae4f6fa3d3fed0f1176128565cd06d38ca77510b SHA512 af3d0feea5f8aab53b8a5226c556e21f9eea6f07f3cb68460dbec2c4ac493cab6357eaa48e5a3c0b3c2f63a973c09f915a7cb4915777da5a6a7810aa90ad926d MISC metadata.xml 343 BLAKE2B 841587af1693a1a28bc87d7785e79805abf10ea86b5b2bc117b786f005eb18c2d4369a6b7668c7ae6d41de19f2820d2957007b3c5417706713b26ffb5e67ece5 SHA512 89fe0feea88e2fca82867d6ef538a88576626681d6cc1e14c96784d0f0ff7ac9f09434440e8aec295a4fc5e4b07a3b681592129c26777e6182d3369e0720b035 diff --git a/x11-libs/libpciaccess/files/libpciaccess-0.17-musl-lfs.patch b/x11-libs/libpciaccess/files/libpciaccess-0.17-musl-lfs.patch deleted file mode 100644 index cfd7a1469b25..000000000000 --- a/x11-libs/libpciaccess/files/libpciaccess-0.17-musl-lfs.patch +++ /dev/null @@ -1,40 +0,0 @@ -https://bugs.gentoo.org/905913 -https://gitlab.freedesktop.org/xorg/lib/libpciaccess/-/commit/833c86ce15cee2a84a37ae71015f236fd32615d9 - -From 833c86ce15cee2a84a37ae71015f236fd32615d9 Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Fri, 11 Nov 2022 11:15:58 -0800 -Subject: [PATCH] linux_sysfs: Use pwrite/pread instead of 64bit versions - -pread64/pwrite64 are aliased to pread/pwrite when largefile support is -enabled e.g. using _FILE_OFFSET_BITS=64 macro - -This helps it compile on latest musl C library based systems where these -functions are put under _LARGEFILE64_SOURCE which is to be removed once -all packages start using 64bit off_t, it works with glibc becuase -_GNU_SOURCE feature macro also defines _LARGEFILE64_SOURCE, thats not -the case with musl - -Signed-off-by: Khem Raj ---- a/src/linux_sysfs.c -+++ b/src/linux_sysfs.c -@@ -462,7 +462,7 @@ pci_device_linux_sysfs_read( struct pci_device * dev, void * data, - - - while ( temp_size > 0 ) { -- const ssize_t bytes = pread64( fd, data_bytes, temp_size, offset ); -+ const ssize_t bytes = pread( fd, data_bytes, temp_size, offset ); - - /* If zero bytes were read, then we assume it's the end of the - * config file. -@@ -522,7 +522,7 @@ pci_device_linux_sysfs_write( struct pci_device * dev, const void * data, - - - while ( temp_size > 0 ) { -- const ssize_t bytes = pwrite64( fd, data_bytes, temp_size, offset ); -+ const ssize_t bytes = pwrite( fd, data_bytes, temp_size, offset ); - - /* If zero bytes were written, then we assume it's the end of the - * config file. --- -GitLab diff --git a/x11-libs/libpciaccess/libpciaccess-0.17-r1.ebuild b/x11-libs/libpciaccess/libpciaccess-0.17-r1.ebuild deleted file mode 100644 index fae2b84d7825..000000000000 --- a/x11-libs/libpciaccess/libpciaccess-0.17-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -XORG_MULTILIB=yes -XORG_TARBALL_SUFFIX="xz" -inherit xorg-3 meson-multilib - -DESCRIPTION="Library providing generic access to the PCI bus and devices" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-solaris" -IUSE="zlib" - -DEPEND=" - zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] )" -RDEPEND="${DEPEND} - sys-apps/hwdata" - -PATCHES=( - "${FILESDIR}"/${P}-musl-lfs.patch -) - -src_prepare() { - default -} - -multilib_src_configure() { - local emesonargs=( - -Dpci-ids="${EPREFIX}"/usr/share/hwdata - $(meson_feature zlib) - ) - meson_src_configure -} -- cgit v1.2.3