Gentoo Archives: gentoo-commits

From: Sobhan Mohammadpour <sobhan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: sci-geosciences/geocode-glib/
Date: Thu, 11 Oct 2018 17:48:39
Message-Id: 1539279972.e160b858128ff11f3c2c3e6908d56f4e8550531a.sobhan@gentoo
1 commit: e160b858128ff11f3c2c3e6908d56f4e8550531a
2 Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 11 17:46:12 2018 +0000
4 Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 11 17:46:12 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=e160b858
7
8 sci-geosciences/geocode-glib: start using meson
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.11
11 Manifest-Sign-Key: 0x7DF238CF0AA182E1
12
13 ...de-glib-3.26.0.ebuild => geocode-glib-3.26.0-r1.ebuild} | 14 ++++++++------
14 1 file changed, 8 insertions(+), 6 deletions(-)
15
16 diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.26.0.ebuild b/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
17 similarity index 80%
18 rename from sci-geosciences/geocode-glib/geocode-glib-3.26.0.ebuild
19 rename to sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
20 index 8f26c11b..192e56f0 100644
21 --- a/sci-geosciences/geocode-glib/geocode-glib-3.26.0.ebuild
22 +++ b/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
23 @@ -1,8 +1,8 @@
24 -# Copyright 1999-2018 Gentoo Foundation
25 +# Copyright 1999-2018 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=6
29 -inherit gnome-meson
30 +inherit meson gnome.org
31
32 DESCRIPTION="GLib geocoding library that uses the Yahoo! Place Finder service"
33 HOMEPAGE="https://git.gnome.org/browse/geocode-glib"
34 @@ -31,10 +31,12 @@ DEPEND="${RDEPEND}
35 RESTRICT="test"
36
37 src_configure() {
38 - gnome-meson_src_configure \
39 - $(meson_use test enable-installed-tests) \
40 - $(meson_use introspection enable-introspection) \
41 - -Denable-gtk-doc=false
42 + local emesonargs=(
43 + $(meson_use test enable-installed-tests)
44 + $(meson_use introspection enable-introspection)
45 + "-Denable-gtk-doc=true"
46 + )
47 + meson_src_configure
48 }
49
50 src_test() {