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/dbusmock/
Date: Tue, 27 Apr 2021 18:22:04
Message-Id: 1619547706.c358558960018fe2069c9993bc0341069cee9b43.mgorny@gentoo
1 commit: c358558960018fe2069c9993bc0341069cee9b43
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 27 18:18:02 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 27 18:21:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3585589
7
8 dev-python/dbusmock: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dbusmock/Manifest | 1 -
13 dev-python/dbusmock/dbusmock-0.22.0.ebuild | 34 ------------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/dev-python/dbusmock/Manifest b/dev-python/dbusmock/Manifest
17 index a9f8cad4ab5..6e1d7c44eca 100644
18 --- a/dev-python/dbusmock/Manifest
19 +++ b/dev-python/dbusmock/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-dbusmock-0.22.0.tar.gz 68626 BLAKE2B 51b897ad95bc547afe6cd59abed243dcaecd3c6ce8c47825f3a2eeaf7364c5aba04d23247c876f748b071f30753a86da954493bc63f0ae503085974e7e769658 SHA512 2c3430f4178a16acc376ce582f4a1a9bbe8b917efcd7eee58dab85ee3addf60ba355ae9e7b318ec2cdf7ca771183c37d16520a1e5bcab8414c66e2d2a36d26fe
22 DIST python-dbusmock-0.23.0.tar.gz 79928 BLAKE2B a004bbc93cd4dd3ab5919e28bde18e7b015546e43b789826010ccfd2000075babf933bc53b72bc4369458ac6c37845b534b0e36e594afc4bfd298d9ac37495c7 SHA512 b464c376b1489bc2a9967d08fd1e4e8943e372f46eef46d1cebf316f4afd1f2bf55d02abc3b82b7052c685fe1ff9ba22734a58aa75945706a26ae9d71e5d807e
23
24 diff --git a/dev-python/dbusmock/dbusmock-0.22.0.ebuild b/dev-python/dbusmock/dbusmock-0.22.0.ebuild
25 deleted file mode 100644
26 index a690869f4e0..00000000000
27 --- a/dev-python/dbusmock/dbusmock-0.22.0.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -PYTHON_REQ_USE="xml(+)"
37 -
38 -inherit distutils-r1
39 -
40 -MY_PN="python-${PN}"
41 -MY_P="${MY_PN}-${PV}"
42 -
43 -DESCRIPTION="Easily create mock objects on D-Bus for software testing"
44 -HOMEPAGE="https://github.com/martinpitt/python-dbusmock"
45 -SRC_URI="https://github.com/martinpitt/${MY_PN}/releases/download/${PV}/${MY_P}.tar.gz"
46 -S=${WORKDIR}/${MY_P}
47 -
48 -LICENSE="LGPL-3+"
49 -SLOT="0"
50 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
51 -
52 -RDEPEND="
53 - dev-python/dbus-python[${PYTHON_USEDEP}]
54 - dev-python/pygobject:3[${PYTHON_USEDEP}]"
55 -
56 -distutils_enable_tests unittest
57 -
58 -src_prepare() {
59 - # needed for unittest discovery
60 - > tests/__init__.py || die
61 -
62 - distutils-r1_src_prepare
63 -}