public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-portage/pgo/
@ 2020-09-01 11:03 Mikle Kolyada
  0 siblings, 0 replies; 6+ messages in thread
From: Mikle Kolyada @ 2020-09-01 11:03 UTC (permalink / raw
  To: gentoo-commits

commit:     a4e4d69813047ce889b12caf0178270c399335a6
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  1 11:01:30 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Tue Sep  1 11:02:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4e4d698

app-portage/pgo: Initial import

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

 app-portage/pgo/Manifest         |  1 +
 app-portage/pgo/metadata.xml     | 21 +++++++++++++++++++++
 app-portage/pgo/pgo-0.0.2.ebuild | 27 +++++++++++++++++++++++++++
 app-portage/pgo/pgo-9999.ebuild  | 27 +++++++++++++++++++++++++++
 4 files changed, 76 insertions(+)

diff --git a/app-portage/pgo/Manifest b/app-portage/pgo/Manifest
new file mode 100644
index 00000000000..a6f261140e6
--- /dev/null
+++ b/app-portage/pgo/Manifest
@@ -0,0 +1 @@
+DIST pgo-0.0.2.tar.gz 1758457 BLAKE2B b31b9c2d200fb925390881019b9c540e8c95454874fa60a8829b73000d27ed470686dd7150d8cdcc7267a7329fcb6883d7f9eee27c622c91c36cfb6648bdda56 SHA512 36435813dee1d6256888e3f845b0bd053d9b58ed1c810f7368e935ac8e58f209956b8d3b0cff5cca464d76d8cebe3f483dba692a47c2785dc626842a30758554

diff --git a/app-portage/pgo/metadata.xml b/app-portage/pgo/metadata.xml
new file mode 100644
index 00000000000..e7c029f91d6
--- /dev/null
+++ b/app-portage/pgo/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>arzano@gentoo.org</email>
+		<name>Max Magorsch</name>
+	</maintainer>
+	<maintainer type="person">
+		<email>zlogene@gentoo.org</email>
+		<name>Mikle Kolyada</name>
+	</maintainer>
+	<longdescription>
+		pgo is a small command line interface for packages.gentoo.org. It is
+		using the graphql api of packages.gentoo.org to display information
+		about packages like: versions, metadata, dependencies, QA reports,
+		pull requests, bugs and the changelog. It's also able to display
+		information for maintainers, as a list of packages they are maintaining,
+		a list of outdated packages, or bugs related to the packages they are
+		maintaining.
+	</longdescription>
+</pkgmetadata>

diff --git a/app-portage/pgo/pgo-0.0.2.ebuild b/app-portage/pgo/pgo-0.0.2.ebuild
new file mode 100644
index 00000000000..e3a6873088b
--- /dev/null
+++ b/app-portage/pgo/pgo-0.0.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit go-module
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/arzano/pgo"
+else
+	SRC_URI="https://github.com/arzano/pgo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="A command line interface for packages.gentoo.org"
+HOMEPAGE="https://github.com/arzano/pgo"
+LICENSE="BSD-2"
+SLOT="0"
+
+src_compile() {
+	env GOBIN="${S}/bin" go build -mod=vendor || die "compile failed"
+}
+
+src_install() {
+	dobin pgo
+}

diff --git a/app-portage/pgo/pgo-9999.ebuild b/app-portage/pgo/pgo-9999.ebuild
new file mode 100644
index 00000000000..e3a6873088b
--- /dev/null
+++ b/app-portage/pgo/pgo-9999.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit go-module
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/arzano/pgo"
+else
+	SRC_URI="https://github.com/arzano/pgo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="A command line interface for packages.gentoo.org"
+HOMEPAGE="https://github.com/arzano/pgo"
+LICENSE="BSD-2"
+SLOT="0"
+
+src_compile() {
+	env GOBIN="${S}/bin" go build -mod=vendor || die "compile failed"
+}
+
+src_install() {
+	dobin pgo
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-portage/pgo/
@ 2020-09-08 10:36 Mikle Kolyada
  0 siblings, 0 replies; 6+ messages in thread
From: Mikle Kolyada @ 2020-09-08 10:36 UTC (permalink / raw
  To: gentoo-commits

commit:     4e848233c972e0fbca60dc972dede55b144495e5
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  8 10:36:18 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Tue Sep  8 10:36:48 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e848233

app-portage/pgo: Version bump (v0.0.3)

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

 app-portage/pgo/Manifest         |  1 +
 app-portage/pgo/pgo-0.0.3.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/app-portage/pgo/Manifest b/app-portage/pgo/Manifest
index a6f261140e6..8cdeee2a769 100644
--- a/app-portage/pgo/Manifest
+++ b/app-portage/pgo/Manifest
@@ -1 +1,2 @@
 DIST pgo-0.0.2.tar.gz 1758457 BLAKE2B b31b9c2d200fb925390881019b9c540e8c95454874fa60a8829b73000d27ed470686dd7150d8cdcc7267a7329fcb6883d7f9eee27c622c91c36cfb6648bdda56 SHA512 36435813dee1d6256888e3f845b0bd053d9b58ed1c810f7368e935ac8e58f209956b8d3b0cff5cca464d76d8cebe3f483dba692a47c2785dc626842a30758554
+DIST pgo-0.0.3.tar.gz 1759259 BLAKE2B 9a6be02078d9ff44311fef72e01316a6f5ff896b84c4a2bdd28137f3840a1082f33286682abf28ea95f8cbc8a87be1b4f86895139678602d907cff3347c99e68 SHA512 6f26773cd5fa5277277172f2ff127cd5383908e8bcb8f5ea5aaae01b07ce33c71dcba08e3607c08adad50721c3de33f6e1b9a160134e8dbcebb8a9b38b77d650

diff --git a/app-portage/pgo/pgo-0.0.3.ebuild b/app-portage/pgo/pgo-0.0.3.ebuild
new file mode 100644
index 00000000000..e3a6873088b
--- /dev/null
+++ b/app-portage/pgo/pgo-0.0.3.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit go-module
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/arzano/pgo"
+else
+	SRC_URI="https://github.com/arzano/pgo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="A command line interface for packages.gentoo.org"
+HOMEPAGE="https://github.com/arzano/pgo"
+LICENSE="BSD-2"
+SLOT="0"
+
+src_compile() {
+	env GOBIN="${S}/bin" go build -mod=vendor || die "compile failed"
+}
+
+src_install() {
+	dobin pgo
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-portage/pgo/
@ 2020-10-03  7:00 Georgy Yakovlev
  0 siblings, 0 replies; 6+ messages in thread
From: Georgy Yakovlev @ 2020-10-03  7:00 UTC (permalink / raw
  To: gentoo-commits

commit:     5b8b715a8efc78de50164dbc738d59df06eefe5a
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  3 06:51:12 2020 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Sat Oct  3 06:51:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b8b715a

app-portage/pgo: add ~ppc64 keyword

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 app-portage/pgo/pgo-0.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/pgo/pgo-0.0.3.ebuild b/app-portage/pgo/pgo-0.0.3.ebuild
index e3a6873088b..42500887708 100644
--- a/app-portage/pgo/pgo-0.0.3.ebuild
+++ b/app-portage/pgo/pgo-0.0.3.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
 	EGIT_REPO_URI="https://github.com/arzano/pgo"
 else
 	SRC_URI="https://github.com/arzano/pgo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
+	KEYWORDS="~amd64 ~ppc64 ~x86"
 fi
 
 DESCRIPTION="A command line interface for packages.gentoo.org"


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

* [gentoo-commits] repo/gentoo:master commit in: app-portage/pgo/
@ 2021-03-16 17:12 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2021-03-16 17:12 UTC (permalink / raw
  To: gentoo-commits

commit:     2cbfd2e8af620f7240d52d064848cc3e326ba7a6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 16 16:31:09 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 16:42:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cbfd2e8

app-portage/pgo: Set proxy/proxied status

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/19952
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-portage/pgo/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/pgo/metadata.xml b/app-portage/pgo/metadata.xml
index e7c029f91d6..0db2688a226 100644
--- a/app-portage/pgo/metadata.xml
+++ b/app-portage/pgo/metadata.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
+	<maintainer type="person" proxied="yes">
 		<email>arzano@gentoo.org</email>
 		<name>Max Magorsch</name>
 	</maintainer>
-	<maintainer type="person">
+	<maintainer type="person" proxied="proxy">
 		<email>zlogene@gentoo.org</email>
 		<name>Mikle Kolyada</name>
 	</maintainer>


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

* [gentoo-commits] repo/gentoo:master commit in: app-portage/pgo/
@ 2022-11-08  3:54 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-11-08  3:54 UTC (permalink / raw
  To: gentoo-commits

commit:     745da2c6f995b64608f65e0b849ce5b7161a350a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  8 03:53:51 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov  8 03:53:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=745da2c6

app-portage/pgo: retire arzano@

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-portage/pgo/metadata.xml | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/app-portage/pgo/metadata.xml b/app-portage/pgo/metadata.xml
index 6a9dc6279a43..431e944a6a9b 100644
--- a/app-portage/pgo/metadata.xml
+++ b/app-portage/pgo/metadata.xml
@@ -1,11 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person" proxied="yes">
-		<email>arzano@gentoo.org</email>
-		<name>Max Magorsch</name>
-	</maintainer>
-	<maintainer type="person" proxied="proxy">
+	<maintainer type="person">
 		<email>zlogene@gentoo.org</email>
 		<name>Mikle Kolyada</name>
 	</maintainer>


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

* [gentoo-commits] repo/gentoo:master commit in: app-portage/pgo/
@ 2024-09-24  7:02 Joonas Niilola
  0 siblings, 0 replies; 6+ messages in thread
From: Joonas Niilola @ 2024-09-24  7:02 UTC (permalink / raw
  To: gentoo-commits

commit:     77fdd0a410fd1427fa6229672145a9df39758091
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Sep  4 17:49:42 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Sep 24 07:01:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77fdd0a4

app-portage/pgo: remove live ebuild

Remove live ebuild since upstream wasn't updated for a couple of years.
I think it makes no sense to keep these ebuilds, especially when the
non-live ebuild is already at HEAD.

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-portage/pgo/pgo-9999.ebuild | 27 ---------------------------
 1 file changed, 27 deletions(-)

diff --git a/app-portage/pgo/pgo-9999.ebuild b/app-portage/pgo/pgo-9999.ebuild
deleted file mode 100644
index e3a6873088bd..000000000000
--- a/app-portage/pgo/pgo-9999.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit go-module
-
-if [[ ${PV} == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/arzano/pgo"
-else
-	SRC_URI="https://github.com/arzano/pgo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="A command line interface for packages.gentoo.org"
-HOMEPAGE="https://github.com/arzano/pgo"
-LICENSE="BSD-2"
-SLOT="0"
-
-src_compile() {
-	env GOBIN="${S}/bin" go build -mod=vendor || die "compile failed"
-}
-
-src_install() {
-	dobin pgo
-}


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

end of thread, other threads:[~2024-09-24  7:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-16 17:12 [gentoo-commits] repo/gentoo:master commit in: app-portage/pgo/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-09-24  7:02 Joonas Niilola
2022-11-08  3:54 Sam James
2020-10-03  7:00 Georgy Yakovlev
2020-09-08 10:36 Mikle Kolyada
2020-09-01 11:03 Mikle Kolyada

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