[arch-commits] Commit in networkmanager-openvpn/trunk (2 files)

Jan Steffens heftig at archlinux.org
Fri Feb 8 16:29:16 UTC 2019


    Date: Friday, February 8, 2019 @ 16:29:15
  Author: heftig
Revision: 345658

1.8.10-1

Added:
  networkmanager-openvpn/trunk/0001-build-disable-libnm-glib-support-by-default.patch
Modified:
  networkmanager-openvpn/trunk/PKGBUILD

--------------------------------------------------------+
 0001-build-disable-libnm-glib-support-by-default.patch |   51 +++++++++++++++
 PKGBUILD                                               |   12 ++-
 2 files changed, 58 insertions(+), 5 deletions(-)

Added: 0001-build-disable-libnm-glib-support-by-default.patch
===================================================================
--- 0001-build-disable-libnm-glib-support-by-default.patch	                        (rev 0)
+++ 0001-build-disable-libnm-glib-support-by-default.patch	2019-02-08 16:29:15 UTC (rev 345658)
@@ -0,0 +1,51 @@
+From 52aad4911ffad04cf8274b5574124a4d5470c7fa Mon Sep 17 00:00:00 2001
+Message-Id: <52aad4911ffad04cf8274b5574124a4d5470c7fa.1549642989.git.jan.steffens at gmail.com>
+From: Lubomir Rintel <lkundrak at v3.sk>
+Date: Wed, 17 Oct 2018 15:21:30 +0200
+Subject: [PATCH] build: disable libnm-glib support by default
+
+By now nobody should be using this. Keep the code around for a little
+longer just in case anybody still uses this.
+
+The libnm-glib support also serves as an example how do we build two
+different versions of the properties plugin. We'll soon be in a similar
+situation with Gtk 4.0. (sigh.) Just don't drop it yet.
+
+Conflicts:
+	NEWS
+---
+ configure.ac | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 11ff5d0..eaf015b 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -75,20 +75,20 @@ dnl
+ dnl GNOME support
+ dnl
+ AC_ARG_WITH(gnome, AS_HELP_STRING([--without-gnome], [Build NetworkManager-openvpn without GNOME support, e.g. vpn service only]), [], [with_gnome_specified=no])
+-AC_ARG_WITH(libnm-glib, AS_HELP_STRING([--without-libnm-glib], [Build NetworkManager-openvpn without libnm-glib comatibility]), [], [with_libnm_glib_specified=no])
++AC_ARG_WITH(libnm-glib, AS_HELP_STRING([--with-libnm-glib], [Build NetworkManager-openvpn with libnm-glib comatibility (depreacted)]), [], [with_libnm_glib_specified=no])
+ if test "$with_libnm_glib_specified" != no -a "$with_libnm_glib" != no; then
+ 	if test "$with_gnome_specified" != no -a "$with_gnome" == no; then
+ 		AC_MSG_ERROR(Building --with-libnm-glib conflicts with --without-gnome)
+ 	fi
+ fi
+ if test "$with_gnome" != no; then
+ 	with_gnome=yes
+ fi
+ if test "$with_libnm_glib_specified" == no; then
+-	with_libnm_glib="$with_gnome"
++	with_libnm_glib=no
+ fi
+-if test "$with_libnm_glib" != no; then
+-	with_libnm_glib=yes
++if test "$with_libnm_glib" != yes; then
++	with_libnm_glib=no
+ fi
+ AM_CONDITIONAL(WITH_GNOME, test "$with_gnome" != no)
+ AM_CONDITIONAL(WITH_LIBNM_GLIB, test "$with_libnm_glib" != no)
+-- 
+2.20.1
+

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-02-08 16:15:06 UTC (rev 345657)
+++ PKGBUILD	2019-02-08 16:29:15 UTC (rev 345658)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru <ibiru at archlinux.org>
 
 pkgname=networkmanager-openvpn
-pkgver=1.8.9dev+16+g33c941d
+pkgver=1.8.10
 pkgrel=1
 pkgdesc="NetworkManager VPN plugin for OpenVPN"
 url="https://wiki.gnome.org/Projects/NetworkManager"
@@ -11,9 +11,11 @@
 depends=(libnm libsecret openvpn)
 makedepends=(libnma intltool python git)
 optdepends=('libnma: GUI support')
-_commit=33c941d21002e279d4ac36a641c16a37d114c759  # master
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openvpn.git#commit=$_commit")
-sha256sums=('SKIP')
+_commit=ac8a34354ecede5c68812a1c269d712da93afdb1  # tags/1.8.10^0
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openvpn.git#commit=$_commit"
+        0001-build-disable-libnm-glib-support-by-default.patch)
+sha256sums=('SKIP'
+            '0c574c0432948d0b66a2cdf22dab9657618fe90a44e74e681e6fd8a57c127773')
 
 pkgver() {
   cd NetworkManager-openvpn
@@ -24,7 +26,7 @@
   cd NetworkManager-openvpn
 
   # Don't build against libnm-glib/gtk
-  git cherry-pick -n b423aa8214b2ef6b97e419d0b0e3e5e68f4b2e5b
+  patch -Np1 -i ../0001-build-disable-libnm-glib-support-by-default.patch
 
   intltoolize --automake --copy
   autoreconf -fvi



More information about the arch-commits mailing list