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/python-discid/
Date: Mon, 04 May 2020 11:44:44
Message-Id: 1588592627.279ca7a85e0091489a9fdc04c7247d4b2cd07492.mgorny@gentoo
1 commit: 279ca7a85e0091489a9fdc04c7247d4b2cd07492
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:43:47 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:43:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=279ca7a8
7
8 dev-python/python-discid: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-discid/Manifest | 1 -
13 .../python-discid/python-discid-1.1.1.ebuild | 35 ----------------------
14 2 files changed, 36 deletions(-)
15
16 diff --git a/dev-python/python-discid/Manifest b/dev-python/python-discid/Manifest
17 index 69df8f87789..e455554b623 100644
18 --- a/dev-python/python-discid/Manifest
19 +++ b/dev-python/python-discid/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-discid-1.1.1.tar.gz 30454 BLAKE2B 4ddf680ef824498ce1db318718b1f55067538a6f1e772df2c83b2cf6c9e75ba2b068587d447307a771dee6fe20725d64309e78b2afadfdbf8f6a8673dc30616e SHA512 b040137162a2588c653f390a4d0b549b322bb4e2745a3738c1ba72a1984722358fc85a306f4cd5d41c1e599e40d01c6e2b08d67951a820c2d1116d96eb618c8e
22 DIST python-discid-1.2.0.tar.gz 30756 BLAKE2B 616613de23b66adfc92227a9f36b710649f2a419ffd83443766ebcf1dbfaf528b7d933011bcbdcd19f5092726b81e40d905a62a64262a528dfad89e561210992 SHA512 239cb608508e94109aa9b8b582bc3de1fb9408b508d56698d7f17ec9ebb0d37c1fb76557d98b6d194c1532e3047efcde3adc5d6e9634bc87533d331423a7f19f
23
24 diff --git a/dev-python/python-discid/python-discid-1.1.1.ebuild b/dev-python/python-discid/python-discid-1.1.1.ebuild
25 deleted file mode 100644
26 index 7c4172a6df4..00000000000
27 --- a/dev-python/python-discid/python-discid-1.1.1.ebuild
28 +++ /dev/null
29 @@ -1,35 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python bindings for libdiscid"
40 -HOMEPAGE="https://github.com/JonnyJD/python-discid"
41 -SRC_URI="https://github.com/JonnyJD/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="LGPL-3+"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~ppc x86"
46 -IUSE="doc"
47 -
48 -RDEPEND=">=media-libs/libdiscid-0.2.2"
49 -DEPEND="
50 - ${RDEPEND}
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
53 -
54 -python_compile_all() {
55 - if use doc; then
56 - cd doc || die
57 - sphinx-build . _build/html || die
58 - HTML_DOCS=( doc/_build/html/. )
59 - fi
60 -}
61 -
62 -python_test() {
63 - esetup.py test
64 -}