geoclue2: 2.5.1 -> 2.5.2

https://gitlab.freedesktop.org/geoclue/geoclue/blob/2.5.2/NEWS
This commit is contained in:
worldofpeace 2019-03-01 21:53:43 -05:00
parent b5df81f1a1
commit 47b939d659
2 changed files with 38 additions and 21 deletions

View File

@ -1,52 +1,69 @@
diff --git a/data/meson.build b/data/meson.build
index f826864..8b8a25e 100644
--- a/data/meson.build --- a/data/meson.build
+++ b/data/meson.build +++ b/data/meson.build
@@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@ if get_option('enable-backend')
conf.set('demo_agent', '') conf.set('demo_agent', '')
endif endif
- conf_dir = join_paths(get_option('sysconfdir'), 'geoclue') - conf_dir = join_paths(sysconfdir, 'geoclue')
+ conf_dir = join_paths(sysconfdir_install, 'geoclue') + conf_dir = join_paths(sysconfdir_install, 'geoclue')
configure_file(output: 'geoclue.conf', configure_file(output: 'geoclue.conf',
input: 'geoclue.conf.in', input: 'geoclue.conf.in',
configuration: conf, configuration: conf,
@@ -26,7 +26,7 @@ @@ -26,7 +26,7 @@ if get_option('enable-backend')
# DBus Service policy file # DBus Service policy file
dbus_service_dir = get_option('dbus-sys-dir') dbus_service_dir = get_option('dbus-sys-dir')
if dbus_service_dir == '' if dbus_service_dir == ''
- dbus_service_dir = join_paths(get_option('sysconfdir'), 'dbus-1', 'system.d') - dbus_service_dir = join_paths(sysconfdir, 'dbus-1', 'system.d')
+ dbus_service_dir = join_paths(sysconfdir_install, 'dbus-1', 'system.d') + dbus_service_dir = join_paths(sysconfdir_install, 'dbus-1', 'system.d')
endif endif
configure_file(output: 'org.freedesktop.GeoClue2.conf', configure_file(output: 'org.freedesktop.GeoClue2.conf',
input: 'org.freedesktop.GeoClue2.conf.in', input: 'org.freedesktop.GeoClue2.conf.in',
diff --git a/demo/meson.build b/demo/meson.build
index 99c094f..a29ca96 100644
--- a/demo/meson.build --- a/demo/meson.build
+++ b/demo/meson.build +++ b/demo/meson.build
@@ -56,8 +56,7 @@ @@ -56,7 +56,7 @@ if get_option('demo-agent')
install_dir: desktop_dir) install_dir: desktop_dir)
# Also install in the autostart directory. # Also install in the autostart directory.
- autostart_dir = join_paths(get_option('prefix'), - autostart_dir = join_paths(sysconfdir, 'xdg', 'autostart')
- get_option('sysconfdir'), + autostart_dir = join_paths(sysconfdir_install, 'xdg', 'autostart')
+ autostart_dir = join_paths(sysconfdir_install,
'xdg', 'autostart')
meson.add_install_script('install-file.py', meson.add_install_script('install-file.py',
desktop_file.full_path(), desktop_file.full_path(),
autostart_dir)
diff --git a/meson.build b/meson.build
index d738ef6..c794a1d 100644
--- a/meson.build --- a/meson.build
+++ b/meson.build +++ b/meson.build
@@ -22,6 +22,11 @@ @@ -12,7 +12,11 @@ gclue_api_version='2.0'
datadir = join_paths(get_option('prefix'), get_option('datadir')) datadir = join_paths(get_option('prefix'), get_option('datadir'))
conf.set_quoted('LOCALEDIR', datadir + '/locale') includedir = join_paths(get_option('prefix'), get_option('includedir'))
conf.set_quoted('SYSCONFDIR', get_option('sysconfdir')) libexecdir = join_paths(get_option('prefix'), get_option('libexecdir'))
-sysconfdir = join_paths(get_option('prefix'), get_option('sysconfdir'))
+if get_option('sysconfdir_install') != '' +if get_option('sysconfdir_install') != ''
+ sysconfdir_install = join_paths(get_option('prefix'), get_option('sysconfdir_install')) + sysconfdir_install = join_paths(get_option('prefix'), get_option('sysconfdir_install'))
+else +else
+ sysconfdir_install = get_option('sysconfdir') + sysconfdir_install = get_option('sysconfdir')
+endif +endif
localedir = join_paths(datadir, 'locale')
configure_file(output: 'config.h', configuration : conf) header_dir = 'libgeoclue-' + gclue_api_version
configinc = include_directories('.') @@ -29,7 +33,7 @@ conf.set_quoted('PACKAGE_URL', 'http://www.freedesktop.org/wiki/Software/GeoClue
conf.set_quoted('PACKAGE_BUGREPORT', 'http://bugs.freedesktop.org/enter_bug.cgi?product=GeoClue')
conf.set_quoted('TEST_SRCDIR', meson.source_root() + '/data/')
conf.set_quoted('LOCALEDIR', localedir)
-conf.set_quoted('SYSCONFDIR', sysconfdir)
+conf.set_quoted('SYSCONFDIR', get_option('sysconfdir'))
conf.set10('GCLUE_USE_3G_SOURCE', get_option('3g-source'))
conf.set10('GCLUE_USE_CDMA_SOURCE', get_option('cdma-source'))
conf.set10('GCLUE_USE_MODEM_GPS_SOURCE', get_option('modem-gps-source'))
diff --git a/meson_options.txt b/meson_options.txt
index 83bc60e..b726329 100644
--- a/meson_options.txt --- a/meson_options.txt
+++ b/meson_options.txt +++ b/meson_options.txt
@@ -34,3 +34,6 @@ @@ -34,3 +34,6 @@ option('systemd-system-unit-dir',
option('dbus-srv-user', option('dbus-srv-user',
type: 'string', value: 'root', type: 'string', value: 'root',
description: 'The user (existing) as which the service will run') description: 'The user (existing) as which the service will run')

View File

@ -6,15 +6,15 @@
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "geoclue-${version}"; pname = "geoclue";
version = "2.5.1"; version = "2.5.2";
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "gitlab.freedesktop.org"; domain = "gitlab.freedesktop.org";
owner = "geoclue"; owner = pname;
repo = "geoclue"; repo = pname;
rev = version; rev = version;
sha256 = "0vww6irijw5ss7vawkdi5z5wdpcgw4iqljn5vs3vbd4y3d0lzrbs"; sha256 = "1zk6n28q030a9v03whad928b9zwq16d30ch369qv2c0994axdr5p";
}; };
patches = [ patches = [