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-debian/
Date: Sat, 31 Dec 2022 11:07:51
Message-Id: 1672484819.a3e5aaa8ea98eb644ca3a5130b06a49a0236574e.mgorny@gentoo
1 commit: a3e5aaa8ea98eb644ca3a5130b06a49a0236574e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 31 11:06:59 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 31 11:06:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3e5aaa8
7
8 dev-python/python-debian: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-debian/Manifest | 1 -
13 .../python-debian/python-debian-0.1.48.ebuild | 48 ----------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-python/python-debian/Manifest b/dev-python/python-debian/Manifest
17 index 0d9e67906fa8..85e2989d4069 100644
18 --- a/dev-python/python-debian/Manifest
19 +++ b/dev-python/python-debian/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-debian_0.1.48.tar.xz 189096 BLAKE2B 3b273f1e90069e00a93aeb9c2333d20d479b057613c93325344f42a73230bd569160a487a25d1c7f90f7f00f42feeab55c9850cf44121e1ca423cd1f40a991a4 SHA512 85bd12ce8ade9b43d502bd60ac1ac826d9a81b5bf32262ff9377b4ba5a1c95306683098d10a64fd6a1331ed7eb44a7fb09ad90f0ee6c885d69ea16f85c4eda59
22 DIST python-debian_0.1.49.tar.xz 191388 BLAKE2B 590e6f7877684caaa5a74f06d335bcf7808960968209cf18bb2cec7e81f33a3b0ff458bbe30264ae5fc015de9357dddb1522b5fd93bf33d0a7fabef1b7dd98f9 SHA512 201ceecdd8c1d3dc0cca0f661407bcfb825a1cba07c528858cc1123ab16afe0df50e338c8cd82ea24230812a9cc136220bd4f0dccbac19ad53efe48eaa25cf6f
23
24 diff --git a/dev-python/python-debian/python-debian-0.1.48.ebuild b/dev-python/python-debian/python-debian-0.1.48.ebuild
25 deleted file mode 100644
26 index 15b1e315ea43..000000000000
27 --- a/dev-python/python-debian/python-debian-0.1.48.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 2011-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{9..11} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python modules to work with Debian-related data formats"
41 -HOMEPAGE="
42 - https://salsa.debian.org/python-debian-team/python-debian/
43 - https://pypi.org/project/python-debian/
44 -"
45 -SRC_URI="mirror://debian/pool/main/${PN::1}/${PN}/${PN}_${PV}.tar.xz"
46 -
47 -LICENSE="GPL-2 GPL-3"
48 -SLOT="0"
49 -KEYWORDS="amd64 arm x86"
50 -
51 -RDEPEND="
52 - dev-python/chardet[${PYTHON_USEDEP}]
53 -"
54 -
55 -BDEPEND="
56 - test? (
57 - app-arch/dpkg
58 - )
59 -"
60 -
61 -distutils_enable_tests unittest
62 -
63 -python_prepare_all() {
64 - # See debian/rules.
65 - sed -e "s/__CHANGELOG_VERSION__/${PV}/" lib/debian/_version.py.in \
66 - > lib/debian/_version.py || die
67 - distutils-r1_python_prepare_all
68 -}
69 -
70 -python_compile_all() {
71 - # See debian/rules.
72 - "${EPYTHON}" lib/debian/doc-debtags > README.debtags || die
73 -}
74 -
75 -python_test() {
76 - eunittest lib
77 -}