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/pyatspi/
Date: Thu, 20 Jan 2022 13:56:52
Message-Id: 1642686882.e5c6800269353a9ee493a5c963a16348deeec6c3.mgorny@gentoo
1 commit: e5c6800269353a9ee493a5c963a16348deeec6c3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 13:47:17 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 13:54:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5c68002
7
8 dev-python/pyatspi: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyatspi/Manifest | 1 -
13 dev-python/pyatspi/pyatspi-2.38.1.ebuild | 60 --------------------------------
14 2 files changed, 61 deletions(-)
15
16 diff --git a/dev-python/pyatspi/Manifest b/dev-python/pyatspi/Manifest
17 index df7e467d27de..ec3e93bdc012 100644
18 --- a/dev-python/pyatspi/Manifest
19 +++ b/dev-python/pyatspi/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyatspi-2.38.1.tar.xz 316724 BLAKE2B 59ca2569575f3d319d33972477ebc966670138df8cb6570ac260dd903f54df66fd12beeeee53e3380938e4571910b99ae2bf3f395776b16a73ac27f8fa023c49 SHA512 bf8f1ee9a6e00014a84e4329bb971bec8b4bc8f72c3905ca585ca20b1cf000b855965159fcc10871eb92e9808a6b41b5d793f3ab563ff0867f185279eedcd487
22 DIST pyatspi-2.38.2.tar.xz 318596 BLAKE2B aba5d4fbbc9e0ce4793843270394712e675e6546c781f0523f7f17a79f018fcf4cf209257e9ef0dc03cbe92be7a17c774fd82f2d9997d9aa8c6b6be65a72ef8a SHA512 03e10af5f0eb2ab89518229f049f497635ec1ae85a948a02813a5eb00eef395a3934f578b56054f8e73ae3c5c28760ad1f2b93e8876b8724c64b622d966aa5d9
23
24 diff --git a/dev-python/pyatspi/pyatspi-2.38.1.ebuild b/dev-python/pyatspi/pyatspi-2.38.1.ebuild
25 deleted file mode 100644
26 index dad98d0a2868..000000000000
27 --- a/dev-python/pyatspi/pyatspi-2.38.1.ebuild
28 +++ /dev/null
29 @@ -1,60 +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 -PYTHON_COMPAT=( python3_{8..10} )
35 -
36 -inherit gnome2 python-r1 virtualx
37 -
38 -DESCRIPTION="Python client bindings for D-Bus AT-SPI"
39 -HOMEPAGE="https://wiki.gnome.org/Accessibility"
40 -
41 -# Note: only some of the tests are GPL-licensed, everything else is LGPL
42 -LICENSE="LGPL-2 GPL-2+"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc x86"
45 -
46 -IUSE="test"
47 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 -
49 -DEPEND="
50 - ${PYTHON_DEPS}
51 - >=dev-libs/atk-2.11.2
52 - dev-python/dbus-python[${PYTHON_USEDEP}]
53 - >=dev-python/pygobject-2.90.1:3[${PYTHON_USEDEP}]
54 -"
55 -RDEPEND="${DEPEND}
56 - >=sys-apps/dbus-1
57 - >=app-accessibility/at-spi2-core-2.34[introspection]
58 -"
59 -BDEPEND="virtual/pkgconfig
60 - test? ( x11-libs/gtk+:3 )
61 -"
62 -
63 -src_prepare() {
64 - gnome2_src_prepare
65 - python_copy_sources
66 -}
67 -
68 -src_configure() {
69 - python_foreach_impl run_in_build_dir gnome2_src_configure $(use_enable test tests)
70 -}
71 -
72 -src_compile() {
73 - python_foreach_impl run_in_build_dir gnome2_src_compile
74 -}
75 -
76 -src_test() {
77 - python_foreach_impl run_in_build_dir virtx dbus-run-session emake check
78 -}
79 -
80 -src_install() {
81 - installing() {
82 - gnome2_src_install
83 - python_optimize
84 - }
85 - python_foreach_impl run_in_build_dir installing
86 -
87 - docinto examples
88 - dodoc examples/*.py
89 -}