* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2016-09-11 6:02 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2016-09-11 6:02 UTC (permalink / raw
To: gentoo-commits
commit: 5de57f5f68793dbdd3d87ede175e148fa3f4902a
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 11 05:57:46 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Sep 11 06:02:45 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5de57f5f
app-admin/lib_users: Add dev-lang/python:3.5 support.
Package-Manager: portage-2.3.0
app-admin/lib_users/lib_users-0.9-r1.ebuild | 33 +++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/app-admin/lib_users/lib_users-0.9-r1.ebuild b/app-admin/lib_users/lib_users-0.9-r1.ebuild
new file mode 100644
index 00000000..c38e984
--- /dev/null
+++ b/app-admin/lib_users/lib_users-0.9-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit python-r1
+
+DESCRIPTION="Checks /proc for libraries being mapped but marked as deleted"
+HOMEPAGE="http://schwarzvogel.de/software-misc.shtml"
+SRC_URI="http://schwarzvogel.de/pkgs/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+ test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+RDEPEND="${PYTHON_DEPS}"
+
+src_test() {
+ python_foreach_impl nosetests --verbosity=2
+}
+
+src_install() {
+ python_foreach_impl python_newscript lib_users.py lib_users
+ dodoc README TODO
+}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-01-03 12:23 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2017-01-03 12:23 UTC (permalink / raw
To: gentoo-commits
commit: 8a0a2796fac52a2359bfd231fecf8850d0172f8e
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 3 12:22:32 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Jan 3 12:23:04 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a0a2796
app-admin/lib_users: Add new version 0.10
This has a new dependency (dev-python/backports-unittest-mock), so drop
keywords until that is fixed.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/lib_users/Manifest | 1 +
app-admin/lib_users/lib_users-0.10.ebuild | 45 +++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index c543fce..bf8c33f 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1 +1,2 @@
+DIST lib_users-0.10.tar.gz 25636 SHA256 2ccee6967c7da935441cb7f57112f15373ddaafe2f2915744caf271c308c9c98 SHA512 dee8203457570f686df69dc91d71614b462845c848a3445fd9b9f94047fdba8171cc2555fa4299bc4c361905d488c1f17cee4ab0e99899f37995377d6011805a WHIRLPOOL 310d5c187c7c3cd6a4be5dd4282709aeeea9941dea0f2466e80156bd8577e72a0cfe2b92df43a26d2198e7dc7d6320eb34e3e86311c9db956517dc48b856b8b4
DIST lib_users-0.9.tar.gz 22992 SHA256 361db39b14b9512b438cf96b2b9978c6b5c88abbc2c0b7227940e7e816fdcf1c SHA512 d4c10398d69410fc3d48a151c446105ed232fdca9ef68c3f0f1df903739b798762d6bf958dc08472e90151560d8a625b4ab8b5f5d89521918369ceadf2b85b19 WHIRLPOOL 312aaa05b10681a0eff7997ea8d1e359bd757b888fe6fadb29ef3370cc482371d65d14e06dc6887cefda0aee3bd65232ffcd06477e536e4d2c82996c27f60425
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
new file mode 100644
index 00000000..0175a8f
--- /dev/null
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit python-r1
+
+DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
+HOMEPAGE="https://github.com/klausman/lib_users"
+SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
+ )"
+RDEPEND="${PYTHON_DEPS}"
+
+src_test() {
+ python_foreach_impl nosetests --verbosity=2
+}
+
+my_install() {
+ python_newscript lib_users.py lib_users
+ python_newscript fd_users.py fd_users
+ # lib_users_util/ contains a test script we don't want, so do things by hand
+ python_moduleinto lib_users_util
+ python_domodule lib_users_util/common.py
+ python_domodule lib_users_util/__init__.py
+}
+
+src_install() {
+ python_foreach_impl my_install
+ dodoc README.md TODO
+}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-01-03 13:22 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2017-01-03 13:22 UTC (permalink / raw
To: gentoo-commits
commit: c31b4fdf00bf25fb7a70ec381888c145e2793450
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 3 13:08:22 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Jan 3 13:08:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c31b4fdf
app-admin/lib_users-0.10-r0: keyworded for ~alpha
Gentoo-Bug: 604504
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index 0175a8f..def2f16 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-01-06 11:19 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2017-01-06 11:19 UTC (permalink / raw
To: gentoo-commits
commit: 7d3d521134d46744b2a71c578a8a236642c5c5c3
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 6 11:18:13 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri Jan 6 11:19:09 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d3d5211
app-admin/lib_users: Mark ~hppa (bug #604504).
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index def2f16..9879c7d 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-01-06 14:44 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2017-01-06 14:44 UTC (permalink / raw
To: gentoo-commits
commit: 8ea14f11c8087092f7096b698b7bc2f6d47080d7
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 6 14:43:46 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri Jan 6 14:44:17 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ea14f11
app-admin/lib_users: Mark ~ppc64 (bug #604504).
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index 9879c7d..62a0cd3 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-03-22 10:02 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2017-03-22 10:02 UTC (permalink / raw
To: gentoo-commits
commit: f1f8e8e06e279f64bc24cfdb94ba6653336a0e5b
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 22 10:01:56 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Mar 22 10:01:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f8e8e0
app-admin/lib_users: Stable for HPPA PPC64 (bug #613096).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index a8aa15563d3..ea1a09420b8 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 hppa ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-03-29 9:07 Michael Weber
0 siblings, 0 replies; 60+ messages in thread
From: Michael Weber @ 2017-03-29 9:07 UTC (permalink / raw
To: gentoo-commits
commit: f499023ff181b087fe66a0842513989936d5df11
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 29 08:58:24 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Mar 29 09:06:48 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f499023f
app-admin/lib_users: add ~ppc keyword (bug 604504).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index ea1a09420b8..d9edd504bc3 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 hppa ~ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-03-29 9:07 Michael Weber
0 siblings, 0 replies; 60+ messages in thread
From: Michael Weber @ 2017-03-29 9:07 UTC (permalink / raw
To: gentoo-commits
commit: 807ef5d590d7435a6ea31a9ee5688d3eff4b1248
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 29 09:06:33 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Mar 29 09:06:59 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=807ef5d5
app-admin/lib_users: ppc stable (bug 613096).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index d9edd504bc3..592289a1073 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ~ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-03-29 16:46 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2017-03-29 16:46 UTC (permalink / raw
To: gentoo-commits
commit: baa67cc87b61e97769b95de4dd53b1c53d7e2be5
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 29 16:46:32 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Wed Mar 29 16:46:32 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baa67cc8
app-admin/lib_users: Add alpha stable keyword
Gentoo-Bug: 613096
Package-Manager: Portage-2.3.5, Repoman-2.3.2
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index 592289a1073..0155658569e 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-04-07 17:00 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2017-04-07 17:00 UTC (permalink / raw
To: gentoo-commits
commit: df8cdd81da4d99909f8bdca0429b8b16ecd0ea0f
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 7 17:00:21 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri Apr 7 17:00:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8cdd81
app-admin/lib_users: Old.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
app-admin/lib_users/Manifest | 1 -
app-admin/lib_users/lib_users-0.9-r1.ebuild | 32 -----------------------------
app-admin/lib_users/lib_users-0.9.ebuild | 32 -----------------------------
3 files changed, 65 deletions(-)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index bf8c33f3e97..51f0be4c9cc 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1,2 +1 @@
DIST lib_users-0.10.tar.gz 25636 SHA256 2ccee6967c7da935441cb7f57112f15373ddaafe2f2915744caf271c308c9c98 SHA512 dee8203457570f686df69dc91d71614b462845c848a3445fd9b9f94047fdba8171cc2555fa4299bc4c361905d488c1f17cee4ab0e99899f37995377d6011805a WHIRLPOOL 310d5c187c7c3cd6a4be5dd4282709aeeea9941dea0f2466e80156bd8577e72a0cfe2b92df43a26d2198e7dc7d6320eb34e3e86311c9db956517dc48b856b8b4
-DIST lib_users-0.9.tar.gz 22992 SHA256 361db39b14b9512b438cf96b2b9978c6b5c88abbc2c0b7227940e7e816fdcf1c SHA512 d4c10398d69410fc3d48a151c446105ed232fdca9ef68c3f0f1df903739b798762d6bf958dc08472e90151560d8a625b4ab8b5f5d89521918369ceadf2b85b19 WHIRLPOOL 312aaa05b10681a0eff7997ea8d1e359bd757b888fe6fadb29ef3370cc482371d65d14e06dc6887cefda0aee3bd65232ffcd06477e536e4d2c82996c27f60425
diff --git a/app-admin/lib_users/lib_users-0.9-r1.ebuild b/app-admin/lib_users/lib_users-0.9-r1.ebuild
deleted file mode 100644
index 2114caad045..00000000000
--- a/app-admin/lib_users/lib_users-0.9-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit python-r1
-
-DESCRIPTION="Checks /proc for libraries being mapped but marked as deleted"
-HOMEPAGE="http://schwarzvogel.de/software-misc.shtml"
-SRC_URI="http://schwarzvogel.de/pkgs/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
- test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-RDEPEND="${PYTHON_DEPS}"
-
-src_test() {
- python_foreach_impl nosetests --verbosity=2
-}
-
-src_install() {
- python_foreach_impl python_newscript lib_users.py lib_users
- dodoc README TODO
-}
diff --git a/app-admin/lib_users/lib_users-0.9.ebuild b/app-admin/lib_users/lib_users-0.9.ebuild
deleted file mode 100644
index cd7902db1f3..00000000000
--- a/app-admin/lib_users/lib_users-0.9.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit python-r1
-
-DESCRIPTION="Checks /proc for libraries being mapped but marked as deleted"
-HOMEPAGE="http://schwarzvogel.de/software-misc.shtml"
-SRC_URI="http://schwarzvogel.de/pkgs/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
- test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-RDEPEND="${PYTHON_DEPS}"
-
-src_test() {
- python_foreach_impl nosetests --verbosity=2
-}
-
-src_install() {
- python_foreach_impl python_newscript lib_users.py lib_users
- dodoc README TODO
-}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-04-07 17:00 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2017-04-07 17:00 UTC (permalink / raw
To: gentoo-commits
commit: b38c9606b09f33e8704e6bc0ab057638215be8f7
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 7 16:59:48 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri Apr 7 16:59:48 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b38c9606
app-admin/lib_users: Stable for x86 (bug #613096).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index 0155658569e..1c3e5572b5e 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-05-15 12:56 Manuel Rüger
0 siblings, 0 replies; 60+ messages in thread
From: Manuel Rüger @ 2017-05-15 12:56 UTC (permalink / raw
To: gentoo-commits
commit: 84ea59ea96e86eb0a60e5b1acb9ffcacba57f8a9
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon May 15 12:55:35 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon May 15 12:55:35 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84ea59ea
app-admin/lib_users: Add python3_6
Package-Manager: Portage-2.3.5, Repoman-2.3.2
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index 1c3e5572b5e..131b81cb420 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
inherit python-r1
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2017-09-17 2:30 Michael Palimaka
0 siblings, 0 replies; 60+ messages in thread
From: Michael Palimaka @ 2017-09-17 2:30 UTC (permalink / raw
To: gentoo-commits
commit: 1c58ed8d3e41be7c0c8b860c50e8cfef280f4557
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 17 02:03:48 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 02:30:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c58ed8d
app-admin/lib_users: add ~arm keyword
Tested on Raspberry Pi 2.
Package-Manager: Portage-2.3.6, Repoman-2.3.3
app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.10.ebuild
index 131b81cb420..89d0f323c9a 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2018-07-11 8:27 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2018-07-11 8:27 UTC (permalink / raw
To: gentoo-commits
commit: 8f9880fc5514b9e4af205c5a4906c1170f4ecce5
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 11 08:27:01 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Wed Jul 11 08:27:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f9880fc
app-admin/lib_users: Add v0.11
Package-Manager: Portage-2.3.41, Repoman-2.3.9
app-admin/lib_users/Manifest | 1 +
app-admin/lib_users/lib_users-0.11.ebuild | 44 +++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index 4ba224f3127..d2bcc06986c 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1 +1,2 @@
DIST lib_users-0.10.tar.gz 25636 BLAKE2B 6e660b80ef75f71d47f4783dc741e8b0c17f3cfe31296c5624adcfed5836a0b86964f042eafb5b34e259a824c79efb537558d625bc16d07fb388d61ece7c6329 SHA512 dee8203457570f686df69dc91d71614b462845c848a3445fd9b9f94047fdba8171cc2555fa4299bc4c361905d488c1f17cee4ab0e99899f37995377d6011805a
+DIST lib_users-0.11.tar.gz 25660 BLAKE2B 8f5a827840d4074a0e8abd77e43f60eb09f199f58a2bde0c2bce7613d6ba1d9b12dd46adffa528ff351f54933c304f274abef9c35550d7af3519101dcec69d0a SHA512 a54fc8f57cffcd08e77e86eaf50ec6e68e45e1e9458e25e035af90e14be13980a400c4d264f70ef67e141e1d54581b0487b2b70dd084dc5840424221b46f644a
diff --git a/app-admin/lib_users/lib_users-0.11.ebuild b/app-admin/lib_users/lib_users-0.11.ebuild
new file mode 100644
index 00000000000..32a7d7827f3
--- /dev/null
+++ b/app-admin/lib_users/lib_users-0.11.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit python-r1
+
+DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
+HOMEPAGE="https://github.com/klausman/lib_users"
+SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
+ )"
+RDEPEND="${PYTHON_DEPS}"
+
+src_test() {
+ python_foreach_impl nosetests --verbosity=2
+}
+
+my_install() {
+ python_newscript lib_users.py lib_users
+ python_newscript fd_users.py fd_users
+ # lib_users_util/ contains a test script we don't want, so do things by hand
+ python_moduleinto lib_users_util
+ python_domodule lib_users_util/common.py
+ python_domodule lib_users_util/__init__.py
+}
+
+src_install() {
+ python_foreach_impl my_install
+ dodoc README.md TODO
+}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2018-07-17 7:58 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2018-07-17 7:58 UTC (permalink / raw
To: gentoo-commits
commit: 03594d900697f682d0251527bdcfe48e50d88875
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 17 07:58:14 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Jul 17 07:58:14 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03594d90
app-admin/lib_users: Enable Pyhton 3.7 support
Package-Manager: Portage-2.3.43, Repoman-2.3.10
app-admin/lib_users/{lib_users-0.11.ebuild => lib_users-0.11-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.11.ebuild b/app-admin/lib_users/lib_users-0.11-r1.ebuild
similarity index 95%
rename from app-admin/lib_users/lib_users-0.11.ebuild
rename to app-admin/lib_users/lib_users-0.11-r1.ebuild
index 32a7d7827f3..b1a72eed7a5 100644
--- a/app-admin/lib_users/lib_users-0.11.ebuild
+++ b/app-admin/lib_users/lib_users-0.11-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
inherit python-r1
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2018-09-13 10:53 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2018-09-13 10:53 UTC (permalink / raw
To: gentoo-commits
commit: f3ed1808d6b0692fef05957a128a2aa3af8899d8
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 13 10:53:15 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Thu Sep 13 10:53:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3ed1808
app-admin/lib_users: Add v0.12, remove v0.10
Package-Manager: Portage-2.3.49, Repoman-2.3.10
app-admin/lib_users/Manifest | 2 +-
.../lib_users/{lib_users-0.10.ebuild => lib_users-0.12.ebuild} | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index d2bcc06986c..bc0af46c394 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1,2 +1,2 @@
-DIST lib_users-0.10.tar.gz 25636 BLAKE2B 6e660b80ef75f71d47f4783dc741e8b0c17f3cfe31296c5624adcfed5836a0b86964f042eafb5b34e259a824c79efb537558d625bc16d07fb388d61ece7c6329 SHA512 dee8203457570f686df69dc91d71614b462845c848a3445fd9b9f94047fdba8171cc2555fa4299bc4c361905d488c1f17cee4ab0e99899f37995377d6011805a
DIST lib_users-0.11.tar.gz 25660 BLAKE2B 8f5a827840d4074a0e8abd77e43f60eb09f199f58a2bde0c2bce7613d6ba1d9b12dd46adffa528ff351f54933c304f274abef9c35550d7af3519101dcec69d0a SHA512 a54fc8f57cffcd08e77e86eaf50ec6e68e45e1e9458e25e035af90e14be13980a400c4d264f70ef67e141e1d54581b0487b2b70dd084dc5840424221b46f644a
+DIST lib_users-0.12.tar.gz 25688 BLAKE2B 415e3d387360c0e3a3d27ccab8e5a861ea41fceaefa756aa116266f5449856c51a4a7ec650a8665e73d3a74a9973662ea693308a0636fbd7fb8b5dd57dffea35 SHA512 cdd55fe971845be30fb83156c335bbb8d63815fe3b3f62b9689a7c68f402e89ad5b9c0ff805ed57766a5e5fcac598bc6fa1dc36cf65997ab495675d726304847
diff --git a/app-admin/lib_users/lib_users-0.10.ebuild b/app-admin/lib_users/lib_users-0.12.ebuild
similarity index 85%
rename from app-admin/lib_users/lib_users-0.10.ebuild
rename to app-admin/lib_users/lib_users-0.12.ebuild
index 89d0f323c9a..b1a72eed7a5 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.12.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
inherit python-r1
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2018-09-13 11:27 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2018-09-13 11:27 UTC (permalink / raw
To: gentoo-commits
commit: 25c04c2325b8c5b9e678e022d890527e5c716aa9
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 13 11:27:33 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Thu Sep 13 11:27:51 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c04c23
app-admin/lib_users: Mark 0.11 stable
Package-Manager: Portage-2.3.49, Repoman-2.3.10
app-admin/lib_users/lib_users-0.11-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.11-r1.ebuild b/app-admin/lib_users/lib_users-0.11-r1.ebuild
index b1a72eed7a5..55a91485d77 100644
--- a/app-admin/lib_users/lib_users-0.11-r1.ebuild
+++ b/app-admin/lib_users/lib_users-0.11-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2018-11-19 9:25 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2018-11-19 9:25 UTC (permalink / raw
To: gentoo-commits
commit: 3a03a4a7ea282a7fd9da74be187b15826fb654c2
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 19 09:25:34 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Nov 19 09:25:34 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a03a4a7
app-admin/lib_users: Add v0.13, drop v0.12
Bug: https://bugs.gentoo.org/648356
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
app-admin/lib_users/Manifest | 2 +-
app-admin/lib_users/{lib_users-0.12.ebuild => lib_users-0.13.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index bc0af46c394..bf7cc7901e7 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1,2 +1,2 @@
DIST lib_users-0.11.tar.gz 25660 BLAKE2B 8f5a827840d4074a0e8abd77e43f60eb09f199f58a2bde0c2bce7613d6ba1d9b12dd46adffa528ff351f54933c304f274abef9c35550d7af3519101dcec69d0a SHA512 a54fc8f57cffcd08e77e86eaf50ec6e68e45e1e9458e25e035af90e14be13980a400c4d264f70ef67e141e1d54581b0487b2b70dd084dc5840424221b46f644a
-DIST lib_users-0.12.tar.gz 25688 BLAKE2B 415e3d387360c0e3a3d27ccab8e5a861ea41fceaefa756aa116266f5449856c51a4a7ec650a8665e73d3a74a9973662ea693308a0636fbd7fb8b5dd57dffea35 SHA512 cdd55fe971845be30fb83156c335bbb8d63815fe3b3f62b9689a7c68f402e89ad5b9c0ff805ed57766a5e5fcac598bc6fa1dc36cf65997ab495675d726304847
+DIST lib_users-0.13.tar.gz 25704 BLAKE2B 895f8b721216339fe4306158bf6282353d79584573091cc4e7c63c8096a9f9cfe380a8bce7229f168e44fe5d3641ceb8c91bd751316a6c6a467ace4ec0dce723 SHA512 588af7068728810832bcf4d1526f271e255d07c75d152fb41844c66f3598a71e9a96bee3426b31b58cd26af889bc42c0a7248731fdfe3623fd4567d2b6b7275e
diff --git a/app-admin/lib_users/lib_users-0.12.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
similarity index 96%
rename from app-admin/lib_users/lib_users-0.12.ebuild
rename to app-admin/lib_users/lib_users-0.13.ebuild
index b1a72eed7a5..1abf202a755 100644
--- a/app-admin/lib_users/lib_users-0.12.ebuild
+++ b/app-admin/lib_users/lib_users-0.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2019-04-22 19:33 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2019-04-22 19:33 UTC (permalink / raw
To: gentoo-commits
commit: 14932c92424570575ed48336c382ef59d2d8e22a
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 22 19:33:08 2019 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Apr 22 19:33:08 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14932c92
app-admin/lib_users-0.13-r0: alpha stable
Bug: http://bugs.gentoo.org/684106
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
app-admin/lib_users/lib_users-0.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.13.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
index 023b95cce22..ccdda3c9606 100644
--- a/app-admin/lib_users/lib_users-0.13.ebuild
+++ b/app-admin/lib_users/lib_users-0.13.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2019-04-22 19:34 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2019-04-22 19:34 UTC (permalink / raw
To: gentoo-commits
commit: 2c2ce9f329ed2738c3f9c6ef069ce6092ba846a9
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 22 19:34:01 2019 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Apr 22 19:34:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c2ce9f3
app-admin/lib_users-0.13-r0: amd64 stable
Bug: http://bugs.gentoo.org/684106
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
app-admin/lib_users/lib_users-0.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.13.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
index ccdda3c9606..a8366606b69 100644
--- a/app-admin/lib_users/lib_users-0.13.ebuild
+++ b/app-admin/lib_users/lib_users-0.13.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2019-04-27 16:03 Sergei Trofimovich
0 siblings, 0 replies; 60+ messages in thread
From: Sergei Trofimovich @ 2019-04-27 16:03 UTC (permalink / raw
To: gentoo-commits
commit: 16f8d49d508f5692a093bc5e4c0ae4e4a6680bd7
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 27 16:02:43 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Apr 27 16:02:43 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f8d49d
app-admin/lib_users: stable 0.13 for ppc, bug #684106
Package-Manager: Portage-2.3.65, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
app-admin/lib_users/lib_users-0.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.13.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
index a8366606b69..18fdfe67cbf 100644
--- a/app-admin/lib_users/lib_users-0.13.ebuild
+++ b/app-admin/lib_users/lib_users-0.13.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~hppa ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2019-04-27 16:25 Sergei Trofimovich
0 siblings, 0 replies; 60+ messages in thread
From: Sergei Trofimovich @ 2019-04-27 16:25 UTC (permalink / raw
To: gentoo-commits
commit: e0162f5d8f8731b48ceae2290dc35cec4617ab77
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 27 16:21:48 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Apr 27 16:25:30 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0162f5d
app-admin/lib_users: stable 0.13 for ppc64, bug #684106
Package-Manager: Portage-2.3.65, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
app-admin/lib_users/lib_users-0.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.13.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
index 18fdfe67cbf..26a04f43d6c 100644
--- a/app-admin/lib_users/lib_users-0.13.ebuild
+++ b/app-admin/lib_users/lib_users-0.13.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2019-04-30 23:01 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2019-04-30 23:01 UTC (permalink / raw
To: gentoo-commits
commit: 1b3d5cfc05d456ad07ab2a3b7f0ed37cf71ad70d
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 30 23:01:12 2019 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue Apr 30 23:01:21 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b3d5cfc
app-admin/lib_users: Stable for HPPA too.
Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --ignore-arches
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
app-admin/lib_users/lib_users-0.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.13.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
index 26a04f43d6c..992854c1904 100644
--- a/app-admin/lib_users/lib_users-0.13.ebuild
+++ b/app-admin/lib_users/lib_users-0.13.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2019-05-12 20:56 Thomas Deutschmann
0 siblings, 0 replies; 60+ messages in thread
From: Thomas Deutschmann @ 2019-05-12 20:56 UTC (permalink / raw
To: gentoo-commits
commit: bbd44849260d93c8f8fda3ad7018c74b59c74527
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun May 12 20:30:28 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun May 12 20:56:14 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbd44849
app-admin/lib_users: x86 stable (bug #684106)
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
app-admin/lib_users/lib_users-0.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.13.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
index 992854c1904..d4aca2e0ac6 100644
--- a/app-admin/lib_users/lib_users-0.13.ebuild
+++ b/app-admin/lib_users/lib_users-0.13.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2019-08-10 13:37 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2019-08-10 13:37 UTC (permalink / raw
To: gentoo-commits
commit: b12b527af0a260ff012467405b87632f92e74644
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 10 13:06:19 2019 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Aug 10 13:37:24 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b12b527a
app-admin/lib_users: Old
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
app-admin/lib_users/Manifest | 1 -
app-admin/lib_users/lib_users-0.11-r1.ebuild | 44 ----------------------------
2 files changed, 45 deletions(-)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index bf7cc7901e7..d6d01f2b949 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1,2 +1 @@
-DIST lib_users-0.11.tar.gz 25660 BLAKE2B 8f5a827840d4074a0e8abd77e43f60eb09f199f58a2bde0c2bce7613d6ba1d9b12dd46adffa528ff351f54933c304f274abef9c35550d7af3519101dcec69d0a SHA512 a54fc8f57cffcd08e77e86eaf50ec6e68e45e1e9458e25e035af90e14be13980a400c4d264f70ef67e141e1d54581b0487b2b70dd084dc5840424221b46f644a
DIST lib_users-0.13.tar.gz 25704 BLAKE2B 895f8b721216339fe4306158bf6282353d79584573091cc4e7c63c8096a9f9cfe380a8bce7229f168e44fe5d3641ceb8c91bd751316a6c6a467ace4ec0dce723 SHA512 588af7068728810832bcf4d1526f271e255d07c75d152fb41844c66f3598a71e9a96bee3426b31b58cd26af889bc42c0a7248731fdfe3623fd4567d2b6b7275e
diff --git a/app-admin/lib_users/lib_users-0.11-r1.ebuild b/app-admin/lib_users/lib_users-0.11-r1.ebuild
deleted file mode 100644
index d4aca2e0ac6..00000000000
--- a/app-admin/lib_users/lib_users-0.11-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-
-inherit python-r1
-
-DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
-HOMEPAGE="https://github.com/klausman/lib_users"
-SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
- )"
-RDEPEND="${PYTHON_DEPS}"
-
-src_test() {
- python_foreach_impl nosetests --verbosity=2
-}
-
-my_install() {
- python_newscript lib_users.py lib_users
- python_newscript fd_users.py fd_users
- # lib_users_util/ contains a test script we don't want, so do things by hand
- python_moduleinto lib_users_util
- python_domodule lib_users_util/common.py
- python_domodule lib_users_util/__init__.py
-}
-
-src_install() {
- python_foreach_impl my_install
- dodoc README.md TODO
-}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2020-02-06 10:07 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2020-02-06 10:07 UTC (permalink / raw
To: gentoo-commits
commit: cb2d1abbfa326dd7db33ff35da6124bda26ab809
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 6 10:07:10 2020 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Thu Feb 6 10:07:38 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb2d1abb
app-admin/lib_users: Add v0.14, drop Python 2 support
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
app-admin/lib_users/Manifest | 1 +
app-admin/lib_users/lib_users-0.14.ebuild | 44 +++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index d6d01f2b949..8df6cc014b4 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1 +1,2 @@
DIST lib_users-0.13.tar.gz 25704 BLAKE2B 895f8b721216339fe4306158bf6282353d79584573091cc4e7c63c8096a9f9cfe380a8bce7229f168e44fe5d3641ceb8c91bd751316a6c6a467ace4ec0dce723 SHA512 588af7068728810832bcf4d1526f271e255d07c75d152fb41844c66f3598a71e9a96bee3426b31b58cd26af889bc42c0a7248731fdfe3623fd4567d2b6b7275e
+DIST lib_users-0.14.tar.gz 25746 BLAKE2B 4aa2dbbd7c53be13f79988a62c7997f0787ea9b773fc57681a021ff75ba9ff0988ac3032b21150c4e4958849a6195df09d388b6341e1ac139f34ce9555786233 SHA512 533c6e8f486e58d0fd22aea9a30adf91c3a8340a8a3719f6374ddfa8120d402c8202ab8ceb0e78aedd46e3e5875795392ed40497a66d51de5c2ca6a275a1a777
diff --git a/app-admin/lib_users/lib_users-0.14.ebuild b/app-admin/lib_users/lib_users-0.14.ebuild
new file mode 100644
index 00000000000..d60d1389843
--- /dev/null
+++ b/app-admin/lib_users/lib_users-0.14.ebuild
@@ -0,0 +1,44 @@
+# 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} )
+
+inherit python-r1
+
+DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
+HOMEPAGE="https://github.com/klausman/lib_users"
+SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ )"
+RDEPEND="${PYTHON_DEPS}"
+
+src_test() {
+ python_foreach_impl nosetests --verbosity=2
+}
+
+my_install() {
+ python_newscript lib_users.py lib_users
+ python_newscript fd_users.py fd_users
+ # lib_users_util/ contains a test script we don't want, so do things by hand
+ python_moduleinto lib_users_util
+ python_domodule lib_users_util/common.py
+ python_domodule lib_users_util/__init__.py
+}
+
+src_install() {
+ python_foreach_impl my_install
+ dodoc README.md TODO
+}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2020-02-10 20:32 Michał Górny
0 siblings, 0 replies; 60+ messages in thread
From: Michał Górny @ 2020-02-10 20:32 UTC (permalink / raw
To: gentoo-commits
commit: 4b41b45086d325d1be6bcc230f8e63e7a93edd9b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 10 20:20:13 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 20:32:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b41b450
app-admin/lib_users: Remove py2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-admin/lib_users/lib_users-0.13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.13.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
index e941182fbb2..ec7c71596f2 100644
--- a/app-admin/lib_users/lib_users-0.13.ebuild
+++ b/app-admin/lib_users/lib_users-0.13.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7} )
inherit python-r1
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2020-02-21 15:57 Agostino Sarubbo
0 siblings, 0 replies; 60+ messages in thread
From: Agostino Sarubbo @ 2020-02-21 15:57 UTC (permalink / raw
To: gentoo-commits
commit: 529df3aad6ebf8c6d32796d0834c9dfbbc84daa5
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 21 15:56:10 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Feb 21 15:56:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=529df3aa
app-admin/lib_users: amd64 stable wrt bug #710392
Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14.ebuild b/app-admin/lib_users/lib_users-0.14.ebuild
index d60d1389843..d001e7f9a82 100644
--- a/app-admin/lib_users/lib_users-0.14.ebuild
+++ b/app-admin/lib_users/lib_users-0.14.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2020-02-24 11:31 Agostino Sarubbo
0 siblings, 0 replies; 60+ messages in thread
From: Agostino Sarubbo @ 2020-02-24 11:31 UTC (permalink / raw
To: gentoo-commits
commit: dc1ae1e4d7fbfa9b2ffb582050752fdcd1cd13fe
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 24 11:30:32 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Feb 24 11:30:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc1ae1e4
app-admin/lib_users: ppc64 stable wrt bug #710392
Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14.ebuild b/app-admin/lib_users/lib_users-0.14.ebuild
index d001e7f9a82..908cf3742f1 100644
--- a/app-admin/lib_users/lib_users-0.14.ebuild
+++ b/app-admin/lib_users/lib_users-0.14.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2020-02-24 12:50 Agostino Sarubbo
0 siblings, 0 replies; 60+ messages in thread
From: Agostino Sarubbo @ 2020-02-24 12:50 UTC (permalink / raw
To: gentoo-commits
commit: 85f5e1b3c72bd1543d67e372784bcf8bc94cfc99
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 24 12:49:52 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Feb 24 12:49:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f5e1b3
app-admin/lib_users: x86 stable wrt bug #710392
Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14.ebuild b/app-admin/lib_users/lib_users-0.14.ebuild
index 5d82bba83d7..7edb2878fdc 100644
--- a/app-admin/lib_users/lib_users-0.14.ebuild
+++ b/app-admin/lib_users/lib_users-0.14.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2020-03-02 11:49 Sergei Trofimovich
0 siblings, 0 replies; 60+ messages in thread
From: Sergei Trofimovich @ 2020-03-02 11:49 UTC (permalink / raw
To: gentoo-commits
commit: ec54377e28004ea24f36f54f5c0069de8da1dcd0
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 2 11:37:12 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Mar 2 11:37:12 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec54377e
app-admin/lib_users: stable 0.14 for hppa, bug #710392
Package-Manager: Portage-2.3.88, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14.ebuild b/app-admin/lib_users/lib_users-0.14.ebuild
index 7edb2878fdc..b65e183954d 100644
--- a/app-admin/lib_users/lib_users-0.14.ebuild
+++ b/app-admin/lib_users/lib_users-0.14.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2020-04-18 16:33 Craig Andrews
0 siblings, 0 replies; 60+ messages in thread
From: Craig Andrews @ 2020-04-18 16:33 UTC (permalink / raw
To: gentoo-commits
commit: e6b80d31247afc3d7317d5e736ad543d014e6382
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 18 16:32:32 2020 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sat Apr 18 16:33:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6b80d31
app-admin/lib_users: Python 3.8 compatibiity
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14.ebuild b/app-admin/lib_users/lib_users-0.14.ebuild
index b65e183954d..ef211468b0d 100644
--- a/app-admin/lib_users/lib_users-0.14.ebuild
+++ b/app-admin/lib_users/lib_users-0.14.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
inherit python-r1
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2020-04-19 8:32 Jeroen Roovers
0 siblings, 0 replies; 60+ messages in thread
From: Jeroen Roovers @ 2020-04-19 8:32 UTC (permalink / raw
To: gentoo-commits
commit: 1a9fbd53ce86a46616b381027c759e1270e81704
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 19 08:31:03 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Apr 19 08:32:26 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a9fbd53
app-admin/lib_users: Old
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
app-admin/lib_users/Manifest | 1 -
app-admin/lib_users/lib_users-0.13.ebuild | 45 -------------------------------
2 files changed, 46 deletions(-)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index 8df6cc014b4..0de0bd00f28 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1,2 +1 @@
-DIST lib_users-0.13.tar.gz 25704 BLAKE2B 895f8b721216339fe4306158bf6282353d79584573091cc4e7c63c8096a9f9cfe380a8bce7229f168e44fe5d3641ceb8c91bd751316a6c6a467ace4ec0dce723 SHA512 588af7068728810832bcf4d1526f271e255d07c75d152fb41844c66f3598a71e9a96bee3426b31b58cd26af889bc42c0a7248731fdfe3623fd4567d2b6b7275e
DIST lib_users-0.14.tar.gz 25746 BLAKE2B 4aa2dbbd7c53be13f79988a62c7997f0787ea9b773fc57681a021ff75ba9ff0988ac3032b21150c4e4958849a6195df09d388b6341e1ac139f34ce9555786233 SHA512 533c6e8f486e58d0fd22aea9a30adf91c3a8340a8a3719f6374ddfa8120d402c8202ab8ceb0e78aedd46e3e5875795392ed40497a66d51de5c2ca6a275a1a777
diff --git a/app-admin/lib_users/lib_users-0.13.ebuild b/app-admin/lib_users/lib_users-0.13.ebuild
deleted file mode 100644
index ec7c71596f2..00000000000
--- a/app-admin/lib_users/lib_users-0.13.ebuild
+++ /dev/null
@@ -1,45 +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} )
-
-inherit python-r1
-
-DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
-HOMEPAGE="https://github.com/klausman/lib_users"
-SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
- )"
-RDEPEND="${PYTHON_DEPS}"
-
-src_test() {
- python_foreach_impl nosetests --verbosity=2
-}
-
-my_install() {
- python_newscript lib_users.py lib_users
- python_newscript fd_users.py fd_users
- # lib_users_util/ contains a test script we don't want, so do things by hand
- python_moduleinto lib_users_util
- python_domodule lib_users_util/common.py
- python_domodule lib_users_util/__init__.py
-}
-
-src_install() {
- python_foreach_impl my_install
- dodoc README.md TODO
-}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-02-09 14:11 Sergei Trofimovich
0 siblings, 0 replies; 60+ messages in thread
From: Sergei Trofimovich @ 2021-02-09 14:11 UTC (permalink / raw
To: gentoo-commits
commit: 8790a3bb6f30545ab02987c0f5f804f06e438788
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Feb 9 14:03:00 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Feb 9 14:11:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8790a3bb
app-admin/lib_users: keyworded 0.14 for sparc, bug #769701
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/lib_users/lib_users-0.14.ebuild b/app-admin/lib_users/lib_users-0.14.ebuild
index ef4b2302b54..e9fdd63d9ae 100644
--- a/app-admin/lib_users/lib_users-0.14.ebuild
+++ b/app-admin/lib_users/lib_users-0.14.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
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-02-20 15:34 Ben Kohler
0 siblings, 0 replies; 60+ messages in thread
From: Ben Kohler @ 2021-02-20 15:34 UTC (permalink / raw
To: gentoo-commits
commit: b67a7c885b3846d19689e684a8c8326dff50e26a
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 20 14:42:08 2021 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Sat Feb 20 15:33:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b67a7c88
app-admin/lib_users: add python3_9 support
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
app-admin/lib_users/{lib_users-0.14.ebuild => lib_users-0.14-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14.ebuild b/app-admin/lib_users/lib_users-0.14-r1.ebuild
similarity index 96%
rename from app-admin/lib_users/lib_users-0.14.ebuild
rename to app-admin/lib_users/lib_users-0.14-r1.ebuild
index e9fdd63d9ae..65a622ed53e 100644
--- a/app-admin/lib_users/lib_users-0.14.ebuild
+++ b/app-admin/lib_users/lib_users-0.14-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{3_7,3_8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
inherit python-r1
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-02-21 19:50 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2021-02-21 19:50 UTC (permalink / raw
To: gentoo-commits
commit: 62f00da89e2f94ca72fe796000ae85d3b15d90ea
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 19:50:04 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 19:50:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62f00da8
app-admin/lib_users: Keyword 0.14-r1 arm64, #769701
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14-r1.ebuild b/app-admin/lib_users/lib_users-0.14-r1.ebuild
index 65a622ed53e..d162c03e45d 100644
--- a/app-admin/lib_users/lib_users-0.14-r1.ebuild
+++ b/app-admin/lib_users/lib_users-0.14-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-05-23 10:24 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2021-05-23 10:24 UTC (permalink / raw
To: gentoo-commits
commit: 3af99535a1201ea9492e0c1aa54287817dc5ac42
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sun May 23 10:24:43 2021 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sun May 23 10:24:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af99535
app-admin/lib_users: Add python 3.10 as compatible version
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14-r2.ebuild | 44 ++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/app-admin/lib_users/lib_users-0.14-r2.ebuild b/app-admin/lib_users/lib_users-0.14-r2.ebuild
new file mode 100644
index 00000000000..6d920f0bbae
--- /dev/null
+++ b/app-admin/lib_users/lib_users-0.14-r2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit python-r1
+
+DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
+HOMEPAGE="https://github.com/klausman/lib_users"
+SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ )"
+RDEPEND="${PYTHON_DEPS}"
+
+src_test() {
+ python_foreach_impl nosetests --verbosity=2
+}
+
+my_install() {
+ python_newscript lib_users.py lib_users
+ python_newscript fd_users.py fd_users
+ # lib_users_util/ contains a test script we don't want, so do things by hand
+ python_moduleinto lib_users_util
+ python_domodule lib_users_util/common.py
+ python_domodule lib_users_util/__init__.py
+}
+
+src_install() {
+ python_foreach_impl my_install
+ dodoc README.md TODO
+}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-06-23 14:23 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2021-06-23 14:23 UTC (permalink / raw
To: gentoo-commits
commit: 97ee07271e3bbda57165f9bb578b102f4afcbbb9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 23 14:22:54 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 23 14:22:54 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97ee0727
app-admin/lib_users: Stabilize 0.14-r2 x86, #797748
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14-r2.ebuild b/app-admin/lib_users/lib_users-0.14-r2.ebuild
index 6d920f0bbae..af3b96b0c45 100644
--- a/app-admin/lib_users/lib_users-0.14-r2.ebuild
+++ b/app-admin/lib_users/lib_users-0.14-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-06-23 14:23 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2021-06-23 14:23 UTC (permalink / raw
To: gentoo-commits
commit: fa9372a042acb90acd67cff85d1b673477d3e1a2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 23 14:23:06 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 23 14:23:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa9372a0
app-admin/lib_users: Stabilize 0.14-r2 amd64, #797748
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14-r2.ebuild b/app-admin/lib_users/lib_users-0.14-r2.ebuild
index af3b96b0c45..fd97283a6de 100644
--- a/app-admin/lib_users/lib_users-0.14-r2.ebuild
+++ b/app-admin/lib_users/lib_users-0.14-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-06-24 4:28 Agostino Sarubbo
0 siblings, 0 replies; 60+ messages in thread
From: Agostino Sarubbo @ 2021-06-24 4:28 UTC (permalink / raw
To: gentoo-commits
commit: 2c0fd922de3197373d4de9edc0c0bee5b19ea494
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 24 04:28:09 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jun 24 04:28:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c0fd922
app-admin/lib_users: ppc stable wrt bug #797748
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14-r2.ebuild b/app-admin/lib_users/lib_users-0.14-r2.ebuild
index fd97283a6de..ed354fc81ba 100644
--- a/app-admin/lib_users/lib_users-0.14-r2.ebuild
+++ b/app-admin/lib_users/lib_users-0.14-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-06-24 4:29 Agostino Sarubbo
0 siblings, 0 replies; 60+ messages in thread
From: Agostino Sarubbo @ 2021-06-24 4:29 UTC (permalink / raw
To: gentoo-commits
commit: 93fa842d193c36b299948150c6848226589dd9df
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 24 04:29:02 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jun 24 04:29:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93fa842d
app-admin/lib_users: ppc64 stable wrt bug #797748
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/lib_users/lib_users-0.14-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.14-r2.ebuild b/app-admin/lib_users/lib_users-0.14-r2.ebuild
index ed354fc81ba..3d25d62d317 100644
--- a/app-admin/lib_users/lib_users-0.14-r2.ebuild
+++ b/app-admin/lib_users/lib_users-0.14-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-11-03 11:52 Tobias Klausmann
0 siblings, 0 replies; 60+ messages in thread
From: Tobias Klausmann @ 2021-11-03 11:52 UTC (permalink / raw
To: gentoo-commits
commit: a69cf8d8976ca5968c07ec8ac1ae1ac5da99a7e9
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 1 11:24:38 2021 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Wed Nov 3 11:52:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a69cf8d8
app-admin/lib_users: Add v0.15
Unfortunately, nose is deprecated and its spiritual successor nose2 is
only keyworded on amd64 and x86, so we have to drop all other keywords.
lib_users _may_ abandon the nose/nose2 dependency in the future, but
it's not a given.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
app-admin/lib_users/Manifest | 1 +
.../{lib_users-0.14-r1.ebuild => lib_users-0.15.ebuild} | 10 +++++-----
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index 0de0bd00f28..3728a22a903 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1 +1,2 @@
DIST lib_users-0.14.tar.gz 25746 BLAKE2B 4aa2dbbd7c53be13f79988a62c7997f0787ea9b773fc57681a021ff75ba9ff0988ac3032b21150c4e4958849a6195df09d388b6341e1ac139f34ce9555786233 SHA512 533c6e8f486e58d0fd22aea9a30adf91c3a8340a8a3719f6374ddfa8120d402c8202ab8ceb0e78aedd46e3e5875795392ed40497a66d51de5c2ca6a275a1a777
+DIST lib_users-0.15.tar.gz 25899 BLAKE2B e54dfe20cf5e3e3da3bddcf044cda36a5d51dec9baa808202d81ed0ef8a8b434b3c6f31a279b544308a32e6ebf91008ac2db49278da7624a6037ffdf1db309b6 SHA512 f9eab0d7c634602c496154dc20bd8374842df77c6abfaf69a0c34013f01c3a7541a006cb2b027539f6c088a55bea78682bf156723899d614f39ee48773fb9ea8
diff --git a/app-admin/lib_users/lib_users-0.14-r1.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
similarity index 80%
rename from app-admin/lib_users/lib_users-0.14-r1.ebuild
rename to app-admin/lib_users/lib_users-0.15.ebuild
index d162c03e45d..b5a163398ad 100644
--- a/app-admin/lib_users/lib_users-0.14-r1.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=8
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit python-r1
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
@@ -21,12 +21,12 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="${PYTHON_DEPS}
test? (
- dev-python/nose[${PYTHON_USEDEP}]
+ dev-python/nose2[${PYTHON_USEDEP}]
)"
RDEPEND="${PYTHON_DEPS}"
src_test() {
- python_foreach_impl nosetests --verbosity=2
+ python_foreach_impl nose2 --verbosity=2
}
my_install() {
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-11-16 19:10 Arthur Zamarin
0 siblings, 0 replies; 60+ messages in thread
From: Arthur Zamarin @ 2021-11-16 19:10 UTC (permalink / raw
To: gentoo-commits
commit: 8014c561e4942ac6b333744847e5c85b1159bdbf
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 16 19:10:19 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 16 19:10:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8014c561
app-admin/lib_users: Keyword 0.15 sparc, #823906
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index b5a163398ad1..58a09f5886be 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-11-17 8:30 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2021-11-17 8:30 UTC (permalink / raw
To: gentoo-commits
commit: 69bb866da5611aa95515ebe90050b154a2504524
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Wed Nov 17 08:26:33 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 17 08:30:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69bb866d
app-admin/lib_users: keyworded 0.15 for hppa, bug #823906
Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index 58a09f5886be..e2dc6014c777 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-11-19 7:24 Arthur Zamarin
0 siblings, 0 replies; 60+ messages in thread
From: Arthur Zamarin @ 2021-11-19 7:24 UTC (permalink / raw
To: gentoo-commits
commit: cf47728ac9a9a58f0c2907f78ab4e2f4b08625d6
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 07:23:53 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 07:24:24 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf47728a
app-admin/lib_users: Keyword 0.15 arm64, #823906
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index 8ce233b3e3f9..8d8364406cf6 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2021-11-19 17:36 Arthur Zamarin
0 siblings, 0 replies; 60+ messages in thread
From: Arthur Zamarin @ 2021-11-19 17:36 UTC (permalink / raw
To: gentoo-commits
commit: fc203632d039dde5caf3caf351ef46c161376225
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 17:35:40 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 17:35:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc203632
app-admin/lib_users: Keyword 0.15 arm, #823906
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index 8d8364406cf6..b0b32070f375 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-02-15 18:31 Matt Turner
0 siblings, 0 replies; 60+ messages in thread
From: Matt Turner @ 2022-02-15 18:31 UTC (permalink / raw
To: gentoo-commits
commit: c19132de2481097e3a3c1d8d667a96d19313a892
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 15 18:31:21 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 15 18:31:21 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c19132de
app-admin/lib_users: Keyword 0.15 alpha, #823906
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index b0b32070f375..8fc1cc4fadb8 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.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=8
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-03-08 7:50 Marc Schiffbauer
0 siblings, 0 replies; 60+ messages in thread
From: Marc Schiffbauer @ 2022-03-08 7:50 UTC (permalink / raw
To: gentoo-commits
commit: b0439e278d25f9c97d24ce4bf513e777e33780e5
Author: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 8 07:50:12 2022 +0000
Commit: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
CommitDate: Tue Mar 8 07:50:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0439e27
app-admin/lib_users: add myself as a maintainer
Signed-off-by: Marc Schiffbauer <mschiff <AT> gentoo.org>
app-admin/lib_users/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/app-admin/lib_users/metadata.xml b/app-admin/lib_users/metadata.xml
index 4045bb882056..ec66dc9ea1d1 100644
--- a/app-admin/lib_users/metadata.xml
+++ b/app-admin/lib_users/metadata.xml
@@ -5,6 +5,10 @@
<email>klausman@gentoo.org</email>
<name>Tobias Klausman</name>
</maintainer>
+ <maintainer type="person">
+ <email>mschiff@gentoo.org</email>
+ <name>Marc Schiffbauer</name>
+ </maintainer>
<upstream>
<remote-id type="github">klausman/lib_users</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-04-04 1:07 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2022-04-04 1:07 UTC (permalink / raw
To: gentoo-commits
commit: 4fa00014706e278ded04c7ea9c31f557d03fca9c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 4 01:06:37 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 4 01:07:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fa00014
app-admin/lib_users: retire klausman
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/app-admin/lib_users/metadata.xml b/app-admin/lib_users/metadata.xml
index ec66dc9ea1d1..120c089c912a 100644
--- a/app-admin/lib_users/metadata.xml
+++ b/app-admin/lib_users/metadata.xml
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>klausman@gentoo.org</email>
- <name>Tobias Klausman</name>
- </maintainer>
<maintainer type="person">
<email>mschiff@gentoo.org</email>
<name>Marc Schiffbauer</name>
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-07-27 20:09 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2022-07-27 20:09 UTC (permalink / raw
To: gentoo-commits
commit: 0668f453f3b3cea9dbb6e28d6980d3173f090998
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 27 20:08:52 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 27 20:08:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0668f453
app-admin/lib_users: Stabilize 0.15 ppc, #861218
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index 8fc1cc4fadb8..e2c60f33f2c9 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-07-27 20:09 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2022-07-27 20:09 UTC (permalink / raw
To: gentoo-commits
commit: 5048a79584a3711d31564fa0dfb262f86bcb3b37
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 27 20:08:54 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 27 20:08:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5048a795
app-admin/lib_users: Stabilize 0.15 ppc64, #861218
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index e2c60f33f2c9..22f48820d779 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-07-28 7:06 Agostino Sarubbo
0 siblings, 0 replies; 60+ messages in thread
From: Agostino Sarubbo @ 2022-07-28 7:06 UTC (permalink / raw
To: gentoo-commits
commit: 09e07e4c209bfc67fbe293c9929268cf20134f5b
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 07:06:15 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 07:06:15 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09e07e4c
app-admin/lib_users: amd64 stable wrt bug #861218
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index 22f48820d779..847b1eee18a7 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-07-28 14:14 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2022-07-28 14:14 UTC (permalink / raw
To: gentoo-commits
commit: 983f40b3d84b9f45af3c2e22e7aad500411d9ca7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 14:13:55 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 14:13:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=983f40b3
app-admin/lib_users: Stabilize 0.15 x86, #861218
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index 847b1eee18a7..a3102436405a 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-07-29 8:01 Agostino Sarubbo
0 siblings, 0 replies; 60+ messages in thread
From: Agostino Sarubbo @ 2022-07-29 8:01 UTC (permalink / raw
To: gentoo-commits
commit: ecfd1873ec3a583a156391f7413eceef7843d611
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 29 08:00:39 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jul 29 08:00:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecfd1873
app-admin/lib_users: arm64 stable wrt bug #861218
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index a3102436405a..e3c38729169c 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ppc ppc64 ~sparc x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2022-08-28 15:16 Andreas Sturmlechner
0 siblings, 0 replies; 60+ messages in thread
From: Andreas Sturmlechner @ 2022-08-28 15:16 UTC (permalink / raw
To: gentoo-commits
commit: f0feddfe68a7f21bed87c483415e4ec3fd298a25
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 16 20:31:16 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 15:16:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0feddfe
app-admin/lib_users: drop 0.14-r2, EAPI-6--
Closes: https://bugs.gentoo.org/861218
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
app-admin/lib_users/Manifest | 1 -
app-admin/lib_users/lib_users-0.14-r2.ebuild | 44 ----------------------------
2 files changed, 45 deletions(-)
diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
index 3728a22a903d..07cb15959525 100644
--- a/app-admin/lib_users/Manifest
+++ b/app-admin/lib_users/Manifest
@@ -1,2 +1 @@
-DIST lib_users-0.14.tar.gz 25746 BLAKE2B 4aa2dbbd7c53be13f79988a62c7997f0787ea9b773fc57681a021ff75ba9ff0988ac3032b21150c4e4958849a6195df09d388b6341e1ac139f34ce9555786233 SHA512 533c6e8f486e58d0fd22aea9a30adf91c3a8340a8a3719f6374ddfa8120d402c8202ab8ceb0e78aedd46e3e5875795392ed40497a66d51de5c2ca6a275a1a777
DIST lib_users-0.15.tar.gz 25899 BLAKE2B e54dfe20cf5e3e3da3bddcf044cda36a5d51dec9baa808202d81ed0ef8a8b434b3c6f31a279b544308a32e6ebf91008ac2db49278da7624a6037ffdf1db309b6 SHA512 f9eab0d7c634602c496154dc20bd8374842df77c6abfaf69a0c34013f01c3a7541a006cb2b027539f6c088a55bea78682bf156723899d614f39ee48773fb9ea8
diff --git a/app-admin/lib_users/lib_users-0.14-r2.ebuild b/app-admin/lib_users/lib_users-0.14-r2.ebuild
deleted file mode 100644
index 3d25d62d3176..000000000000
--- a/app-admin/lib_users/lib_users-0.14-r2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{7..10} )
-
-inherit python-r1
-
-DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
-HOMEPAGE="https://github.com/klausman/lib_users"
-SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- )"
-RDEPEND="${PYTHON_DEPS}"
-
-src_test() {
- python_foreach_impl nosetests --verbosity=2
-}
-
-my_install() {
- python_newscript lib_users.py lib_users
- python_newscript fd_users.py fd_users
- # lib_users_util/ contains a test script we don't want, so do things by hand
- python_moduleinto lib_users_util
- python_domodule lib_users_util/common.py
- python_domodule lib_users_util/__init__.py
-}
-
-src_install() {
- python_foreach_impl my_install
- dodoc README.md TODO
-}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2023-03-07 12:29 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2023-03-07 12:29 UTC (permalink / raw
To: gentoo-commits
commit: 10adceea10469f35662b1ea2854dde136d351c49
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 7 12:29:16 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 7 12:29:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10adceea
app-admin/lib_users: enable py3.11
Closes: https://bugs.gentoo.org/896470
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15.ebuild b/app-admin/lib_users/lib_users-0.15.ebuild
index 2db99ae0a684..9f2529d2f966 100644
--- a/app-admin/lib_users/lib_users-0.15.ebuild
+++ b/app-admin/lib_users/lib_users-0.15.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
inherit python-r1
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2024-04-15 8:26 Marc Schiffbauer
0 siblings, 0 replies; 60+ messages in thread
From: Marc Schiffbauer @ 2024-04-15 8:26 UTC (permalink / raw
To: gentoo-commits
commit: 27404215f61bf88d09e6f90aaf8365e8f09240af
Author: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 15 08:25:49 2024 +0000
Commit: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
CommitDate: Mon Apr 15 08:25:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27404215
app-admin/lib_users: PythonCompatUpdate (3.12)
Closes: https://bugs.gentoo.org/929274
Signed-off-by: Marc Schiffbauer <mschiff <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15-r1.ebuild | 44 ++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/app-admin/lib_users/lib_users-0.15-r1.ebuild b/app-admin/lib_users/lib_users-0.15-r1.ebuild
new file mode 100644
index 000000000000..45ccbc10dde4
--- /dev/null
+++ b/app-admin/lib_users/lib_users-0.15-r1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit python-r1
+
+DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
+HOMEPAGE="https://github.com/klausman/lib_users"
+SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+ test? (
+ dev-python/nose2[${PYTHON_USEDEP}]
+ )"
+RDEPEND="${PYTHON_DEPS}"
+
+src_test() {
+ python_foreach_impl nose2 --verbosity=2
+}
+
+my_install() {
+ python_newscript lib_users.py lib_users
+ python_newscript fd_users.py fd_users
+ # lib_users_util/ contains a test script we don't want, so do things by hand
+ python_moduleinto lib_users_util
+ python_domodule lib_users_util/common.py
+ python_domodule lib_users_util/__init__.py
+}
+
+src_install() {
+ python_foreach_impl my_install
+ dodoc README.md TODO
+}
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2024-05-28 12:04 Michał Górny
0 siblings, 0 replies; 60+ messages in thread
From: Michał Górny @ 2024-05-28 12:04 UTC (permalink / raw
To: gentoo-commits
commit: 35e58a79ef60d59fc2c4db3102becb77b28bc978
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 12:04:18 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 28 12:04:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35e58a79
app-admin/lib_users: Stabilize 0.15-r1 arm64, #932912
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15-r1.ebuild b/app-admin/lib_users/lib_users-0.15-r1.ebuild
index 45ccbc10dde4..5783848edb2f 100644
--- a/app-admin/lib_users/lib_users-0.15-r1.ebuild
+++ b/app-admin/lib_users/lib_users-0.15-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2024-05-28 12:11 Michał Górny
0 siblings, 0 replies; 60+ messages in thread
From: Michał Górny @ 2024-05-28 12:11 UTC (permalink / raw
To: gentoo-commits
commit: b6c97a85631ecf04164ad29c1c5f2ee347a2f67d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 12:10:47 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 28 12:10:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6c97a85
app-admin/lib_users: Stabilize 0.15-r1 ppc64, #932912
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15-r1.ebuild b/app-admin/lib_users/lib_users-0.15-r1.ebuild
index 5783848edb2f..99ab6a2895ac 100644
--- a/app-admin/lib_users/lib_users-0.15-r1.ebuild
+++ b/app-admin/lib_users/lib_users-0.15-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ppc ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
@ 2024-05-28 12:35 Sam James
0 siblings, 0 replies; 60+ messages in thread
From: Sam James @ 2024-05-28 12:35 UTC (permalink / raw
To: gentoo-commits
commit: b01d5a3b803dd8e28371f2b632adfbe2d52c23ad
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 12:33:59 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 28 12:33:59 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b01d5a3b
app-admin/lib_users: Stabilize 0.15-r1 x86, #932912
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/lib_users/lib_users-0.15-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/lib_users/lib_users-0.15-r1.ebuild b/app-admin/lib_users/lib_users-0.15-r1.ebuild
index 99ab6a2895ac..85b5c7044b79 100644
--- a/app-admin/lib_users/lib_users-0.15-r1.ebuild
+++ b/app-admin/lib_users/lib_users-0.15-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ppc ppc64 ~sparc x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 60+ messages in thread
end of thread, other threads:[~2024-05-28 12:35 UTC | newest]
Thread overview: 60+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-24 12:50 [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2024-05-28 12:35 Sam James
2024-05-28 12:11 Michał Górny
2024-05-28 12:04 Michał Górny
2024-04-15 8:26 Marc Schiffbauer
2023-03-07 12:29 Sam James
2022-08-28 15:16 Andreas Sturmlechner
2022-07-29 8:01 Agostino Sarubbo
2022-07-28 14:14 Sam James
2022-07-28 7:06 Agostino Sarubbo
2022-07-27 20:09 Sam James
2022-07-27 20:09 Sam James
2022-04-04 1:07 Sam James
2022-03-08 7:50 Marc Schiffbauer
2022-02-15 18:31 Matt Turner
2021-11-19 17:36 Arthur Zamarin
2021-11-19 7:24 Arthur Zamarin
2021-11-17 8:30 Sam James
2021-11-16 19:10 Arthur Zamarin
2021-11-03 11:52 Tobias Klausmann
2021-06-24 4:29 Agostino Sarubbo
2021-06-24 4:28 Agostino Sarubbo
2021-06-23 14:23 Sam James
2021-06-23 14:23 Sam James
2021-05-23 10:24 Tobias Klausmann
2021-02-21 19:50 Sam James
2021-02-20 15:34 Ben Kohler
2021-02-09 14:11 Sergei Trofimovich
2020-04-19 8:32 Jeroen Roovers
2020-04-18 16:33 Craig Andrews
2020-03-02 11:49 Sergei Trofimovich
2020-02-24 11:31 Agostino Sarubbo
2020-02-21 15:57 Agostino Sarubbo
2020-02-10 20:32 Michał Górny
2020-02-06 10:07 Tobias Klausmann
2019-08-10 13:37 Jeroen Roovers
2019-05-12 20:56 Thomas Deutschmann
2019-04-30 23:01 Jeroen Roovers
2019-04-27 16:25 Sergei Trofimovich
2019-04-27 16:03 Sergei Trofimovich
2019-04-22 19:34 Tobias Klausmann
2019-04-22 19:33 Tobias Klausmann
2018-11-19 9:25 Tobias Klausmann
2018-09-13 11:27 Tobias Klausmann
2018-09-13 10:53 Tobias Klausmann
2018-07-17 7:58 Tobias Klausmann
2018-07-11 8:27 Tobias Klausmann
2017-09-17 2:30 Michael Palimaka
2017-05-15 12:56 Manuel Rüger
2017-04-07 17:00 Jeroen Roovers
2017-04-07 17:00 Jeroen Roovers
2017-03-29 16:46 Tobias Klausmann
2017-03-29 9:07 Michael Weber
2017-03-29 9:07 Michael Weber
2017-03-22 10:02 Jeroen Roovers
2017-01-06 14:44 Jeroen Roovers
2017-01-06 11:19 Jeroen Roovers
2017-01-03 13:22 Tobias Klausmann
2017-01-03 12:23 Tobias Klausmann
2016-09-11 6:02 Jeroen Roovers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox