diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-07-13 22:35:46 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-07-13 22:35:46 +0100 |
commit | 8ce848c64d3448ee47c467c71f2e96b3db1326cb (patch) | |
tree | 35924539a3d0f1ed2e510d72c84833f917b2b9aa /gnome-extra/gnome-weather | |
parent | 029406219cf68e9f24d577a5d1b199081c951954 (diff) |
gentoo auto-resync : 13:07:2023 - 22:35:45
Diffstat (limited to 'gnome-extra/gnome-weather')
-rw-r--r-- | gnome-extra/gnome-weather/Manifest | 2 | ||||
-rw-r--r-- | gnome-extra/gnome-weather/gnome-weather-45_alpha.ebuild | 53 |
2 files changed, 55 insertions, 0 deletions
diff --git a/gnome-extra/gnome-weather/Manifest b/gnome-extra/gnome-weather/Manifest index cfb66722606a..a0f33240dc0b 100644 --- a/gnome-extra/gnome-weather/Manifest +++ b/gnome-extra/gnome-weather/Manifest @@ -1,3 +1,5 @@ DIST gnome-weather-44.0.tar.xz 236152 BLAKE2B 40ff3e2d3339fbab0da3629c95e843ad3a304c76aadc6f7772ae7fd38337dc7c3aad1e90cfee1a513b770788a223838b741728d6307b815fa50453f9d355c903 SHA512 56f4eb716793c047b438c6f5839bc60bae478b6f407bf067c4df51be35a96b31d9d98b33faf7f6e52606b22827f0da72289558da89c2746ee6e2fad6d3332e05 +DIST gnome-weather-45.alpha.tar.xz 236168 BLAKE2B a36c36171c7b28db9cb4f41299d334278a8526486a183f423d811ec154a85bc64964714cf1ed2552f6823240dd0b133d2b4a7cc38df006cf97e057f2eb081da5 SHA512 9d1f9397dbab5b2914088808a1e6730557732648b6d60245e9afddfa44c029bc19b35d852dd122aee5ff550f19311915bfee7afe100374d492b007c9d78c7d8c EBUILD gnome-weather-44.0.ebuild 1382 BLAKE2B 6d2d151dcca08723dbc82e78d1a78de8d9ede8e2e9ec806c9aebd3194114428a6361ffbf58104776d47252827b639ac88fe15e42fffdc8f9d26d934080b9e856 SHA512 990b8a7a335a154310fc29e02136087a7078b1bb0904e2d8f4b91617e809f163f7c0db20ff6f58e206a791a14df16af9c9278ea7715fe1567bc18df0e7c62dea +EBUILD gnome-weather-45_alpha.ebuild 1389 BLAKE2B ecf761d29294a2359b7f39c1ff5083c711e361c32e769cc3a5558c473ea94cd0ccad125e8a7c1fd53faf34766d2f4b9b6cd37f681e04762fba8024223f5e5159 SHA512 3934d8f1af6fb310b150601fef49bc03edd9c53ab3f2d1d262bcf929fab15816a4d57e03293f3937d399a9631baa2f1110b86a268ce8ba4bfc9cb9dc23274cbd MISC metadata.xml 354 BLAKE2B dcbc0869b8b8ca66a0363e8a1bc751252e37e9938aaa787a63cdf2d02c425c1fa62038d7140f8f1eaef708b9ddcb8bd47dfd6046c0f7261c4d8a53b56cd2d56b SHA512 b9bf0473c6f2085f429ad2dfe8b265bbf07d393c47bc0764d8205e5adf7bd6f4f349c148438126b7fe3c0d60521d28f05ccb82e1f0ec89e93f0a0cd25ea62d40 diff --git a/gnome-extra/gnome-weather/gnome-weather-45_alpha.ebuild b/gnome-extra/gnome-weather/gnome-weather-45_alpha.ebuild new file mode 100644 index 000000000000..96d3c2948e58 --- /dev/null +++ b/gnome-extra/gnome-weather/gnome-weather-45_alpha.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="A weather application for GNOME" +HOMEPAGE="https://wiki.gnome.org/Design/Apps/Weather" + +LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +DEPEND=" + >=dev-libs/glib-2.32:2 + >=dev-libs/gobject-introspection-1.56:= + >=gui-libs/gtk-4.5:4 + >=dev-libs/gjs-1.71.0 + >=app-misc/geoclue-2.3.1:2.0 + >=gui-libs/libadwaita-1.4_alpha:1= + >=dev-libs/libgweather-3.90.0:4= +" +RDEPEND="${DEPEND} + gnome-base/gsettings-desktop-schemas +" +# libxml2 required for glib-compile-resources +BDEPEND=" + dev-libs/appstream-glib + dev-libs/libxml2:2 + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +# Tests have a lot of issues, starting with reliance on a system installation, +# accessing the network and other intermittent failures with network-sandbox disabled +# https://gitlab.gnome.org/GNOME/gnome-weather/issues/67 (and rest not filed) +# test dep: $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') +# With 3.34, this is now behind a dogtail option we can pass (and have data validation) + +src_configure() { + meson_src_configure -Dprofile=default -Ddogtail=false +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |