public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mikle Kolyada" <zlogene@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/minio/
Date: Thu, 31 Jan 2019 14:19:11 +0000 (UTC)	[thread overview]
Message-ID: <1548944329.8fe2ea7d5837096b16928af2d09ca296a8151d17.zlogene@gentoo> (raw)

commit:     8fe2ea7d5837096b16928af2d09ca296a8151d17
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 31 14:18:49 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jan 31 14:18:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe2ea7d

net-fs/minio: Version bump

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-fs/minio/Manifest                         |  1 +
 net-fs/minio/minio-2019.01.31.00.31.19.ebuild | 53 +++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
index 8611fa79ccf..0c3a633f8e2 100644
--- a/net-fs/minio/Manifest
+++ b/net-fs/minio/Manifest
@@ -5,3 +5,4 @@ DIST minio-2018.12.27.18.33.08.tar.gz 9102593 BLAKE2B 40e1a014edcfe84f9310bd09b0
 DIST minio-2019.01.10.00.21.20.tar.gz 9272639 BLAKE2B e8d64c436795894ad6e20cfc5acc193598312a6c1d7e20b58a1250f0bcc4791f004afd1dfed4d0e2d506f4690290d0d29596a263853c216456555792e84da5b2 SHA512 fe68bbd56f131ba4e189114b45fbf2f95925cce3a11384503c67debdc9eb04cf1c034f28f792adbcca373783cf74f3f57853a6e61241a5864898e19946c31e6f
 DIST minio-2019.01.16.21.44.08.tar.gz 9284989 BLAKE2B f54ecdd5892375c2bc8c3f2c8dc0144ee61c4e94342e12a27d8c55e1745b74c82a480a5562274553d2a5c968fc252ec8b95d0c708405089304b63520eb10405a SHA512 457c2adfe15a70c39fba8e8c7ac6dfa3dccc7265a725c932f57d4e45b5285859ce45701c8c7fa953300ad28322a46d1083f27e668ada5c3616c62337cdaf006c
 DIST minio-2019.01.23.23.18.58.tar.gz 9154650 BLAKE2B 4dd2f34edef4b994af25b1bc83fadc5993522f9ee9e54ef620fe54b43076f0fe147fe1343375343d6cc6c47ca31f762e9a033dfc2b3de76cfd55307f6fe36912 SHA512 49cb40f5eaccc2dd76aeb699ce8376d9d665860f38c93748b97cbd589dfeaf4301964659a32fe20a7174be3462c6269446810b9443a1688874c95a95acf5b22e
+DIST minio-2019.01.31.00.31.19.tar.gz 9109493 BLAKE2B 8d39e4edb0bc47b31e26fcd981be260ab90dbcb92e85700f9be691deda40d5ffb33003cfa59307647ab606d547ef461689b41e174ba3ed5ac6416bdc23d033d3 SHA512 f5f064c7a45f2844d445b955884764dce0bfcd37be469dc4a3b7fc17697dcee46415f0f17fa125b161c73cac076409e9a16f572020b82765d9ebf23d4bfba5e5

diff --git a/net-fs/minio/minio-2019.01.31.00.31.19.ebuild b/net-fs/minio/minio-2019.01.31.00.31.19.ebuild
new file mode 100644
index 00000000000..8154fe5911e
--- /dev/null
+++ b/net-fs/minio/minio-2019.01.31.00.31.19.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# 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="ce419c98352324caa4c79b159a9f840ca714c3d5"
+ARCHIVE_URI="https://${EGO_PN}/archive/RELEASE.${MY_PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~amd64-linux"
+
+DESCRIPTION="An Amazon S3 compatible object storage server"
+HOMEPAGE="https://github.com/minio/minio"
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+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}
+}


             reply	other threads:[~2019-01-31 14:19 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-31 14:19 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-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-09-09 10:43 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=1548944329.8fe2ea7d5837096b16928af2d09ca296a8151d17.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