From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f65.google.com (mail-wm0-f65.google.com [74.125.82.65]) by mail.openembedded.org (Postfix) with ESMTP id C31AF731FA for ; Wed, 7 Sep 2016 15:02:34 +0000 (UTC) Received: by mail-wm0-f65.google.com with SMTP id j136so1675313wmj.0 for ; Wed, 07 Sep 2016 08:02:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=/hinqNDhqHR5ljDYpS6VeuTUEsRYG/UnscNmiF7v3Rs=; b=ZOnv2DKELcZ66iTtsvhe8ZoV0H31oDa2eMZT22SngqXIycZFIt1niugx2V349PkbcR QynqRdZqY1g1kQuha1Ypk62e/OoBeXn5uapITStU7IKe4x8i6g3GyFgnF7fofPuWHc6U 5OYbgWlXk1WR+DZX9ui7q4tB5TDefHuYbPurDHiczx0oOb/vuWQaQkEnIt4tLpeIM69d wlalI+KcwmRE+ToA6oPO26M0q3Ws44YZJblOhhuRmZLzgBi0OVPtfa2ks38kZu7D/jmM E+LsmYk+oyVX7du2KFBhEF3XonVnTF8QSUuYXXwsod4CXoUVUM3iGsUnWdZDsqxuYkkG qXiA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=/hinqNDhqHR5ljDYpS6VeuTUEsRYG/UnscNmiF7v3Rs=; b=OJuGz0ckH1HpApXqAnkzpNzb1cAUNnZK1Z4NJ1KUjK+HGCYLJgIjLx+RQLSRpeqdMi R46vYtGLe87FhoaiWiXd7wFTqUzn6AX3uce8yW+Wxct8fTAnmGYQNDV9e0EKLRois/U2 7JdYpuR8mtKmghfh8c/bUDYPAiawJY/J68so3RGcz24hT7bJNxSMkQt8mZa+quh7ton3 2ywE6WSZaGutbOLzs/I/0l2TLE1MhbQ+ctimCH0voKYlsl8DuFSgQpHpDfyZ+nH5OogE hzQL631iweuOXQnZrtDKndd4XmJFjkur1m9jcBkLFs3kD9+4/gNhUJkz76JFheRDu1i9 ZoRg== X-Gm-Message-State: AE9vXwNxkgODwYMywJOshjJNvwG/JoB8VC4zX0Z43xShlZbretsjxKW0GmoQCCvUqI58tw== X-Received: by 10.194.119.100 with SMTP id kt4mr30409647wjb.122.1473260554445; Wed, 07 Sep 2016 08:02:34 -0700 (PDT) Received: from zeelaptop.office.pelagicore.net ([83.218.80.242]) by smtp.gmail.com with ESMTPSA id j1sm36045576wju.9.2016.09.07.08.02.33 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 07 Sep 2016 08:02:33 -0700 (PDT) From: Zeeshan Ali To: openembedded-devel@lists.openembedded.org Date: Wed, 7 Sep 2016 17:02:30 +0200 Message-Id: <1473260550-22766-1-git-send-email-zeenix@gmail.com> X-Mailer: git-send-email 2.7.4 Subject: [meta-oe][PATCH] Update Geoclue2 X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Sep 2016 15:02:35 -0000 From: Zeeshan Ali Also drop redundant and now unusable patch. --- .../geoclue/files/soup-session-fix.patch | 30 -------------- .../recipes-navigation/geoclue/geoclue_2.0.0.bb | 33 --------------- .../recipes-navigation/geoclue/geoclue_2.4.4.bb | 47 ++++++++++++++++++++++ 3 files changed, 47 insertions(+), 63 deletions(-) delete mode 100644 meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch delete mode 100644 meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb create mode 100644 meta-oe/recipes-navigation/geoclue/geoclue_2.4.4.bb diff --git a/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch b/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch deleted file mode 100644 index 70fe3f5..0000000 --- a/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch +++ /dev/null @@ -1,30 +0,0 @@ -Upstream-Status: Upstream-Status: Inappropriate [poky 9.0 has older libsoup] - -Signed-off-by: Felipe F. Tonello - -diff --git a/src/gclue-ipclient.c b/src/gclue-ipclient.c -index 09add30..1771d5c 100644 ---- a/src/gclue-ipclient.c -+++ b/src/gclue-ipclient.c -@@ -83,7 +83,7 @@ gclue_ipclient_init (GClueIpclient *ipclient) - { - ipclient->priv = G_TYPE_INSTANCE_GET_PRIVATE ((ipclient), GCLUE_TYPE_IPCLIENT, GClueIpclientPrivate); - -- ipclient->priv->soup_session = soup_session_new (); -+ ipclient->priv->soup_session = soup_session_sync_new (); - } - - /** -diff --git a/src/geoip-server/geoip-update.c b/src/geoip-server/geoip-update.c -index 6cce7b2..ef672ba 100644 ---- a/src/geoip-server/geoip-update.c -+++ b/src/geoip-server/geoip-update.c -@@ -214,7 +214,7 @@ main (int argc, char **argv) - path = GEOIP_DATABASE_PATH; - } - -- session = soup_session_new (); -+ session = soup_session_sync_new (); - - for (i = 0; i < G_N_ELEMENTS (db_info_map); i++) { - SoupMessage *msg = NULL; diff --git a/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb b/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb deleted file mode 100644 index 90e8533..0000000 --- a/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb +++ /dev/null @@ -1,33 +0,0 @@ -SUMMARY = "The Geolocation Service" -DESCRIPTION = "Geoclue is a D-Bus service that provides location information. \ -The primary goal of the Geoclue project is to make creating location-aware applications \ -as simple as possible, while the secondary goal is to ensure that no application \ -can access location information without explicit permission from user." -LICENSE = "GPLv2.0+" -SECTION = "console/network" - -LIC_FILES_CHKSUM = "file://COPYING;md5=8114b83a0435d8136b47bd70111ce5cd" - -DEPENDS = "glib-2.0 dbus dbus-glib json-glib libsoup-2.4 intltool-native" - -inherit autotools pkgconfig gtk-doc - -SRC_URI = " \ - http://www.freedesktop.org/software/geoclue/releases/2.0/geoclue-${PV}.tar.xz \ - file://soup-session-fix.patch \ -" - -SRC_URI[md5sum] = "401ff99d530b177c62afacef0a33efd9" -SRC_URI[sha256sum] = "4a82f184e55a163d86e0ad69bbe1bba9960bb5094220fe1f01350bceda8c67a1" - -PACKAGECONFIG[geoip] = "--enable-geoip-server,--disable-geoip-server,geoip" - -EXTRA_OECONF += " \ - --with-dbus-service-user=root \ - --with-dbus-sys-dir=${sysconfdir}/dbus-1/system.d \ -" - -FILES_${PN} += " \ - ${datadir}/dbus-1/system-services/org.freedesktop.GeoClue2.service \ - ${datadir}/geoclue-2.0/geoclue-interface.xml \ -" diff --git a/meta-oe/recipes-navigation/geoclue/geoclue_2.4.4.bb b/meta-oe/recipes-navigation/geoclue/geoclue_2.4.4.bb new file mode 100644 index 0000000..64f0546 --- /dev/null +++ b/meta-oe/recipes-navigation/geoclue/geoclue_2.4.4.bb @@ -0,0 +1,47 @@ +SUMMARY = "The Geolocation Service" +DESCRIPTION = "Geoclue is a D-Bus service that provides location information. \ +The primary goal of the Geoclue project is to make creating location-aware applications \ +as simple as possible, while the secondary goal is to ensure that no application \ +can access location information without explicit permission from user." +LICENSE = "GPLv2.0+" +SECTION = "console/network" + +LIC_FILES_CHKSUM = "file://COPYING;md5=8114b83a0435d8136b47bd70111ce5cd" + +DEPENDS = "glib-2.0 dbus json-glib libsoup-2.4 intltool-native" + +inherit autotools pkgconfig gtk-doc + +SRC_URI = " \ + http://www.freedesktop.org/software/geoclue/releases/2.4/geoclue-${PV}.tar.xz \ +" + +SRC_URI[md5sum] = "d2a5b05f4bad032673fe23afbce27926" +SRC_URI[sha256sum] = "9c43fb9d0c12067ea64400500abb0640194947d4c2c55e38545afe5d9c5c315c" + +export BUILD_SYS +export HOST_SYS +export STAGING_INCDIR +export STAGING_LIBDIR + +# Without this line, package is delcared a library and named libgeoclue* +AUTO_LIBNAME_PKGS = "" + +PACKAGECONFIG ??= "3g modem-gps cdma nmea lib" +PACKAGECONFIG[3g] = "--enable-3g-source,--disable-3g-source,modemmanager" +PACKAGECONFIG[modem-gps] = "--enable-modem-gps-source,--disable-modem-gps-source,modemmanager" +PACKAGECONFIG[cdma] = "--enable-cdma-source,--disable-cdma-source,modemmanager" +PACKAGECONFIG[nmea] = "--enable-nmea-source,--disable-nmea-source,avahi" +PACKAGECONFIG[lib] = "--enable-libgeoclue,--disable-libgeoclue,gobject-introspection" + +EXTRA_OECONF += " \ + --with-dbus-service-user=root \ + --with-dbus-sys-dir=${sysconfdir}/dbus-1/system.d \ + --enable-demo-agent=no \ +" + +FILES_${PN} += " \ + ${datadir}/dbus-1/system-services/org.freedesktop.GeoClue2.service \ + ${datadir}/dbus-1/interfaces/org.freedesktop.GeoClue2.xml \ + ${prefix}/libexec \ +" -- 2.7.4