summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2021-06-05 11:37:54 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2021-06-05 11:50:54 +0100
commitb827122c2c12aedaf52e4c1ed6ae186fc273d955 (patch)
tree5d1a8ec1f993544cfe80b0e6ff993d640071ea30 /sys-fs
parentmedia-fonts/terminus-font: bump up to 4.49.1 (diff)
downloadgentoo-b827122c2c12aedaf52e4c1ed6ae186fc273d955.tar.gz
gentoo-b827122c2c12aedaf52e4c1ed6ae186fc273d955.tar.bz2
gentoo-b827122c2c12aedaf52e4c1ed6ae186fc273d955.zip
sys-fs/libeatmydata: bump up to 129
Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/libeatmydata/Manifest1
-rw-r--r--sys-fs/libeatmydata/libeatmydata-129.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/sys-fs/libeatmydata/Manifest b/sys-fs/libeatmydata/Manifest
index 1185b80833a3..f76ee6105087 100644
--- a/sys-fs/libeatmydata/Manifest
+++ b/sys-fs/libeatmydata/Manifest
@@ -1 +1,2 @@
DIST libeatmydata-105.tar.gz 419427 BLAKE2B 251fc4226ddddce16abc16c8a0717cd69621e8c166cf7a7dec1c8782c2a25edcf26e34f1a09bd2b6153a46eb99a6cf4b1adc334db188201b12a27b4a1562ed03 SHA512 fb2ac1400d5e3c44bfc952c72f29a4c7234edf5b756a9602ad822c57fbc9813c35d2da9492e2982abf81e0826d278da2d31ee1865e806754e0b387ad699367d4
+DIST libeatmydata-129.tar.gz 358437 BLAKE2B 448cff19629fa1a07443a52ebe16a7bf9a8ac7d0c2688e89555ed6c9c2369695a70ae2abf1b74152b3c305e6bc019e2e9808af6642122cd10a73deb7dfb580f2 SHA512 dbd0ea4df77034ecbb75955394b15aec6f1331205a5c7aa4a6e0595e3e486bbcc81c28a264bf5441c660563f74bfb06630da98373d481a2ebd9e9b1538c109d1
diff --git a/sys-fs/libeatmydata/libeatmydata-129.ebuild b/sys-fs/libeatmydata/libeatmydata-129.ebuild
new file mode 100644
index 000000000000..bb2148e907ef
--- /dev/null
+++ b/sys-fs/libeatmydata/libeatmydata-129.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-util/strace )"
+
+ECONF_SOURCE="${S}"
+
+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 "${D}" -name '*.la' -type f -delete || die
+
+ dodoc AUTHORS README.md
+}