From: "Piotr Karbowski" <slashbeast@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mergerfs/
Date: Thu, 23 Jun 2022 20:51:03 +0000 (UTC) [thread overview]
Message-ID: <1656017438.d26cfa60a7e1ac552013d890db9d2799339501f0.slashbeast@gentoo> (raw)
commit: d26cfa60a7e1ac552013d890db9d2799339501f0
Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 23 20:50:38 2022 +0000
Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Thu Jun 23 20:50:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d26cfa60
sys-fs/mergerfs: 2.33.5 version bump
Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
sys-fs/mergerfs/Manifest | 1 +
sys-fs/mergerfs/mergerfs-2.33.5.ebuild | 52 ++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/sys-fs/mergerfs/Manifest b/sys-fs/mergerfs/Manifest
index cdff0268f586..77cab80d7477 100644
--- a/sys-fs/mergerfs/Manifest
+++ b/sys-fs/mergerfs/Manifest
@@ -2,3 +2,4 @@ DIST mergerfs-2.32.3.tar.gz 314280 BLAKE2B f7c5ab92f1241627bd91255b35bdd81782f15
DIST mergerfs-2.33.1.tar.gz 382421 BLAKE2B 0985a0ad53a12fe5283fd0e953cd74a835efd3e83f65ba4e96bc42814ce151d03f95c032eeebcc9821c7c15ae59d14b9e40055438b4482a337c5b7bc9503d27e SHA512 1178fbd4ad99c6c693e2c21551c7522107701b0d5c608a7c18be29825cf97f2a2b2d6a50094e800a74dddd9a3902c374f8b57e84a76c0640aa8e387aa095d300
DIST mergerfs-2.33.3.tar.gz 382386 BLAKE2B 49a2b75a2a39fbec178460f94696a918a0f872a7c904355c84180f8be07d9abdf68e342e7acca5093a621b85110d0a0fdb5650de68e04aa176250199eaa5bdb7 SHA512 aca5884a9d5dc03d7095e73461dee843d69463db72dfc033f76611d5417dab63ff29eb2b473f39f0390299c3aa882e6197a7038e82b58ab85799d39cc44b84d0
DIST mergerfs-2.33.4.tar.gz 382872 BLAKE2B fe369f377f731a6323566cf4d5076e9ba7dca302aae1125635433ab93927d3aad5ca57a95e0791742cdf80c7fa69cacdd16a6519593bad9e933e529974bd5d2a SHA512 e8bd0a502c045d6f93d34bce833108deaf1071a3e5c56eb61a59416067230d6e8f19f9b0f8c8aa9fe84060a886afae7509231c97fc6d9537d3ad3390ce342239
+DIST mergerfs-2.33.5.tar.gz 382895 BLAKE2B e45d6d5890046cce495f788924323052effe63ea570061ed1d031595f166c0e680fdbbcf01dd992263550d6c33a04d91a6fabd5c9f97381c5c3e6858c3e1c122 SHA512 9032142285d85e22d2a880a42ae379209d44d12d71adec6388afd43a9fb77675149ec8558bdb1f01de1b511b3d0bf910dd2ccb6f47c918df377d4d5e41368408
diff --git a/sys-fs/mergerfs/mergerfs-2.33.5.ebuild b/sys-fs/mergerfs/mergerfs-2.33.5.ebuild
new file mode 100644
index 000000000000..fb2d3b62a41b
--- /dev/null
+++ b/sys-fs/mergerfs/mergerfs-2.33.5.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="A featureful union filesystem"
+HOMEPAGE="https://github.com/trapexit/mergerfs"
+
+SRC_URI="https://github.com/trapexit/mergerfs/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+
+# Vendorized libfuse that's bundled is under LGPL-2.1.
+LICENSE="ISC LGPL-2.1"
+SLOT="0"
+IUSE="+xattr"
+
+DEPEND="
+ xattr? ( sys-apps/attr )
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="sys-devel/gettext"
+
+src_prepare() {
+ default
+
+ # Hand made build system at it's finest.
+ echo -e "#!/bin/sh\ntrue" >tools/update-version || die
+ echo "#pragma once" >src/version.hpp || die
+ echo "static const char MERGERFS_VERSION[] = \"${PV}\";" >>src/version.hpp || die
+
+ if ! use xattr; then
+ sed 's%USE_XATTR = 1%USE_XATTR = 0%g' -i Makefile || die
+ fi
+}
+
+src_compile() {
+ # https://bugs.gentoo.org/725978
+ tc-export AR CC CXX
+
+ default
+}
+
+src_install() {
+ dobin build/mergerfs
+ dosym mergerfs /usr/bin/mount.mergerfs
+ dodoc README.md
+ doman man/mergerfs.1
+}
next reply other threads:[~2022-06-23 20:51 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-23 20:51 Piotr Karbowski [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-24 11:21 [gentoo-commits] repo/gentoo:master commit in: sys-fs/mergerfs/ Petr Vaněk
2024-11-01 2:55 Sam James
2024-11-01 2:55 Sam James
2024-06-02 0:32 Sam James
2024-06-02 0:32 Sam James
2024-06-02 0:32 Sam James
2023-10-09 20:02 Sam James
2023-10-09 16:21 Arthur Zamarin
2023-08-09 18:14 Piotr Karbowski
2023-07-23 16:40 Piotr Karbowski
2023-07-23 16:40 Piotr Karbowski
2023-05-21 13:49 Arthur Zamarin
2023-05-21 0:50 Sam James
2023-05-02 15:21 Arthur Zamarin
2023-05-02 15:21 Arthur Zamarin
2023-04-18 21:24 Piotr Karbowski
2023-03-29 20:51 Piotr Karbowski
2023-03-06 13:04 Arthur Zamarin
2023-03-06 12:52 Arthur Zamarin
2023-01-30 21:53 Piotr Karbowski
2023-01-30 21:53 Piotr Karbowski
2022-12-09 22:32 Sam James
2022-12-09 21:55 Arthur Zamarin
2022-10-13 21:45 Piotr Karbowski
2022-06-24 7:11 Agostino Sarubbo
2022-06-24 7:07 Agostino Sarubbo
2022-03-27 23:20 Piotr Karbowski
2022-01-21 10:03 Jakov Smolić
2022-01-21 10:03 Jakov Smolić
2021-12-30 22:44 Piotr Karbowski
2021-12-30 22:44 Piotr Karbowski
2021-12-05 19:45 Piotr Karbowski
2021-08-19 21:10 Piotr Karbowski
2021-03-13 11:37 Sam James
2021-03-13 11:35 Sam James
2021-03-11 20:34 Piotr Karbowski
2021-02-09 23:34 Piotr Karbowski
2021-02-09 23:34 Piotr Karbowski
2021-02-04 14:42 Agostino Sarubbo
2021-02-04 14:09 Sam James
2021-02-03 22:06 Piotr Karbowski
2021-01-05 20:51 Sam James
2020-12-27 23:06 Sam James
2020-12-27 22:49 Piotr Karbowski
2020-12-10 22:23 Piotr Karbowski
2020-10-07 7:09 Agostino Sarubbo
2020-10-04 17:28 Piotr Karbowski
2020-03-08 10:37 Agostino Sarubbo
2020-03-07 20:59 Piotr Karbowski
2020-03-07 19:55 Piotr Karbowski
2019-12-10 9:54 Piotr Karbowski
2019-12-10 9:22 Piotr Karbowski
2019-12-09 20:01 Piotr Karbowski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1656017438.d26cfa60a7e1ac552013d890db9d2799339501f0.slashbeast@gentoo \
--to=slashbeast@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox