From: "Matthew Smith" <matthew@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/s3fs/
Date: Tue, 8 Mar 2022 20:20:14 +0000 (UTC) [thread overview]
Message-ID: <1646770793.6f6c13055f32ca486ea9cbf966b5c0b98edb7ec4.matthew@gentoo> (raw)
commit: 6f6c13055f32ca486ea9cbf966b5c0b98edb7ec4
Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Tue Mar 8 16:20:42 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Tue Mar 8 20:19:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f6c1305
net-fs/s3fs: add 1.91
Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/24454
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
net-fs/s3fs/Manifest | 1 +
net-fs/s3fs/s3fs-1.91.ebuild | 57 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 58 insertions(+)
diff --git a/net-fs/s3fs/Manifest b/net-fs/s3fs/Manifest
index d71b218b7f9a..667beb1953d6 100644
--- a/net-fs/s3fs/Manifest
+++ b/net-fs/s3fs/Manifest
@@ -1,3 +1,4 @@
DIST s3fs-1.86.tar.gz 183636 BLAKE2B 78996960725699fee4c0c2b131c227acc073fca407f1057ae636167a7a2313e460f1e3a89c7d8a3741987d8ba46ab1827f8f7c882261ed78bb5c5148ce935d42 SHA512 a4f79d9ae526427d5d41b5cd1519e4aac605e8bbd97079aec2a67562f0322fa5664d770d565aed4fca83ae254ab3c0454d25f4b86ec4d148a57c7745e07f5e14
DIST s3fs-1.89.tar.gz 221263 BLAKE2B cf84709acd6820d67b2b84fba1ebb4dcbd491f30df704ff78d8967619d1b7775fc2e4c1b3eec736243f77dc8fb9f01d7d0dcefe5a521dfaeb118b006c8a2e40b SHA512 650a7ea4d9197f310d8c24d76460a47e62e1d467b68dab0c78041c8e7dbb49c3983893680e53fe5f01a578fff96d2723b547fbd62d8f3efbc5188207da9d4e97
DIST s3fs-1.90.tar.gz 231942 BLAKE2B 3e4de5f2deda82febd7be176657e6e5ad31da90fed07c2ecf719f0f30d048d03bbcde6fe5628346ba0b4adb4a74fb0c78fbd4882a5e7d6f98fa301b32945a93c SHA512 f1b74676b9c83e5b99bdd59666eea8cdcd9a6fcd2f9237aaf33fd6e12d642f26ee11a3c3ffb0248ea7ce24ac31ae45eeb5f2bd7f04b8e91ed8a04004d59a550d
+DIST s3fs-1.91.tar.gz 242590 BLAKE2B b65119f480b35a6325fa6d498e260309f65778abf97fc9f82bf423004e142f998a1c4b5c80c74a2932a6fa714956fd4f6a0b71e102061ff4f08ff0a82bdbb05c SHA512 5b57af18395f34885b4b8a98e93b0e3f9043c9af78e415a0a6c15489611d7e21ae619e69655737de369edee15762d8726b82bc2651b5b7f5c20e26fe866a96bc
diff --git a/net-fs/s3fs/s3fs-1.91.ebuild b/net-fs/s3fs/s3fs-1.91.ebuild
new file mode 100644
index 000000000000..9f4f765d87a1
--- /dev/null
+++ b/net-fs/s3fs/s3fs-1.91.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2022 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 +openssl test"
+REQUIRED_USE="
+ ^^ ( gnutls nss openssl )
+ nettle? ( gnutls )"
+
+# Requires active internet connection
+RESTRICT="test"
+
+DEPEND="
+ dev-libs/libxml2:2
+ net-misc/curl
+ sys-fs/fuse:0
+ gnutls? ( net-libs/gnutls:= )
+ nettle? ( dev-libs/nettle:= )
+ nss? ( dev-libs/nss )
+ openssl? ( dev-libs/openssl:0= )
+"
+
+RDEPEND="${DEPEND}
+ app-misc/mime-types
+"
+
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_with gnutls)
+ $(use_with nettle)
+ $(use_with nss)
+ $(use_with openssl)
+ )
+ econf "${myeconfargs[@]}"
+}
next reply other threads:[~2022-03-08 23:57 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-08 20:20 Matthew Smith [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-03 9:25 [gentoo-commits] repo/gentoo:master commit in: net-fs/s3fs/ Petr Vaněk
2024-10-30 9:40 Petr Vaněk
2024-03-28 7:09 Petr Vaněk
2024-03-27 12:46 Arthur Zamarin
2024-03-27 12:46 Arthur Zamarin
2024-02-25 8:24 Petr Vaněk
2023-12-04 12:30 Petr Vaněk
2023-09-11 9:33 Sam James
2023-09-11 9:33 Sam James
2023-08-11 7:29 Joonas Niilola
2023-08-11 7:29 Joonas Niilola
2023-07-14 16:23 Arthur Zamarin
2023-07-14 16:19 Arthur Zamarin
2023-05-27 7:49 Joonas Niilola
2023-05-27 7:49 Joonas Niilola
2022-12-18 12:26 Sam James
2022-12-18 11:39 Sam James
2022-03-11 18:43 Matthew Smith
2022-03-09 7:06 Jakov Smolić
2022-03-09 7:06 Jakov Smolić
2022-02-25 10:29 Yixun Lan
2021-04-10 7:45 Joonas Niilola
2021-04-10 7:45 Joonas Niilola
2021-03-31 2:23 Sam James
2021-03-30 16:26 Thomas Deutschmann
2021-03-20 8:25 Joonas Niilola
2020-10-05 11:43 Joonas Niilola
2020-02-06 6:20 Joonas Niilola
2019-11-12 5:36 Joonas Niilola
2019-11-12 5:36 Joonas Niilola
2018-03-20 4:40 Tim Harder
2018-03-20 4:40 Tim Harder
2017-11-26 23:11 David Seifert
2016-12-22 10:45 Göktürk Yüksek
2016-12-22 10:45 Göktürk Yüksek
2016-12-20 20:09 Thomas Deutschmann
2016-12-20 18:08 Tobias Klausmann
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=1646770793.6f6c13055f32ca486ea9cbf966b5c0b98edb7ec4.matthew@gentoo \
--to=matthew@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