public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2017-09-09  9:59 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2017-09-09  9:59 UTC (permalink / raw
  To: gentoo-commits

commit:     550b95086d518bb4678aef24b5475e484a97f0ca
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  9 09:53:49 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep  9 09:59:19 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=550b9508

app-eselect/eselect-repository: A simple manager for repos.conf

 .../eselect-repository-9999.ebuild                 | 39 ++++++++++++++++++++++
 app-eselect/eselect-repository/metadata.xml        |  9 +++++
 2 files changed, 48 insertions(+)

diff --git a/app-eselect/eselect-repository/eselect-repository-9999.ebuild b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
new file mode 100644
index 00000000000..b22e3150d3c
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://github.com/mgorny/eselect-repository.git"
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+inherit git-r3 python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI=""
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}

diff --git a/app-eselect/eselect-repository/metadata.xml b/app-eselect/eselect-repository/metadata.xml
new file mode 100644
index 00000000000..4125495d9ee
--- /dev/null
+++ b/app-eselect/eselect-repository/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>mgorny@gentoo.org</email>
+		<name>Michał Górny</name>
+	</maintainer>
+	<remote-id type="github">mgorny/eselect-repository</remote-id>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2017-09-09 11:02 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2017-09-09 11:02 UTC (permalink / raw
  To: gentoo-commits

commit:     443687cec9117dd314fc28982ab1469b93358e68
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  9 11:00:15 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep  9 11:02:26 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=443687ce

app-eselect/eselect-repository: Fix <remote-id/>

 app-eselect/eselect-repository/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/metadata.xml b/app-eselect/eselect-repository/metadata.xml
index 4125495d9ee..05976b9731a 100644
--- a/app-eselect/eselect-repository/metadata.xml
+++ b/app-eselect/eselect-repository/metadata.xml
@@ -5,5 +5,7 @@
 		<email>mgorny@gentoo.org</email>
 		<name>Michał Górny</name>
 	</maintainer>
-	<remote-id type="github">mgorny/eselect-repository</remote-id>
+	<upstream>
+		<remote-id type="github">mgorny/eselect-repository</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2017-09-22  4:24 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2017-09-22  4:24 UTC (permalink / raw
  To: gentoo-commits

commit:     5103c19abe1066682b655cd732c9c2c4486b91e1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 04:17:48 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 04:24:24 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5103c19a

app-eselect/eselect-repository: Bump to v1

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-1.ebuild | 38 ++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
new file mode 100644
index 00000000000..2392ccdf09c
--- /dev/null
+++ b/app-eselect/eselect-repository/Manifest
@@ -0,0 +1 @@
+DIST eselect-repository-1.tar.gz 5378 SHA256 d73d4ab5fd525f3504814b25087a051bde1b358033f996e10eca3d5eeeeabf22 SHA512 7f985c3abe3fa02dfe44aade71583e7280c4757470fe8bf43de8fcc2403e8b924d9b0af104e926a2b3cd79a92b440570347db511767c908dda087ccc9f3aba6e WHIRLPOOL 8ad0d21452a0094007b795aa105312110404dca33ee8c8e3c189b08f9fbad7759c2f1fe6572839c06cb7bdbaa39740195d674e72dc72debf6f118570d40daec2

diff --git a/app-eselect/eselect-repository/eselect-repository-1.ebuild b/app-eselect/eselect-repository/eselect-repository-1.ebuild
new file mode 100644
index 00000000000..6a49b07e7fa
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2017-11-07 16:22 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2017-11-07 16:22 UTC (permalink / raw
  To: gentoo-commits

commit:     18e05a042523af6849fa592ecbf6e34b6dcbeff7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  7 16:18:30 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov  7 16:22:36 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18e05a04

app-eselect/eselect-repository: Add missing dep on dev-python/lxml

Closes: https://bugs.gentoo.org/636802

 .../{eselect-repository-1.ebuild => eselect-repository-1-r1.ebuild}      | 1 +
 app-eselect/eselect-repository/eselect-repository-9999.ebuild            | 1 +
 2 files changed, 2 insertions(+)

diff --git a/app-eselect/eselect-repository/eselect-repository-1.ebuild b/app-eselect/eselect-repository/eselect-repository-1-r1.ebuild
similarity index 95%
rename from app-eselect/eselect-repository/eselect-repository-1.ebuild
rename to app-eselect/eselect-repository/eselect-repository-1-r1.ebuild
index 6a49b07e7fa..fef00322510 100644
--- a/app-eselect/eselect-repository/eselect-repository-1.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-1-r1.ebuild
@@ -17,6 +17,7 @@ IUSE=""
 
 RDEPEND="${PYTHON_DEPS}
 	app-admin/eselect
+	dev-python/lxml[${PYTHON_USEDEP}]
 	net-misc/wget"
 
 src_compile() {

diff --git a/app-eselect/eselect-repository/eselect-repository-9999.ebuild b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
index b22e3150d3c..9899fabe6d7 100644
--- a/app-eselect/eselect-repository/eselect-repository-9999.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
@@ -18,6 +18,7 @@ IUSE=""
 
 RDEPEND="${PYTHON_DEPS}
 	app-admin/eselect
+	dev-python/lxml[${PYTHON_USEDEP}]
 	net-misc/wget"
 
 src_compile() {


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2017-11-28 19:34 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2017-11-28 19:34 UTC (permalink / raw
  To: gentoo-commits

commit:     0a4d0017b86af89fdd866904dcf825e4a3b6bca2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 28 18:37:49 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov 28 19:34:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a4d0017

app-eselect/eselect-repository: Bump to v2

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-2.ebuild | 39 ++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 2392ccdf09c..77c8a7bd351 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-1.tar.gz 5378 SHA256 d73d4ab5fd525f3504814b25087a051bde1b358033f996e10eca3d5eeeeabf22 SHA512 7f985c3abe3fa02dfe44aade71583e7280c4757470fe8bf43de8fcc2403e8b924d9b0af104e926a2b3cd79a92b440570347db511767c908dda087ccc9f3aba6e WHIRLPOOL 8ad0d21452a0094007b795aa105312110404dca33ee8c8e3c189b08f9fbad7759c2f1fe6572839c06cb7bdbaa39740195d674e72dc72debf6f118570d40daec2
+DIST eselect-repository-2.tar.gz 5441 BLAKE2B 28608b7e5d06747afea4ef28b0f45ac97dcea0310201d857f1248e7fc586a331fce01c9017df83c332cbfb55b51b52a45361e06db8a7d4b788a70f63eb4c83d8 SHA512 7667053b7d06117f49366d7bb6ad39b1b0715c778e49e18649ce38b364e58c0c31f4fa077a459374c52d3bb7f550002a4368cbb7fc14fd9961815bb1355c1f61

diff --git a/app-eselect/eselect-repository/eselect-repository-2.ebuild b/app-eselect/eselect-repository/eselect-repository-2.ebuild
new file mode 100644
index 00000000000..fef00322510
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	dev-python/lxml[${PYTHON_USEDEP}]
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2017-12-25 11:42 Markus Meier
  0 siblings, 0 replies; 74+ messages in thread
From: Markus Meier @ 2017-12-25 11:42 UTC (permalink / raw
  To: gentoo-commits

commit:     932bf24cbe7a78b0bc4e3b1b629f1d483ccba8b1
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 25 11:39:51 2017 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Mon Dec 25 11:39:51 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=932bf24c

app-eselect/eselect-repository: add ~arm, bug #637238

Package-Manager: Portage-2.3.13, Repoman-2.3.3
RepoMan-Options: --include-arches="arm"

 app-eselect/eselect-repository/eselect-repository-1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-1-r1.ebuild b/app-eselect/eselect-repository/eselect-repository-1-r1.ebuild
index fef00322510..54b33e1a1bd 100644
--- a/app-eselect/eselect-repository/eselect-repository-1-r1.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-01-26  1:08 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-01-26  1:08 UTC (permalink / raw
  To: gentoo-commits

commit:     b4124556a7baaa34196356b539f9a93c1c1ebabf
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 26 01:08:13 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Jan 26 01:08:40 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4124556

app-eselect/eselect-repository: amd64 stable wrt bug #644984

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-eselect/eselect-repository/eselect-repository-2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-2.ebuild b/app-eselect/eselect-repository/eselect-repository-2.ebuild
index 2037c513390..ecaae93b672 100644
--- a/app-eselect/eselect-repository/eselect-repository-2.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-03-15 15:32 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-03-15 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     1ee0b9cc170627e5f74e80c0d89fabfddd21259b
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 15 15:32:11 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Mar 15 15:32:11 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee0b9cc

app-eselect/eselect-repository: arm stable wrt bug #644984

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-eselect/eselect-repository/eselect-repository-2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-2.ebuild b/app-eselect/eselect-repository/eselect-repository-2.ebuild
index ecaae93b672..0b15a7d8fdc 100644
--- a/app-eselect/eselect-repository/eselect-repository-2.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-03-23 13:39 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-03-23 13:39 UTC (permalink / raw
  To: gentoo-commits

commit:     a8008c3a10071d0a096f5a736b9a8682066e5cb0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 23 13:38:19 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 23 13:39:19 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8008c3a

app-eselect/eselect-repository: Bump to v3

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-3.ebuild | 39 ++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 1d731d9725a..b754aa18693 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-2.tar.gz 5441 BLAKE2B 28608b7e5d06747afea4ef28b0f45ac97dcea0310201d857f1248e7fc586a331fce01c9017df83c332cbfb55b51b52a45361e06db8a7d4b788a70f63eb4c83d8 SHA512 7667053b7d06117f49366d7bb6ad39b1b0715c778e49e18649ce38b364e58c0c31f4fa077a459374c52d3bb7f550002a4368cbb7fc14fd9961815bb1355c1f61
+DIST eselect-repository-3.tar.gz 5448 BLAKE2B 36a079f2a876709a2cc045e0c113f44f9feaa491c49d3773eb3e123ee7e7a7ffa2ad05060ffa62ac39ff8091a64ff995ea948f3c784ffbb7d8ddca5e468364d3 SHA512 ac3396a6d14fcc7d4df1f9b058bc3025875707f3febdf4d1e03122445d0e6273759b8a66443525c94daaf19f91b411c469aabc0e0082cd53980886a91f38a062

diff --git a/app-eselect/eselect-repository/eselect-repository-3.ebuild b/app-eselect/eselect-repository/eselect-repository-3.ebuild
new file mode 100644
index 00000000000..ac259369298
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	dev-python/lxml[${PYTHON_USEDEP}]
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-03-26 16:14 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-03-26 16:14 UTC (permalink / raw
  To: gentoo-commits

commit:     04fe72340fd244f146aa039de9f529362de2247a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 26 06:26:21 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 16:13:49 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04fe7234

app-eselect/eselect-repository: Mark for ALLARCHES stabilization

 app-eselect/eselect-repository/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-eselect/eselect-repository/metadata.xml b/app-eselect/eselect-repository/metadata.xml
index 05976b9731a..684b0b02f00 100644
--- a/app-eselect/eselect-repository/metadata.xml
+++ b/app-eselect/eselect-repository/metadata.xml
@@ -8,4 +8,5 @@
 	<upstream>
 		<remote-id type="github">mgorny/eselect-repository</remote-id>
 	</upstream>
+	<stabilize-allarches/>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-03-26 19:45 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-03-26 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     e63874c7e1f7347b7245d5b01d0f5aceda432b28
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 26 19:44:51 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 19:45:10 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e63874c7

app-eselect/eselect-repository: amd64 stable wrt bug #651532

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-eselect/eselect-repository/eselect-repository-3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-3.ebuild b/app-eselect/eselect-repository/eselect-repository-3.ebuild
index ac259369298..74fd81626a3 100644
--- a/app-eselect/eselect-repository/eselect-repository-3.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-04-11 20:43 Thomas Deutschmann
  0 siblings, 0 replies; 74+ messages in thread
From: Thomas Deutschmann @ 2018-04-11 20:43 UTC (permalink / raw
  To: gentoo-commits

commit:     45866c23096ed2aaaa4e22765fec2310137b4861
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 11 20:30:45 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Apr 11 20:43:21 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45866c23

app-eselect/eselect-repository: x86 stable (bug #651532)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-eselect/eselect-repository/eselect-repository-3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-3.ebuild b/app-eselect/eselect-repository/eselect-repository-3.ebuild
index 74fd81626a3..ecaae93b672 100644
--- a/app-eselect/eselect-repository/eselect-repository-3.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-04-15 16:54 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-04-15 16:54 UTC (permalink / raw
  To: gentoo-commits

commit:     614d6efe10e579c06f2096211e69c1f7ea1ed4bf
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 15 16:54:28 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Apr 15 16:54:28 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=614d6efe

app-eselect/eselect-repository: arm stable wrt bug #651532

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-eselect/eselect-repository/eselect-repository-3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-3.ebuild b/app-eselect/eselect-repository/eselect-repository-3.ebuild
index ecaae93b672..0b15a7d8fdc 100644
--- a/app-eselect/eselect-repository/eselect-repository-3.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-05-09  7:34 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-05-09  7:34 UTC (permalink / raw
  To: gentoo-commits

commit:     8e5f33a4e6fccd5e8afda4c51e1eb25b7f9ceb3e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May  9 07:30:34 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May  9 07:33:53 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e5f33a4

app-eselect/eselect-repository: Drop old

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository/eselect-repository-2.ebuild | 39 ----------------------
 2 files changed, 40 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index b754aa18693..ddabee955d0 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
-DIST eselect-repository-2.tar.gz 5441 BLAKE2B 28608b7e5d06747afea4ef28b0f45ac97dcea0310201d857f1248e7fc586a331fce01c9017df83c332cbfb55b51b52a45361e06db8a7d4b788a70f63eb4c83d8 SHA512 7667053b7d06117f49366d7bb6ad39b1b0715c778e49e18649ce38b364e58c0c31f4fa077a459374c52d3bb7f550002a4368cbb7fc14fd9961815bb1355c1f61
 DIST eselect-repository-3.tar.gz 5448 BLAKE2B 36a079f2a876709a2cc045e0c113f44f9feaa491c49d3773eb3e123ee7e7a7ffa2ad05060ffa62ac39ff8091a64ff995ea948f3c784ffbb7d8ddca5e468364d3 SHA512 ac3396a6d14fcc7d4df1f9b058bc3025875707f3febdf4d1e03122445d0e6273759b8a66443525c94daaf19f91b411c469aabc0e0082cd53980886a91f38a062

diff --git a/app-eselect/eselect-repository/eselect-repository-2.ebuild b/app-eselect/eselect-repository/eselect-repository-2.ebuild
deleted file mode 100644
index 0b15a7d8fdc..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_4,3_5,3_6} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE=""
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	dev-python/lxml[${PYTHON_USEDEP}]
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-05-09  7:34 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-05-09  7:34 UTC (permalink / raw
  To: gentoo-commits

commit:     9134d2dcb831a1ff08d807f8abff696086a3f44d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May  9 07:29:55 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May  9 07:33:53 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9134d2dc

app-eselect/eselect-repository: Fix missing PYTHON_REQUIRED_USE

Reported by Anthony Parsons. Thanks!

Closes: https://bugs.gentoo.org/655162

 app-eselect/eselect-repository/eselect-repository-3.ebuild    | 2 ++
 app-eselect/eselect-repository/eselect-repository-9999.ebuild | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/app-eselect/eselect-repository/eselect-repository-3.ebuild b/app-eselect/eselect-repository/eselect-repository-3.ebuild
index 0b15a7d8fdc..68c5eb73c7c 100644
--- a/app-eselect/eselect-repository/eselect-repository-3.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-3.ebuild
@@ -14,12 +14,14 @@ LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="amd64 arm x86"
 IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="${PYTHON_DEPS}
 	app-admin/eselect
 	dev-python/lxml[${PYTHON_USEDEP}]
 	net-misc/wget"
 
+
 src_compile() {
 	MAKEARGS=(
 		PREFIX="${EPREFIX}/usr"

diff --git a/app-eselect/eselect-repository/eselect-repository-9999.ebuild b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
index 9899fabe6d7..d0af04f7f5b 100644
--- a/app-eselect/eselect-repository/eselect-repository-9999.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
@@ -15,12 +15,14 @@ LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS=""
 IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="${PYTHON_DEPS}
 	app-admin/eselect
 	dev-python/lxml[${PYTHON_USEDEP}]
 	net-misc/wget"
 
+
 src_compile() {
 	MAKEARGS=(
 		PREFIX="${EPREFIX}/usr"


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-05-09  8:20 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-05-09  8:20 UTC (permalink / raw
  To: gentoo-commits

commit:     bd1ace1f35abb13fdc0887192e9518bffee6ff2c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May  9 08:17:55 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May  9 08:20:16 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1ace1f

app-eselect/eselect-repository: Fix DoubleEmptyLine

 app-eselect/eselect-repository/eselect-repository-3.ebuild    | 1 -
 app-eselect/eselect-repository/eselect-repository-9999.ebuild | 1 -
 2 files changed, 2 deletions(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-3.ebuild b/app-eselect/eselect-repository/eselect-repository-3.ebuild
index 68c5eb73c7c..b060bbdb688 100644
--- a/app-eselect/eselect-repository/eselect-repository-3.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-3.ebuild
@@ -21,7 +21,6 @@ RDEPEND="${PYTHON_DEPS}
 	dev-python/lxml[${PYTHON_USEDEP}]
 	net-misc/wget"
 
-
 src_compile() {
 	MAKEARGS=(
 		PREFIX="${EPREFIX}/usr"

diff --git a/app-eselect/eselect-repository/eselect-repository-9999.ebuild b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
index d0af04f7f5b..3b84ea37834 100644
--- a/app-eselect/eselect-repository/eselect-repository-9999.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
@@ -22,7 +22,6 @@ RDEPEND="${PYTHON_DEPS}
 	dev-python/lxml[${PYTHON_USEDEP}]
 	net-misc/wget"
 
-
 src_compile() {
 	MAKEARGS=(
 		PREFIX="${EPREFIX}/usr"


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-06-02 18:40 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-06-02 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     24b6098e323f37886fa0572c32e3d44d83e6a752
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  2 18:07:27 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun  2 18:40:42 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24b6098e

app-eselect/eselect-repository: Bump to v4

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-4.ebuild | 40 ++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index ddabee955d0..ebe0c3f8d0c 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-3.tar.gz 5448 BLAKE2B 36a079f2a876709a2cc045e0c113f44f9feaa491c49d3773eb3e123ee7e7a7ffa2ad05060ffa62ac39ff8091a64ff995ea948f3c784ffbb7d8ddca5e468364d3 SHA512 ac3396a6d14fcc7d4df1f9b058bc3025875707f3febdf4d1e03122445d0e6273759b8a66443525c94daaf19f91b411c469aabc0e0082cd53980886a91f38a062
+DIST eselect-repository-4.tar.gz 5535 BLAKE2B 4dce6c0136ec9394c9bf4128ec26ab67260d4b96a165825ae7b15b8476d10d23fcc5190946fc54013d6eb8e4f18988b07df4c849ba50844571986a6823511547 SHA512 0d3c204d73bb4314bc24fdf6cd837f2a56ac00d1d11fbec7f072af874bc468777676bba40e0cc17553f6dec7a907f10865f9c356a6390372e0734173465ac483

diff --git a/app-eselect/eselect-repository/eselect-repository-4.ebuild b/app-eselect/eselect-repository/eselect-repository-4.ebuild
new file mode 100644
index 00000000000..8b88032d1ad
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-4.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	dev-python/lxml[${PYTHON_USEDEP}]
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-07-20 22:08 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-07-20 22:08 UTC (permalink / raw
  To: gentoo-commits

commit:     07b5680cc8e1f7ea0a29bc2a8618fb959a770c13
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 20 22:02:47 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 20 22:08:17 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b5680c

app-eselect/eselect-repository: Enable py3.7

 app-eselect/eselect-repository/eselect-repository-4.ebuild    | 2 +-
 app-eselect/eselect-repository/eselect-repository-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-4.ebuild b/app-eselect/eselect-repository/eselect-repository-4.ebuild
index 8b88032d1ad..d6788864a2a 100644
--- a/app-eselect/eselect-repository/eselect-repository-4.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
 inherit python-single-r1
 
 DESCRIPTION="Manage repos.conf via eselect"

diff --git a/app-eselect/eselect-repository/eselect-repository-9999.ebuild b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
index 3b84ea37834..1d0a1524e6a 100644
--- a/app-eselect/eselect-repository/eselect-repository-9999.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 EGIT_REPO_URI="https://github.com/mgorny/eselect-repository.git"
-PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
 inherit git-r3 python-single-r1
 
 DESCRIPTION="Manage repos.conf via eselect"


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-09-07 13:46 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-09-07 13:46 UTC (permalink / raw
  To: gentoo-commits

commit:     55e440f1bfd08d9cd7381171b9bccf644e51e5a9
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  7 13:45:52 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Sep  7 13:46:01 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55e440f1

app-eselect/eselect-repository: amd64 stable wrt bug #665398

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-eselect/eselect-repository/eselect-repository-4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-4.ebuild b/app-eselect/eselect-repository/eselect-repository-4.ebuild
index d6788864a2a..1e20624e82f 100644
--- a/app-eselect/eselect-repository/eselect-repository-4.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 arm x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-09-11  8:18 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-09-11  8:18 UTC (permalink / raw
  To: gentoo-commits

commit:     721515805cee72b1217037315dfc147e6c854a40
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 11 07:55:20 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Sep 11 08:17:57 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72151580

app-eselect/eselect-repository: Clean old up

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository/eselect-repository-3.ebuild | 40 ----------------------
 2 files changed, 41 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index ebe0c3f8d0c..85d7e2db135 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
-DIST eselect-repository-3.tar.gz 5448 BLAKE2B 36a079f2a876709a2cc045e0c113f44f9feaa491c49d3773eb3e123ee7e7a7ffa2ad05060ffa62ac39ff8091a64ff995ea948f3c784ffbb7d8ddca5e468364d3 SHA512 ac3396a6d14fcc7d4df1f9b058bc3025875707f3febdf4d1e03122445d0e6273759b8a66443525c94daaf19f91b411c469aabc0e0082cd53980886a91f38a062
 DIST eselect-repository-4.tar.gz 5535 BLAKE2B 4dce6c0136ec9394c9bf4128ec26ab67260d4b96a165825ae7b15b8476d10d23fcc5190946fc54013d6eb8e4f18988b07df4c849ba50844571986a6823511547 SHA512 0d3c204d73bb4314bc24fdf6cd837f2a56ac00d1d11fbec7f072af874bc468777676bba40e0cc17553f6dec7a907f10865f9c356a6390372e0734173465ac483

diff --git a/app-eselect/eselect-repository/eselect-repository-3.ebuild b/app-eselect/eselect-repository/eselect-repository-3.ebuild
deleted file mode 100644
index b060bbdb688..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_4,3_5,3_6} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	dev-python/lxml[${PYTHON_USEDEP}]
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-09-19 19:45 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-09-19 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     e8638cacec9b5dcd0b0c31481f803e3c4926ac0f
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 19 19:45:17 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Sep 19 19:45:17 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8638cac

app-eselect/eselect-repository: Add more arches support

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 app-eselect/eselect-repository/eselect-repository-4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-4.ebuild b/app-eselect/eselect-repository/eselect-repository-4.ebuild
index 1e20624e82f..6a2e9cd537b 100644
--- a/app-eselect/eselect-repository/eselect-repository-4.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 arm x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-09-19 19:47 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-09-19 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f913ebac3cbb9f7604e5fbf68330c1855a271241
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 19 19:47:20 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Sep 19 19:47:20 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f913ebac

app-eselect/eselect-repository: arm rollback

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 app-eselect/eselect-repository/eselect-repository-4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-4.ebuild b/app-eselect/eselect-repository/eselect-repository-4.ebuild
index 6a2e9cd537b..c817143abd2 100644
--- a/app-eselect/eselect-repository/eselect-repository-4.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-09-21 11:09 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2018-09-21 11:09 UTC (permalink / raw
  To: gentoo-commits

commit:     db6a578e63b30d02e5348577d2c40606788f0053
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 21 11:09:38 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Sep 21 11:09:55 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db6a578e

app-eselect/eselect-repository: Add ~sparc keyword too

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 app-eselect/eselect-repository/eselect-repository-4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-4.ebuild b/app-eselect/eselect-repository/eselect-repository-4.ebuild
index c817143abd2..722df7ea616 100644
--- a/app-eselect/eselect-repository/eselect-repository-4.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-09-30 18:13 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-09-30 18:13 UTC (permalink / raw
  To: gentoo-commits

commit:     5a259c088a0ab975497449e177dc8e725451d4e7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 30 18:07:16 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 30 18:13:41 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a259c08

app-eselect/eselect-repository: Bump to v5

v5 fixes listing local repositories.

Closes: https://bugs.gentoo.org/666368
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-5.ebuild | 40 ++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 85d7e2db135..3069b62380d 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-4.tar.gz 5535 BLAKE2B 4dce6c0136ec9394c9bf4128ec26ab67260d4b96a165825ae7b15b8476d10d23fcc5190946fc54013d6eb8e4f18988b07df4c849ba50844571986a6823511547 SHA512 0d3c204d73bb4314bc24fdf6cd837f2a56ac00d1d11fbec7f072af874bc468777676bba40e0cc17553f6dec7a907f10865f9c356a6390372e0734173465ac483
+DIST eselect-repository-5.tar.gz 5607 BLAKE2B cc007474b51873b7fa7f9c56572be717e7b8dff0d46c21d838911bcf9ecea99549da8e9f2d63c8101c0bc9c2ca230bfaba46f8bd770488d6566a62b2ac2ab0a6 SHA512 b5cf1701cc1d0cb50afcb9403f5c6f41223240891029f51ff899144eecee6fa3d7cfad23c477fae23733f9005413facd2cb8e9e1dea70931abc691a225fa83b4

diff --git a/app-eselect/eselect-repository/eselect-repository-5.ebuild b/app-eselect/eselect-repository/eselect-repository-5.ebuild
new file mode 100644
index 00000000000..06ccc47c631
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-5.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	dev-python/lxml[${PYTHON_USEDEP}]
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2018-10-15 19:37 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2018-10-15 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     e08f675d1d6d66b806a8010ee6114baae4b7c864
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 15 19:33:51 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct 15 19:37:13 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e08f675d

app-eselect/eselect-repository: Bump to v6

Bump to v6 which includes fix for missing cache error when adding
new repository as the first action post-install.

Closes: https://bugs.gentoo.org/667884
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-6.ebuild | 40 ++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 3069b62380d..b4eb48811b7 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1,3 @@
 DIST eselect-repository-4.tar.gz 5535 BLAKE2B 4dce6c0136ec9394c9bf4128ec26ab67260d4b96a165825ae7b15b8476d10d23fcc5190946fc54013d6eb8e4f18988b07df4c849ba50844571986a6823511547 SHA512 0d3c204d73bb4314bc24fdf6cd837f2a56ac00d1d11fbec7f072af874bc468777676bba40e0cc17553f6dec7a907f10865f9c356a6390372e0734173465ac483
 DIST eselect-repository-5.tar.gz 5607 BLAKE2B cc007474b51873b7fa7f9c56572be717e7b8dff0d46c21d838911bcf9ecea99549da8e9f2d63c8101c0bc9c2ca230bfaba46f8bd770488d6566a62b2ac2ab0a6 SHA512 b5cf1701cc1d0cb50afcb9403f5c6f41223240891029f51ff899144eecee6fa3d7cfad23c477fae23733f9005413facd2cb8e9e1dea70931abc691a225fa83b4
+DIST eselect-repository-6.tar.gz 5605 BLAKE2B 4a6dbb3f573cb1c4e212d02d011e79d8522828b8928bf28016b616c8eefd3beb08db8b555728d4e7f83473f2d36395eb1e2f1d8d21ccd5817e38a5d555cf6f09 SHA512 02ca2d66a6cfe4c68dea780440bf7fd431c575e535139a43c2b6201e833e43d174772486c97dc4154fc2d813935079d36c116ee907db115f7cb281db3d72add7

diff --git a/app-eselect/eselect-repository/eselect-repository-6.ebuild b/app-eselect/eselect-repository/eselect-repository-6.ebuild
new file mode 100644
index 00000000000..06ccc47c631
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	dev-python/lxml[${PYTHON_USEDEP}]
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-03-10 15:25 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2019-03-10 15:25 UTC (permalink / raw
  To: gentoo-commits

commit:     c4c8920f0040741a323d8fffc2f4ccad62780702
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 10 15:24:40 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Mar 10 15:24:40 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4c8920f

app-eselect/eselect-repository: x86 stable wrt bug #679900

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"

 app-eselect/eselect-repository/eselect-repository-6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-6.ebuild b/app-eselect/eselect-repository/eselect-repository-6.ebuild
index cb1a5a40ff9..16c8bdf5c87 100644
--- a/app-eselect/eselect-repository/eselect-repository-6.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-03-10 15:25 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2019-03-10 15:25 UTC (permalink / raw
  To: gentoo-commits

commit:     c54135fd022e15319c0b860e8e707c5c305b5cf2
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 10 15:24:20 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Mar 10 15:24:20 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c54135fd

app-eselect/eselect-repository: amd64 stable wrt bug #679900

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-eselect/eselect-repository/eselect-repository-6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-6.ebuild b/app-eselect/eselect-repository/eselect-repository-6.ebuild
index 06ccc47c631..cb1a5a40ff9 100644
--- a/app-eselect/eselect-repository/eselect-repository-6.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-04-07  7:27 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2019-04-07  7:27 UTC (permalink / raw
  To: gentoo-commits

commit:     a9924e5a38cc187abd8fe0425f82663f7e14dc77
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr  7 07:05:15 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr  7 07:27:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9924e5a

app-eselect/eselect-repository: Mark v6 stable on arm, wrt ALLARCHES

Bug: https://bugs.gentoo.org/679900
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-6.ebuild b/app-eselect/eselect-repository/eselect-repository-6.ebuild
index 16c8bdf5c87..73626c0152d 100644
--- a/app-eselect/eselect-repository/eselect-repository-6.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-04-07  7:27 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2019-04-07  7:27 UTC (permalink / raw
  To: gentoo-commits

commit:     91168a43023a342f5944a2fa8a92b97066dcf535
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr  7 07:05:39 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr  7 07:27:03 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91168a43

app-eselect/eselect-repository: Drop old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  2 --
 .../eselect-repository/eselect-repository-4.ebuild | 40 ----------------------
 .../eselect-repository/eselect-repository-5.ebuild | 40 ----------------------
 3 files changed, 82 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index b4eb48811b7..2053b4e0a0e 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,3 +1 @@
-DIST eselect-repository-4.tar.gz 5535 BLAKE2B 4dce6c0136ec9394c9bf4128ec26ab67260d4b96a165825ae7b15b8476d10d23fcc5190946fc54013d6eb8e4f18988b07df4c849ba50844571986a6823511547 SHA512 0d3c204d73bb4314bc24fdf6cd837f2a56ac00d1d11fbec7f072af874bc468777676bba40e0cc17553f6dec7a907f10865f9c356a6390372e0734173465ac483
-DIST eselect-repository-5.tar.gz 5607 BLAKE2B cc007474b51873b7fa7f9c56572be717e7b8dff0d46c21d838911bcf9ecea99549da8e9f2d63c8101c0bc9c2ca230bfaba46f8bd770488d6566a62b2ac2ab0a6 SHA512 b5cf1701cc1d0cb50afcb9403f5c6f41223240891029f51ff899144eecee6fa3d7cfad23c477fae23733f9005413facd2cb8e9e1dea70931abc691a225fa83b4
 DIST eselect-repository-6.tar.gz 5605 BLAKE2B 4a6dbb3f573cb1c4e212d02d011e79d8522828b8928bf28016b616c8eefd3beb08db8b555728d4e7f83473f2d36395eb1e2f1d8d21ccd5817e38a5d555cf6f09 SHA512 02ca2d66a6cfe4c68dea780440bf7fd431c575e535139a43c2b6201e833e43d174772486c97dc4154fc2d813935079d36c116ee907db115f7cb281db3d72add7

diff --git a/app-eselect/eselect-repository/eselect-repository-4.ebuild b/app-eselect/eselect-repository/eselect-repository-4.ebuild
deleted file mode 100644
index 722df7ea616..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	dev-python/lxml[${PYTHON_USEDEP}]
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
-	einstalldocs
-}

diff --git a/app-eselect/eselect-repository/eselect-repository-5.ebuild b/app-eselect/eselect-repository/eselect-repository-5.ebuild
deleted file mode 100644
index 06ccc47c631..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-5.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	dev-python/lxml[${PYTHON_USEDEP}]
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-05-29 12:53 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2019-05-29 12:53 UTC (permalink / raw
  To: gentoo-commits

commit:     a824663636768c74d61b211d247ef203964768f3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 12:52:07 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 29 12:52:07 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8246636

app-eselect/eselect-repository: Bump to v7

Closes: https://bugs.gentoo.org/686926
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-7.ebuild | 40 ++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 2053b4e0a0e..61c234d7fca 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-6.tar.gz 5605 BLAKE2B 4a6dbb3f573cb1c4e212d02d011e79d8522828b8928bf28016b616c8eefd3beb08db8b555728d4e7f83473f2d36395eb1e2f1d8d21ccd5817e38a5d555cf6f09 SHA512 02ca2d66a6cfe4c68dea780440bf7fd431c575e535139a43c2b6201e833e43d174772486c97dc4154fc2d813935079d36c116ee907db115f7cb281db3d72add7
+DIST eselect-repository-7.tar.gz 6768 BLAKE2B f648b880ab188b5beb21161dd011d8cea0bc9dd124d524d747a1867a37f334667363be9c0ad9f04275aa1534b904a519d7551c25ea547ae2acff625382c35dbd SHA512 87569158dce3acfdd81a469387fe1a7a7c268cae2e15cfdb12d8377984be5feb674c9b385f0171d27dbe8c2066ae98b2c9a74214340e85380cba173ba26d6f0f

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
new file mode 100644
index 00000000000..1e3790748b6
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-7.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_5,3_6,3_7} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	dev-python/lxml[${PYTHON_USEDEP}]
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-07-31 10:59 Agostino Sarubbo
  0 siblings, 0 replies; 74+ messages in thread
From: Agostino Sarubbo @ 2019-07-31 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     a2b87ed6fe05d048738448af78774e3b16177790
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 10:59:03 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 10:59:03 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2b87ed6

app-eselect/eselect-repository: amd64 stable wrt bug #690870

Package-Manager: Portage-2.3.66, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
index 1e3790748b6..00a11ddfeff 100644
--- a/app-eselect/eselect-repository/eselect-repository-7.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-07-31 11:03 Agostino Sarubbo
  0 siblings, 0 replies; 74+ messages in thread
From: Agostino Sarubbo @ 2019-07-31 11:03 UTC (permalink / raw
  To: gentoo-commits

commit:     deaf35877dd2ae910a2162932df17dcaccb61066
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 11:03:37 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 11:03:37 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deaf3587

app-eselect/eselect-repository: x86 stable wrt bug #690870

Package-Manager: Portage-2.3.66, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
index 00a11ddfeff..ed2f9c9c470 100644
--- a/app-eselect/eselect-repository/eselect-repository-7.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-08-02  8:14 Mikle Kolyada
  0 siblings, 0 replies; 74+ messages in thread
From: Mikle Kolyada @ 2019-08-02  8:14 UTC (permalink / raw
  To: gentoo-commits

commit:     0ed49d4e53b5feb78f3b0ca523e83c1a848f00ac
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Aug  2 08:13:26 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Aug  2 08:13:26 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed49d4e

app-eselect/eselect-repository: arm stable wrt bug #690870

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
index ed2f9c9c470..f5e003885de 100644
--- a/app-eselect/eselect-repository/eselect-repository-7.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-09-08  6:43 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2019-09-08  6:43 UTC (permalink / raw
  To: gentoo-commits

commit:     738585d44b71cdfc4ae0ff8cc9a512d51a659738
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  8 06:06:00 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep  8 06:06:00 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=738585d4

app-eselect/eselect-repository: Drop old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository/eselect-repository-6.ebuild | 40 ----------------------
 2 files changed, 41 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 61c234d7fca..e15e8d4b381 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
-DIST eselect-repository-6.tar.gz 5605 BLAKE2B 4a6dbb3f573cb1c4e212d02d011e79d8522828b8928bf28016b616c8eefd3beb08db8b555728d4e7f83473f2d36395eb1e2f1d8d21ccd5817e38a5d555cf6f09 SHA512 02ca2d66a6cfe4c68dea780440bf7fd431c575e535139a43c2b6201e833e43d174772486c97dc4154fc2d813935079d36c116ee907db115f7cb281db3d72add7
 DIST eselect-repository-7.tar.gz 6768 BLAKE2B f648b880ab188b5beb21161dd011d8cea0bc9dd124d524d747a1867a37f334667363be9c0ad9f04275aa1534b904a519d7551c25ea547ae2acff625382c35dbd SHA512 87569158dce3acfdd81a469387fe1a7a7c268cae2e15cfdb12d8377984be5feb674c9b385f0171d27dbe8c2066ae98b2c9a74214340e85380cba173ba26d6f0f

diff --git a/app-eselect/eselect-repository/eselect-repository-6.ebuild b/app-eselect/eselect-repository/eselect-repository-6.ebuild
deleted file mode 100644
index f5e003885de..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-6.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_5,3_6,3_7} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	dev-python/lxml[${PYTHON_USEDEP}]
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-12-08 10:20 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2019-12-08 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     8fe8b4fbe3c80e10e9fcfaa046454859cfb93267
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  8 09:59:41 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec  8 10:20:03 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe8b4fb

app-eselect/eselect-repository: Tested on python3.8

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
index 564a564e12f..c1f815b4649 100644
--- a/app-eselect/eselect-repository/eselect-repository-7.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-7.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{3_5,3_6,3_7} )
+PYTHON_COMPAT=( python{3_5,3_6,3_7,3_8} )
 inherit python-single-r1
 
 DESCRIPTION="Manage repos.conf via eselect"


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-12-08 10:20 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2019-12-08 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     15c5cdfa0bf16b423cff080e34a9bfd08f56cc7f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  8 09:58:57 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec  8 10:20:01 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c5cdfa

app-eselect/eselect-repository: Remove -9999

Remove the live ebuild.  This package is released frequently, so there's
no point in the maintenance overhead.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../eselect-repository-9999.ebuild                 | 41 ----------------------
 1 file changed, 41 deletions(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-9999.ebuild b/app-eselect/eselect-repository/eselect-repository-9999.ebuild
deleted file mode 100644
index e5180bc8bea..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-9999.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/mgorny/eselect-repository.git"
-PYTHON_COMPAT=( python{3_5,3_6,3_7} )
-inherit git-r3 python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI=""
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	dev-python/lxml[${PYTHON_USEDEP}]
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2019-12-08 10:20 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2019-12-08 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     3bfeb5c55d7e45cb06a89c502a08530c4b89fc10
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  8 09:59:30 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec  8 10:20:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bfeb5c5

app-eselect/eselect-repository: Switch to new python-single-r1 API

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-7.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
index f5e003885de..564a564e12f 100644
--- a/app-eselect/eselect-repository/eselect-repository-7.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-7.ebuild
@@ -18,7 +18,9 @@ REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="${PYTHON_DEPS}
 	app-admin/eselect
-	dev-python/lxml[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
+	')
 	net-misc/wget"
 
 src_compile() {


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2020-07-23 11:11 Kent Fredric
  0 siblings, 0 replies; 74+ messages in thread
From: Kent Fredric @ 2020-07-23 11:11 UTC (permalink / raw
  To: gentoo-commits

commit:     f2ce8cb09f91e7a240694e10c08a4a799aa80a01
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 23 10:05:29 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Jul 23 11:10:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ce8cb0

app-eselect/eselect-repository: Drop m68k re bug #690140

Depends:
- net-misc/wget
 - dev-perl/libwww-perl
  - dev-perl/LWP-Protocol-https
   - dev-perl/IO-Socket-SSL

Bug: https://bugs.gentoo.org/690140
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
index fd7d9fabf88..b2093824acb 100644
--- a/app-eselect/eselect-repository/eselect-repository-7.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2020-09-11  9:31 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2020-09-11  9:31 UTC (permalink / raw
  To: gentoo-commits

commit:     68da1ed0c9f821a0f89ede6c9fcbb60a32c85185
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 11 07:36:28 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep 11 09:31:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68da1ed0

app-eselect/eselect-repository: Bump to v8

Closes: https://bugs.gentoo.org/740884
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-8.ebuild | 42 ++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index e15e8d4b381..6e20009df2c 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-7.tar.gz 6768 BLAKE2B f648b880ab188b5beb21161dd011d8cea0bc9dd124d524d747a1867a37f334667363be9c0ad9f04275aa1534b904a519d7551c25ea547ae2acff625382c35dbd SHA512 87569158dce3acfdd81a469387fe1a7a7c268cae2e15cfdb12d8377984be5feb674c9b385f0171d27dbe8c2066ae98b2c9a74214340e85380cba173ba26d6f0f
+DIST eselect-repository-8.tar.gz 6774 BLAKE2B d22c2befc744e21b7619a490e9c41f1052c4077135ba5247ea9558f15f7dc5c06642dd934c41ad8cb3bedb40398876ea9d508276bde6f214fe06d5f80b19911b SHA512 b1fd13e3bfa323dea7fec53a33865352545a070df472c9db0b2901945a795833eb8a2b7b264005d94fe6e92dce57414a7e995157d28c8d26048bedcbf42adf96

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild b/app-eselect/eselect-repository/eselect-repository-8.ebuild
new file mode 100644
index 00000000000..f0bf9cebf26
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-8.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
+	')
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2020-09-30  1:49 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2020-09-30  1:49 UTC (permalink / raw
  To: gentoo-commits

commit:     4b60afe2a99e03ec35b15e75b57268866daa7ba9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 30 01:48:41 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 30 01:48:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b60afe2

app-eselect/eselect-repository: Stabilize 7 ALLARCHES, #744667

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

 app-eselect/eselect-repository/eselect-repository-7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
index b2093824acb..33798b53e49 100644
--- a/app-eselect/eselect-repository/eselect-repository-7.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2020-10-05  3:05 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2020-10-05  3:05 UTC (permalink / raw
  To: gentoo-commits

commit:     a29f9c3c23a78508e32cd2f89ccb4f4530322d05
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Sun Oct  4 20:18:15 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct  5 03:00:48 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a29f9c3c

app-eselect/eselect-repository: python3_9

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/17772
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild b/app-eselect/eselect-repository/eselect-repository-8.ebuild
index f0bf9cebf26..a3157c1971f 100644
--- a/app-eselect/eselect-repository/eselect-repository-8.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-8.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} )
 inherit python-single-r1
 
 DESCRIPTION="Manage repos.conf via eselect"


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2020-11-06  6:01 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2020-11-06  6:01 UTC (permalink / raw
  To: gentoo-commits

commit:     0ed984cbcf29910b5e15f599d8e83943b14bf99b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  6 06:01:11 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov  6 06:01:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed984cb

app-eselect/eselect-repository: Stabilize 8 ALLARCHES, #753170

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

 app-eselect/eselect-repository/eselect-repository-8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild b/app-eselect/eselect-repository/eselect-repository-8.ebuild
index a3157c1971f..add50e4e5a9 100644
--- a/app-eselect/eselect-repository/eselect-repository-8.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2020-11-06  8:01 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2020-11-06  8:01 UTC (permalink / raw
  To: gentoo-commits

commit:     5ccabf55871b6341671041853dedbcb7724a925a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  6 07:45:43 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov  6 08:01:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ccabf55

app-eselect/eselect-repository: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository/eselect-repository-7.ebuild | 42 ----------------------
 2 files changed, 43 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 6e20009df2c..d90d541db04 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
-DIST eselect-repository-7.tar.gz 6768 BLAKE2B f648b880ab188b5beb21161dd011d8cea0bc9dd124d524d747a1867a37f334667363be9c0ad9f04275aa1534b904a519d7551c25ea547ae2acff625382c35dbd SHA512 87569158dce3acfdd81a469387fe1a7a7c268cae2e15cfdb12d8377984be5feb674c9b385f0171d27dbe8c2066ae98b2c9a74214340e85380cba173ba26d6f0f
 DIST eselect-repository-8.tar.gz 6774 BLAKE2B d22c2befc744e21b7619a490e9c41f1052c4077135ba5247ea9558f15f7dc5c06642dd934c41ad8cb3bedb40398876ea9d508276bde6f214fe06d5f80b19911b SHA512 b1fd13e3bfa323dea7fec53a33865352545a070df472c9db0b2901945a795833eb8a2b7b264005d94fe6e92dce57414a7e995157d28c8d26048bedcbf42adf96

diff --git a/app-eselect/eselect-repository/eselect-repository-7.ebuild b/app-eselect/eselect-repository/eselect-repository-7.ebuild
deleted file mode 100644
index 33798b53e49..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-7.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
-	')
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2020-11-30 13:48 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2020-11-30 13:48 UTC (permalink / raw
  To: gentoo-commits

commit:     eb78a4caf240f8baf2f164f18bf2574ceb74cf00
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 13:48:52 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 13:48:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb78a4ca

app-eselect/eselect-repository: ~x64-macos keyworded

Package-Manager: Portage-3.0.10.2-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild b/app-eselect/eselect-repository/eselect-repository-8.ebuild
index add50e4e5a9..7b00baa7df6 100644
--- a/app-eselect/eselect-repository/eselect-repository-8.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~x64-macos"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-02-20 11:02 Sergei Trofimovich
  0 siblings, 0 replies; 74+ messages in thread
From: Sergei Trofimovich @ 2021-02-20 11:02 UTC (permalink / raw
  To: gentoo-commits

commit:     c2f3a1c9f7459954cb158fcdac671445b13b1b31
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sat Feb 20 10:48:43 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Feb 20 11:02:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f3a1c9

app-eselect/eselect-repository: keyworded 8 for hppa

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild b/app-eselect/eselect-repository/eselect-repository-8.ebuild
index be49c3eca81..4ff2449af03 100644
--- a/app-eselect/eselect-repository/eselect-repository-8.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~x64-macos"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-02-23 18:13 Sergei Trofimovich
  0 siblings, 0 replies; 74+ messages in thread
From: Sergei Trofimovich @ 2021-02-23 18:13 UTC (permalink / raw
  To: gentoo-commits

commit:     303d676adf7e51a1a38b264da0bd243c6092f1ca
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Feb 23 14:32:46 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Feb 23 18:12:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=303d676a

app-eselect/eselect-repository: stable 8 for hppa/sparc

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild b/app-eselect/eselect-repository/eselect-repository-8.ebuild
index 4ff2449af03..5a69e4a12cc 100644
--- a/app-eselect/eselect-repository/eselect-repository-8.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~x64-macos"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-02-28 21:30 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2021-02-28 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     fb76a7f0967edd42897026cb7b766e10000e3eb6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 21:28:05 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 21:30:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb76a7f0

app-eselect/eselect-repository: Bump to v9

Closes: https://bugs.gentoo.org/773361
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository/eselect-repository-9.ebuild | 41 ++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index d90d541db04..357d791f520 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-8.tar.gz 6774 BLAKE2B d22c2befc744e21b7619a490e9c41f1052c4077135ba5247ea9558f15f7dc5c06642dd934c41ad8cb3bedb40398876ea9d508276bde6f214fe06d5f80b19911b SHA512 b1fd13e3bfa323dea7fec53a33865352545a070df472c9db0b2901945a795833eb8a2b7b264005d94fe6e92dce57414a7e995157d28c8d26048bedcbf42adf96
+DIST eselect-repository-9.tar.gz 6791 BLAKE2B 66ca783b66ead0bef0e85839723844147919ca7caf4e66f962a869118bd0f7484ec183c5c7ab0327d960cb8ec9c5aae0d46b5565c121f9df9d3fe90a19426354 SHA512 9bd1f1ce15da01f76248d93d368c133e22ed77aa6dfd778d10295db649783583c203bc6c0388dec712eea5cc38b76b7527528a1e27a6a526f024eaf73e06b6ab

diff --git a/app-eselect/eselect-repository/eselect-repository-9.ebuild b/app-eselect/eselect-repository/eselect-repository-9.ebuild
new file mode 100644
index 00000000000..7c8b5ce44d5
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-9.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
+	')
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	keepdir /var/db/repos
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-03-29 21:00 John Helmert III
  0 siblings, 0 replies; 74+ messages in thread
From: John Helmert III @ 2021-03-29 21:00 UTC (permalink / raw
  To: gentoo-commits

commit:     c146b74a11d49b4bf6bc6623a1bae632b16975fe
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 29 20:58:56 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon Mar 29 21:00:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c146b74a

app-eselect/eselect-repository: no need to keepdir /var/db/repos

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-8.ebuild | 1 -
 app-eselect/eselect-repository/eselect-repository-9.ebuild | 1 -
 2 files changed, 2 deletions(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild b/app-eselect/eselect-repository/eselect-repository-8.ebuild
index 5a69e4a12cc..9e2dd034451 100644
--- a/app-eselect/eselect-repository/eselect-repository-8.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-8.ebuild
@@ -37,6 +37,5 @@ src_compile() {
 
 src_install() {
 	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
 	einstalldocs
 }

diff --git a/app-eselect/eselect-repository/eselect-repository-9.ebuild b/app-eselect/eselect-repository/eselect-repository-9.ebuild
index 7c8b5ce44d5..895e2338004 100644
--- a/app-eselect/eselect-repository/eselect-repository-9.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-9.ebuild
@@ -36,6 +36,5 @@ src_compile() {
 
 src_install() {
 	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	keepdir /var/db/repos
 	einstalldocs
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-04-05 20:28 Andreas K. Hüttel
  0 siblings, 0 replies; 74+ messages in thread
From: Andreas K. Hüttel @ 2021-04-05 20:28 UTC (permalink / raw
  To: gentoo-commits

commit:     75a9a5b21642670268d2ea5ed64286cb831f1af3
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  5 20:28:28 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Apr  5 20:28:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75a9a5b2

app-eselect/eselect-repository: keyword ~riscv

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel <dilfridge <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-9.ebuild b/app-eselect/eselect-repository/eselect-repository-9.ebuild
index 895e2338004..f221753b22f 100644
--- a/app-eselect/eselect-repository/eselect-repository-9.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-9.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-04-07  9:23 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2021-04-07  9:23 UTC (permalink / raw
  To: gentoo-commits

commit:     d2c913e844f9d6dde211e5ff456bf4d5b6ce8257
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  7 09:21:48 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr  7 09:23:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c913e8

app-eselect/eselect-repository: Bump to v10

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository-10.ebuild                   | 40 ++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 357d791f520..007c4c5ec9b 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1,3 @@
+DIST eselect-repository-10.tar.gz 7123 BLAKE2B 786255e8b83c1348c16ec6e30495e7a0c305d48430712fd2bba28367d27d0e5eea1fe9176636f7896f48feebb71a9a3daa025fdc2f8032d2e6a3c59bd6b5c0c4 SHA512 4a03e1b9ddf3d8f79429e0a98cd03804867ba4594945ddda518be06c07e6e5737c77b8c57893a8cf5930548c96f0d436786d95bed624041ad52ab603348337b2
 DIST eselect-repository-8.tar.gz 6774 BLAKE2B d22c2befc744e21b7619a490e9c41f1052c4077135ba5247ea9558f15f7dc5c06642dd934c41ad8cb3bedb40398876ea9d508276bde6f214fe06d5f80b19911b SHA512 b1fd13e3bfa323dea7fec53a33865352545a070df472c9db0b2901945a795833eb8a2b7b264005d94fe6e92dce57414a7e995157d28c8d26048bedcbf42adf96
 DIST eselect-repository-9.tar.gz 6791 BLAKE2B 66ca783b66ead0bef0e85839723844147919ca7caf4e66f962a869118bd0f7484ec183c5c7ab0327d960cb8ec9c5aae0d46b5565c121f9df9d3fe90a19426354 SHA512 9bd1f1ce15da01f76248d93d368c133e22ed77aa6dfd778d10295db649783583c203bc6c0388dec712eea5cc38b76b7527528a1e27a6a526f024eaf73e06b6ab

diff --git a/app-eselect/eselect-repository/eselect-repository-10.ebuild b/app-eselect/eselect-repository/eselect-repository-10.ebuild
new file mode 100644
index 00000000000..f221753b22f
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-10.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
+	')
+	net-misc/wget"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-04-07 22:47 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-04-07 22:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f6a449a9f4c0980a9afef10c75361ba5465f8743
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  7 22:46:28 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr  7 22:46:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6a449a9

app-eselect/eselect-repository: Stabilize 9 ALLARCHES, #780804

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

 app-eselect/eselect-repository/eselect-repository-9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-9.ebuild b/app-eselect/eselect-repository/eselect-repository-9.ebuild
index f221753b22f..b0b71d29e52 100644
--- a/app-eselect/eselect-repository/eselect-repository-9.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-9.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-04-07 23:11 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2021-04-07 23:11 UTC (permalink / raw
  To: gentoo-commits

commit:     81a153c7d4ecb0f6e124d8cf98baae10d6e3317f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  7 23:05:02 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr  7 23:11:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a153c7

app-eselect/eselect-repository: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository/eselect-repository-8.ebuild | 41 ----------------------
 2 files changed, 42 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 007c4c5ec9b..73810331959 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,3 +1,2 @@
 DIST eselect-repository-10.tar.gz 7123 BLAKE2B 786255e8b83c1348c16ec6e30495e7a0c305d48430712fd2bba28367d27d0e5eea1fe9176636f7896f48feebb71a9a3daa025fdc2f8032d2e6a3c59bd6b5c0c4 SHA512 4a03e1b9ddf3d8f79429e0a98cd03804867ba4594945ddda518be06c07e6e5737c77b8c57893a8cf5930548c96f0d436786d95bed624041ad52ab603348337b2
-DIST eselect-repository-8.tar.gz 6774 BLAKE2B d22c2befc744e21b7619a490e9c41f1052c4077135ba5247ea9558f15f7dc5c06642dd934c41ad8cb3bedb40398876ea9d508276bde6f214fe06d5f80b19911b SHA512 b1fd13e3bfa323dea7fec53a33865352545a070df472c9db0b2901945a795833eb8a2b7b264005d94fe6e92dce57414a7e995157d28c8d26048bedcbf42adf96
 DIST eselect-repository-9.tar.gz 6791 BLAKE2B 66ca783b66ead0bef0e85839723844147919ca7caf4e66f962a869118bd0f7484ec183c5c7ab0327d960cb8ec9c5aae0d46b5565c121f9df9d3fe90a19426354 SHA512 9bd1f1ce15da01f76248d93d368c133e22ed77aa6dfd778d10295db649783583c203bc6c0388dec712eea5cc38b76b7527528a1e27a6a526f024eaf73e06b6ab

diff --git a/app-eselect/eselect-repository/eselect-repository-8.ebuild b/app-eselect/eselect-repository/eselect-repository-8.ebuild
deleted file mode 100644
index 9e2dd034451..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-8.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_7,3_8,3_9} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~x64-macos"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
-	')
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-05-14 17:22 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-05-14 17:22 UTC (permalink / raw
  To: gentoo-commits

commit:     3b254bab2b8da233ba4913da2a665f28a92a1ac2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 14 17:20:57 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 14 17:22:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b254bab

app-eselect/eselect-repository: Stabilize 10 ALLARCHES, #790089

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

 app-eselect/eselect-repository/eselect-repository-10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-10.ebuild b/app-eselect/eselect-repository/eselect-repository-10.ebuild
index f221753b22f..b0b71d29e52 100644
--- a/app-eselect/eselect-repository/eselect-repository-10.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="${PYTHON_DEPS}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-05-14 22:00 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2021-05-14 22:00 UTC (permalink / raw
  To: gentoo-commits

commit:     a20b7a4951739d0c9adacd715c103b14a47f7afb
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 14 18:15:10 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 14 21:58:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a20b7a49

app-eselect/eselect-repository: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository/eselect-repository-9.ebuild | 40 ----------------------
 2 files changed, 41 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 73810331959..6641869b169 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
 DIST eselect-repository-10.tar.gz 7123 BLAKE2B 786255e8b83c1348c16ec6e30495e7a0c305d48430712fd2bba28367d27d0e5eea1fe9176636f7896f48feebb71a9a3daa025fdc2f8032d2e6a3c59bd6b5c0c4 SHA512 4a03e1b9ddf3d8f79429e0a98cd03804867ba4594945ddda518be06c07e6e5737c77b8c57893a8cf5930548c96f0d436786d95bed624041ad52ab603348337b2
-DIST eselect-repository-9.tar.gz 6791 BLAKE2B 66ca783b66ead0bef0e85839723844147919ca7caf4e66f962a869118bd0f7484ec183c5c7ab0327d960cb8ec9c5aae0d46b5565c121f9df9d3fe90a19426354 SHA512 9bd1f1ce15da01f76248d93d368c133e22ed77aa6dfd778d10295db649783583c203bc6c0388dec712eea5cc38b76b7527528a1e27a6a526f024eaf73e06b6ab

diff --git a/app-eselect/eselect-repository/eselect-repository-9.ebuild b/app-eselect/eselect-repository/eselect-repository-9.ebuild
deleted file mode 100644
index b0b71d29e52..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-9.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
-	')
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-06-06 17:08 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2021-06-06 17:08 UTC (permalink / raw
  To: gentoo-commits

commit:     f24dc0ea0b049711226b4e0f8371948c5c99e83c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  6 17:07:48 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun  6 17:08:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f24dc0ea

app-eselect/eselect-repository: Bump to v11, with py3.10 and tests!

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository-11.ebuild                   | 52 ++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 6641869b169..605676069b9 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-10.tar.gz 7123 BLAKE2B 786255e8b83c1348c16ec6e30495e7a0c305d48430712fd2bba28367d27d0e5eea1fe9176636f7896f48feebb71a9a3daa025fdc2f8032d2e6a3c59bd6b5c0c4 SHA512 4a03e1b9ddf3d8f79429e0a98cd03804867ba4594945ddda518be06c07e6e5737c77b8c57893a8cf5930548c96f0d436786d95bed624041ad52ab603348337b2
+DIST eselect-repository-11.tar.gz 8554 BLAKE2B c7bdd1559c310c492b2c00c7a7cb92d48ad24a69ff4485c1282c67b7dd211360fcda6d96eec2b9e734a1b4745f2a0fe9da1ff20d62bf1174a64b6016097ea634 SHA512 31b0b36122e580a018ca66d112cdddfbfe1568030fb9a20440450c17c759bfb872eb7ef99036a3dae14e8384a8f770354fd4cd362ed594408ae9e8dbbc6dea68

diff --git a/app-eselect/eselect-repository/eselect-repository-11.ebuild b/app-eselect/eselect-repository/eselect-repository-11.ebuild
new file mode 100644
index 00000000000..8a6bf3e7757
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-11.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_USEDEP}]
+	')
+	net-misc/wget"
+BDEPEND="
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/pytest[${PYTHON_USEDEP}]
+		')
+	)"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_test() {
+	epytest
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-07-31 22:23 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2021-07-31 22:23 UTC (permalink / raw
  To: gentoo-commits

commit:     d3273284b75a5c214697e05157c152d702f0d9dc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 31 22:22:17 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 31 22:22:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3273284

app-eselect/eselect-repository: Stabilize 11 ALLARCHES, #805455

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

 app-eselect/eselect-repository/eselect-repository-11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-11.ebuild b/app-eselect/eselect-repository/eselect-repository-11.ebuild
index 8a6bf3e7757..a27e3190d6f 100644
--- a/app-eselect/eselect-repository/eselect-repository-11.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-11.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2021-08-01  8:17 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2021-08-01  8:17 UTC (permalink / raw
  To: gentoo-commits

commit:     955ee1cf5545ec9601e8ecb38f9d5ff9722b2c75
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  1 07:04:10 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug  1 08:15:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955ee1cf

app-eselect/eselect-repository: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository-10.ebuild                   | 40 ----------------------
 2 files changed, 41 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 605676069b9..7ae44f2e4cf 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
-DIST eselect-repository-10.tar.gz 7123 BLAKE2B 786255e8b83c1348c16ec6e30495e7a0c305d48430712fd2bba28367d27d0e5eea1fe9176636f7896f48feebb71a9a3daa025fdc2f8032d2e6a3c59bd6b5c0c4 SHA512 4a03e1b9ddf3d8f79429e0a98cd03804867ba4594945ddda518be06c07e6e5737c77b8c57893a8cf5930548c96f0d436786d95bed624041ad52ab603348337b2
 DIST eselect-repository-11.tar.gz 8554 BLAKE2B c7bdd1559c310c492b2c00c7a7cb92d48ad24a69ff4485c1282c67b7dd211360fcda6d96eec2b9e734a1b4745f2a0fe9da1ff20d62bf1174a64b6016097ea634 SHA512 31b0b36122e580a018ca66d112cdddfbfe1568030fb9a20440450c17c759bfb872eb7ef99036a3dae14e8384a8f770354fd4cd362ed594408ae9e8dbbc6dea68

diff --git a/app-eselect/eselect-repository/eselect-repository-10.ebuild b/app-eselect/eselect-repository/eselect-repository-10.ebuild
deleted file mode 100644
index 17abf1b7a55..00000000000
--- a/app-eselect/eselect-repository/eselect-repository-10.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_USEDEP}]
-	')
-	net-misc/wget"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-01-11 21:00 Georgy Yakovlev
  0 siblings, 0 replies; 74+ messages in thread
From: Georgy Yakovlev @ 2022-01-11 21:00 UTC (permalink / raw
  To: gentoo-commits

commit:     b8e1e025255e7763ff4b7c1993f881984c488a25
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 11 20:59:39 2022 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Tue Jan 11 21:00:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8e1e025

app-eselect/eselect-repository: stabilize 11 for ppc

Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-11.ebuild b/app-eselect/eselect-repository/eselect-repository-11.ebuild
index 32324cbe0644..51619733780c 100644
--- a/app-eselect/eselect-repository/eselect-repository-11.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-11.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-01-11 21:00 Georgy Yakovlev
  0 siblings, 0 replies; 74+ messages in thread
From: Georgy Yakovlev @ 2022-01-11 21:00 UTC (permalink / raw
  To: gentoo-commits

commit:     1f9ec4880b92ff7dea9beae0036599b1036a9084
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 11 20:59:29 2022 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Tue Jan 11 21:00:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f9ec488

app-eselect/eselect-repository: stabilize 11 for ppc64

Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-11.ebuild b/app-eselect/eselect-repository/eselect-repository-11.ebuild
index a27e3190d6f6..32324cbe0644 100644
--- a/app-eselect/eselect-repository/eselect-repository-11.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-01-13  7:59 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2022-01-13  7:59 UTC (permalink / raw
  To: gentoo-commits

commit:     44f5f56b96eb529ef552c9c7594fb9fd66ba4ba7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 13 07:58:23 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 13 07:58:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f5f56b

app-eselect/eselect-repository: Bump to v12

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository-12.ebuild                   | 52 ++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 7ae44f2e4cf5..ec2350a55f23 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-11.tar.gz 8554 BLAKE2B c7bdd1559c310c492b2c00c7a7cb92d48ad24a69ff4485c1282c67b7dd211360fcda6d96eec2b9e734a1b4745f2a0fe9da1ff20d62bf1174a64b6016097ea634 SHA512 31b0b36122e580a018ca66d112cdddfbfe1568030fb9a20440450c17c759bfb872eb7ef99036a3dae14e8384a8f770354fd4cd362ed594408ae9e8dbbc6dea68
+DIST eselect-repository-12.tar.gz 8543 BLAKE2B 14866156ddfefebaea368c4a13413d79e7858520861ee2b699cb09b339f3bb4b8393af7201b4cb7d6a60d2a48d168a053cc4707e2f56a7a2a11cfb5156cfa83f SHA512 3b98b9bd87fe61c7fb4d314e72c8433b11dd80501cfd226d4a4de25ca6d08e7a14a2497a1700ac64d704368bb8e5ea2ec337d0712097e9e10182a3122a59e388

diff --git a/app-eselect/eselect-repository/eselect-repository-12.ebuild b/app-eselect/eselect-repository/eselect-repository-12.ebuild
new file mode 100644
index 000000000000..d1183fe43d04
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-12.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository"
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	app-admin/eselect
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_USEDEP}]
+	')
+	net-misc/wget"
+BDEPEND="
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/pytest[${PYTHON_USEDEP}]
+		')
+	)"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_test() {
+	epytest
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-02-02  6:27 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2022-02-02  6:27 UTC (permalink / raw
  To: gentoo-commits

commit:     615426af873eae843224ccbf55b5fda195a32e46
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  2 06:26:57 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb  2 06:26:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=615426af

app-eselect/eselect-repository: Stabilize 12 ALLARCHES, #832530

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

 app-eselect/eselect-repository/eselect-repository-12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-12.ebuild b/app-eselect/eselect-repository/eselect-repository-12.ebuild
index d1183fe43d04..e226ea120253 100644
--- a/app-eselect/eselect-repository/eselect-repository-12.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-12.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-02-02  6:45 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2022-02-02  6:45 UTC (permalink / raw
  To: gentoo-commits

commit:     5c1bf3c42a75eb53c2f014374c3e144185e23cc4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  2 06:44:44 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb  2 06:44:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c1bf3c4

app-eselect/eselect-repository: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository-11.ebuild                   | 52 ----------------------
 2 files changed, 53 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index ec2350a55f23..6337725d6b0b 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
-DIST eselect-repository-11.tar.gz 8554 BLAKE2B c7bdd1559c310c492b2c00c7a7cb92d48ad24a69ff4485c1282c67b7dd211360fcda6d96eec2b9e734a1b4745f2a0fe9da1ff20d62bf1174a64b6016097ea634 SHA512 31b0b36122e580a018ca66d112cdddfbfe1568030fb9a20440450c17c759bfb872eb7ef99036a3dae14e8384a8f770354fd4cd362ed594408ae9e8dbbc6dea68
 DIST eselect-repository-12.tar.gz 8543 BLAKE2B 14866156ddfefebaea368c4a13413d79e7858520861ee2b699cb09b339f3bb4b8393af7201b4cb7d6a60d2a48d168a053cc4707e2f56a7a2a11cfb5156cfa83f SHA512 3b98b9bd87fe61c7fb4d314e72c8433b11dd80501cfd226d4a4de25ca6d08e7a14a2497a1700ac64d704368bb8e5ea2ec337d0712097e9e10182a3122a59e388

diff --git a/app-eselect/eselect-repository/eselect-repository-11.ebuild b/app-eselect/eselect-repository/eselect-repository-11.ebuild
deleted file mode 100644
index 51619733780c..000000000000
--- a/app-eselect/eselect-repository/eselect-repository-11.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
-IUSE="test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-admin/eselect
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_USEDEP}]
-	')
-	net-misc/wget"
-BDEPEND="
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/pytest[${PYTHON_USEDEP}]
-		')
-	)"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_test() {
-	epytest
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-07-09  6:02 WANG Xuerui
  0 siblings, 0 replies; 74+ messages in thread
From: WANG Xuerui @ 2022-07-09  6:02 UTC (permalink / raw
  To: gentoo-commits

commit:     fb5fa09e06b6636de2330bf395bd185acbe62dbc
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  9 06:01:43 2022 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sat Jul  9 06:01:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb5fa09e

app-eselect/eselect-repository: keyword 12 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-12.ebuild b/app-eselect/eselect-repository/eselect-repository-12.ebuild
index e226ea120253..cf42d7f83aaa 100644
--- a/app-eselect/eselect-repository/eselect-repository-12.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-12.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-07-28  8:28 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2022-07-28  8:28 UTC (permalink / raw
  To: gentoo-commits

commit:     9c92b1beec10f547285418398e1bc721c9088068
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 08:10:21 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 08:28:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c92b1be

app-eselect/eselect-repository: enable py3.11

Closes: https://bugs.gentoo.org/861671
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-12.ebuild b/app-eselect/eselect-repository/eselect-repository-12.ebuild
index cf42d7f83aaa..1914e75a3925 100644
--- a/app-eselect/eselect-repository/eselect-repository-12.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-12.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 inherit python-single-r1
 
 DESCRIPTION="Manage repos.conf via eselect"


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-07-28  8:45 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2022-07-28  8:45 UTC (permalink / raw
  To: gentoo-commits

commit:     99f798af9636c338696f770381c897dec35e0910
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 08:17:59 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 08:45:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99f798af

app-eselect/eselect-repository: Enable py3.11

Closes: https://bugs.gentoo.org/861671
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../eselect-repository/eselect-repository-12.ebuild      | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-12.ebuild b/app-eselect/eselect-repository/eselect-repository-12.ebuild
index 1914e75a3925..2cc2fc5af707 100644
--- a/app-eselect/eselect-repository/eselect-repository-12.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-12.ebuild
@@ -7,8 +7,11 @@ PYTHON_COMPAT=( python3_{8..11} )
 inherit python-single-r1
 
 DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository"
-SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://github.com/mgorny/eselect-repository/"
+SRC_URI="
+	https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
 
 LICENSE="BSD-2"
 SLOT="0"
@@ -17,18 +20,21 @@ IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
-RDEPEND="${PYTHON_DEPS}
+RDEPEND="
+	${PYTHON_DEPS}
 	app-admin/eselect
 	$(python_gen_cond_dep '
 		dev-python/lxml[${PYTHON_USEDEP}]
 	')
-	net-misc/wget"
+	net-misc/wget
+"
 BDEPEND="
 	test? (
 		$(python_gen_cond_dep '
 			dev-python/pytest[${PYTHON_USEDEP}]
 		')
-	)"
+	)
+"
 
 src_compile() {
 	MAKEARGS=(


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-09-19 12:01 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2022-09-19 12:01 UTC (permalink / raw
  To: gentoo-commits

commit:     e68b6f99870f7bf5fa4ff79f0bfe5703f2b8be12
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 12:00:24 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 12:01:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e68b6f99

app-eselect/eselect-repository: Bump to v13

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository-13.ebuild                   | 58 ++++++++++++++++++++++
 app-eselect/eselect-repository/metadata.xml        |  2 +-
 3 files changed, 60 insertions(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 6337725d6b0b..90bc2f99f10f 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-12.tar.gz 8543 BLAKE2B 14866156ddfefebaea368c4a13413d79e7858520861ee2b699cb09b339f3bb4b8393af7201b4cb7d6a60d2a48d168a053cc4707e2f56a7a2a11cfb5156cfa83f SHA512 3b98b9bd87fe61c7fb4d314e72c8433b11dd80501cfd226d4a4de25ca6d08e7a14a2497a1700ac64d704368bb8e5ea2ec337d0712097e9e10182a3122a59e388
+DIST eselect-repository-13.tar.gz 8914 BLAKE2B 57d11585f3ac1b279c99e6664fbb088e6eb09f8ef67496edf4c7aa82dcb154ad8d89f9b3337b87d15a7a19e59cd5c2359aa555266fbbb19478c0414ecae0ccd0 SHA512 76eb3f7c6e907d2355613548dfd9c55640d257bf4c89acf634e313228365f909f461b38acbdda21bc3ba1bd47ebb8be4d10ba93c4082e72c52896ddec0b25568

diff --git a/app-eselect/eselect-repository/eselect-repository-13.ebuild b/app-eselect/eselect-repository/eselect-repository-13.ebuild
new file mode 100644
index 000000000000..3c8d049cc8ab
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-13.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/projg2/eselect-repository/"
+SRC_URI="
+	https://github.com/projg2/eselect-repository/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="
+	${PYTHON_DEPS}
+	app-admin/eselect
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_USEDEP}]
+	')
+	net-misc/wget
+"
+BDEPEND="
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/pytest[${PYTHON_USEDEP}]
+		')
+	)
+"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_test() {
+	epytest
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	einstalldocs
+}

diff --git a/app-eselect/eselect-repository/metadata.xml b/app-eselect/eselect-repository/metadata.xml
index 213d2358fc3c..affa96ed287a 100644
--- a/app-eselect/eselect-repository/metadata.xml
+++ b/app-eselect/eselect-repository/metadata.xml
@@ -6,7 +6,7 @@
 		<name>Michał Górny</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="github">mgorny/eselect-repository</remote-id>
+		<remote-id type="github">projg2/eselect-repository</remote-id>
 	</upstream>
 	<stabilize-allarches/>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-12-31 12:10 Arthur Zamarin
  0 siblings, 0 replies; 74+ messages in thread
From: Arthur Zamarin @ 2022-12-31 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     5c25271e749a9d81f6217fc80bbd2d0f509dad74
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 12:10:38 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 12:10:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c25271e

app-eselect/eselect-repository: Stabilize 13 ALLARCHES, #889162

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

 app-eselect/eselect-repository/eselect-repository-13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-13.ebuild b/app-eselect/eselect-repository/eselect-repository-13.ebuild
index 3c8d049cc8ab..1ee88c1c5603 100644
--- a/app-eselect/eselect-repository/eselect-repository-13.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-13.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2022-12-31 12:37 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2022-12-31 12:37 UTC (permalink / raw
  To: gentoo-commits

commit:     55df6c9f8d4da9b7dfed7653c49d9f5d994f162b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 12:31:55 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 12:31:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55df6c9f

app-eselect/eselect-repository: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository-12.ebuild                   | 58 ----------------------
 2 files changed, 59 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 90bc2f99f10f..1e7725d54ad7 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
-DIST eselect-repository-12.tar.gz 8543 BLAKE2B 14866156ddfefebaea368c4a13413d79e7858520861ee2b699cb09b339f3bb4b8393af7201b4cb7d6a60d2a48d168a053cc4707e2f56a7a2a11cfb5156cfa83f SHA512 3b98b9bd87fe61c7fb4d314e72c8433b11dd80501cfd226d4a4de25ca6d08e7a14a2497a1700ac64d704368bb8e5ea2ec337d0712097e9e10182a3122a59e388
 DIST eselect-repository-13.tar.gz 8914 BLAKE2B 57d11585f3ac1b279c99e6664fbb088e6eb09f8ef67496edf4c7aa82dcb154ad8d89f9b3337b87d15a7a19e59cd5c2359aa555266fbbb19478c0414ecae0ccd0 SHA512 76eb3f7c6e907d2355613548dfd9c55640d257bf4c89acf634e313228365f909f461b38acbdda21bc3ba1bd47ebb8be4d10ba93c4082e72c52896ddec0b25568

diff --git a/app-eselect/eselect-repository/eselect-repository-12.ebuild b/app-eselect/eselect-repository/eselect-repository-12.ebuild
deleted file mode 100644
index 2cc2fc5af707..000000000000
--- a/app-eselect/eselect-repository/eselect-repository-12.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/mgorny/eselect-repository/"
-SRC_URI="
-	https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
-IUSE="test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="
-	${PYTHON_DEPS}
-	app-admin/eselect
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_USEDEP}]
-	')
-	net-misc/wget
-"
-BDEPEND="
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/pytest[${PYTHON_USEDEP}]
-		')
-	)
-"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_test() {
-	epytest
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2023-05-30  0:27 Sam James
  0 siblings, 0 replies; 74+ messages in thread
From: Sam James @ 2023-05-30  0:27 UTC (permalink / raw
  To: gentoo-commits

commit:     8f1b478ef44b5a343d0e5eb45d1962307abb576a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 30 00:22:00 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 30 00:22:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f1b478e

app-eselect/eselect-repository: enable py3.12

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

 app-eselect/eselect-repository/eselect-repository-13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-13.ebuild b/app-eselect/eselect-repository/eselect-repository-13.ebuild
index d4b632d076cc..7f62bab8aac2 100644
--- a/app-eselect/eselect-repository/eselect-repository-13.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-13.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 inherit python-single-r1
 
 DESCRIPTION="Manage repos.conf via eselect"


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2023-08-01 13:02 Benda XU
  0 siblings, 0 replies; 74+ messages in thread
From: Benda XU @ 2023-08-01 13:02 UTC (permalink / raw
  To: gentoo-commits

commit:     8ebd5830c4b8f13d5c61bd81e9a4b5fd5de8a407
Author:     Benda Xu <heroxbd <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 12:58:00 2023 +0000
Commit:     Benda XU <heroxbd <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 13:01:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ebd5830

app-eselect/eselect-repository: keyword 13 for ~arm64-macos

Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-13.ebuild b/app-eselect/eselect-repository/eselect-repository-13.ebuild
index 7f62bab8aac2..4bbaed00f1d7 100644
--- a/app-eselect/eselect-repository/eselect-repository-13.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-13.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2023-09-25  2:55 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2023-09-25  2:55 UTC (permalink / raw
  To: gentoo-commits

commit:     20a818b5a1d79bce7b2b9a6c42211233bd81eb2f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 25 02:32:54 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 25 02:55:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a818b5

app-eselect/eselect-repository: Bump to v14

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 +
 .../eselect-repository-14.ebuild                   | 58 ++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index 1e7725d54ad7..b3101fb87b41 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-13.tar.gz 8914 BLAKE2B 57d11585f3ac1b279c99e6664fbb088e6eb09f8ef67496edf4c7aa82dcb154ad8d89f9b3337b87d15a7a19e59cd5c2359aa555266fbbb19478c0414ecae0ccd0 SHA512 76eb3f7c6e907d2355613548dfd9c55640d257bf4c89acf634e313228365f909f461b38acbdda21bc3ba1bd47ebb8be4d10ba93c4082e72c52896ddec0b25568
+DIST eselect-repository-14.tar.gz 8954 BLAKE2B 01cfe850a4ede31e28ef28c26093217691b1e77ac52c4fed3c2bffac9e066e7d298e34c88028fce996edcfb0f2efcc3799db7d70753e40455d455ad0dd68edf5 SHA512 dc5350aba4fe5b76b0d5cfdf267b34ea26f3d3e3c7ec3d523696fd2635a49f616297d2dc9efc6bb7ce2ebd9c87a4ad7f0f06f115da34c401ed6306e5be7ac687

diff --git a/app-eselect/eselect-repository/eselect-repository-14.ebuild b/app-eselect/eselect-repository/eselect-repository-14.ebuild
new file mode 100644
index 000000000000..6ce7dedd8b93
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-14.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/projg2/eselect-repository/"
+SRC_URI="
+	https://github.com/projg2/eselect-repository/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="
+	${PYTHON_DEPS}
+	app-admin/eselect
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_USEDEP}]
+	')
+	net-misc/wget
+"
+BDEPEND="
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/pytest[${PYTHON_USEDEP}]
+		')
+	)
+"
+
+src_compile() {
+	MAKEARGS=(
+		PREFIX="${EPREFIX}/usr"
+		SYSCONFDIR="${EPREFIX}/etc"
+		SHAREDSTATEDIR="${EPREFIX}/var"
+		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+	)
+
+	emake "${MAKEARGS[@]}"
+	python_fix_shebang eselect-repo-helper
+}
+
+src_test() {
+	epytest
+}
+
+src_install() {
+	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2023-11-01 20:37 Arthur Zamarin
  0 siblings, 0 replies; 74+ messages in thread
From: Arthur Zamarin @ 2023-11-01 20:37 UTC (permalink / raw
  To: gentoo-commits

commit:     d4f17ba5249c20e87a02368813f2c7265397d216
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  1 20:36:42 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov  1 20:36:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4f17ba5

app-eselect/eselect-repository: Stabilize 14 ALLARCHES, #916662

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

 app-eselect/eselect-repository/eselect-repository-14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-14.ebuild b/app-eselect/eselect-repository/eselect-repository-14.ebuild
index 6ce7dedd8b93..4bbaed00f1d7 100644
--- a/app-eselect/eselect-repository/eselect-repository-14.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-14.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2023-11-02 12:58 Michał Górny
  0 siblings, 0 replies; 74+ messages in thread
From: Michał Górny @ 2023-11-02 12:58 UTC (permalink / raw
  To: gentoo-commits

commit:     78357c44270221124b57207ba51f6a9a04da391b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  2 12:51:43 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov  2 12:58:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78357c44

app-eselect/eselect-repository: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-eselect/eselect-repository/Manifest            |  1 -
 .../eselect-repository-13.ebuild                   | 58 ----------------------
 2 files changed, 59 deletions(-)

diff --git a/app-eselect/eselect-repository/Manifest b/app-eselect/eselect-repository/Manifest
index b3101fb87b41..0893096b64d3 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1,2 +1 @@
-DIST eselect-repository-13.tar.gz 8914 BLAKE2B 57d11585f3ac1b279c99e6664fbb088e6eb09f8ef67496edf4c7aa82dcb154ad8d89f9b3337b87d15a7a19e59cd5c2359aa555266fbbb19478c0414ecae0ccd0 SHA512 76eb3f7c6e907d2355613548dfd9c55640d257bf4c89acf634e313228365f909f461b38acbdda21bc3ba1bd47ebb8be4d10ba93c4082e72c52896ddec0b25568
 DIST eselect-repository-14.tar.gz 8954 BLAKE2B 01cfe850a4ede31e28ef28c26093217691b1e77ac52c4fed3c2bffac9e066e7d298e34c88028fce996edcfb0f2efcc3799db7d70753e40455d455ad0dd68edf5 SHA512 dc5350aba4fe5b76b0d5cfdf267b34ea26f3d3e3c7ec3d523696fd2635a49f616297d2dc9efc6bb7ce2ebd9c87a4ad7f0f06f115da34c401ed6306e5be7ac687

diff --git a/app-eselect/eselect-repository/eselect-repository-13.ebuild b/app-eselect/eselect-repository/eselect-repository-13.ebuild
deleted file mode 100644
index 4bbaed00f1d7..000000000000
--- a/app-eselect/eselect-repository/eselect-repository-13.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-inherit python-single-r1
-
-DESCRIPTION="Manage repos.conf via eselect"
-HOMEPAGE="https://github.com/projg2/eselect-repository/"
-SRC_URI="
-	https://github.com/projg2/eselect-repository/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
-IUSE="test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="
-	${PYTHON_DEPS}
-	app-admin/eselect
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_USEDEP}]
-	')
-	net-misc/wget
-"
-BDEPEND="
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/pytest[${PYTHON_USEDEP}]
-		')
-	)
-"
-
-src_compile() {
-	MAKEARGS=(
-		PREFIX="${EPREFIX}/usr"
-		SYSCONFDIR="${EPREFIX}/etc"
-		SHAREDSTATEDIR="${EPREFIX}/var"
-		ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
-	)
-
-	emake "${MAKEARGS[@]}"
-	python_fix_shebang eselect-repo-helper
-}
-
-src_test() {
-	epytest
-}
-
-src_install() {
-	emake "${MAKEARGS[@]}" DESTDIR="${D}" install
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/
@ 2023-11-30 21:54 James Le Cuirot
  0 siblings, 0 replies; 74+ messages in thread
From: James Le Cuirot @ 2023-11-30 21:54 UTC (permalink / raw
  To: gentoo-commits

commit:     31eaf1e24a41b545b15099c3ee7012b59fa6c743
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 30 21:53:50 2023 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Thu Nov 30 21:53:50 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31eaf1e2

app-eselect/eselect-repository: Keyword 14 for ~m68k

The tests pass.

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 app-eselect/eselect-repository/eselect-repository-14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-repository/eselect-repository-14.ebuild b/app-eselect/eselect-repository/eselect-repository-14.ebuild
index 4bbaed00f1d7..62f1daefab04 100644
--- a/app-eselect/eselect-repository/eselect-repository-14.ebuild
+++ b/app-eselect/eselect-repository/eselect-repository-14.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


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

end of thread, other threads:[~2023-11-30 21:54 UTC | newest]

Thread overview: 74+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-06  6:01 [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-11-30 21:54 James Le Cuirot
2023-11-02 12:58 Michał Górny
2023-11-01 20:37 Arthur Zamarin
2023-09-25  2:55 Michał Górny
2023-08-01 13:02 Benda XU
2023-05-30  0:27 Sam James
2022-12-31 12:37 Michał Górny
2022-12-31 12:10 Arthur Zamarin
2022-09-19 12:01 Michał Górny
2022-07-28  8:45 Michał Górny
2022-07-28  8:28 Sam James
2022-07-09  6:02 WANG Xuerui
2022-02-02  6:45 Michał Górny
2022-02-02  6:27 Sam James
2022-01-13  7:59 Michał Górny
2022-01-11 21:00 Georgy Yakovlev
2022-01-11 21:00 Georgy Yakovlev
2021-08-01  8:17 Michał Górny
2021-07-31 22:23 Sam James
2021-06-06 17:08 Michał Górny
2021-05-14 22:00 Michał Górny
2021-05-14 17:22 Sam James
2021-04-07 23:11 Michał Górny
2021-04-07 22:47 Sam James
2021-04-07  9:23 Michał Górny
2021-04-05 20:28 Andreas K. Hüttel
2021-03-29 21:00 John Helmert III
2021-02-28 21:30 Michał Górny
2021-02-23 18:13 Sergei Trofimovich
2021-02-20 11:02 Sergei Trofimovich
2020-11-30 13:48 Sam James
2020-11-06  8:01 Michał Górny
2020-10-05  3:05 Michał Górny
2020-09-30  1:49 Sam James
2020-09-11  9:31 Michał Górny
2020-07-23 11:11 Kent Fredric
2019-12-08 10:20 Michał Górny
2019-12-08 10:20 Michał Górny
2019-12-08 10:20 Michał Górny
2019-09-08  6:43 Michał Górny
2019-08-02  8:14 Mikle Kolyada
2019-07-31 11:03 Agostino Sarubbo
2019-07-31 10:59 Agostino Sarubbo
2019-05-29 12:53 Michał Górny
2019-04-07  7:27 Michał Górny
2019-04-07  7:27 Michał Górny
2019-03-10 15:25 Mikle Kolyada
2019-03-10 15:25 Mikle Kolyada
2018-10-15 19:37 Michał Górny
2018-09-30 18:13 Michał Górny
2018-09-21 11:09 Mikle Kolyada
2018-09-19 19:47 Mikle Kolyada
2018-09-19 19:45 Mikle Kolyada
2018-09-11  8:18 Michał Górny
2018-09-07 13:46 Mikle Kolyada
2018-07-20 22:08 Michał Górny
2018-06-02 18:40 Michał Górny
2018-05-09  8:20 Michał Górny
2018-05-09  7:34 Michał Górny
2018-05-09  7:34 Michał Górny
2018-04-15 16:54 Mikle Kolyada
2018-04-11 20:43 Thomas Deutschmann
2018-03-26 19:45 Mikle Kolyada
2018-03-26 16:14 Michał Górny
2018-03-23 13:39 Michał Górny
2018-03-15 15:32 Mikle Kolyada
2018-01-26  1:08 Mikle Kolyada
2017-12-25 11:42 Markus Meier
2017-11-28 19:34 Michał Górny
2017-11-07 16:22 Michał Górny
2017-09-22  4:24 Michał Górny
2017-09-09 11:02 Michał Górny
2017-09-09  9:59 Michał Górny

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