Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
Date: Sun, 28 Aug 2022 15:16:34
Message-Id: 1661699780.f0feddfe68a7f21bed87c483415e4ec3fd298a25.asturm@gentoo
1 commit: f0feddfe68a7f21bed87c483415e4ec3fd298a25
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 16 20:31:16 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 15:16:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0feddfe
7
8 app-admin/lib_users: drop 0.14-r2, EAPI-6--
9
10 Closes: https://bugs.gentoo.org/861218
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-admin/lib_users/Manifest | 1 -
14 app-admin/lib_users/lib_users-0.14-r2.ebuild | 44 ----------------------------
15 2 files changed, 45 deletions(-)
16
17 diff --git a/app-admin/lib_users/Manifest b/app-admin/lib_users/Manifest
18 index 3728a22a903d..07cb15959525 100644
19 --- a/app-admin/lib_users/Manifest
20 +++ b/app-admin/lib_users/Manifest
21 @@ -1,2 +1 @@
22 -DIST lib_users-0.14.tar.gz 25746 BLAKE2B 4aa2dbbd7c53be13f79988a62c7997f0787ea9b773fc57681a021ff75ba9ff0988ac3032b21150c4e4958849a6195df09d388b6341e1ac139f34ce9555786233 SHA512 533c6e8f486e58d0fd22aea9a30adf91c3a8340a8a3719f6374ddfa8120d402c8202ab8ceb0e78aedd46e3e5875795392ed40497a66d51de5c2ca6a275a1a777
23 DIST lib_users-0.15.tar.gz 25899 BLAKE2B e54dfe20cf5e3e3da3bddcf044cda36a5d51dec9baa808202d81ed0ef8a8b434b3c6f31a279b544308a32e6ebf91008ac2db49278da7624a6037ffdf1db309b6 SHA512 f9eab0d7c634602c496154dc20bd8374842df77c6abfaf69a0c34013f01c3a7541a006cb2b027539f6c088a55bea78682bf156723899d614f39ee48773fb9ea8
24
25 diff --git a/app-admin/lib_users/lib_users-0.14-r2.ebuild b/app-admin/lib_users/lib_users-0.14-r2.ebuild
26 deleted file mode 100644
27 index 3d25d62d3176..000000000000
28 --- a/app-admin/lib_users/lib_users-0.14-r2.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python3_{7..10} )
37 -
38 -inherit python-r1
39 -
40 -DESCRIPTION="Check for mapped libs and open files that are marked as deleted"
41 -HOMEPAGE="https://github.com/klausman/lib_users"
42 -SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 -
52 -DEPEND="${PYTHON_DEPS}
53 - test? (
54 - dev-python/nose[${PYTHON_USEDEP}]
55 - )"
56 -RDEPEND="${PYTHON_DEPS}"
57 -
58 -src_test() {
59 - python_foreach_impl nosetests --verbosity=2
60 -}
61 -
62 -my_install() {
63 - python_newscript lib_users.py lib_users
64 - python_newscript fd_users.py fd_users
65 - # lib_users_util/ contains a test script we don't want, so do things by hand
66 - python_moduleinto lib_users_util
67 - python_domodule lib_users_util/common.py
68 - python_domodule lib_users_util/__init__.py
69 -}
70 -
71 -src_install() {
72 - python_foreach_impl my_install
73 - dodoc README.md TODO
74 -}