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: app-admin/go-updater/
Date: Thu, 26 Apr 2018 01:05:22
Message-Id: 1524704695.20267cf289e71781a0b61dc9342e9a0f0dfa7770.mrueg@gentoo
1 commit: 20267cf289e71781a0b61dc9342e9a0f0dfa7770
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 26 01:04:55 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 01:04:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20267cf2
7
8 app-admin/go-updater: Version bump to 0.2.0
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 app-admin/go-updater/Manifest | 1 +
13 app-admin/go-updater/go-updater-0.2.0.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/app-admin/go-updater/Manifest b/app-admin/go-updater/Manifest
17 index 059e45bf446..67640a0a485 100644
18 --- a/app-admin/go-updater/Manifest
19 +++ b/app-admin/go-updater/Manifest
20 @@ -1 +1,2 @@
21 DIST go-updater-0.1.0.tar.gz 1754 BLAKE2B 720a328e8f28d2f0b28400053776ff8dbe52e24be7b20812d01b148bde72eda948acb5867b8ca16af7b40d20e36d36d3ffbd846c4992bb1dbe2af6db0069e765 SHA512 321f7faaec62b653c2b01f6f2e2c0104b536e63dfeb6aacd72c493d3fdc7b3bc5b96d6eff02ec1603adde1879dacbd51f4ced37c3cd94361120cc482432cb8a5
22 +DIST go-updater-0.2.0.tar.gz 2183 BLAKE2B 0afdd1442916a1def1de4d45eb3cb89c5634b275912b7c8c451ecd6b911e82ad5e8a9715e39404c4d3eb006e7b1822c9f23d02e871379f66536bc5eff15c2f05 SHA512 9c81ded9cdbb825872e0224634f7876a598086870a101e8c2f70fbebcfff964d4ff2f0778607c2110dad1a08160628a8943e9ac902df0b6cd70a58d5ca9e6dca
23
24 diff --git a/app-admin/go-updater/go-updater-0.2.0.ebuild b/app-admin/go-updater/go-updater-0.2.0.ebuild
25 new file mode 100644
26 index 00000000000..78dc6698a59
27 --- /dev/null
28 +++ b/app-admin/go-updater/go-updater-0.2.0.ebuild
29 @@ -0,0 +1,24 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +DESCRIPTION="Checks if Gentoo go packages are compiled with the system's golang version"
36 +HOMEPAGE="https://github.com/mrueg/go-updater"
37 +SRC_URI="https://github.com/mrueg/go-updater/archive/${PV}.tar.gz -> ${P}.tar.gz"
38 +
39 +LICENSE="MIT"
40 +SLOT="0"
41 +KEYWORDS="~amd64"
42 +IUSE=""
43 +
44 +RDEPEND="dev-go/goversion"
45 +
46 +src_compile() {
47 + :;
48 +}
49 +
50 +src_install() {
51 + dobin ${PN}
52 + dodoc README.md
53 +}