summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2017-08-15 22:51:34 +0200
committerGilles Dartiguelongue <eva@gentoo.org>2017-08-16 00:43:13 +0200
commit538398b274487b281978d04311ee0ccc1e08d73c (patch)
tree6313156331b2879551acb9f14439bf0d22f46bce /sci-geosciences/geocode-glib
parentsci-geosciences/geocode-glib: version bump 3.20.1 → 3.24.0 (diff)
downloadgentoo-538398b274487b281978d04311ee0ccc1e08d73c.tar.gz
gentoo-538398b274487b281978d04311ee0ccc1e08d73c.tar.bz2
gentoo-538398b274487b281978d04311ee0ccc1e08d73c.zip
sci-geosciences/geocode-glib: drop old revision
Package-Manager: Portage-2.3.7, Repoman-2.3.3
Diffstat (limited to 'sci-geosciences/geocode-glib')
-rw-r--r--sci-geosciences/geocode-glib/Manifest1
-rw-r--r--sci-geosciences/geocode-glib/files/geocode-glib-3.18.1-fix-GLIBC-features.patch54
-rw-r--r--sci-geosciences/geocode-glib/geocode-glib-3.18.2.ebuild53
3 files changed, 0 insertions, 108 deletions
diff --git a/sci-geosciences/geocode-glib/Manifest b/sci-geosciences/geocode-glib/Manifest
index a55d672c512b..6ffa139e906c 100644
--- a/sci-geosciences/geocode-glib/Manifest
+++ b/sci-geosciences/geocode-glib/Manifest
@@ -1,3 +1,2 @@
-DIST geocode-glib-3.18.2.tar.xz 369516 SHA256 95b11ef2697ac5dbb2f397e7117e08e157b2168624c71507656928095012494e SHA512 3ad874d9ae2c5d172dc5a2be06ae2c78293c33f5845b1d4b4eacec789beb87cc6278cde1ab6bd098a36ce6e2596a312333f0e6cfab00b5977416ad14578ff7eb WHIRLPOOL eb65633fcd7ad2d36365fe8e869e2f0057905cf58dc297e195635d334e0afcf63406553aa736381efd6ea16389a9c3ee51335cbefdf21f50f2b901c9c4c4f881
DIST geocode-glib-3.20.1.tar.xz 371200 SHA256 669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2 SHA512 0016b04928d3d7e9e3339bf1457d5ba7951af7af53b72a185f9cb3e92e9d1b1deb7ca11f95de1bcb0a3521a5b200ce3c25bb35eaf8bf15b81672846ec01b718f WHIRLPOOL 5aab167244191ac29489fee4f7b68cd7c41a820d4ad127fd6412f8adbf00b7dfba03a1d372ac064054429d9442d5178314597b93ada19c0c1e66bd6f4781736b
DIST geocode-glib-3.24.0.tar.xz 413536 SHA256 19c1fef4fd89eb4bfe6decca45ac45a2eca9bb7933be560ce6c172194840c35e SHA512 0e3910e99d164fdf5afd6befbcb7139a56779834fb1f2a318951c03e5196a31c4dafd7f88c37c7014377f15cd4d4b81e7080a440881e2c50aadaadf621abe3b6 WHIRLPOOL 23e19aa31ccbc0196d890e71c76d45c6b2d585a7a635d146a9e50a655a7c108562a641b242637ba5279c7d6bb5b362e8ad3c1f3e3e760b88cdde3604339b7097
diff --git a/sci-geosciences/geocode-glib/files/geocode-glib-3.18.1-fix-GLIBC-features.patch b/sci-geosciences/geocode-glib/files/geocode-glib-3.18.1-fix-GLIBC-features.patch
deleted file mode 100644
index 23b14430c9b8..000000000000
--- a/sci-geosciences/geocode-glib/files/geocode-glib-3.18.1-fix-GLIBC-features.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 3ce317a218c255b8a8025f8f2a6010ce500dc0ee Mon Sep 17 00:00:00 2001
-From: "Anthony G. Basile" <blueness@gentoo.org>
-Date: Tue, 22 Mar 2016 09:48:00 +0000
-Subject: [PATCH] Use __UCLIBC__ when checking for GLIBC features
-
-Commit f0f85d8d introduces __GLIBC__ to check for glibc only features.
-However this is not sufficient for uClibc because it shares code with
-glibc. To select for features in glibc but not uClibc, we need
-defined(__GLIBC__) && !defined(__UCLIBC__).
-
-https://bugzilla.gnome.org/show_bug.cgi?id=764021
----
- geocode-glib/geocode-glib.c | 4 ++--
- geocode-glib/test-gcglib.c | 2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/geocode-glib/geocode-glib.c b/geocode-glib/geocode-glib.c
-index 4e3b3fd..6215fd1 100644
---- a/geocode-glib/geocode-glib.c
-+++ b/geocode-glib/geocode-glib.c
-@@ -213,7 +213,7 @@ _geocode_object_get_lang (void)
- return geocode_object_get_lang_for_locale (setlocale (LC_MESSAGES, NULL));
- }
-
--#ifdef __GLIBC__
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- static gpointer
- is_number_after_street (gpointer data)
- {
-@@ -246,7 +246,7 @@ is_number_after_street (gpointer data)
- gboolean
- _geocode_object_is_number_after_street (void)
- {
--#ifndef __GLIBC__
-+#if !defined(__GLIBC__) || defined(__UCLIBC__)
- return FALSE;
- #else
- static GOnce once = G_ONCE_INIT;
-diff --git a/geocode-glib/test-gcglib.c b/geocode-glib/test-gcglib.c
-index a23a3c3..9d7194d 100644
---- a/geocode-glib/test-gcglib.c
-+++ b/geocode-glib/test-gcglib.c
-@@ -395,7 +395,7 @@ test_distance (void)
- static void
- test_locale_format (void)
- {
--#ifdef __GLIBC__
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- GeocodeForward *object;
- GError *error = NULL;
- GList *res;
---
-2.7.3
-
diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.18.2.ebuild b/sci-geosciences/geocode-glib/geocode-glib-3.18.2.ebuild
deleted file mode 100644
index 4ab5a682fe11..000000000000
--- a/sci-geosciences/geocode-glib/geocode-glib-3.18.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-GCONF_DEBUG="no" # --enable-debug does not do anything useful
-
-inherit gnome2
-
-DESCRIPTION="GLib geocoding library that uses the Yahoo! Place Finder service"
-HOMEPAGE="https://git.gnome.org/browse/geocode-glib"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="+introspection test"
-
-RDEPEND="
- >=dev-libs/glib-2.34:2
- >=dev-libs/json-glib-0.99.2[introspection?]
- gnome-base/gvfs[http]
- >=net-libs/libsoup-2.42:2.4[introspection?]
- introspection? (
- >=dev-libs/gobject-introspection-0.6.3:=
- net-libs/libsoup:2.4[introspection] )
-"
-DEPEND="${RDEPEND}
- >=dev-util/gtk-doc-am-1.13
- >=sys-devel/gettext-0.18
- virtual/pkgconfig
- test? ( sys-apps/dbus )
-"
-# eautoreconf requires:
-# dev-libs/gobject-introspection-common
-# gnome-base/gnome-common
-
-# FIXME: need network #424719, recheck
-# need various locales to be present
-RESTRICT="test"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-3.18.1-fix-GLIBC-features.patch
-}
-
-src_configure() {
- gnome2_src_configure $(use_enable introspection)
-}
-
-src_test() {
- export GVFS_DISABLE_FUSE=1
- export GIO_USE_VFS=gvfs
- ewarn "Tests require network access to http://where.yahooapis.com"
- dbus-launch emake check || die "tests failed"
-}