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/appdirs/
Date: Tue, 02 Jan 2018 14:57:53
Message-Id: 1514905058.9cb1a110388826d3f2ca601b9cc49ab27d7ebfbc.mgorny@gentoo
1 commit: 9cb1a110388826d3f2ca601b9cc49ab27d7ebfbc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 13:40:03 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 14:57:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb1a110
7
8 dev-python/appdirs: Clean old up
9
10 dev-python/appdirs/Manifest | 1 -
11 dev-python/appdirs/appdirs-1.4.0.ebuild | 30 ------------------------------
12 2 files changed, 31 deletions(-)
13
14 diff --git a/dev-python/appdirs/Manifest b/dev-python/appdirs/Manifest
15 index 876464b4267..16f78f0b3d1 100644
16 --- a/dev-python/appdirs/Manifest
17 +++ b/dev-python/appdirs/Manifest
18 @@ -1,2 +1 @@
19 -DIST appdirs-1.4.0.tar.gz 14358 BLAKE2B de0248d7ca8211a287bb76f516d5ae5d3b3ac0a5c3e2060fe0fbdf3fa9131e6ab26d0b0d293cdec4cf86f26e852fad7534eb44c386797d18964232fe85239bde SHA512 a16fbad419e593acf1b58a3f8f893d206b3fc1a269757213a34d129e6fc39aa041efacb7964d326b82376373315357c93e85b272f374a096d9a63e73e3ce1dac
20 DIST appdirs-1.4.3.tar.gz 9641 BLAKE2B edd7f6372e25279f6ba0f36cda595649cab7e69430e22bfdfd1bb5aa8d566a4a2fbf24c281adf80ab3eafea93f0f4f79b396688134395c3e5565476f24db75df SHA512 787f551ef5af355bbc77ffb3059553fab77614cce466b4145e4b55fecb8553d329f8748865fd69005d13451a9b11229a65721095a122db83a8433a2661503dfc
21
22 diff --git a/dev-python/appdirs/appdirs-1.4.0.ebuild b/dev-python/appdirs/appdirs-1.4.0.ebuild
23 deleted file mode 100644
24 index 5bee3f5d486..00000000000
25 --- a/dev-python/appdirs/appdirs-1.4.0.ebuild
26 +++ /dev/null
27 @@ -1,30 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="Module for determining appropriate platform-specific dirs"
38 -HOMEPAGE="https://github.com/ActiveState/appdirs"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
44 -IUSE=""
45 -
46 -RDEPEND=""
47 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
48 -
49 -# api.doctests is missing in the dist zipfile
50 -# and the 'internal' doctest does nothing
51 -RESTRICT=test
52 -
53 -python_test() {
54 - cd test || die
55 - "${PYTHON}" test.py \
56 - || die "Tests fail with ${EPYTHON}"
57 -}