sys-fs/gcsfuse: add 2.11.2

Closes: https://bugs.gentoo.org/956317
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Viorel Munteanu
2025-06-07 10:44:44 +03:00
parent 764e9c7f33
commit c4f01cd0c1
2 changed files with 34 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST gcsfuse-1.2.0-vendor.tar.xz 2710988 BLAKE2B d84673e7eb636b8bc6fc687a68ba5121e4e36bcbc552018dcebd25b088cb8deca9611ec33404a6ea4f079a726e01b673f4e374fc04b40c73f99cb3569fd5d50f SHA512 aa6412d71515303b48ea9247a42efb13b1a6c58f785440aa78c1fbd5d2933e7d15bed006c82438b1af9077ae71e6f14c82ba2953dc3310862db861c6b2ae9644
DIST gcsfuse-1.2.0.tar.gz 447065 BLAKE2B 390c1a2e18c4e0e3074c7a3423323ec46b49162ac4a0247db747cf4378929c6b14485efd0bcc3472e300a90ff530c1cca82c892731bd1981b3cb7844aec57a97 SHA512 6cc808b5796caccea4471639d755f580ca9b029b295bf6a9cd1ee0c19ed91a47adbf4fd99b32f8b28765e6ffad0a9bd91ea27e840c97a308ef43f2091086d53f
DIST gcsfuse-2.11.2-vendor.tar.xz 4944360 BLAKE2B 2e435be126f7b21e00a8cba0240fbb5f244c2bc9a1d8ff1737161c11d3f5712af0bbc0ad781264277f47b8af6382ea9a2bf57d62c12be08370c7ce5befdc8977 SHA512 64c2500f93b2c3696f841f3c1919dff72e99060b33ed623c4b8d29a381524cdd001863811a13dd885da120676db6095b3a1e16671939d3be821f1865c01c6066
DIST gcsfuse-2.11.2.tar.gz 825432 BLAKE2B 4860641c0fe2c6d223a1cb210d4110f7e669df6ae60efbd56fa623a4aea5211a18f009b1744175a326a9249ec20d2f9b0feb23e03588b8cd57e5ed40e3d8665f SHA512 c2c97b52eb0d14d760a6bc00acd1b2ba599c061198b858ff91d20a06cbf4e8dcf9386c89cef79ad4ef79f5c9dbaba16599444d00f20780866c15e0f4397cb5a9

View File

@@ -0,0 +1,32 @@
# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A user-space file system for interacting with Google Cloud Storage"
HOMEPAGE="https://github.com/GoogleCloudPlatform/gcsfuse"
SRC_URI="https://github.com/GoogleCloudPlatform/gcsfuse/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~ceamac/${CATEGORY}/${PN}/${P}-vendor.tar.xz"
RDEPEND="sys-fs/fuse"
BDEPEND=">=dev-lang/go-1.21.0"
# generated using dev-go/golicense
LICENSE="Apache-2.0 BSD MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# tests require goimports, then fail anyway
RESTRICT="test"
src_compile() {
ego build -ldflags "-X main.gcsfuseVersion=${PV}" -v -x -work -o "${PN}" || die "build failed"
}
src_install() {
einstalldocs
dodoc -r docs
dobin gcsfuse
}