summaryrefslogtreecommitdiff
path: root/app-admin
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2018-04-26 03:04:55 +0200
committerManuel Rüger <mrueg@gentoo.org>2018-04-26 03:04:55 +0200
commit20267cf289e71781a0b61dc9342e9a0f0dfa7770 (patch)
tree0a5da52c91a4fe22960cac5d64cb3f5c117cd193 /app-admin
parentb0f2f9918ee928e3ad829b2dfa54767fe70b18c3 (diff)
downloadgentoo-20267cf289e71781a0b61dc9342e9a0f0dfa7770.tar.gz
gentoo-20267cf289e71781a0b61dc9342e9a0f0dfa7770.tar.xz
app-admin/go-updater: Version bump to 0.2.0
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/go-updater/Manifest1
-rw-r--r--app-admin/go-updater/go-updater-0.2.0.ebuild24
2 files changed, 25 insertions, 0 deletions
diff --git a/app-admin/go-updater/Manifest b/app-admin/go-updater/Manifest
index 059e45bf446..67640a0a485 100644
--- a/app-admin/go-updater/Manifest
+++ b/app-admin/go-updater/Manifest
@@ -1 +1,2 @@
DIST go-updater-0.1.0.tar.gz 1754 BLAKE2B 720a328e8f28d2f0b28400053776ff8dbe52e24be7b20812d01b148bde72eda948acb5867b8ca16af7b40d20e36d36d3ffbd846c4992bb1dbe2af6db0069e765 SHA512 321f7faaec62b653c2b01f6f2e2c0104b536e63dfeb6aacd72c493d3fdc7b3bc5b96d6eff02ec1603adde1879dacbd51f4ced37c3cd94361120cc482432cb8a5
+DIST go-updater-0.2.0.tar.gz 2183 BLAKE2B 0afdd1442916a1def1de4d45eb3cb89c5634b275912b7c8c451ecd6b911e82ad5e8a9715e39404c4d3eb006e7b1822c9f23d02e871379f66536bc5eff15c2f05 SHA512 9c81ded9cdbb825872e0224634f7876a598086870a101e8c2f70fbebcfff964d4ff2f0778607c2110dad1a08160628a8943e9ac902df0b6cd70a58d5ca9e6dca
diff --git a/app-admin/go-updater/go-updater-0.2.0.ebuild b/app-admin/go-updater/go-updater-0.2.0.ebuild
new file mode 100644
index 00000000000..78dc6698a59
--- /dev/null
+++ b/app-admin/go-updater/go-updater-0.2.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Checks if Gentoo go packages are compiled with the system's golang version"
+HOMEPAGE="https://github.com/mrueg/go-updater"
+SRC_URI="https://github.com/mrueg/go-updater/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="dev-go/goversion"
+
+src_compile() {
+ :;
+}
+
+src_install() {
+ dobin ${PN}
+ dodoc README.md
+}