minio: Add last gateway/fs mode release

Signed-off-by: Stefan Knoblich <stkn@bitplumber.de>
This commit is contained in:
2023-09-14 18:01:37 +02:00
parent 3de7d34209
commit 9c38198bfe

View File

@@ -0,0 +1,59 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit go-module systemd
MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z"
MY_PV=${MY_PV//./-}
EGIT_COMMIT=fc6c7949727ec261cd57fbdb02fa7575d0fd8e61
DESCRIPTION="An Amazon S3 compatible object storage server"
HOMEPAGE="https://github.com/minio/minio"
SRC_URI="https://github.com/minio/minio/archive/RELEASE.${MY_PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://git.bitplumber.de/api/packages/stkn/generic/gentoo-overlay/distfiles/${P}-deps.tar.xz"
LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~riscv ~amd64-linux"
RESTRICT="test"
DEPEND="
acct-user/minio
acct-group/minio
"
S="${WORKDIR}/${PN}-RELEASE.${MY_PV}"
src_prepare() {
default
sed -i \
-e "s/commitTime()\.Format(time\.RFC3339)/\"${MY_PV}\"/" \
-e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/" \
buildscripts/gen-ldflags.go || die
}
src_compile() {
MINIO_RELEASE="${MY_PV}"
go run buildscripts/gen-ldflags.go || die
go build \
--ldflags "$(go run buildscripts/gen-ldflags.go)" -o ${PN} || die
}
src_install() {
dobin minio
insinto /etc/default
doins "${FILESDIR}"/minio.default
dodoc -r README.md CONTRIBUTING.md docs
systemd_dounit "${FILESDIR}"/minio.service
newinitd "${FILESDIR}"/minio.initd minio
keepdir /var/{lib,log}/minio
fowners minio:minio /var/{lib,log}/minio
}