diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-10-14 00:44:08 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-10-14 10:29:05 -0400 |
commit | 51d3c42c4d5e9666762392b1ec61bdb50de3d41e (patch) | |
tree | 0dc1a4d3239a1a40a7587fc7b5089d40f7de29a5 /sci-geosciences/geocode-glib | |
parent | net-wireless/gnome-bluetooth: Drop old versions (diff) | |
download | gentoo-51d3c42c4d5e9666762392b1ec61bdb50de3d41e.tar.gz gentoo-51d3c42c4d5e9666762392b1ec61bdb50de3d41e.tar.bz2 gentoo-51d3c42c4d5e9666762392b1ec61bdb50de3d41e.zip |
sci-geosciences/geocode-glib: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'sci-geosciences/geocode-glib')
3 files changed, 0 insertions, 89 deletions
diff --git a/sci-geosciences/geocode-glib/Manifest b/sci-geosciences/geocode-glib/Manifest index ee02f262716b..1fb2ce520239 100644 --- a/sci-geosciences/geocode-glib/Manifest +++ b/sci-geosciences/geocode-glib/Manifest @@ -1,2 +1 @@ -DIST geocode-glib-3.26.3.tar.xz 75148 BLAKE2B 8eba0cb40511a724cddcab659fe0720b0c0534d811c83f8a90d21b9153af242de2a69b2c882b3eb3008ac128d1631a2ac7692c5e000284579aade987334f6cce SHA512 42313b1da24f5256ad73bd4be366d6bacf35256acc098e4865bbff58e92c5b78f4a2537e4787c6387190f10a2be2a72bc1507f7cb436e096e772195cf30fca7c DIST geocode-glib-3.26.4.tar.xz 75352 BLAKE2B be783328b2372e1647c3fd6debadaf8313688fe1c993cbc1e084cd9ad8ba8fec0b142a0f579f63085684ef8fafc6e7ec6f54441a085d25d9d5f2eed31a893d1b SHA512 998c2f02a8d3d34a8b6a4b031da2e7c28df27014bcf58f3374fbc0c829fff6257c2622fd9bf331e05b85fbc761c64554fb77ce2d986e0f8b59b17aa486f9f609 diff --git a/sci-geosciences/geocode-glib/files/3.26.3-tests-Fix-locale-in-pi-test.patch b/sci-geosciences/geocode-glib/files/3.26.3-tests-Fix-locale-in-pi-test.patch deleted file mode 100644 index 5df7814383c0..000000000000 --- a/sci-geosciences/geocode-glib/files/3.26.3-tests-Fix-locale-in-pi-test.patch +++ /dev/null @@ -1,43 +0,0 @@ -From c9bbf13d76600492565fa042638b48cb737e492d Mon Sep 17 00:00:00 2001 -From: Bastien Nocera <hadess@hadess.net> -Date: Sat, 2 Jul 2022 10:11:10 +0200 -Subject: [PATCH] tests: Fix locale in "pi" test - -The test expects the locale to be en_GB.UTF-8, so set it as such. - -Closes: #27 ---- - geocode-glib/tests/geocode-glib.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -diff --git a/geocode-glib/tests/geocode-glib.c b/geocode-glib/tests/geocode-glib.c -index f74d031..ef20716 100644 ---- a/geocode-glib/tests/geocode-glib.c -+++ b/geocode-glib/tests/geocode-glib.c -@@ -410,10 +410,14 @@ test_pi (void) - { - g_autoptr (GHashTable) params = NULL; - GeocodeForward *object; -+ g_autofree char *old_locale = NULL; - GError *error = NULL; - GList *res; - GeocodePlace *place; - -+ old_locale = g_strdup (setlocale(LC_ALL, NULL)); -+ setlocale (LC_ALL, "en_GB.UTF-8"); -+ - /* The query parameters the mock server expects to receive. */ - params = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, NULL); - add_attr_string (params, "q", "Jack Cole Building, St Andrews"); -@@ -439,6 +443,8 @@ test_pi (void) - g_assert_cmpstr (geocode_place_get_street_address (place), ==, "North Haugh π"); - g_object_unref (place); - g_list_free (res); -+ -+ setlocale (LC_ALL, old_locale); - } - - static void --- -2.35.1 - diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.26.3.ebuild b/sci-geosciences/geocode-glib/geocode-glib-3.26.3.ebuild deleted file mode 100644 index c227364da6da..000000000000 --- a/sci-geosciences/geocode-glib/geocode-glib-3.26.3.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit gnome.org meson xdg - -DESCRIPTION="GLib helper library for geocoding services" -HOMEPAGE="https://gitlab.gnome.org/GNOME/geocode-glib" - -LICENSE="LGPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86" -IUSE="gtk-doc +introspection test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/glib-2.44:2 - >=dev-libs/json-glib-0.99.2[introspection?] - >=net-libs/libsoup-2.42:2.4[introspection?] - introspection? ( >=dev-libs/gobject-introspection-1.54:= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-util/glib-utils - gtk-doc? ( - >=dev-util/gtk-doc-1.13 - app-text/docbook-xml-dtd:4.3 - ) - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PV}-tests-Fix-locale-in-pi-test.patch -) - -src_configure() { - local emesonargs=( - -Denable-installed-tests=false - $(meson_use introspection enable-introspection) - $(meson_use gtk-doc enable-gtk-doc) - -Dsoup2=true - ) - meson_src_configure -} |