From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D3118138334 for ; Mon, 30 Jul 2018 12:30:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAD73E0972; Mon, 30 Jul 2018 12:30:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2B13E0972 for ; Mon, 30 Jul 2018 12:30:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E92D335C9A for ; Mon, 30 Jul 2018 12:30:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20044385 for ; Mon, 30 Jul 2018 12:30:20 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1532953802.9ff886abc973f4d3f7e4e690eac647343484aef7.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/go-jira/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/go-jira/Manifest app-misc/go-jira/go-jira-1.0.18.ebuild X-VCS-Directories: app-misc/go-jira/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 9ff886abc973f4d3f7e4e690eac647343484aef7 X-VCS-Branch: master Date: Mon, 30 Jul 2018 12:30:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2b2443ee-760a-4ebc-be02-cbd95d9f3b69 X-Archives-Hash: 9851f32e2588460566e0f0be975c8024 commit: 9ff886abc973f4d3f7e4e690eac647343484aef7 Author: Manuel Rüger gentoo org> AuthorDate: Mon Jul 30 12:30:02 2018 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Jul 30 12:30:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ff886ab app-misc/go-jira: Version bump to 1.0.18 Package-Manager: Portage-2.3.43, Repoman-2.3.10 app-misc/go-jira/Manifest | 1 + app-misc/go-jira/go-jira-1.0.18.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-misc/go-jira/Manifest b/app-misc/go-jira/Manifest index f9ce2192a6b..e58cb797e81 100644 --- a/app-misc/go-jira/Manifest +++ b/app-misc/go-jira/Manifest @@ -1 +1,2 @@ DIST go-jira-1.0.17.tar.gz 1382832 BLAKE2B 17cada8407b5136ec3b84d9f43c67cb25a893bdfeae7309bc15eb479954ba3ce7df4bc1248782a0bd1874b08b48a68a8e69a1651960c10d6260b22c63a0a8147 SHA512 8abbe6233413d12495399446adbb02d6a37aedf2a2b1a860c403b6e210f5e1f44fa01dfe937d86241486cb4a56c52530eff1c582d59f5ddde4b466a6908fd020 +DIST go-jira-1.0.18.tar.gz 1296612 BLAKE2B f88bbb57e3b775f8b2426574dd104d3b4683dfe90a991bf2f49eb1ae69b8281e0a381a30d42dcac1630e19482e2f04fb323098f379aca40f420644ba4e8e52ff SHA512 8421f176207f7b836d261734065c92aa43909564c0265792be0c2cf14a3751a800c4840bc93f860eee8433594542f4dc5ca57ae4bb3808b8282a9ed991418f5a diff --git a/app-misc/go-jira/go-jira-1.0.18.ebuild b/app-misc/go-jira/go-jira-1.0.18.ebuild new file mode 100644 index 00000000000..513090c2a8f --- /dev/null +++ b/app-misc/go-jira/go-jira-1.0.18.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGO_PN="gopkg.in/Netflix-Skunkworks/go-jira.v1" + +inherit golang-build golang-vcs-snapshot + +KEYWORDS="~amd64" + +DESCRIPTION="A simple JIRA commandline client in Go" +HOMEPAGE="https://github.com/Netflix-Skunkworks/go-jira" +SRC_URI="https://github.com/Netflix-Skunkworks/go-jira/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +src_compile() { + pushd src/${EGO_PN} || die + GOPATH="${WORKDIR}/${P}" go build -v -o jira cmd/jira/main.go || die + popd || die +} + +src_install() { + dobin src/${EGO_PN}/jira + dodoc src/${EGO_PN}/{CHANGELOG,README}.md +}