mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03: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>
75 lines
2.1 KiB
Bash
75 lines
2.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
inherit gnome.org meson xdg flag-o-matic
|
|
|
|
DESCRIPTION="Playlist parsing library"
|
|
HOMEPAGE="https://developer.gnome.org/totem-pl-parser/stable/"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="0/18"
|
|
IUSE="archive crypt gtk-doc +introspection test +uchardet"
|
|
RESTRICT="!test? ( test )"
|
|
KEYWORDS="~alpha amd64 ~arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.56:2
|
|
archive? ( >=app-arch/libarchive-3:0= )
|
|
dev-libs/libxml2:2=
|
|
crypt? ( dev-libs/libgcrypt:0= )
|
|
uchardet? ( app-i18n/uchardet )
|
|
introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
dev-util/glib-utils
|
|
gtk-doc? (
|
|
>=dev-util/gtk-doc-1.14
|
|
app-text/docbook-xml-dtd:4.3
|
|
)
|
|
>=sys-devel/gettext-0.19.8
|
|
virtual/pkgconfig
|
|
test? (
|
|
gnome-base/gvfs[http]
|
|
sys-apps/dbus
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PV}-plparser-Fix-uninitialized-variable-error.patch
|
|
"${FILESDIR}"/${PV}-c99.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
# Disable tests requiring network access, bug #346127
|
|
# 3rd test fails on upgrade, not once installed
|
|
# Leio: I consider network tests important for ensuring full functionality, thus trying with them again */
|
|
#sed -e 's:\(g_test_add_func.*/parser/resolution.*\):/*\1*/:' \
|
|
# -e 's:\(g_test_add_func.*/parser/parsing/itms_link.*\):/*\1*/:' \
|
|
# -e 's:\(g_test_add_func.*/parser/parsability.*\):/*\1*/:'\
|
|
# -i plparse/tests/parser.c || die "sed failed"
|
|
|
|
xdg_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
# uninstalled-tests is abused to switch from loading live FS helper
|
|
# to in-build-tree helper, check on upgrades this is not having other
|
|
# consequences, bug #630242
|
|
local emesonargs=(
|
|
-Denable-libarchive=$(usex archive)
|
|
-Denable-libgcrypt=$(usex crypt)
|
|
-Denable-uchardet=$(usex uchardet)
|
|
$(meson_use gtk-doc enable-gtk-doc)
|
|
$(meson_use introspection)
|
|
)
|
|
append-ldflags $(test-flags-CCLD -Wl,--undefined-version) # bug 915087
|
|
meson_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
# This is required as told by upstream in bgo#629542
|
|
GVFS_DISABLE_FUSE=1 dbus-run-session meson test -C "${BUILD_DIR}"
|
|
}
|