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: app-misc/geoclue/
Date: Sat,  9 Jan 2021 20:05:25 +0000 (UTC)	[thread overview]
Message-ID: <1610222699.8214b0ef1b5376343635e77a8bc7ee891f9e8305.mattst88@gentoo> (raw)

commit:     8214b0ef1b5376343635e77a8bc7ee891f9e8305
Author:     David Michael <fedora.dm0 <AT> gmail <DOT> com>
AuthorDate: Sat Dec 26 02:17:02 2020 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Jan  9 20:04:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8214b0ef

app-misc/geoclue: Version bump to 2.5.7

Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 app-misc/geoclue/Manifest             |  1 +
 app-misc/geoclue/geoclue-2.5.7.ebuild | 68 +++++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+)

diff --git a/app-misc/geoclue/Manifest b/app-misc/geoclue/Manifest
index a488e78f4aa..fe2eb782424 100644
--- a/app-misc/geoclue/Manifest
+++ b/app-misc/geoclue/Manifest
@@ -1,2 +1,3 @@
 DIST geoclue-2.4.13.tar.bz2 108691 BLAKE2B 5ffc2aca51ad0943931c526da69225e3a0d9b0c850ea688a350c47696b83775dc078e928af8cb0996741386a41ab5ec1ac129676d7e3b4c8584b3720dd370c1e SHA512 ed9c295bbdc22836a548ca4d5014d109af214464d1dd2a00f1ec493a751d949930d9fa512e915c7d65b34c8706c3bf73e06dd5e170846edee9e764d144960e78
 DIST geoclue-2.5.3.tar.bz2 85084 BLAKE2B 3f61c16dcb4d0de95499865d83df4bd9b393d9d2f204b70029fb753666caab0e74468ae14f37ed78475d623caae9553e0e69b62765afebc6730212428d377aff SHA512 b4188f1b055f84ce0c58e497896a328d09838073b867598a0ca026c741e4464ae7ee54e53e9f02addd818152dce4a21eb5f83a3245e7ce1a93eec5671d0a9ee9
+DIST geoclue-2.5.7.tar.bz2 85764 BLAKE2B bf0a6e312b7a303ed2cfc33f02cfad0e68e44f60899a327c9eba12f4967d2a3a5922a475f8fefb6f47da328c92dc75706504b41bc2dcd21db3fc5da7c2a50180 SHA512 16ec15afa41910b7d993a9918dd3c068dea3f6c5be922b7ac772493cd6aabb0cad3fe2206b82c1a008781c3f1ddd8f4afd8f70b5d497920bea8ed5e473f0fd1f

diff --git a/app-misc/geoclue/geoclue-2.5.7.ebuild b/app-misc/geoclue/geoclue-2.5.7.ebuild
new file mode 100644
index 00000000000..aa3184b5e50
--- /dev/null
+++ b/app-misc/geoclue/geoclue-2.5.7.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VALA_USE_DEPEND="vapigen"
+
+inherit meson systemd vala xdg
+
+DESCRIPTION="A location information D-Bus service"
+HOMEPAGE="https://gitlab.freedesktop.org/geoclue/geoclue/wikis/home"
+SRC_URI="https://gitlab.freedesktop.org/geoclue/${PN}/-/archive/${PV}/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1+ GPL-2+"
+SLOT="2.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+introspection gtk-doc modemmanager vala zeroconf"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+	>=dev-libs/glib-2.44:2
+	>=dev-libs/json-glib-0.14.0
+	>=net-libs/libsoup-2.42.0:2.4
+	introspection? ( >=dev-libs/gobject-introspection-1.54:= )
+	modemmanager? ( >=net-misc/modemmanager-1.6 )
+	zeroconf? ( >=net-dns/avahi-0.6.10[dbus] )
+	x11-libs/libnotify
+"
+RDEPEND="${DEPEND}
+	acct-user/geoclue
+	sys-apps/dbus
+"
+BDEPEND="
+	dev-util/gdbus-codegen
+	dev-util/glib-utils
+	gtk-doc? (
+		app-text/docbook-xml-dtd:4.1.2
+		>=dev-util/gtk-doc-1 )
+	>=sys-devel/gettext-0.19.8
+	virtual/pkgconfig
+	vala? ( $(vala_depend) )
+"
+
+PATCHES=(
+	"${FILESDIR}"/2.5.3-optional-vapi.patch
+)
+
+src_prepare() {
+	xdg_src_prepare
+	use vala && vala_src_prepare
+}
+
+src_configure() {
+	local emesonargs=(
+		-Dlibgeoclue=true
+		$(meson_use introspection)
+		$(meson_use vala vapi)
+		$(meson_use gtk-doc)
+		$(meson_use modemmanager 3g-source)
+		$(meson_use modemmanager cdma-source)
+		$(meson_use modemmanager modem-gps-source)
+		$(meson_use zeroconf nmea-source)
+		-Denable-backend=true
+		-Ddemo-agent=true
+		-Dsystemd-system-unit-dir="$(systemd_get_systemunitdir)"
+		-Ddbus-srv-user=geoclue
+	)
+	meson_src_configure
+}


             reply	other threads:[~2021-01-09 20:05 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-09 20:05 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-08 20:19 [gentoo-commits] repo/gentoo:master commit in: app-misc/geoclue/ Pacho Ramos
2024-10-07  2:52 Sam James
2024-06-11 17:02 Andreas Sturmlechner
2024-03-13 22:54 Mart Raudsepp
2024-03-12 21:50 Arthur Zamarin
2024-03-12 21:49 Arthur Zamarin
2024-02-22 20:47 Arthur Zamarin
2024-02-22 20:47 Arthur Zamarin
2024-02-10 18:53 Arthur Zamarin
2023-09-13 14:57 Matt Turner
2023-04-01 19:01 Arthur Zamarin
2023-03-31 12:04 Arthur Zamarin
2023-01-28 22:30 Matt Turner
2023-01-28 22:30 Matt Turner
2022-11-01  5:22 WANG Xuerui
2022-10-29 22:33 Matt Turner
2022-07-21  0:13 Sam James
2022-07-18 17:44 Sam James
2022-05-10 20:00 Matt Turner
2022-04-18 19:15 Alexey Shvetsov
2021-05-27 14:34 Yixun Lan
2021-04-18 14:39 Matt Turner
2019-09-13 18:24 Mikle Kolyada
2019-08-13 11:19 Agostino Sarubbo
2019-08-13 10:58 Agostino Sarubbo
2019-08-09  7:10 Agostino Sarubbo
2019-08-08 19:15 Aaron Bauman
2019-07-07 17:36 Mart Raudsepp
2019-05-21  3:17 Aaron Bauman
2019-04-26 17:51 Anthony G. Basile
2019-02-11 23:36 Sergei Trofimovich
2019-01-20 19:08 Dennis Lamm
2019-01-09 13:30 Mikle Kolyada
2018-11-24 23:15 Mart Raudsepp
2018-11-24 20:02 Mart Raudsepp
2018-11-24 14:47 Mart Raudsepp
2018-11-24 14:47 Mart Raudsepp
2018-06-05 10:19 Mart Raudsepp
2018-06-05  5:45 Jeroen Roovers
2018-04-26 22:32 Aaron Bauman
2018-04-13 15:55 Mart Raudsepp
2017-12-23 10:58 Gilles Dartiguelongue
2017-09-25 16:36 Mart Raudsepp
2017-09-23 21:13 Thomas Deutschmann
2017-07-15 11:04 Tobias Klausmann
2017-07-01 15:24 Alexis Ballier
2017-06-30 13:16 Patrice Clement
2017-06-21  9:44 Alexis Ballier
2017-01-22 16:03 Pacho Ramos
2016-11-12 10:30 Gilles Dartiguelongue
2016-09-11 11:28 Gilles Dartiguelongue
2016-08-18  9:07 Pacho Ramos
2015-11-14 15:27 Pacho Ramos
2015-11-14 15:27 Pacho Ramos

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=1610222699.8214b0ef1b5376343635e77a8bc7ee891f9e8305.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