mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 09:07:26 -08:00
sed -E '/dev-libs\/gobject-introspection(:=|\s|$|-[0-9]|\[)/ { s/(>=)?dev-libs\/gobject-introspection(-[0-9.r-]*)?/>=dev-libs\/gobject-introspection-1.82.0-r2/ }' */*/*.ebuild -i
+ manually going over to undo the false positives or if the version
requirement was higher.
Bug: https://bugs.gentoo.org/947058
See-Also: ae37e3f389808700bd0f4343ee04888f0ef179d2
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44336
Closes: https://github.com/gentoo/gentoo/pull/44336
Signed-off-by: Sam James <sam@gentoo.org>
59 lines
1.1 KiB
Bash
59 lines
1.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
|
|
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 ~riscv 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-1.82.0-r2:=
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
>=dev-libs/glib-2.34:2
|
|
$(python_gen_cond_dep '
|
|
>=dev-python/pygobject-3.3.91:3[${PYTHON_USEDEP}]
|
|
')
|
|
>=sys-apps/dbus-1
|
|
X? ( x11-libs/libwnck:3[introspection] )
|
|
"
|
|
BDEPEND="
|
|
dev-util/itstool
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.3.16-fix-meson-0.61.patch
|
|
"${FILESDIR}"/0001-Do-not-lint-coding-style-in-distro-testing.patch
|
|
)
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
$(meson_use test tests)
|
|
-Dpython="${EPYTHON}"
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
virtx meson_src_test
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
python_optimize
|
|
}
|