From: "Mikle Kolyada" <zlogene@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/minio/
Date: Sun, 9 Sep 2018 10:43:44 +0000 (UTC) [thread overview]
Message-ID: <1536489780.c3cda993ce4bc795e5094f71633991fc79c45074.zlogene@gentoo> (raw)
commit: c3cda993ce4bc795e5094f71633991fc79c45074
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 9 10:43:00 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Sep 9 10:43:00 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3cda993
net-fs/minio: Snapshot bump
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-fs/minio/Manifest | 1 +
net-fs/minio/minio-2018.09.01.00.38.25.ebuild | 53 +++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
index b330c2f31b6..2ce7ce8bd54 100644
--- a/net-fs/minio/Manifest
+++ b/net-fs/minio/Manifest
@@ -1,3 +1,4 @@
DIST minio-0_pre20180516.tar.gz 7795495 BLAKE2B d14fcbcbf4fa3b9a85bfa1f42d1069b14d4eceb4b99c2e7619d463a1fcdb941183146102da7ac38351fdf332b4bf7a141ede5469b57fc2157be19ff7ecde3e73 SHA512 6f5811500010f6e309e3918883c2127a46ba003dc43ece2c6d8a5da9e8d5aa6c2e6e4ca9dfdb4128b11327e035dcdde607b5e4ace045df1fa073d674d8b97e5a
DIST minio-2018.07.23.18.34.49.tar.gz 8390586 BLAKE2B 57eecb767e67bdfe52259ed9ee111548c0d41313e0bd0fd60676cb910f8ec7b5f22aaf54055147b440295384df96e0a709bb4c1e7bc6d65d07f3d7e633a444b5 SHA512 7d49fb8ece251eb8672d60ac69d0ba4b1ad61901fc5707a9d3c45736c89f5cb313255d7e5c006c5682fb88fcc61c7e638350b76f8b534655bd0a8af20ec51ea8
DIST minio-2018.08.02.23.11.36.tar.gz 8381976 BLAKE2B 4081dcb34af05e6643ac64648b2cf6dfeff7119441f79c0958b02ff7a9229ba0f46d63e3922afbb4286702a9f86dbcfb6bf1268d6a1bb4df651618ddbeb95f15 SHA512 edc1178825aa50d93dfccbeebf9370c54c61c10f0046b13ec5b25a2ae727f6520496dcfa3e42fd9b2fcaa767210db3138e0ac604ef9c87278be9e3aa4a1f78ff
+DIST minio-2018.09.01.00.38.25.tar.gz 8731636 BLAKE2B 4332d97d63c0e113de6e88ff9a4b1fc2db9b3e9b23caff19651641fcf08b5fd86c04155a30e84228433fd76160b70fb6e774421ec85a03df6fc94bdbde545ac1 SHA512 f445153be70c7370d8c96c3d7504ab4cb067fe8d36e0e0a8c014a026cf96fb3bddc9fb9b312a954a1c505e0ee7a36e33f67f3a460f8db58105d9880ee4a8de05
diff --git a/net-fs/minio/minio-2018.09.01.00.38.25.ebuild b/net-fs/minio/minio-2018.09.01.00.38.25.ebuild
new file mode 100644
index 00000000000..0cc7045b5ef
--- /dev/null
+++ b/net-fs/minio/minio-2018.09.01.00.38.25.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot eapi7-ver
+
+EGO_PN="github.com/minio/minio"
+MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z"
+MY_PV=${MY_PV//./-}
+EGIT_COMMIT="a091b1a3eefbaea07499bef9a5462280ec9d2a7a"
+ARCHIVE_URI="https://${EGO_PN}/archive/RELEASE.${MY_PV}.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)/\"${MY_PV}\"/"\
+ -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="${MY_PV}"
+ 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}
+}
next reply other threads:[~2018-09-09 10:43 UTC|newest]
Thread overview: 85+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-09 10:43 Mikle Kolyada [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-09-29 7:34 [gentoo-commits] repo/gentoo:master commit in: net-fs/minio/ Jakov Smolić
2022-09-10 21:11 William Hubbs
2021-04-19 18:37 Mike Gilbert
2021-04-19 14:00 Mikle Kolyada
2021-04-19 14:00 Mikle Kolyada
2021-04-19 13:24 Mikle Kolyada
2021-04-19 13:14 Mikle Kolyada
2021-04-19 13:05 Mikle Kolyada
2021-04-09 17:18 Mikle Kolyada
2021-04-06 21:48 John Helmert III
2021-03-27 14:16 Mikle Kolyada
2021-03-21 17:56 Mikle Kolyada
2021-03-12 14:02 Mikle Kolyada
2021-03-09 15:39 Mikle Kolyada
2021-03-09 15:39 Mikle Kolyada
2021-02-07 18:40 Mikle Kolyada
2021-01-26 14:37 Mikle Kolyada
2021-01-26 14:37 Mikle Kolyada
2021-01-26 13:22 Mikle Kolyada
2020-06-22 22:24 William Hubbs
2019-09-21 17:12 Mikle Kolyada
2019-09-13 16:57 Mikle Kolyada
2019-08-31 14:16 Mikle Kolyada
2019-08-22 11:26 Mikle Kolyada
2019-08-16 19:36 Mikle Kolyada
2019-08-16 19:31 Mikle Kolyada
2019-08-02 18:37 Mikle Kolyada
2019-08-01 8:48 Mikle Kolyada
2019-07-25 20:55 Mikle Kolyada
2019-07-25 12:47 Mikle Kolyada
2019-06-23 11:01 Mikle Kolyada
2019-04-28 12:38 Mikle Kolyada
2019-04-09 12:26 Mikle Kolyada
2019-04-05 12:46 Mikle Kolyada
2019-03-28 7:39 Mikle Kolyada
2019-03-21 22:10 Mikle Kolyada
2019-03-14 18:10 Mikle Kolyada
2019-03-12 16:04 Mikle Kolyada
2019-03-12 16:04 Mikle Kolyada
2019-03-07 17:05 Mikle Kolyada
2019-02-28 10:45 Mikle Kolyada
2019-02-21 17:50 Mikle Kolyada
2019-02-15 6:17 Mikle Kolyada
2019-02-13 10:01 Mikle Kolyada
2019-02-07 10:06 Mikle Kolyada
2019-01-31 14:19 Mikle Kolyada
2019-01-30 9:16 Mikle Kolyada
2019-01-25 8:25 Mikle Kolyada
2019-01-17 17:11 Mikle Kolyada
2019-01-10 9:07 Mikle Kolyada
2019-01-09 8:03 Fabian Groffen
2018-12-28 6:27 Mikle Kolyada
2018-12-20 17:55 Mikle Kolyada
2018-12-13 20:33 Mikle Kolyada
2018-12-06 18:12 Mikle Kolyada
2018-11-30 20:46 Mikle Kolyada
2018-11-30 11:13 Mikle Kolyada
2018-11-22 15:18 Mikle Kolyada
2018-11-17 7:15 Mikle Kolyada
2018-11-15 14:10 Mikle Kolyada
2018-11-10 12:40 Mikle Kolyada
2018-10-25 19:49 Mikle Kolyada
2018-10-25 17:42 Mikle Kolyada
2018-10-19 20:17 Mikle Kolyada
2018-10-12 13:11 Mikle Kolyada
2018-09-28 8:25 Mikle Kolyada
2018-09-13 12:12 Mikle Kolyada
2018-08-13 2:36 Mikle Kolyada
2018-08-05 13:08 Manuel Rüger
2018-07-24 15:23 Manuel Rüger
2018-06-06 12:31 Manuel Rüger
2018-05-17 15:21 Manuel Rüger
2018-04-26 1:47 Manuel Rüger
2018-04-13 14:10 Manuel Rüger
2018-03-30 14:19 Manuel Rüger
2018-03-30 14:19 Manuel Rüger
2018-02-27 12:50 Manuel Rüger
2017-11-28 16:02 Manuel Rüger
2017-11-27 19:31 Manuel Rüger
2017-11-20 18:11 Manuel Rüger
2017-11-20 18:11 Manuel Rüger
2017-10-20 12:13 Manuel Rüger
2017-09-10 12:18 Manuel Rüger
2017-06-23 17:58 Manuel Rüger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1536489780.c3cda993ce4bc795e5094f71633991fc79c45074.zlogene@gentoo \
--to=zlogene@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox