mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00: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: ae37e3f389
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>
68 lines
1.4 KiB
Bash
68 lines
1.4 KiB
Bash
# Copyright 2023-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
|
|
inherit meson python-single-r1
|
|
|
|
DESCRIPTION="C Library for manipulating Fedora Modularity metadata files"
|
|
HOMEPAGE="https://github.com/fedora-modularity/libmodulemd"
|
|
if [[ ${PV} = 9999* ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/fedora-modularity/libmodulemd.git"
|
|
else
|
|
SRC_URI="https://github.com/fedora-modularity/libmodulemd/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
IUSE="doc test"
|
|
RESTRICT="!test? ( test )"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
DEPEND="
|
|
${PYTHON_DEPS}
|
|
app-arch/rpm
|
|
sys-apps/file
|
|
dev-libs/glib:2
|
|
dev-libs/libyaml
|
|
$(python_gen_cond_dep '
|
|
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
|
')
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="
|
|
${PYTHON_DEPS}
|
|
>=dev-libs/gobject-introspection-1.82.0-r2
|
|
dev-util/glib-utils
|
|
doc? (
|
|
dev-libs/glib[gtk-doc(+),doc(+)]
|
|
dev-util/gtk-doc
|
|
)
|
|
test? (
|
|
sys-libs/libmodulemd
|
|
)
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
$(meson_use doc with_docs)
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
meson_src_test --no-suite ci_valgrind
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
# We need to compile the gobject introspection overrides to prevent QA warnings
|
|
local PYTHON_GI_OVERRIDESDIR=$("${EPYTHON}" -c 'import gi;print(gi._overridesdir)' || die)
|
|
python_optimize "${D}${PYTHON_GI_OVERRIDESDIR}/"
|
|
|
|
}
|