public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/geocode-glib/files/, sci-geosciences/geocode-glib/
Date: Fri, 14 Oct 2022 14:29:15 +0000 (UTC)	[thread overview]
Message-ID: <1665757745.51d3c42c4d5e9666762392b1ec61bdb50de3d41e.mattst88@gentoo> (raw)

commit:     51d3c42c4d5e9666762392b1ec61bdb50de3d41e
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 04:44:08 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 14:29:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51d3c42c

sci-geosciences/geocode-glib: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 sci-geosciences/geocode-glib/Manifest              |  1 -
 .../files/3.26.3-tests-Fix-locale-in-pi-test.patch | 43 ---------------------
 .../geocode-glib/geocode-glib-3.26.3.ebuild        | 45 ----------------------
 3 files changed, 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
-}


             reply	other threads:[~2022-10-14 14:29 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-14 14:29 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-03-30 13:43 [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/geocode-glib/files/, sci-geosciences/geocode-glib/ Matt Turner
2022-07-04  0:09 Matt Turner
2017-08-15 22:44 Gilles Dartiguelongue
2016-04-09 15:37 Anthony G. Basile

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1665757745.51d3c42c4d5e9666762392b1ec61bdb50de3d41e.mattst88@gentoo \
    --to=mattst88@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox