Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylibacl/
Date: Mon, 04 May 2020 11:39:12
Message-Id: 1588592287.6687b7a3f0d77700d8a0bcfa80eae73eb494f577.mgorny@gentoo
1 commit: 6687b7a3f0d77700d8a0bcfa80eae73eb494f577
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:38:07 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:38:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6687b7a3
7
8 dev-python/pylibacl: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pylibacl/Manifest | 1 -
13 dev-python/pylibacl/pylibacl-0.5.4.ebuild | 35 -------------------------------
14 2 files changed, 36 deletions(-)
15
16 diff --git a/dev-python/pylibacl/Manifest b/dev-python/pylibacl/Manifest
17 index def98125c96..3100c2755e0 100644
18 --- a/dev-python/pylibacl/Manifest
19 +++ b/dev-python/pylibacl/Manifest
20 @@ -1,3 +1,2 @@
21 DIST pylibacl-0.5.4_p20191217.tar.gz 40283 BLAKE2B dfe5baababe4cce24bc12dd61263c30160e93be7dc0625abdcad9e4daed19c5ac1ebf43351f9f5815884162258884cd8c7e2edb323ec9ce51247a43d53fea20e SHA512 6d4a84e1885a2000226f956580a8e767216d6280d4b8ae1066e6a1c1f82708d06a4f2eacc3ae45ff7ae3b122125da9fb6afbaae038e117b63cd7d91ac95e2624
22 DIST pylibacl-v0.5.3.tar.gz 32792 BLAKE2B 005785dda2b7933ff71dd1296b1d4315a6492fc893aba56136c775f78b9aa3bd8f9d4898bbe0160fac53a306329977ddaecd073739531ba42dd0b6cc622b9eef SHA512 ea648acc3df9e1cf2fd68576b0b691a353b257d00b74fc80aa7f60089b9dbc912452ebe6b84da2930cac888b9047740530dd0e38b4d5be52c37fc6d3a29a7ce2
23 -DIST pylibacl-v0.5.4.tar.gz 35599 BLAKE2B 7970e9c688e5c1983a761d733836197783646bd612585e78feced37bd00a677f4b63382a3619d3261bc7a95ed1d0c62e2d255bba13faeaa9a197ea175e8ca088 SHA512 41de72dd29ffd6a8ddde2008eb440fb34c151b2e77b5187af919909d9785e46d0eea3b605d1e39408a4e3c17a856958fef916c1f6e557fd11454e6ed8bf120e8
24
25 diff --git a/dev-python/pylibacl/pylibacl-0.5.4.ebuild b/dev-python/pylibacl/pylibacl-0.5.4.ebuild
26 deleted file mode 100644
27 index 3aa1180abe3..00000000000
28 --- a/dev-python/pylibacl/pylibacl-0.5.4.ebuild
29 +++ /dev/null
30 @@ -1,35 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{6,7,8} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="POSIX ACLs (Access Control Lists) for Python"
41 -HOMEPAGE="
42 - https://pylibacl.k1024.org/
43 - https://pypi.org/project/pylibacl/
44 - https://github.com/iustin/pylibacl/"
45 -SRC_URI="https://github.com/iustin/pylibacl/archive/${PN}-v${PV}.tar.gz"
46 -S=${WORKDIR}/${PN}-${PN}-v${PV}
47 -
48 -LICENSE="LGPL-2.1"
49 -SLOT="0"
50 -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
51 -
52 -RDEPEND="sys-apps/acl"
53 -DEPEND=${RDEPEND}
54 -
55 -python_test() {
56 - if ! "${EPYTHON}" test/test_acls.py -v; then
57 - eerror
58 - eerror "If you got the following errors:"
59 - eerror "\"IOError: [Errno 95] Operation not supported\","
60 - eerror "then you should remount the filesystem containing"
61 - eerror "build directory with \"acl\" option enabled."
62 - eerror
63 - die "Tests fail with ${EPYTHON}"
64 - fi
65 -}