Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/minio/files/, net-fs/minio/
Date: Mon, 27 Nov 2017 19:31:06
Message-Id: 1511811006.1ea141586298d6e943ff3fc589a9a8f2b65f24d1.mrueg@gentoo
1 commit: 1ea141586298d6e943ff3fc589a9a8f2b65f24d1
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 27 18:44:33 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 27 19:30:06 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ea14158
7
8 net-fs/minio: Version bump
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 net-fs/minio/Manifest | 1 +
13 net-fs/minio/files/minio.initd | 11 +++++++
14 net-fs/minio/minio-0_pre20171122.ebuild | 52 +++++++++++++++++++++++++++++++++
15 3 files changed, 64 insertions(+)
16
17 diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
18 index 66c8030646b..a99b30105ef 100644
19 --- a/net-fs/minio/Manifest
20 +++ b/net-fs/minio/Manifest
21 @@ -1,2 +1,3 @@
22 DIST minio-0_pre20170929.tar.gz 6976881 SHA256 6e78d07d272630f1cad4cd7950a19206bdadaa2b6721f74df65ec85dd88b36a0 SHA512 f22ab87f4fadbe332acd7db9155fff5fb79c55357071627397d51b3a2c26eaf7f80c53b9ed37822d72948610d3d1805e70abaca6f3e39b26c3c1e4e6770cae44 WHIRLPOOL bd43ae7b1dcd196e90db5ffac8aa6643435af76582147ac50890221ff964a1cf36d8fe8411ae47148bb5cd0929f09c541c11abbaa3eb54c2efb40f3368104894
23 DIST minio-0_pre20171027.tar.gz 6904926 SHA256 62f3baf0312302f3a3066f941157ba7d4347cfbaa13748e5786d1890a8a906e5 SHA512 15be3adf502efb9eecf2ef83a8339a1c965ee9ff6507e4a61e13faa187a3592cd88f9868716ce2834e54dde03f3bec12337a68e72fbaddf103c880ce3c4554f2 WHIRLPOOL 4c0af6e2ef356f1590dd99cbd754ef52e276791944e1776833ace870d5969c8e53f29cda554369458764bffe6891a7a51ac69590a958d7ae69622ecb48de79e0
24 +DIST minio-0_pre20171122.tar.gz 7030932 BLAKE2B a06b81bcc16c9880a13a615f894d04f55e6824feed603bb466e0d95c6ed1b1e9c28b639e5ef6240e0d33ac17791465def51bf7b92f7a9c836c0a20541d2b422c SHA512 06f404381c33a053c402b90b1353b4a5284923bb5b5264eef5b6a59fa94e6f85f4bf8306a865bba2eeccdf4b484e92c1d353a7a15d8dacc1a5d8c11d108dc8fe
25
26 diff --git a/net-fs/minio/files/minio.initd b/net-fs/minio/files/minio.initd
27 new file mode 100644
28 index 00000000000..3e64ba16f75
29 --- /dev/null
30 +++ b/net-fs/minio/files/minio.initd
31 @@ -0,0 +1,11 @@
32 +#!/sbin/openrc-run
33 +# Copyright 2016-2017 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +description="Minio Object Storage Server"
37 +pidfile=${pidfile:-"/run/${SVCNAME}.pid"}
38 +command="/usr/bin/minio"
39 +command_args="${command_args:-server /var/lib/minio}"
40 +command_background="true"
41 +start_stop_daemon_args="--stdout /var/log/${SVCNAME}.log \
42 + --stderr /var/log/${SVCNAME}.log"
43
44 diff --git a/net-fs/minio/minio-0_pre20171122.ebuild b/net-fs/minio/minio-0_pre20171122.ebuild
45 new file mode 100644
46 index 00000000000..f542c660635
47 --- /dev/null
48 +++ b/net-fs/minio/minio-0_pre20171122.ebuild
49 @@ -0,0 +1,52 @@
50 +# Copyright 1999-2017 Gentoo Foundation
51 +# Distributed under the terms of the GNU General Public License v2
52 +
53 +EAPI=6
54 +inherit user golang-build golang-vcs-snapshot
55 +
56 +EGO_PN="github.com/minio/minio"
57 +VERSION="2017-11-22T19-55-46Z"
58 +EGIT_COMMIT="d1a6c32d800f1d5b703baad1f8aeede6cf2cdf48"
59 +ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
60 +KEYWORDS="~amd64"
61 +
62 +DESCRIPTION="An Amazon S3 compatible object storage server"
63 +HOMEPAGE="https://github.com/minio/minio"
64 +SRC_URI="${ARCHIVE_URI}"
65 +LICENSE="Apache-2.0"
66 +SLOT="0"
67 +IUSE=""
68 +
69 +RESTRICT="test"
70 +
71 +pkg_setup() {
72 + enewgroup ${PN}
73 + enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
74 +}
75 +
76 +src_prepare() {
77 + default
78 + sed -i -e "s/time.Now().UTC().Format(time.RFC3339)/\"${VERSION}\"/"\
79 + -e "s/-s //"\
80 + -e "/time/d"\
81 + -e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/"\
82 + src/${EGO_PN}/buildscripts/gen-ldflags.go || die
83 +}
84 +
85 +src_compile() {
86 + pushd src/${EGO_PN} || die
87 + MINIO_RELEASE="${VERSION}"
88 + go run buildscripts/gen-ldflags.go
89 + GOPATH="${S}" go build --ldflags "$(go run buildscripts/gen-ldflags.go)" -o ${PN} || die
90 + popd || die
91 +}
92 +
93 +src_install() {
94 + pushd src/${EGO_PN} || die
95 + dodoc -r README.md CONTRIBUTING.md MAINTAINERS.md docs
96 + dobin minio
97 + popd || die
98 + newinitd "${FILESDIR}"/${PN}.initd ${PN}
99 + keepdir /var/{lib,log}/${PN}
100 + fowners ${PN}:${PN} /var/{lib,log}/${PN}
101 +}