mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-15 08:56:58 +02:00
dev-libs/gobject-introspection: Sync with Gentoo
It's from Gentoo commit e41b4401c64a1de901c9a4d772b584cb8c15996d.
This commit is contained in:
parent
6f386de935
commit
f43cbffce8
@ -1,2 +1 @@
|
|||||||
DIST gobject-introspection-1.72.0.tar.xz 1040936 BLAKE2B fd7600a927e57d5a076c203a084afe56a738d3a93109055be7bee22a96d6d5b08892300260288e5b83f883e54ca658cb24ef5c862abe435820c963bbf0cf8496 SHA512 b8fba2bd12e93776c55228acf3487bef36ee40b1abdc7f681b827780ac94a8bfa1f59b0c30d60fa5a1fea2f610de78b9e52029f411128067808f17eb6374cdc5
|
|
||||||
DIST gobject-introspection-1.74.0.tar.xz 1044008 BLAKE2B 223bb9b8b452f03945f941086e47fb3b14f03f8353f4f903b21e3f494af728652a44de986752374057e90dd8111f21f5b0cd3e00bb0a8c3aa25c8261bb0b9247 SHA512 decff5dda0ec5ec0afda4d6bcd3bdadcbf34289002c0d9c0c77ecf8c5d3f15d196b24d8035041545031006acbdfe76af47c42da061c40e200c87f2c74cd301f0
|
DIST gobject-introspection-1.74.0.tar.xz 1044008 BLAKE2B 223bb9b8b452f03945f941086e47fb3b14f03f8353f4f903b21e3f494af728652a44de986752374057e90dd8111f21f5b0cd3e00bb0a8c3aa25c8261bb0b9247 SHA512 decff5dda0ec5ec0afda4d6bcd3bdadcbf34289002c0d9c0c77ecf8c5d3f15d196b24d8035041545031006acbdfe76af47c42da061c40e200c87f2c74cd301f0
|
||||||
|
@ -1,79 +0,0 @@
|
|||||||
# Copyright 1999-2022 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{8..11} )
|
|
||||||
PYTHON_REQ_USE="xml(+)"
|
|
||||||
inherit gnome.org meson python-single-r1 xdg
|
|
||||||
|
|
||||||
DESCRIPTION="Introspection system for GObject-based libraries"
|
|
||||||
HOMEPAGE="https://wiki.gnome.org/Projects/GObjectIntrospection"
|
|
||||||
|
|
||||||
LICENSE="LGPL-2+ GPL-2+"
|
|
||||||
SLOT="0"
|
|
||||||
IUSE="doctool gtk-doc test"
|
|
||||||
RESTRICT="!test? ( test )"
|
|
||||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
||||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
|
||||||
|
|
||||||
# virtual/pkgconfig needed at runtime, bug #505408
|
|
||||||
RDEPEND="
|
|
||||||
>=dev-libs/gobject-introspection-common-${PV}
|
|
||||||
>=dev-libs/glib-2.58.0:2
|
|
||||||
dev-libs/libffi:=
|
|
||||||
doctool? (
|
|
||||||
$(python_gen_cond_dep '
|
|
||||||
dev-python/mako[${PYTHON_USEDEP}]
|
|
||||||
dev-python/markdown[${PYTHON_USEDEP}]
|
|
||||||
')
|
|
||||||
)
|
|
||||||
virtual/pkgconfig
|
|
||||||
${PYTHON_DEPS}
|
|
||||||
"
|
|
||||||
# Wants real bison, not virtual/yacc
|
|
||||||
DEPEND="${RDEPEND}"
|
|
||||||
BDEPEND="
|
|
||||||
gtk-doc? (
|
|
||||||
>=dev-util/gtk-doc-1.19
|
|
||||||
app-text/docbook-xml-dtd:4.3
|
|
||||||
app-text/docbook-xml-dtd:4.5
|
|
||||||
)
|
|
||||||
sys-devel/bison
|
|
||||||
sys-devel/flex
|
|
||||||
test? (
|
|
||||||
x11-libs/cairo[glib]
|
|
||||||
$(python_gen_cond_dep '
|
|
||||||
dev-python/mako[${PYTHON_USEDEP}]
|
|
||||||
dev-python/markdown[${PYTHON_USEDEP}]
|
|
||||||
')
|
|
||||||
)
|
|
||||||
"
|
|
||||||
|
|
||||||
pkg_setup() {
|
|
||||||
python-single-r1_pkg_setup
|
|
||||||
}
|
|
||||||
|
|
||||||
src_configure() {
|
|
||||||
local emesonargs=(
|
|
||||||
$(meson_feature test cairo)
|
|
||||||
$(meson_feature doctool)
|
|
||||||
#-Dglib_src_dir
|
|
||||||
$(meson_use gtk-doc gtk_doc)
|
|
||||||
#-Dcairo_libname
|
|
||||||
-Dpython="${EPYTHON}"
|
|
||||||
#-Dgir_dir_prefix
|
|
||||||
)
|
|
||||||
meson_src_configure
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
meson_src_install
|
|
||||||
python_fix_shebang "${ED}"/usr/bin/
|
|
||||||
python_optimize "${ED}"/usr/$(get_libdir)/gobject-introspection/giscanner
|
|
||||||
|
|
||||||
# Prevent collision with gobject-introspection-common
|
|
||||||
rm -v "${ED}"/usr/share/aclocal/introspection.m4 \
|
|
||||||
"${ED}"/usr/share/gobject-introspection-1.0/Makefile.introspection || die
|
|
||||||
rmdir "${ED}"/usr/share/aclocal || die
|
|
||||||
}
|
|
@ -31,7 +31,7 @@ RDEPEND="
|
|||||||
virtual/pkgconfig
|
virtual/pkgconfig
|
||||||
${PYTHON_DEPS}
|
${PYTHON_DEPS}
|
||||||
"
|
"
|
||||||
# Wants real bison, not virtual/yacc
|
# Wants real bison, not app-alternatives/yacc
|
||||||
DEPEND="${RDEPEND}"
|
DEPEND="${RDEPEND}"
|
||||||
BDEPEND="
|
BDEPEND="
|
||||||
gtk-doc? (
|
gtk-doc? (
|
||||||
|
Loading…
Reference in New Issue
Block a user