dev-util/d-feet: Version bump to 0.3.15

Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Matt Turner
2021-04-14 16:30:55 -04:00
parent a3dc2de580
commit 7e44aec681
2 changed files with 55 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST d-feet-0.3.14.tar.xz 177064 BLAKE2B be1150cead543dab3daf1c8beae4047d3c32e60dbf9a73a50ef95fe62cbafbf6af9ab174c7f9128212b0d33aa111545b598c6aab6d359625c94f0029ca5f1a20 SHA512 1ea3bd2251693884592d375f1459681043b5185c341299dc28cbc8e4e05f3ff3a423c051b650806f6b930d8b89e0d751983ada7ad9a74b380f74f3205125b1b4
DIST d-feet-0.3.15.tar.xz 231672 BLAKE2B c00352dcec6ef753d888fb7255dfe614a848012aa7b1ed2269ad2f21434219315e10510a6cc60f08108d7d9332a1b5b6cbb73978b9746d3939bf880ce12f2f34 SHA512 c8ac20b91dfa5fea2282099a772c3668ebe75b0e4977b08adc3ee9591e00e391398835af5486b32d8d65e558c58f55cc26523b0e4a3ff1745b722ee90000de87

View File

@@ -0,0 +1,54 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
inherit gnome2 meson python-single-r1 virtualx
DESCRIPTION="D-Feet is a powerful D-Bus debugger"
HOMEPAGE="https://wiki.gnome.org/Apps/DFeet"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test +X"
RESTRICT="!test? ( test )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="
${PYTHON_DEPS}
>=x11-libs/gtk+-3.9.4:3[introspection]
>=dev-libs/gobject-introspection-0.9.6:=
"
RDEPEND="
${DEPEND}
>=dev-libs/glib-2.34:2
$(python_gen_cond_dep '
>=dev-python/pygobject-3.3.91:3[${PYTHON_MULTI_USEDEP}]
')
>=sys-apps/dbus-1
X? ( x11-libs/libwnck:3[introspection] )
"
BDEPEND="
dev-util/itstool
>=dev-util/intltool-0.40.0
test? ( dev-python/pycodestyle )
"
src_configure() {
local emesonargs=(
$(meson_use test tests)
)
meson_src_configure
}
src_test() {
virtx meson_src_test
}
src_install() {
meson_src_install
python_optimize
}