public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/opsgenie-lamp/
@ 2019-04-01 21:24 William Hubbs
  0 siblings, 0 replies; 4+ messages in thread
From: William Hubbs @ 2019-04-01 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     2bc734b57f315915314865817598b717633e7785
Author:     William Hubbs <william.hubbs <AT> sony <DOT> com>
AuthorDate: Mon Apr  1 21:22:03 2019 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Apr  1 21:23:58 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bc734b5

net-analyzer/opsgenie-lamp: Command line client for the opsgenie service

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 net-analyzer/opsgenie-lamp/Manifest                |  2 +
 net-analyzer/opsgenie-lamp/metadata.xml            |  8 ++++
 .../opsgenie-lamp-2.5.1_p20181102.ebuild           | 48 ++++++++++++++++++++++
 3 files changed, 58 insertions(+)

diff --git a/net-analyzer/opsgenie-lamp/Manifest b/net-analyzer/opsgenie-lamp/Manifest
new file mode 100644
index 00000000000..b0214baa109
--- /dev/null
+++ b/net-analyzer/opsgenie-lamp/Manifest
@@ -0,0 +1,2 @@
+DIST opsgenie-lamp-2.5.1_p20181102-vendor.tar.gz 204755 BLAKE2B 65c92b5bbbdec8b4bdccad884435273a6aec51c472437de92613dcda76c3a6cff1b84dfe5028713a353b861ff868cb8377e97c9322423b7a887a121a92c9515f SHA512 08f86e1520f2ca6d5208994c5836d511bea13d9e8ccf707a121956e23ff1c6f411d730ab6445ac30158e90d76efcdbbf65a19cef39641493c76b836980b6792a
+DIST opsgenie-lamp-2.5.1_p20181102.tar.gz 19259 BLAKE2B 1a4f54b817b0210654f42e4ea1eb9dc29e0416ab37a90ca00ba86788cdcde6a8a7330bd095c238268b7e00525da33a67c4fa0aa68602442887dc81091f802fd2 SHA512 9a2c5d23b530a5c2df99f1b63afcb47d8fb3cdf9a45142f82d52df5c9dd570bad444735d851af3fe03306179076e78ece3be9b1a6b63da04740d0a02752db67a

diff --git a/net-analyzer/opsgenie-lamp/metadata.xml b/net-analyzer/opsgenie-lamp/metadata.xml
new file mode 100644
index 00000000000..c36c37139fa
--- /dev/null
+++ b/net-analyzer/opsgenie-lamp/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>williamh@gentoo.org</email>
+		<name>William Hubbs</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild b/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild
new file mode 100644
index 00000000000..8aba54f81df
--- /dev/null
+++ b/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit vcs-snapshot
+
+DESCRIPTION="command line client for the opsgenie service"
+HOMEPAGE="https://docs.opsgenie.com/docs/lamp-command-line-interface-for-opsgenie"
+HASH=062016b
+SRC_URI="https://github.com/opsgenie/${PN}/archive/${HASH}.tar.gz -> ${P}.tar.gz
+	https://dev.gentoo.org/~williamh/dist/${P}-vendor.tar.gz"
+
+# I followed the following steps to create the vendor tarball:
+#
+# git clone https://github.com/opsgenie/opsgenie-lamp
+# cd opsgenie-lamp
+# go mod init # creates go.mod and go.sum
+# go mod vendor # updates go.mod/sum and adds vendor directory
+# mv -i go.mod go.sum vendor
+# tar cf ${P}.tar vendor
+# gzip ${P}.tar
+#
+# Upstream doesn't tag releases, but the most recent version number is
+# in the  sources, see the lampVersion variable.
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-lang/go:="
+
+RESTRICT="strip"
+
+src_prepare() {
+		mv ../${P}-vendor vendor || die "mv failed"
+		mv vendor/go.mod vendor/go.sum . || die "mv failed"
+	default
+}
+
+src_compile() {
+	GOCACHE="${T}"/go-cache go build -mod vendor || die "build failed"
+}
+
+src_install() {
+	newbin ${PN} lamp
+dodoc conf/lamp.conf
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/opsgenie-lamp/
@ 2024-06-17  4:02 Arthur Zamarin
  0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2024-06-17  4:02 UTC (permalink / raw
  To: gentoo-commits

commit:     468c32617bb2a24a48f1c6fc890ab2aee407540f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 04:00:06 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 04:02:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=468c3261

net-analyzer/opsgenie-lamp: add 3.1.4, major refactor

Closes: https://bugs.gentoo.org/724950
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-analyzer/opsgenie-lamp/Manifest                |  1 +
 .../opsgenie-lamp/opsgenie-lamp-3.1.4.ebuild       | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/net-analyzer/opsgenie-lamp/Manifest b/net-analyzer/opsgenie-lamp/Manifest
index b0214baa1090..c9733840bb15 100644
--- a/net-analyzer/opsgenie-lamp/Manifest
+++ b/net-analyzer/opsgenie-lamp/Manifest
@@ -1,2 +1,3 @@
 DIST opsgenie-lamp-2.5.1_p20181102-vendor.tar.gz 204755 BLAKE2B 65c92b5bbbdec8b4bdccad884435273a6aec51c472437de92613dcda76c3a6cff1b84dfe5028713a353b861ff868cb8377e97c9322423b7a887a121a92c9515f SHA512 08f86e1520f2ca6d5208994c5836d511bea13d9e8ccf707a121956e23ff1c6f411d730ab6445ac30158e90d76efcdbbf65a19cef39641493c76b836980b6792a
 DIST opsgenie-lamp-2.5.1_p20181102.tar.gz 19259 BLAKE2B 1a4f54b817b0210654f42e4ea1eb9dc29e0416ab37a90ca00ba86788cdcde6a8a7330bd095c238268b7e00525da33a67c4fa0aa68602442887dc81091f802fd2 SHA512 9a2c5d23b530a5c2df99f1b63afcb47d8fb3cdf9a45142f82d52df5c9dd570bad444735d851af3fe03306179076e78ece3be9b1a6b63da04740d0a02752db67a
+DIST opsgenie-lamp-3.1.4.tar.gz 994564 BLAKE2B bbc8801b9943eb57bd784ddd7a8f2631e0879c88b6760b9759dc37d95149dbc2c7013544c481f69cd4272bb19eca2df537a5d4a60acd56d5b70a88ad4449fbc8 SHA512 e5770d0188d9e8ef9d9c24f2cc3d160bca75732fff8c6bd1a694f18c604a1c85303b803817c15f461358521eafee029e86475c2f11177c719e173eaf18f4d5c1

diff --git a/net-analyzer/opsgenie-lamp/opsgenie-lamp-3.1.4.ebuild b/net-analyzer/opsgenie-lamp/opsgenie-lamp-3.1.4.ebuild
new file mode 100644
index 000000000000..5f53acd66c72
--- /dev/null
+++ b/net-analyzer/opsgenie-lamp/opsgenie-lamp-3.1.4.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="command line client for the opsgenie service"
+HOMEPAGE="https://docs.opsgenie.com/docs/lamp-command-line-interface-for-opsgenie"
+SRC_URI="https://github.com/opsgenie/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# yes, CHANEGLOG.md is a typo in the source
+DOCS=( CHANEGLOG.md README.md )
+
+src_compile() {
+	ego build -mod=vendor
+}
+
+src_install() {
+	newbin ${PN} lamp
+	dodoc conf/lamp.conf
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/opsgenie-lamp/
@ 2024-06-17  4:02 Arthur Zamarin
  0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2024-06-17  4:02 UTC (permalink / raw
  To: gentoo-commits

commit:     204bd67370427775d117b0ffa86997182c4fc96d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 04:02:08 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 04:02:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=204bd673

net-analyzer/opsgenie-lamp: add github upstream metadata

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-analyzer/opsgenie-lamp/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-analyzer/opsgenie-lamp/metadata.xml b/net-analyzer/opsgenie-lamp/metadata.xml
index db463f3eeb66..70ad95f30682 100644
--- a/net-analyzer/opsgenie-lamp/metadata.xml
+++ b/net-analyzer/opsgenie-lamp/metadata.xml
@@ -5,4 +5,7 @@
 		<email>williamh@gentoo.org</email>
 		<name>William Hubbs</name>
 	</maintainer>
+	<upstream>
+		<remote-id type="github">opsgenie/opsgenie-lamp</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/opsgenie-lamp/
@ 2024-06-19 20:38 Arthur Zamarin
  0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2024-06-19 20:38 UTC (permalink / raw
  To: gentoo-commits

commit:     f66f863f13cb98974ccf1e37dda6ed5cda372c70
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 19 20:38:04 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 19 20:38:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66f863f

net-analyzer/opsgenie-lamp: drop 2.5.1_p20181102

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-analyzer/opsgenie-lamp/Manifest                |  2 -
 .../opsgenie-lamp-2.5.1_p20181102.ebuild           | 48 ----------------------
 2 files changed, 50 deletions(-)

diff --git a/net-analyzer/opsgenie-lamp/Manifest b/net-analyzer/opsgenie-lamp/Manifest
index c9733840bb15..f5e3b547bec3 100644
--- a/net-analyzer/opsgenie-lamp/Manifest
+++ b/net-analyzer/opsgenie-lamp/Manifest
@@ -1,3 +1 @@
-DIST opsgenie-lamp-2.5.1_p20181102-vendor.tar.gz 204755 BLAKE2B 65c92b5bbbdec8b4bdccad884435273a6aec51c472437de92613dcda76c3a6cff1b84dfe5028713a353b861ff868cb8377e97c9322423b7a887a121a92c9515f SHA512 08f86e1520f2ca6d5208994c5836d511bea13d9e8ccf707a121956e23ff1c6f411d730ab6445ac30158e90d76efcdbbf65a19cef39641493c76b836980b6792a
-DIST opsgenie-lamp-2.5.1_p20181102.tar.gz 19259 BLAKE2B 1a4f54b817b0210654f42e4ea1eb9dc29e0416ab37a90ca00ba86788cdcde6a8a7330bd095c238268b7e00525da33a67c4fa0aa68602442887dc81091f802fd2 SHA512 9a2c5d23b530a5c2df99f1b63afcb47d8fb3cdf9a45142f82d52df5c9dd570bad444735d851af3fe03306179076e78ece3be9b1a6b63da04740d0a02752db67a
 DIST opsgenie-lamp-3.1.4.tar.gz 994564 BLAKE2B bbc8801b9943eb57bd784ddd7a8f2631e0879c88b6760b9759dc37d95149dbc2c7013544c481f69cd4272bb19eca2df537a5d4a60acd56d5b70a88ad4449fbc8 SHA512 e5770d0188d9e8ef9d9c24f2cc3d160bca75732fff8c6bd1a694f18c604a1c85303b803817c15f461358521eafee029e86475c2f11177c719e173eaf18f4d5c1

diff --git a/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild b/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild
deleted file mode 100644
index 8aba54f81df9..000000000000
--- a/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit vcs-snapshot
-
-DESCRIPTION="command line client for the opsgenie service"
-HOMEPAGE="https://docs.opsgenie.com/docs/lamp-command-line-interface-for-opsgenie"
-HASH=062016b
-SRC_URI="https://github.com/opsgenie/${PN}/archive/${HASH}.tar.gz -> ${P}.tar.gz
-	https://dev.gentoo.org/~williamh/dist/${P}-vendor.tar.gz"
-
-# I followed the following steps to create the vendor tarball:
-#
-# git clone https://github.com/opsgenie/opsgenie-lamp
-# cd opsgenie-lamp
-# go mod init # creates go.mod and go.sum
-# go mod vendor # updates go.mod/sum and adds vendor directory
-# mv -i go.mod go.sum vendor
-# tar cf ${P}.tar vendor
-# gzip ${P}.tar
-#
-# Upstream doesn't tag releases, but the most recent version number is
-# in the  sources, see the lampVersion variable.
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="dev-lang/go:="
-
-RESTRICT="strip"
-
-src_prepare() {
-		mv ../${P}-vendor vendor || die "mv failed"
-		mv vendor/go.mod vendor/go.sum . || die "mv failed"
-	default
-}
-
-src_compile() {
-	GOCACHE="${T}"/go-cache go build -mod vendor || die "build failed"
-}
-
-src_install() {
-	newbin ${PN} lamp
-dodoc conf/lamp.conf
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-06-19 20:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-17  4:02 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/opsgenie-lamp/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-06-19 20:38 Arthur Zamarin
2024-06-17  4:02 Arthur Zamarin
2019-04-01 21:24 William Hubbs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox