summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/geany/geany-plugins
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2019-02-19 23:23:18 +0100
committerKhem Raj <raj.khem@gmail.com>2019-02-20 11:11:44 -0800
commitfa1051bd0883d0588dbab7ed343dd460de0a9b13 (patch)
tree807f1e65bed8b6650138af62f4da077a927ec5c2 /meta-oe/recipes-devtools/geany/geany-plugins
parent6139a97e446642283d0252f15c0078bbde3591d5 (diff)
downloadmeta-openembedded-fa1051bd0883d0588dbab7ed343dd460de0a9b13.tar.gz
geany-plugins: upgrade 1.31 -> 1.34 and rework
* geany-plugins-treebrowser/license checksum: Was changed to: "TreeBrowser plugin is distributed under the same license as in geany." Geany is GPLv2 which is part of geany-plugin's license. * Remove explicit RDEPENDS: * They caused cyclic dependencies making impossible anything but all plugins * Checked: Dependencies are set correct automatically * Add geany-plugins-common to avoid cylcic dependencies * All plugins that are enabled, build and pack properly. Before adding geany-plugins to an image caused errors in do_rootfs due to empty packages. * Some plugins don't build with gtk3 - disable them Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/geany/geany-plugins')
-rw-r--r--meta-oe/recipes-devtools/geany/geany-plugins/0001-Use-pkg-config-to-find-gpgme.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/geany/geany-plugins/0001-Use-pkg-config-to-find-gpgme.patch b/meta-oe/recipes-devtools/geany/geany-plugins/0001-Use-pkg-config-to-find-gpgme.patch
new file mode 100644
index 000000000..9030f36d4
--- /dev/null
+++ b/meta-oe/recipes-devtools/geany/geany-plugins/0001-Use-pkg-config-to-find-gpgme.patch
@@ -0,0 +1,31 @@
1From 0c24f99ca4d4f64ea8584347ca6ae0d638d625a8 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
3Date: Mon, 18 Feb 2019 16:13:17 +0100
4Subject: [PATCH] Use pkg-config to find gpgme
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Upstream-Status: Inappropriate [embedded specific]
10
11Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
12---
13 build/bundled/gpgme.m4 | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/build/bundled/gpgme.m4 b/build/bundled/gpgme.m4
17index 44bf43c..c9a8ae6 100644
18--- a/build/bundled/gpgme.m4
19+++ b/build/bundled/gpgme.m4
20@@ -18,7 +18,7 @@ AC_DEFUN([_AM_PATH_GPGME_CONFIG],
21 if test "x$gpgme_config_prefix" != x ; then
22 GPGME_CONFIG="$gpgme_config_prefix/bin/gpgme-config"
23 fi
24- AC_PATH_PROG(GPGME_CONFIG, gpgme-config, no)
25+ GPGME_CONFIG="pkg-config gpgme"
26
27 if test "$GPGME_CONFIG" != "no" ; then
28 gpgme_version=`$GPGME_CONFIG --version`
29--
302.20.1
31