diff --git a/metadata/md5-cache/net-fs/goofys-bin-0.24.0 b/metadata/md5-cache/net-fs/goofys-bin-0.24.0 new file mode 100644 index 0000000..c0c4f54 --- /dev/null +++ b/metadata/md5-cache/net-fs/goofys-bin-0.24.0 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=A high-performance, user-space file system for mounting Amazon S3 buckets (binary) +EAPI=7 +HOMEPAGE=https://github.com/kahing/goofys +KEYWORDS=-* ~amd64 +LICENSE=Apache-2.0 +SLOT=0 +SRC_URI=https://github.com/kahing/goofys/releases/download/v0.24.0/goofys -> goofys-bin-0.24.0-amd64 +_md5_=14c992eed6e14ead7565b932e0289593 diff --git a/net-fs/goofys-bin/Manifest b/net-fs/goofys-bin/Manifest new file mode 100644 index 0000000..ac8db95 --- /dev/null +++ b/net-fs/goofys-bin/Manifest @@ -0,0 +1,2 @@ +DIST goofys-bin-0.24.0-amd64 23296633 BLAKE2B 87bec49d4c02e4996865c1a766485f954e75afb17cda44996598ff8b228ab0cefd5f236e366a7f4b61ba2d7c90b30aac3ad19cdc9615cfe9bc8dabe3bbfbdcae SHA512 c46f0be44c347e45cdf45b718a77910588025d06bbaaae4df21c47b47ec1295ea672b8a887e04b65a23eafab478aeb9494b0f15ab62f683d28bac8fa8cc897ff +EBUILD goofys-bin-0.24.0.ebuild 624 BLAKE2B 366c5e72ca8af67887642619b8b119f41c1bccf890f1adddc62262e700d25903d5de8e7b83bec5266636157bf048ea80aa6a5e706c53d30a521a28a120e6639d SHA512 23f2b45ed2fd3b4a7c2cf990868f7aacb6edea86cfd16e7f760248230be8c707ddc7a91bf8958ba1023a3422f40f74dd42bf0e7717e6efe34ac6535bc367a147 diff --git a/net-fs/goofys-bin/goofys-bin-0.24.0.ebuild b/net-fs/goofys-bin/goofys-bin-0.24.0.ebuild new file mode 100644 index 0000000..7a6eb11 --- /dev/null +++ b/net-fs/goofys-bin/goofys-bin-0.24.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A high-performance, user-space file system for mounting Amazon S3 buckets (binary)" +HOMEPAGE="https://github.com/kahing/goofys" +SRC_URI="https://github.com/kahing/goofys/releases/download/v${PV}/goofys -> ${P}-amd64" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="-* ~amd64" + +RDEPEND="" + +QA_PREBUILT="*" + +S="${WORKDIR}" + +src_unpack() { + cp "${DISTDIR}/${P}-$(usex amd64 amd64 x86)" "${S}/${PN}" || die +} + +src_install() { + dobin "${S}/${PN}" + dodoc "${FILESDIR}/README.md" "${FILESDIR}/CHANGELOG.md" +} +