Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/thunarx-python/
Date: Mon, 27 Nov 2017 20:50:54
Message-Id: 1511815714.c8ba1024d901b1755a8d297939fa49450720cc8d.calchan@gentoo
1 commit: c8ba1024d901b1755a8d297939fa49450720cc8d
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 27 20:48:34 2017 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 27 20:48:34 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8ba1024
7
8 dev-python/thunarx-python: remove obsolete xfconf.eclass, migrate to EAPI6
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 .../thunarx-python/thunarx-python-0.3.0-r2.ebuild | 34 ++++++++++++++++++++++
13 1 file changed, 34 insertions(+)
14
15 diff --git a/dev-python/thunarx-python/thunarx-python-0.3.0-r2.ebuild b/dev-python/thunarx-python/thunarx-python-0.3.0-r2.ebuild
16 new file mode 100644
17 index 00000000000..437e445d932
18 --- /dev/null
19 +++ b/dev-python/thunarx-python/thunarx-python-0.3.0-r2.ebuild
20 @@ -0,0 +1,34 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +PYTHON_COMPAT=( python2_7 )
26 +
27 +inherit python-single-r1
28 +
29 +DESCRIPTION="Python bindings for the Thunar file manager"
30 +HOMEPAGE="https://goodies.xfce.org/projects/bindings/thunarx-python"
31 +SRC_URI="mirror://xfce/src/bindings/${PN}/0.3/${P}.tar.bz2"
32 +
33 +LICENSE="GPL-3"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="${PYTHON_DEPS}
39 + x11-libs/gtk+:2
40 + dev-libs/glib:2
41 + >=dev-python/pygobject-2.16:2[${PYTHON_USEDEP}]
42 + dev-python/pygtk:2[${PYTHON_USEDEP}]
43 + >=xfce-base/thunar-1.1.0"
44 +DEPEND="${RDEPEND}
45 + virtual/pkgconfig"
46 +REQUIRED_USE=${PYTHON_REQUIRED_USE}
47 +
48 +DOCS=( AUTHORS ChangeLog NEWS README )
49 +
50 +src_install() {
51 + default
52 +
53 + find "${D}" -name '*.la' -delete || die
54 +}