diff options
author | Sam James <sam@gentoo.org> | 2023-11-25 06:33:29 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-11-25 06:33:29 +0000 |
commit | b95a009f008265251004bda7fdcc737684a36763 (patch) | |
tree | 6dc6f3efa460e046c26ecc60680a07ca07761144 /sys-fs/libeatmydata | |
parent | net-libs/libpcap: drop 1.10.3 (diff) | |
download | gentoo-b95a009f008265251004bda7fdcc737684a36763.tar.gz gentoo-b95a009f008265251004bda7fdcc737684a36763.tar.bz2 gentoo-b95a009f008265251004bda7fdcc737684a36763.zip |
sys-fs/libeatmydata: drop 130
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs/libeatmydata')
-rw-r--r-- | sys-fs/libeatmydata/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/libeatmydata/files/libeatmydata-130-implicit-function-decl-test.patch | 18 | ||||
-rw-r--r-- | sys-fs/libeatmydata/libeatmydata-130.ebuild | 39 |
3 files changed, 0 insertions, 58 deletions
diff --git a/sys-fs/libeatmydata/Manifest b/sys-fs/libeatmydata/Manifest index 3675698a430d..a49dc78fce99 100644 --- a/sys-fs/libeatmydata/Manifest +++ b/sys-fs/libeatmydata/Manifest @@ -1,2 +1 @@ -DIST libeatmydata-130.tar.gz 375627 BLAKE2B a1f65050572e8a7fc8345082a12e2831a8fb1e68e1d198ae507752375b2081a79fa6e5e589028104cd9d767d86b4d453c0eac0ad7f366c90d6734f5868f8e0cd SHA512 80edeee1b39e14d10e7d04d7fff63a233119c6e13216e92ec786cc41ecd79eb58937da0e621aaef697490e9fb285f3e1109b786ee6967fa1736bb4879e100f18 DIST libeatmydata-131.tar.gz 368469 BLAKE2B 1b59f80ba72caeafa40272c5996e0fb03774c69c35d7a2194d312e53c48212caca84abed56ec63a9fba2b4142efbee4aa371c3869a76f8c5674936ffe0daea5d SHA512 064417dc085cb82e4baf1d160fcde2c6e0d9fed60e5c595799630b030053c373d888853055894c127c5b384be9204e8bbb251877651811b5fc5cdca8ffd9cf42 diff --git a/sys-fs/libeatmydata/files/libeatmydata-130-implicit-function-decl-test.patch b/sys-fs/libeatmydata/files/libeatmydata-130-implicit-function-decl-test.patch deleted file mode 100644 index da8403ca2c11..000000000000 --- a/sys-fs/libeatmydata/files/libeatmydata-130-implicit-function-decl-test.patch +++ /dev/null @@ -1,18 +0,0 @@ -/var/tmp/portage/sys-fs/libeatmydata-130/work/libeatmydata-130/libeatmydata/test/tst-invalidfd.c:31:13: error: implicit declaration of function ‘sync_file_range’; did you mean ‘copy_file_range’? [-Werror=implicit-function-declaration] - 31 | r = sync_file_range(fd, 0, 0, 0); - | ^~~~~~~~~~~~~~~ - | copy_file_range ---- a/libeatmydata/test/tst-invalidfd.c -+++ b/libeatmydata/test/tst-invalidfd.c -@@ -17,6 +17,11 @@ - - #include <stdio.h> - #include <errno.h> -+ -+#ifdef HAVE_SYNC_FILE_RANGE -+#include <fcntl.h> -+#endif -+ - #include <unistd.h> - #include <assert.h> - diff --git a/sys-fs/libeatmydata/libeatmydata-130.ebuild b/sys-fs/libeatmydata/libeatmydata-130.ebuild deleted file mode 100644 index 70deafe4c9f4..000000000000 --- a/sys-fs/libeatmydata/libeatmydata-130.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Multilib because "handy to inject into wine" -inherit multilib-minimal - -DESCRIPTION="LD_PRELOAD hack to convert sync()/msync() and the like to NO-OP" -HOMEPAGE="https://www.flamingspork.com/projects/libeatmydata/" -SRC_URI="https://github.com/stewartsmith/${PN}/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND="test? ( dev-util/strace )" - -PATCHES=( - "${FILESDIR}"/${PN}-130-implicit-function-decl-test.patch -) - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf -} - -multilib_src_test() { - # Sandbox fools LD_PRELOAD and libeatmydata does not get control - # feature of sandbox - SANDBOX_ON=0 LD_PRELOAD= emake -k check -} - -multilib_src_install_all() { - find "${ED}" -name '*.la' -type f -delete || die - - dodoc AUTHORS README.md -} |