* [gentoo-commits] repo/gentoo:master commit in: net-fs/minio/files/, net-fs/minio/
@ 2017-11-27 19:31 Manuel Rüger
0 siblings, 0 replies; 2+ messages in thread
From: Manuel Rüger @ 2017-11-27 19:31 UTC (permalink / raw
To: gentoo-commits
commit: 1ea141586298d6e943ff3fc589a9a8f2b65f24d1
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 27 18:44:33 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Nov 27 19:30:06 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ea14158
net-fs/minio: Version bump
Package-Manager: Portage-2.3.16, Repoman-2.3.6
net-fs/minio/Manifest | 1 +
net-fs/minio/files/minio.initd | 11 +++++++
net-fs/minio/minio-0_pre20171122.ebuild | 52 +++++++++++++++++++++++++++++++++
3 files changed, 64 insertions(+)
diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
index 66c8030646b..a99b30105ef 100644
--- a/net-fs/minio/Manifest
+++ b/net-fs/minio/Manifest
@@ -1,2 +1,3 @@
DIST minio-0_pre20170929.tar.gz 6976881 SHA256 6e78d07d272630f1cad4cd7950a19206bdadaa2b6721f74df65ec85dd88b36a0 SHA512 f22ab87f4fadbe332acd7db9155fff5fb79c55357071627397d51b3a2c26eaf7f80c53b9ed37822d72948610d3d1805e70abaca6f3e39b26c3c1e4e6770cae44 WHIRLPOOL bd43ae7b1dcd196e90db5ffac8aa6643435af76582147ac50890221ff964a1cf36d8fe8411ae47148bb5cd0929f09c541c11abbaa3eb54c2efb40f3368104894
DIST minio-0_pre20171027.tar.gz 6904926 SHA256 62f3baf0312302f3a3066f941157ba7d4347cfbaa13748e5786d1890a8a906e5 SHA512 15be3adf502efb9eecf2ef83a8339a1c965ee9ff6507e4a61e13faa187a3592cd88f9868716ce2834e54dde03f3bec12337a68e72fbaddf103c880ce3c4554f2 WHIRLPOOL 4c0af6e2ef356f1590dd99cbd754ef52e276791944e1776833ace870d5969c8e53f29cda554369458764bffe6891a7a51ac69590a958d7ae69622ecb48de79e0
+DIST minio-0_pre20171122.tar.gz 7030932 BLAKE2B a06b81bcc16c9880a13a615f894d04f55e6824feed603bb466e0d95c6ed1b1e9c28b639e5ef6240e0d33ac17791465def51bf7b92f7a9c836c0a20541d2b422c SHA512 06f404381c33a053c402b90b1353b4a5284923bb5b5264eef5b6a59fa94e6f85f4bf8306a865bba2eeccdf4b484e92c1d353a7a15d8dacc1a5d8c11d108dc8fe
diff --git a/net-fs/minio/files/minio.initd b/net-fs/minio/files/minio.initd
new file mode 100644
index 00000000000..3e64ba16f75
--- /dev/null
+++ b/net-fs/minio/files/minio.initd
@@ -0,0 +1,11 @@
+#!/sbin/openrc-run
+# Copyright 2016-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="Minio Object Storage Server"
+pidfile=${pidfile:-"/run/${SVCNAME}.pid"}
+command="/usr/bin/minio"
+command_args="${command_args:-server /var/lib/minio}"
+command_background="true"
+start_stop_daemon_args="--stdout /var/log/${SVCNAME}.log \
+ --stderr /var/log/${SVCNAME}.log"
diff --git a/net-fs/minio/minio-0_pre20171122.ebuild b/net-fs/minio/minio-0_pre20171122.ebuild
new file mode 100644
index 00000000000..f542c660635
--- /dev/null
+++ b/net-fs/minio/minio-0_pre20171122.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/minio/minio"
+VERSION="2017-11-22T19-55-46Z"
+EGIT_COMMIT="d1a6c32d800f1d5b703baad1f8aeede6cf2cdf48"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="An Amazon S3 compatible object storage server"
+HOMEPAGE="https://github.com/minio/minio"
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+pkg_setup() {
+ enewgroup ${PN}
+ enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+}
+
+src_prepare() {
+ default
+ sed -i -e "s/time.Now().UTC().Format(time.RFC3339)/\"${VERSION}\"/"\
+ -e "s/-s //"\
+ -e "/time/d"\
+ -e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/"\
+ src/${EGO_PN}/buildscripts/gen-ldflags.go || die
+}
+
+src_compile() {
+ pushd src/${EGO_PN} || die
+ MINIO_RELEASE="${VERSION}"
+ go run buildscripts/gen-ldflags.go
+ GOPATH="${S}" go build --ldflags "$(go run buildscripts/gen-ldflags.go)" -o ${PN} || die
+ popd || die
+}
+
+src_install() {
+ pushd src/${EGO_PN} || die
+ dodoc -r README.md CONTRIBUTING.md MAINTAINERS.md docs
+ dobin minio
+ popd || die
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ keepdir /var/{lib,log}/${PN}
+ fowners ${PN}:${PN} /var/{lib,log}/${PN}
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-fs/minio/files/, net-fs/minio/
@ 2021-01-26 16:28 Mikle Kolyada
0 siblings, 0 replies; 2+ messages in thread
From: Mikle Kolyada @ 2021-01-26 16:28 UTC (permalink / raw
To: gentoo-commits
commit: 484871c90391456c214eff7d25c3d6a8295b0fe9
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 26 16:27:31 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Tue Jan 26 16:28:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=484871c9
net-fs/minio: add systemd support
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-fs/minio/files/minio.default | 4 +++
net-fs/minio/files/minio.service | 30 ++++++++++++++++++++++
....ebuild => minio-2021.01.16.02.19.44-r2.ebuild} | 15 ++++++++---
3 files changed, 45 insertions(+), 4 deletions(-)
diff --git a/net-fs/minio/files/minio.default b/net-fs/minio/files/minio.default
new file mode 100644
index 00000000000..769e01950b2
--- /dev/null
+++ b/net-fs/minio/files/minio.default
@@ -0,0 +1,4 @@
+MINIO_ACCESS_KEY="minio"
+MINIO_VOLUMES="/var/lib/minio"
+MINIO_OPTS="-C /etc/minio --address 127.0.0.1:9000"
+MINIO_SECRET_KEY="miniostorage"
diff --git a/net-fs/minio/files/minio.service b/net-fs/minio/files/minio.service
new file mode 100644
index 00000000000..21ee9f4768f
--- /dev/null
+++ b/net-fs/minio/files/minio.service
@@ -0,0 +1,30 @@
+[Unit]
+Description=MinIO
+Documentation=https://docs.min.io
+Wants=network-online.target
+After=network-online.target
+AssertFileIsExecutable=/usr/bin/minio
+
+[Service]
+User=minio
+Group=minio
+
+EnvironmentFile=/etc/default/minio
+ExecStartPre=/bin/sh -c "if [ -z \"${MINIO_VOLUMES}\" ]; then echo \"Variable MINIO_VOLUMES not set in /etc/default/minio\"; exit 1; fi"
+
+ExecStart=/usr/bin/minio server $MINIO_OPTS $MINIO_VOLUMES
+
+# Let systemd restart this service always
+Restart=always
+
+# Specifies the maximum file descriptor number that can be opened by this process
+LimitNOFILE=65536
+
+# Disable timeout logic and wait until process is stopped
+TimeoutStopSec=infinity
+SendSIGKILL=no
+
+[Install]
+WantedBy=multi-user.target
+
+# Built for ${project.name}-${project.version} (${project.name})
diff --git a/net-fs/minio/minio-2021.01.16.02.19.44-r1.ebuild b/net-fs/minio/minio-2021.01.16.02.19.44-r2.ebuild
similarity index 99%
rename from net-fs/minio/minio-2021.01.16.02.19.44-r1.ebuild
rename to net-fs/minio/minio-2021.01.16.02.19.44-r2.ebuild
index 3c67daa84cd..78d4e7e6280 100644
--- a/net-fs/minio/minio-2021.01.16.02.19.44-r1.ebuild
+++ b/net-fs/minio/minio-2021.01.16.02.19.44-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit go-module
+inherit go-module systemd
MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z"
MY_PV=${MY_PV//./-}
@@ -946,8 +946,15 @@ src_compile() {
src_install() {
dobin minio
+
+ insinto /etc/defult
+ doins "${FILESDIR}"/minio.default
+
dodoc -r README.md CONTRIBUTING.md docs
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- keepdir /var/{lib,log}/${PN}
- fowners ${PN}:${PN} /var/{lib,log}/${PN}
+
+ systemd_dounit "${FILESDIR}"/minio.service
+ newinitd "${FILESDIR}"/minio.initd minio
+
+ keepdir /var/{lib,log}/minio
+ fowners minio:minio /var/{lib,log}/minio
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-01-26 16:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-26 16:28 [gentoo-commits] repo/gentoo:master commit in: net-fs/minio/files/, net-fs/minio/ Mikle Kolyada
-- strict thread matches above, loose matches on Subject: below --
2017-11-27 19:31 Manuel Rüger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox