diff options
author | 2023-09-16 15:04:18 -0300 | |
---|---|---|
committer | 2023-09-16 14:16:16 -0400 | |
commit | ca7c7eb088e745d93f3f1e61d1448f9b69bb0966 (patch) | |
tree | cdded4f6142579646d59064de739cd3b98ad8a17 /dev-libs/libgweather/libgweather-4.4.0.ebuild | |
parent | app-crypt/tpm2-openssl: add missing build dependency (diff) | |
download | gentoo-ca7c7eb088e745d93f3f1e61d1448f9b69bb0966.tar.gz gentoo-ca7c7eb088e745d93f3f1e61d1448f9b69bb0966.tar.bz2 gentoo-ca7c7eb088e745d93f3f1e61d1448f9b69bb0966.zip |
dev-libs/libgweather: Version bump to 4.4.0
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32846
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-libs/libgweather/libgweather-4.4.0.ebuild')
-rw-r--r-- | dev-libs/libgweather/libgweather-4.4.0.ebuild | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/dev-libs/libgweather/libgweather-4.4.0.ebuild b/dev-libs/libgweather/libgweather-4.4.0.ebuild new file mode 100644 index 000000000000..ceccb46337ad --- /dev/null +++ b/dev-libs/libgweather/libgweather-4.4.0.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{10..12} ) + +inherit gnome.org gnome2-utils meson python-any-r1 vala xdg + +DESCRIPTION="Location and timezone database and weather-lookup library" +HOMEPAGE="https://wiki.gnome.org/Projects/LibGWeather" + +LICENSE="GPL-2+" +SLOT="4/4-0" # subslot = 4-(libgweather-4 soname suffix) + +IUSE="gtk-doc +introspection test +vala" +RESTRICT="!test? ( test )" +REQUIRED_USE=" + vala? ( introspection ) + gtk-doc? ( introspection ) +" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-libs/glib-2.68.0:2 + >=net-libs/libsoup-2.99.2:3.0 + sci-geosciences/geocode-glib:2 + >=dev-libs/libxml2-2.6.0:2 + dev-libs/json-glib + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + gtk-doc? ( >=dev-util/gi-docgen-2021.6 ) + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + ${PYTHON_DEPS} + $(python_gen_any_dep 'dev-python/pygobject[${PYTHON_USEDEP}]') + vala? ( $(vala_depend) ) +" + +python_check_deps() { + python_has_version -b "dev-python/pygobject[${PYTHON_USEDEP}]" +} + +pkg_setup() { + python-any-r1_pkg_setup +} + +src_prepare() { + default + gnome2_environment_reset + use vala && vala_setup + # The metar test requires network access + if has network-sandbox ${FEATURES}; then + sed -i -e '/metar/d' libgweather/tests/meson.build || die + fi +} + +src_configure() { + local emesonargs=( + $(meson_use vala enable_vala) + $(meson_use gtk-doc gtk_doc) + $(meson_use introspection) + $(meson_use test tests) + -Dsoup2=false + ) + meson_src_configure +} + +src_install() { + meson_src_install + if use gtk-doc; then + mkdir -p "${ED}"/usr/share/gtk-doc/ || die + mv "${ED}"/usr/share/doc/libgweather-4.0 "${ED}"/usr/share/gtk-doc/ || die + fi +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |