Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-commander/
Date: Fri, 26 May 2017 22:54:28
Message-Id: 1495839173.c8b9f6e1a1d147cecf56a82815f15c19ee7f96f4.soap@gentoo
1 commit: c8b9f6e1a1d147cecf56a82815f15c19ee7f96f4
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 26 22:07:17 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri May 26 22:52:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b9f6e1
7
8 gnome-extra/gnome-commander: [QA] Add missing python metadata variables
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild | 10 +++++++++-
13 1 file changed, 9 insertions(+), 1 deletion(-)
14
15 diff --git a/gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild b/gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild
16 index f23f4af3ddd..c164d9d403c 100644
17 --- a/gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild
18 +++ b/gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild
19 @@ -15,6 +15,7 @@ LICENSE="GPL-2"
20 SLOT="0"
21 KEYWORDS="~amd64 ~x86"
22 IUSE="chm exif gsf pdf python taglib samba test +unique"
23 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
24
25 RDEPEND="
26 app-text/gnome-doc-utils
27 @@ -30,7 +31,10 @@ RDEPEND="
28 gsf? ( >=gnome-extra/libgsf-1.12.0 )
29 samba? ( >=gnome-base/gnome-vfs-2.0.0[samba] )
30 pdf? ( >=app-text/poppler-0.18 )
31 - python? ( >=dev-python/gnome-vfs-python-2.0.0 )
32 + python? (
33 + ${PYTHON_DEPS}
34 + >=dev-python/gnome-vfs-python-2.0.0
35 + )
36 taglib? ( >=media-libs/taglib-1.4 )
37 "
38 DEPEND="
39 @@ -42,6 +46,10 @@ DEPEND="
40 test? ( >=dev-util/cppunit-1.13.2 )
41 "
42
43 +pkg_setup() {
44 + use python && python-single-r1_pkg_setup
45 +}
46 +
47 src_configure() {
48 gnome2_src_configure \
49 --disable-static \