Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/
Date: Sat, 10 Aug 2019 13:37:31
Message-Id: 1565444244.b12b527af0a260ff012467405b87632f92e74644.jer@gentoo
1 commit: b12b527af0a260ff012467405b87632f92e74644
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 10 13:06:19 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 10 13:37:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b12b527a
7
8 app-admin/lib_users: Old
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 app-admin/lib_users/Manifest | 1 -
14 app-admin/lib_users/lib_users-0.11-r1.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 bf7cc7901e7..d6d01f2b949 100644
19 --- a/app-admin/lib_users/Manifest
20 +++ b/app-admin/lib_users/Manifest
21 @@ -1,2 +1 @@
22 -DIST lib_users-0.11.tar.gz 25660 BLAKE2B 8f5a827840d4074a0e8abd77e43f60eb09f199f58a2bde0c2bce7613d6ba1d9b12dd46adffa528ff351f54933c304f274abef9c35550d7af3519101dcec69d0a SHA512 a54fc8f57cffcd08e77e86eaf50ec6e68e45e1e9458e25e035af90e14be13980a400c4d264f70ef67e141e1d54581b0487b2b70dd084dc5840424221b46f644a
23 DIST lib_users-0.13.tar.gz 25704 BLAKE2B 895f8b721216339fe4306158bf6282353d79584573091cc4e7c63c8096a9f9cfe380a8bce7229f168e44fe5d3641ceb8c91bd751316a6c6a467ace4ec0dce723 SHA512 588af7068728810832bcf4d1526f271e255d07c75d152fb41844c66f3598a71e9a96bee3426b31b58cd26af889bc42c0a7248731fdfe3623fd4567d2b6b7275e
24
25 diff --git a/app-admin/lib_users/lib_users-0.11-r1.ebuild b/app-admin/lib_users/lib_users-0.11-r1.ebuild
26 deleted file mode 100644
27 index d4aca2e0ac6..00000000000
28 --- a/app-admin/lib_users/lib_users-0.11-r1.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
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 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
47 -IUSE="test"
48 -
49 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 -
51 -DEPEND="${PYTHON_DEPS}
52 - test? (
53 - dev-python/nose[${PYTHON_USEDEP}]
54 - dev-python/backports-unittest-mock[${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 -}