mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-14 14:09:14 +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>
43 lines
1 KiB
Bash
43 lines
1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
inherit gnome.org meson xdg
|
|
|
|
DESCRIPTION="GLib helper library for geocoding services"
|
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/geocode-glib"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="2"
|
|
KEYWORDS="~alpha amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86"
|
|
IUSE="gtk-doc +introspection test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.44:2
|
|
>=dev-libs/json-glib-0.99.2[introspection?]
|
|
>=net-libs/libsoup-3.0.8:3.0[introspection?]
|
|
introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= )
|
|
|
|
!<=sci-geosciences/geocode-glib-3.26.4:0
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
dev-util/glib-utils
|
|
gtk-doc? (
|
|
>=dev-util/gtk-doc-1.13
|
|
app-text/docbook-xml-dtd:4.3
|
|
)
|
|
>=sys-devel/gettext-0.19.8
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Denable-installed-tests=false
|
|
$(meson_use introspection enable-introspection)
|
|
$(meson_use gtk-doc enable-gtk-doc)
|
|
-Dsoup2=false
|
|
)
|
|
meson_src_configure
|
|
}
|