Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/d-feet/
Date: Tue, 26 Feb 2019 00:26:31
Message-Id: 1551140763.d89a549053d0d59d945b90c00e0d86ece871a0d8.leio@gentoo
1 commit: d89a549053d0d59d945b90c00e0d86ece871a0d8
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 26 00:26:03 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 26 00:26:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d89a5490
7
8 dev-util/d-feet: bump to 0.3.14
9
10 Includes various ebuild simplifications and fixes:
11 * UPDATE_DESKTOP avoidance not needed, upstream has had a DESTDIR
12 check in there for a while now.
13 * 0.3.14 moved from pep8 to preferring the new name of pycodestyle;
14 instead of updating the sed, just add the dependency now, as the
15 whitespace tests actually pass upstream now, unlike in 0.3.13.
16 * Downgrade dep from yelp-tools to itstool, as we don't call eautoreconf
17 * Fix LICENSE to have or-later
18 * Remove error throwing python_fix_shebang call - not sure why it
19 errors now on not finding anything to fix, but at least in 0.3.14
20 it's unnecessary anyways, as $PYTHON from ebuild env is properly
21 honored and the relevant shebangs are correct without any manual
22 fixing.
23
24 Closes: https://bugs.gentoo.org/678768
25 Package-Manager: Portage-2.3.52, Repoman-2.3.12
26 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
27
28 dev-util/d-feet/Manifest | 1 +
29 dev-util/d-feet/d-feet-0.3.14.ebuild | 46 ++++++++++++++++++++++++++++++++++++
30 2 files changed, 47 insertions(+)
31
32 diff --git a/dev-util/d-feet/Manifest b/dev-util/d-feet/Manifest
33 index 8ff5b1fa8b2..77f4fd18e47 100644
34 --- a/dev-util/d-feet/Manifest
35 +++ b/dev-util/d-feet/Manifest
36 @@ -1 +1,2 @@
37 DIST d-feet-0.3.13.tar.xz 174700 BLAKE2B 66d2a8735011c64985889edf1acbb37e1547d6af52fc6499124ffae09d8cfd876051e12f231c26a1af848939b9a3e9c36d1083e8afb240575d4f580ea92fde65 SHA512 b5a4eb995e883406a13e8a4137b1ed751cfbfd0fd80fa26eb81cf6f8b69bca63f3a4ad940b1aeaed0a57d48d81c582b62f6c3880e7038136f2b40a1eef25328f
38 +DIST d-feet-0.3.14.tar.xz 177064 BLAKE2B be1150cead543dab3daf1c8beae4047d3c32e60dbf9a73a50ef95fe62cbafbf6af9ab174c7f9128212b0d33aa111545b598c6aab6d359625c94f0029ca5f1a20 SHA512 1ea3bd2251693884592d375f1459681043b5185c341299dc28cbc8e4e05f3ff3a423c051b650806f6b930d8b89e0d751983ada7ad9a74b380f74f3205125b1b4
39
40 diff --git a/dev-util/d-feet/d-feet-0.3.14.ebuild b/dev-util/d-feet/d-feet-0.3.14.ebuild
41 new file mode 100644
42 index 00000000000..af1ae4c4c6d
43 --- /dev/null
44 +++ b/dev-util/d-feet/d-feet-0.3.14.ebuild
45 @@ -0,0 +1,46 @@
46 +# Copyright 1999-2019 Gentoo Authors
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=6
50 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
51 +
52 +inherit gnome2 python-single-r1 virtualx
53 +
54 +DESCRIPTION="D-Feet is a powerful D-Bus debugger"
55 +HOMEPAGE="https://wiki.gnome.org/Apps/DFeet"
56 +
57 +LICENSE="GPL-2+"
58 +SLOT="0"
59 +KEYWORDS="~amd64 ~x86"
60 +
61 +IUSE="test +X"
62 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
63 +
64 +COMMON_DEPEND="
65 + ${PYTHON_DEPS}
66 + >=x11-libs/gtk+-3.9.4:3[introspection]
67 + >=dev-libs/gobject-introspection-0.9.6:=
68 +"
69 +RDEPEND="
70 + ${COMMON_DEPEND}
71 + >=dev-libs/glib-2.34:2
72 + >=dev-python/pygobject-3.3.91:3[${PYTHON_USEDEP}]
73 + >=sys-apps/dbus-1
74 + X? ( x11-libs/libwnck:3[introspection] )
75 +"
76 +DEPEND="
77 + ${COMMON_DEPEND}
78 + dev-util/itstool
79 + >=dev-util/intltool-0.40.0
80 + test? ( dev-python/pycodestyle )
81 +" # eautoreconf needs yelp-tools
82 +
83 +src_configure() {
84 + # Tests are only python pep8 whitespace checking and intltool checks - checking python whitespate style is not useful for us
85 + gnome2_src_configure \
86 + $(use_enable test tests)
87 +}
88 +
89 +src_test() {
90 + virtx default
91 +}