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-dbusmock/
Date: Fri, 01 Apr 2022 07:45:55
Message-Id: 1648799129.6f7abcf5d8b6802fba2647e149dfdcc598bf3ea2.mgorny@gentoo
1 commit: 6f7abcf5d8b6802fba2647e149dfdcc598bf3ea2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 07:45:29 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 07:45:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f7abcf5
7
8 dev-python/python-dbusmock: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-dbusmock/Manifest | 1 -
13 .../python-dbusmock/python-dbusmock-0.25.0.ebuild | 33 ----------------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/dev-python/python-dbusmock/Manifest b/dev-python/python-dbusmock/Manifest
17 index bb8c17b5ee23..fa11aad80ab4 100644
18 --- a/dev-python/python-dbusmock/Manifest
19 +++ b/dev-python/python-dbusmock/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST python-dbusmock-0.25.0.tar.gz 86674 BLAKE2B 9a9f5aefece0f48725f8a453d298fde78e86c86901f5dd3c67032be41cbc52753b8b0da8e8ba3845772e68ba6dcf0938af405f961fc5425808017dd8b30e1419 SHA512 5d7c2f4ea75c7a0f2c6bf63b673c180f3a468239082e0248778441d8f07b78fa3786c1d37498f758954a4727bdb24dc83ffc0671bfc4b2956402aee52c363045
22 DIST python-dbusmock-0.26.1.tar.gz 87707 BLAKE2B 9f4761ab5f227e78dd5343f3ddd4b83d0494e77d3b381f719890447998baab8096b3bf817259b080dda78619f8407ad532044cb60aaf7a5280459f423754df0f SHA512 dcb46f6dbd17471e2135c0d8fb63cbaecbc9445ae7bf74691abb03b93d5283ab41ea71071ece03870aaac19eaedd546f01c0839116421047f1ac77619f2c73f3
23 DIST python-dbusmock-0.27.0.tar.gz 89469 BLAKE2B b6fcdb5ded2b4f50d4c3edafecf028df57c3aae6e2a1e87d78c41f879f495d06ab097be0996b7b1781aebd4235a5ce7c6b58f48f5c74e2d4c2b49a3439ce9cae SHA512 4f3a7326b27d7b86d9a77019c419209077021a88994b8e5ae302686fcaa8b7c7736644ab26d9e3b5a2157634eb56a0b2dbe304a092d93104c94a13a43d53b5a1
24
25 diff --git a/dev-python/python-dbusmock/python-dbusmock-0.25.0.ebuild b/dev-python/python-dbusmock/python-dbusmock-0.25.0.ebuild
26 deleted file mode 100644
27 index c65ba7b4ab42..000000000000
28 --- a/dev-python/python-dbusmock/python-dbusmock-0.25.0.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -PYTHON_REQ_USE="xml(+)"
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Easily create mock objects on D-Bus for software testing"
42 -HOMEPAGE="https://github.com/martinpitt/python-dbusmock"
43 -SRC_URI="
44 - https://github.com/martinpitt/python-dbusmock/releases/download/${PV}/${P}.tar.gz"
45 -
46 -LICENSE="LGPL-3+"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
49 -
50 -RDEPEND="
51 - dev-python/dbus-python[${PYTHON_USEDEP}]
52 - dev-python/pygobject:3[${PYTHON_USEDEP}]"
53 -
54 -distutils_enable_tests unittest
55 -
56 -src_prepare() {
57 - # needed for unittest discovery
58 - > tests/__init__.py || die
59 - # linter tests, fragile to newer linter versions
60 - rm tests/test_code.py || die
61 -
62 - distutils-r1_src_prepare
63 -}