public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/mountpoint-s3-bin/
@ 2023-09-11  6:37 Vitaly Zdanevich
  0 siblings, 0 replies; 6+ messages in thread
From: Vitaly Zdanevich @ 2023-09-11  6:37 UTC (permalink / raw
  To: gentoo-commits

commit:     4d7004fc93fc0fe3c5414b1a96e792c085f1451c
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Mon Sep 11 06:37:48 2023 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Mon Sep 11 06:37:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4d7004fc

sys-fs/mountpoint-s3-bin: new package, add 1.0.1

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-fs/mountpoint-s3-bin/Manifest                  |  1 +
 sys-fs/mountpoint-s3-bin/metadata.xml              | 28 ++++++++++++++++++++++
 .../mountpoint-s3-bin-1.0.1.ebuild                 | 21 ++++++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/sys-fs/mountpoint-s3-bin/Manifest b/sys-fs/mountpoint-s3-bin/Manifest
new file mode 100644
index 0000000000..f1978fc90c
--- /dev/null
+++ b/sys-fs/mountpoint-s3-bin/Manifest
@@ -0,0 +1 @@
+DIST mount-s3-1.0.1-x86_64.tar.gz 14139077 BLAKE2B 0cd32334cf893559253b26f71b06e996c0628bbc2bc0884cf897d72605944bed3b819554b93268547b364ad0f746c04b03bfba8f331ffb7209752aba54eff2bb SHA512 f5d2c2a79cea02d53000b63adaaa2efb05903d13ea4e5081beec50c2c24298ac598a275fcce8cf015a8e7245bf9b048d519e7313a88c653eba1b88137a59257f

diff --git a/sys-fs/mountpoint-s3-bin/metadata.xml b/sys-fs/mountpoint-s3-bin/metadata.xml
new file mode 100644
index 0000000000..3f41b359ac
--- /dev/null
+++ b/sys-fs/mountpoint-s3-bin/metadata.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Vitaly Zdanevich</name>
+		<email>zdanevich.vitaly@ya.ru</email>
+	</maintainer>
+	<longdescription lang="en">
+Mountpoint for Amazon S3 is a simple, high-throughput file client for mounting an Amazon S3 bucket as a local file system. With Mountpoint for Amazon S3, your applications can access objects stored in Amazon S3 through file operations like open and read. Mountpoint for Amazon S3 automatically translates these operations into S3 object API calls, giving your applications access to the elastic storage and throughput of Amazon S3 through a file interface.
+
+Mountpoint for Amazon S3 is optimized for applications that need high read throughput to large objects, potentially from many clients at once, and to write new objects sequentially from a single client at a time. This means it's a great fit for applications that use a file interface to:
+
+* read large objects from S3, potentially from many instances concurrently, without downloading them to local storage first
+* access only some S3 objects out of a larger data set, but can't predict which objects in advance
+* upload their output to S3 directly, or upload files from local storage with tools like cp
+
+but probably not the right fit for applications that:
+
+* use file operations that S3 doesn't natively support, like directory renaming or symlinks
+* make edits to existing files (don't work on your Git repository or run vim in Mountpoint 😄)
+
+Mountpoint for Amazon S3 does not implement all the features of a POSIX file system, and there are some differences that may affect compatibility with your application. See Mountpoint file system behavior for a detailed description of Mountpoint for Amazon S3's behavior and POSIX support and how they could affect your application.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">awslabs/mountpoint-s3</remote-id>
+		<bugs-to>https://github.com/awslabs/mountpoint-s3/issues</bugs-to>
+	</upstream>
+</pkgmetadata>

diff --git a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
new file mode 100644
index 0000000000..05fd6dc765
--- /dev/null
+++ b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2023 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Fuse for AWS S3 (Simple Storage Service), official"
+HOMEPAGE="https://github.com/awslabs/mountpoint-s3"
+
+SRC_URI="https://s3.amazonaws.com/mountpoint-s3-release/${PV}/x86_64/mount-s3-${PV}-x86_64.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+RDEPEND="sys-fs/fuse:0"
+
+S="${WORKDIR}"
+
+src_install() {
+	newbin "${S}/bin/mount-s3" mount-s3-bin
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/mountpoint-s3-bin/
@ 2023-09-11  6:58 Vitaly Zdanevich
  0 siblings, 0 replies; 6+ messages in thread
From: Vitaly Zdanevich @ 2023-09-11  6:58 UTC (permalink / raw
  To: gentoo-commits

commit:     d4f590f664d13f7cbb4292afea3c56eba6defe8d
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Mon Sep 11 06:57:49 2023 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Mon Sep 11 06:57:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d4f590f6

sys-fs/mountpoint-s3-bin: replace hardcode to ${PN}

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
index 05fd6dc765..d10e0a3177 100644
--- a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
+++ b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
@@ -17,5 +17,5 @@ RDEPEND="sys-fs/fuse:0"
 S="${WORKDIR}"
 
 src_install() {
-	newbin "${S}/bin/mount-s3" mount-s3-bin
+	newbin "${S}/bin/mount-s3" ${PN}
 }


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/mountpoint-s3-bin/
@ 2023-09-11 20:58 Vitaly Zdanevich
  0 siblings, 0 replies; 6+ messages in thread
From: Vitaly Zdanevich @ 2023-09-11 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     f1deb3bfe21153925d398f18d8379ee50ac6007b
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Mon Sep 11 20:58:29 2023 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Mon Sep 11 20:58:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1deb3bf

sys-fs/mountpoint-s3-bin: add QA_FLAGS_IGNORED

Closes: https://bugs.gentoo.org/913974
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
index d10e0a3177..b25b7ecbb9 100644
--- a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
+++ b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
@@ -16,6 +16,8 @@ RDEPEND="sys-fs/fuse:0"
 
 S="${WORKDIR}"
 
+QA_FLAGS_IGNORED="/usr/bin/${PN}"
+
 src_install() {
 	newbin "${S}/bin/mount-s3" ${PN}
 }


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/mountpoint-s3-bin/
@ 2023-09-14  1:12 Lucio Sauer
  0 siblings, 0 replies; 6+ messages in thread
From: Lucio Sauer @ 2023-09-14  1:12 UTC (permalink / raw
  To: gentoo-commits

commit:     0c830d8ebca188ab6d17e6b648f0533ab49f7e15
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Thu Sep 14 01:12:10 2023 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Thu Sep 14 01:12:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0c830d8e

sys-fs/mountpoint-s3-bin: update LICENSE

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
index b25b7ecbb9..5d4ab49701 100644
--- a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
+++ b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Foundation
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,6 +10,8 @@ SRC_URI="https://s3.amazonaws.com/mountpoint-s3-release/${PV}/x86_64/mount-s3-${
 KEYWORDS="~amd64"
 
 LICENSE="Apache-2.0"
+# Dependent crate licenses
+LICENSE+=" Apache-2.0 BSD BSD-2 ISC MIT openssl Unicode-DFS-2016 ZLIB"
 SLOT="0"
 
 RDEPEND="sys-fs/fuse:0"


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/mountpoint-s3-bin/
@ 2023-11-22  8:52 Vitaly Zdanevich
  0 siblings, 0 replies; 6+ messages in thread
From: Vitaly Zdanevich @ 2023-11-22  8:52 UTC (permalink / raw
  To: gentoo-commits

commit:     113e86910a9153479880debc54e1bab68753aef7
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Wed Nov 22 08:52:13 2023 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Wed Nov 22 08:52:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=113e8691

sys-fs/mountpoint-s3-bin: drop 1.0.1, add 1.1.1

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-fs/mountpoint-s3-bin/Manifest                                       | 2 +-
 .../{mountpoint-s3-bin-1.0.1.ebuild => mountpoint-s3-bin-1.1.1.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mountpoint-s3-bin/Manifest b/sys-fs/mountpoint-s3-bin/Manifest
index f1978fc90c..f528eea8cf 100644
--- a/sys-fs/mountpoint-s3-bin/Manifest
+++ b/sys-fs/mountpoint-s3-bin/Manifest
@@ -1 +1 @@
-DIST mount-s3-1.0.1-x86_64.tar.gz 14139077 BLAKE2B 0cd32334cf893559253b26f71b06e996c0628bbc2bc0884cf897d72605944bed3b819554b93268547b364ad0f746c04b03bfba8f331ffb7209752aba54eff2bb SHA512 f5d2c2a79cea02d53000b63adaaa2efb05903d13ea4e5081beec50c2c24298ac598a275fcce8cf015a8e7245bf9b048d519e7313a88c653eba1b88137a59257f
+DIST mount-s3-1.1.1-x86_64.tar.gz 14987504 BLAKE2B caf724eb25883b935fdd9be831710250fc035774ca5ea35be55dd160387289bffe2be44ab404734a70ecf3764620b66ef63d4c64240b78aa5b67bfd16a2f525c SHA512 cdfc0b3baaf978a8799fa5710aa00fed3fcadace49ae6e935fd3a43b4c9440752b2f1c8218998122d1eb6432d0b176914f3d0ebfc46597a04e51a4d3499c0812

diff --git a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.1.1.ebuild
similarity index 100%
rename from sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
rename to sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.1.1.ebuild


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/mountpoint-s3-bin/
@ 2024-02-15 10:57 Vitaly Zdanevich
  0 siblings, 0 replies; 6+ messages in thread
From: Vitaly Zdanevich @ 2024-02-15 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     b9ec961f68f4be335ae433286d931bcee56f5e8e
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Thu Feb 15 10:57:14 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Thu Feb 15 10:57:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b9ec961f

sys-fs/mountpoint-s3-bin: replace QA_FLAGS_IGNORED to QA_PREBUILT

Closes: https://bugs.gentoo.org/show_bug.cgi?id=913973
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.1.1.ebuild b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.1.1.ebuild
index 5d4ab49701..19f5ca2ec1 100644
--- a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.1.1.ebuild
+++ b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.1.1.ebuild
@@ -18,7 +18,7 @@ RDEPEND="sys-fs/fuse:0"
 
 S="${WORKDIR}"
 
-QA_FLAGS_IGNORED="/usr/bin/${PN}"
+QA_PREBUILT="/usr/bin/${PN}"
 
 src_install() {
 	newbin "${S}/bin/mount-s3" ${PN}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-02-15 10:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-11  6:37 [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/mountpoint-s3-bin/ Vitaly Zdanevich
  -- strict thread matches above, loose matches on Subject: below --
2023-09-11  6:58 Vitaly Zdanevich
2023-09-11 20:58 Vitaly Zdanevich
2023-09-14  1:12 Lucio Sauer
2023-11-22  8:52 Vitaly Zdanevich
2024-02-15 10:57 Vitaly Zdanevich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox