commit:     5bf68440c7a87635518321a8bb6b552cdee574a2
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 25 08:22:20 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Sun Feb 25 08:23:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf68440

net-fs/s3fs: add 1.94

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 net-fs/s3fs/Manifest         |  1 +
 net-fs/s3fs/s3fs-1.94.ebuild | 67 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 68 insertions(+)

diff --git a/net-fs/s3fs/Manifest b/net-fs/s3fs/Manifest
index 3d9e2494233f..bf655a3ac062 100644
--- a/net-fs/s3fs/Manifest
+++ b/net-fs/s3fs/Manifest
@@ -1 +1,2 @@
 DIST s3fs-1.93.tar.gz 284353 BLAKE2B 
bae0d850f69f04b18327790406260721a0a2d981f5b2cbc8e6ebc059f4db83bd0810780b68d334a50cbba4654301a395683a778567ce3f08d4b9f69fef5ed282
 SHA512 
613ad713ac426236b471aa4b2f8292ee0558017f149bfe51aa7fad1bacd60fccf00c31404ebc14b692787e524704e9cd9111b84540f1309ba99900d42d03dc5d
+DIST s3fs-1.94.tar.gz 291170 BLAKE2B 
86a0271cfedc38778b4e8a50cb4515a3b921e0c69618ff7b2db411a95c3ed37e43f5e394c47937fd9072530177faf4f014e395feb519e995bf386d538318d3bf
 SHA512 
1a29d4f0b73f844ea1d4ad6e0b36d601fb7ab5818af0a90564b77182564c04fbef308362a9a749038b17f28f07f79b6debb661610f69c039a405b931361abe9c

diff --git a/net-fs/s3fs/s3fs-1.94.ebuild b/net-fs/s3fs/s3fs-1.94.ebuild
new file mode 100644
index 000000000000..a5488b8694a9
--- /dev/null
+++ b/net-fs/s3fs/s3fs-1.94.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+MY_PN=${PN}-fuse
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Amazon S3 mounting via fuse"
+HOMEPAGE="https://github.com/s3fs-fuse/s3fs-fuse/";
+SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+IUSE="gnutls nettle nss"
+REQUIRED_USE="nettle? ( gnutls !nss )"
+
+# Requires active internet connection and it tries to download some binaries 
for later execution
+RESTRICT="test"
+
+DEPEND="
+       dev-libs/libxml2:2
+       net-misc/curl
+       sys-fs/fuse:0
+       nss? ( dev-libs/nss )
+       !nss? (
+               gnutls? (
+                       net-libs/gnutls:=
+                       nettle? ( dev-libs/nettle:= )
+               )
+               !gnutls? ( dev-libs/openssl:0= )
+       )
+"
+
+RDEPEND="${DEPEND}
+       app-misc/mime-types
+"
+
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+       default
+
+       sed -i 's/ -D_FORTIFY_SOURCE=3//' configure.ac || die
+
+       eautoreconf
+}
+
+src_configure() {
+       local myeconfargs=(
+               $(use_with nettle)
+       )
+       if use nss; then
+               myeconfargs+=( $(use_with nss) )
+       elif use gnutls; then
+               myeconfargs+=( $(use_with gnutls) )
+       else
+               myeconfargs+=( --with-openssl )
+       fi
+
+       econf "${myeconfargs[@]}"
+}

Reply via email to