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>
72 lines
1.5 KiB
Bash
72 lines
1.5 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
|
|
inherit gnome.org gnome2-utils meson python-any-r1 vala xdg
|
|
|
|
DESCRIPTION="GNOME contact management application"
|
|
HOMEPAGE="https://apps.gnome.org/en/Contacts/"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
|
|
IUSE="+gnome-online-accounts"
|
|
|
|
VALA_DEPEND="
|
|
$(vala_depend)
|
|
>=dev-libs/gobject-introspection-1.82.0-r2
|
|
dev-libs/folks[vala(+)]
|
|
gnome-online-accounts? ( net-libs/gnome-online-accounts[vala] )
|
|
gnome-extra/evolution-data-server[gtk,vala]
|
|
>=dev-libs/libportal-0.6:=[gtk,vala]
|
|
"
|
|
RDEPEND="
|
|
>=dev-libs/folks-0.14.0:=[eds]
|
|
>=dev-libs/libgee-0.10:0.8=
|
|
>=dev-libs/glib-2.64:2
|
|
>=gui-libs/gtk-4.12:4
|
|
>=gui-libs/libadwaita-1.4_alpha:1[vala]
|
|
>=gnome-extra/evolution-data-server-3.42:=[gnome-online-accounts?]
|
|
>=dev-libs/libportal-0.6:=
|
|
>=media-gfx/qrencode-4.1.1:=
|
|
gnome-online-accounts? ( net-libs/gnome-online-accounts:= )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
${PYTHON_DEPS}
|
|
${VALA_DEPEND}
|
|
app-text/docbook-xml-dtd:4.2
|
|
app-text/docbook-xsl-stylesheets
|
|
dev-libs/libxml2:2
|
|
dev-libs/libxslt
|
|
>=sys-devel/gettext-0.19.8
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
vala_setup
|
|
xdg_environment_reset
|
|
}
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Dcamera=true # Ignored
|
|
-Dmanpage=true
|
|
-Ddocs=false
|
|
$(meson_use gnome-online-accounts goa)
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
gnome2_schemas_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
xdg_pkg_postrm
|
|
gnome2_schemas_update
|
|
}
|