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/notify2/
Date: Mon, 02 Nov 2020 14:48:27
Message-Id: 1604328157.c7a3b904975eda2249d605a3a6fa49e36ea3ccea.mgorny@gentoo
1 commit: c7a3b904975eda2249d605a3a6fa49e36ea3ccea
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 2 14:42:37 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 14:42:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7a3b904
7
8 dev-python/notify2: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/notify2/notify2-0.3.1-r1.ebuild | 33 ------------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-python/notify2/notify2-0.3.1-r1.ebuild b/dev-python/notify2/notify2-0.3.1-r1.ebuild
16 deleted file mode 100644
17 index ac2db9b50d5..00000000000
18 --- a/dev-python/notify2/notify2-0.3.1-r1.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -DISTUTILS_USE_SETUPTOOLS=no
27 -PYTHON_COMPAT=( python{3_6,3_7,3_8} )
28 -
29 -inherit distutils-r1 virtualx
30 -
31 -DESCRIPTION="Python interface to DBus notifications."
32 -HOMEPAGE="https://bitbucket.org/takluyver/pynotify2"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="BSD"
36 -SLOT="0"
37 -KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
38 -IUSE="examples"
39 -
40 -RDEPEND="dev-python/dbus-python[${PYTHON_USEDEP}]"
41 -BDEPEND="test? ( sys-apps/dbus[X] )"
42 -
43 -python_test() {
44 - virtx ${EPYTHON} test_notify2.py
45 -}
46 -
47 -python_install_all() {
48 - if use examples; then
49 - insinto /usr/share/doc/${PF}/examples
50 - doins examples/*
51 - fi
52 - distutils-r1_python_install_all
53 -}