forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gnome-extra/gnome-weather: bump to 3.34.2
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp <[email protected]>
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST gnome-weather-3.32.2.tar.xz 5952300 BLAKE2B 536cac87066eb714bba15db0e662d9e9a0260caf67f3b9d7f2c8677deb3dc514d50768754bab46db1df9dc11367d1cf07690888b93031804d7a37a3898a1a689 SHA512 22f2de0f6d4355a44fef332d47a49b995d647d3d8d10c06a77c182d0efd6ea33f62e055f047a665710024ba02c90912ffefe67c8b299da6bb47d899d1d7a3825 | ||
DIST gnome-weather-3.34.0.tar.xz 5954936 BLAKE2B 66d96af1a9e6c38bddf93ff56855bdaa2a260d0fe354ba2da4ce9377ede78dd4bf8ddf227249414a011734414dddaefa48bf0d7f7a5532303686679f788c792f SHA512 f8fd91deef1516b4a18a599415d54a04413a5771916a5c7105e22876e239fe22c325f2e3196f7bff23293893c85fe886fa3a8b4b380aecab62b5b02de58c7185 | ||
DIST gnome-weather-3.34.1.tar.xz 5957784 BLAKE2B c36543c6235156e92f96d509fee2a3229cde1a2a6e0b7e6b27a33dbe6f19f336b754e4ccc2f5c5f9720b106eae47f0e763b0697b8817178a3e341ea815264381 SHA512 01fba7c79c2ebfebfc33f7d6f7d7b9b17ed3a55aacdf96d3dfddc9c446ab6ca125602ccf9b896c949d46291fb3688165fab4272d41092f303ca604068e817ca7 | ||
DIST gnome-weather-3.34.2.tar.xz 5957924 BLAKE2B d6257fb7654862f5fbd308bc202ce8b8f98a0b6baa5a150a1729962fa05812a93cd19f9462d83fec3d076b896be1d8166e360811c84bc3ab4f13b212b48884e5 SHA512 9e9ebbdf795b175f7640ad684da7642a3e6a07da4d95c520a8673f0001aac119c5ebe22737d254a75b878f503910265fa0fdf05b1c219063f6b4dfc6bc8d1633 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
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 ~x86" | ||
|
||
DEPEND=" | ||
>=dev-libs/glib-2.32:2 | ||
>=dev-libs/gobject-introspection-1.56:= | ||
>=x11-libs/gtk+-3.20:3 | ||
>=dev-libs/gjs-1.50 | ||
>=app-misc/geoclue-2.3.1:2.0 | ||
>=dev-libs/libgweather-3.28:= | ||
" | ||
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 | ||
} |