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/mc/
Date: Thu, 10 Jan 2019 09:15:14 +0000 (UTC)	[thread overview]
Message-ID: <1547111694.d3e95def6c7b4d8e246ebe2378d24a3413b5912e.zlogene@gentoo> (raw)

commit:     d3e95def6c7b4d8e246ebe2378d24a3413b5912e
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 10 09:14:54 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jan 10 09:14:54 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e95def

net-fs/mc: Version bump

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

 net-fs/mc/Manifest                      |  1 +
 net-fs/mc/mc-2019.01.10.00.38.22.ebuild | 49 +++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/net-fs/mc/Manifest b/net-fs/mc/Manifest
index 82af907b151..4cf4068e10b 100644
--- a/net-fs/mc/Manifest
+++ b/net-fs/mc/Manifest
@@ -7,3 +7,4 @@ DIST mc-2018.11.30.01.52.08.tar.gz 1732768 BLAKE2B 22c7329dc808c7d4900e8d7b738cb
 DIST mc-2018.12.05.22.59.07.tar.gz 1732742 BLAKE2B 33cf0023d3350d739567cf9d402f3011b83ec74801b3811c249944de2c1d0e67ee43afa1327ed41c6f4e259bb7c55f7839f8f9241dec05d4ffbe5d4406c2d9c7 SHA512 82f9784ce50810390bb991816455373c91d08b5e0630f85754a3abc66cfcfc74665cf8f5877cde10893583f1f9911e458e1caac9bcbddbf7b727e7c9f5f57a71
 DIST mc-2018.12.12.19.02.22.tar.gz 1734072 BLAKE2B 23539e764308d91012ec7fde5531066f88cf654f5cb98d9424b7697610df5dd0b0257f3926fbe35370b28c96abcb82c00fe4061e6cfe8adf8a130800a2bb3bef SHA512 c0f65b1e438f72716ff04e755654d021de37852f5eb2d2a16954c6b6e6356b9f9a31ce018b791e71c7deced82acb0be32c2bf4e27b4d6bd3ce9df91ecaf155cf
 DIST mc-2018.12.19.22.58.03.tar.gz 1732775 BLAKE2B 300a514c3eca52ab9b136c1d6a01055593d40f2b207229fa9f32f2fa3b3dce30a28fd4e39dd97ca51ddf920a91d2b45ecf44e843d7de9f271896717391f7242c SHA512 9fe0afbd4bb39d609b6e6e67a159997dd6b9ee43cc741282d05e9a55d4c24aa56258ad2eee08991112aa89002ac8a4c0042505b979d5ac49cb3714fd810da354
+DIST mc-2019.01.10.00.38.22.tar.gz 1791858 BLAKE2B ae89c935634190e347be8c2f0a3dfff12872b4eca7aa17b79b5e05d7cb9be6fe39ff7b0ccbb6ddf5851ae3ee84a89eebf289d801340519e91470b3f5c60f7c37 SHA512 626e5adf5a3dcda0945e5fb37394097550f2976626da50e795b389d1d78545b1a2907c9b9fded5ce26823694e7e3981a69fa18ed00ae21d5c405c69c165ae1ce

diff --git a/net-fs/mc/mc-2019.01.10.00.38.22.ebuild b/net-fs/mc/mc-2019.01.10.00.38.22.ebuild
new file mode 100644
index 00000000000..7a3a66e507b
--- /dev/null
+++ b/net-fs/mc/mc-2019.01.10.00.38.22.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eapi7-ver bash-completion-r1 golang-build golang-vcs-snapshot
+
+MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z"
+MY_PV=${MY_PV//./-}
+
+EGIT_COMMIT="c352cadd4be2c6bed64884c78d1e8a8ac6efaf3f"
+
+EGO_PN="github.com/minio/mc"
+
+DESCRIPTION="Minio client provides alternatives for ls, cat on cloud storage and filesystems"
+HOMEPAGE="https://github.com/minio/mc"
+SRC_URI="https://${EGO_PN}/archive/RELEASE.${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="!!app-misc/mc"
+
+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
+	MC_RELEASE="${MY_PV}"
+	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 docs
+	dobin mc
+	newbashcomp autocomplete/bash_autocomplete ${PN}
+	popd  || die
+}


             reply	other threads:[~2019-01-10  9:15 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-10  9:15 Mikle Kolyada [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-09-10 21:32 [gentoo-commits] repo/gentoo:master commit in: net-fs/mc/ William Hubbs
2021-03-28  7:54 Mikle Kolyada
2021-03-12 14:12 Mikle Kolyada
2021-03-09 15:50 Mikle Kolyada
2021-03-09 15:50 Mikle Kolyada
2021-01-26 17:55 Mikle Kolyada
2021-01-26 17:55 Mikle Kolyada
2020-07-11 15:38 William Hubbs
2019-09-21 17:20 Mikle Kolyada
2019-08-01 11:44 Mikle Kolyada
2019-07-31 10:07 Mikle Kolyada
2019-07-25 13:22 Mikle Kolyada
2019-04-15 15:06 Mikle Kolyada
2019-04-04 20:33 Mikle Kolyada
2019-04-04 20:27 Mikle Kolyada
2019-04-04 20:24 Mikle Kolyada
2019-03-30 11:57 Mikle Kolyada
2019-03-21 22:13 Mikle Kolyada
2019-03-13  8:43 Mikle Kolyada
2019-03-12 16:11 Mikle Kolyada
2019-03-12 16:11 Mikle Kolyada
2019-03-07 17:02 Mikle Kolyada
2019-02-28 10:47 Mikle Kolyada
2019-02-22  6:46 Mikle Kolyada
2019-02-21 17:59 Mikle Kolyada
2019-02-15  6:15 Mikle Kolyada
2019-02-07 10:10 Mikle Kolyada
2019-01-31 14:21 Mikle Kolyada
2019-01-30  9:16 Mikle Kolyada
2019-01-25  8:23 Mikle Kolyada
2018-12-20 17:59 Mikle Kolyada
2018-12-13 20:36 Mikle Kolyada
2018-12-06 18:15 Mikle Kolyada
2018-11-30 13:51 Mikle Kolyada
2018-11-17 12:45 Mikle Kolyada
2018-10-25 19:51 Mikle Kolyada
2018-10-19 20:11 Mikle Kolyada
2018-10-03 20:34 Mikle Kolyada
2018-09-11 11:30 Mikle Kolyada
2018-09-09 18:43 Mikle Kolyada
2018-09-09 10:56 Mikle Kolyada
2018-08-20 17:55 Manuel Rüger
2018-03-30 14:19 Manuel Rüger
2018-03-30 14:19 Manuel Rüger
2018-02-27 12:56 Manuel Rüger
2017-11-28 16:02 Manuel Rüger
2017-11-27 20:14 Manuel Rüger
2017-11-27 19:31 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=1547111694.d3e95def6c7b4d8e246ebe2378d24a3413b5912e.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