Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/polib/
Date: Sat, 14 Dec 2019 23:05:26
Message-Id: 1576364711.ce0035d9924905d1be89e73f25a44b81b84a3bfa.pacho@gentoo
1 commit: ce0035d9924905d1be89e73f25a44b81b84a3bfa
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 14 22:23:56 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 14 23:05:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce0035d9
7
8 dev-python/polib: Drop old
9
10 Package-Manager: Portage-2.3.80, Repoman-2.3.19
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-python/polib/Manifest | 1 -
14 dev-python/polib/polib-1.0.7.ebuild | 36 ------------------------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/dev-python/polib/Manifest b/dev-python/polib/Manifest
18 index 14efa1d4ec5..275b9a16cbf 100644
19 --- a/dev-python/polib/Manifest
20 +++ b/dev-python/polib/Manifest
21 @@ -1,2 +1 @@
22 -DIST polib-1.0.7.tar.gz 156282 BLAKE2B 4d4a9f9901fe7b7b7aa5fc54b9391e051b8d02d1749752e1c9a563d9285670db5d43d7c5015fe266f78c89d1ff7a334bd2afe2d7d8b68fb376df35f8902cb0ed SHA512 bfec3538f9ab499ff2149bb40e0685b4cb6d5f0bc7ce8dc33e1fc511a6169e01c1a317e652daed7b3bfd9bbfe6ee1d545b4d8913f54e91504c4debb5b1b94b6e
23 DIST polib-1.1.0.tar.gz 158484 BLAKE2B 41766f00e3928eacf3c98406b6acce224f0d0cb44d79326c834db900ed8b91181911ab7e26845a737057dd07c067a784d0b06278952708c17888db42d8c1e303 SHA512 74681585b4d7252e107acd7d73f49f7e91c90adcd180722d39d35c40ec158434798af0124a16788cf564c73b84f52a040aefeb58355a1a3cd85848c3f6a5e67f
24
25 diff --git a/dev-python/polib/polib-1.0.7.ebuild b/dev-python/polib/polib-1.0.7.ebuild
26 deleted file mode 100644
27 index f064e665665..00000000000
28 --- a/dev-python/polib/polib-1.0.7.ebuild
29 +++ /dev/null
30 @@ -1,36 +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 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="A library to manipulate gettext files (.po and .mo files)"
40 -HOMEPAGE="https://bitbucket.org/izi/polib/wiki/Home"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="alpha amd64 arm arm64 ia64 ppc ppc64 sparc x86"
46 -IUSE="doc"
47 -
48 -DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
49 -
50 -PATCHES=(
51 - "${FILESDIR}"/${PN}-1.0.7-BE-test.patch
52 -)
53 -
54 -python_compile_all() {
55 - use doc && emake -C docs html
56 -}
57 -
58 -python_test() {
59 - "${PYTHON}" tests/tests.py || die "Tests failed under ${EPYTHON}"
60 -}
61 -
62 -python_install_all() {
63 - local DOCS=( CHANGELOG README.rst )
64 - use doc && local HTML_DOCS=( docs/_build/html/. )
65 - distutils-r1_python_install_all
66 -}