gplugin/gplugin

c8e212ef3e1e
Merge the 0.28.2 release into the default branch
--- a/.hgtags Mon Sep 30 01:28:39 2019 -0500
+++ b/.hgtags Thu Oct 31 23:55:18 2019 -0500
@@ -31,3 +31,4 @@
741a484ae91c05937a9a4435497dbb4924a4681d v0.0.28
0000000000000000000000000000000000000000 v0.0.28
85f1c51427fe6ad61aa43fb2724e994fe234383a v0.28.1
+1924632f9d60ea8eeb32a9e19f27c78861051ec2 v0.28.2
--- a/ChangeLog Mon Sep 30 01:28:39 2019 -0500
+++ b/ChangeLog Thu Oct 31 23:55:18 2019 -0500
@@ -1,3 +1,9 @@
+0.28.2: 2019/10/31
+ General
+ * Fixed a broken include in gplugin-gtk-plugin-info.h which caused build
+ failures.
+ * Fixed an issue where python3.8 no longer links to libpython.
+
0.28.1: 2019/09/30
General
* Fix a bug that scanbuild found in test-plugin-info (Gary Kramlich)
--- a/convey.yml Mon Sep 30 01:28:39 2019 -0500
+++ b/convey.yml Thu Oct 31 23:55:18 2019 -0500
@@ -142,6 +142,10 @@
environment: [DISTRO=fedora, VERSION=30]
stages:
- tasks: [import, build, export]
+ fedora-rawhide-amd64:
+ environment: [DISTRO=fedora, VERSION=rawhide]
+ stages:
+ - tasks: [import, build, export]
gplugin-docs:
environment: [TARGET=gplugin, DOCS_PATH=gplugin/reference]
--- a/gplugin-gtk/gplugin-gtk-plugin-info.h Mon Sep 30 01:28:39 2019 -0500
+++ b/gplugin-gtk/gplugin-gtk-plugin-info.h Thu Oct 31 23:55:18 2019 -0500
@@ -27,7 +27,7 @@
#include <gtk/gtk.h>
-#include <gplugin/gplugin.h>
+#include <gplugin.h>
G_BEGIN_DECLS
--- a/meson.build Mon Sep 30 01:28:39 2019 -0500
+++ b/meson.build Thu Oct 31 23:55:18 2019 -0500
@@ -1,7 +1,7 @@
###############################################################################
# Project Info
###############################################################################
-project('gplugin', 'c', version : '0.28.1',
+project('gplugin', 'c', version : '0.28.2',
meson_version : '>=0.42.0',
default_options : ['c_std=c99'])
--- a/packaging/debian/changelog Mon Sep 30 01:28:39 2019 -0500
+++ b/packaging/debian/changelog Thu Oct 31 23:55:18 2019 -0500
@@ -1,6 +1,6 @@
-gplugin (0.28.1) UNRELEASED; urgency=medium
+gplugin (0.28.2) UNRELEASED; urgency=medium
- * New upstream release, see official changelog
+ * New upstream release, see official changelog
-- Gary Kramlich <grim@reaperworld.com> Tue, 22 Jan 2019 23:02:37 -0600
--- a/packaging/gplugin.spec.in Mon Sep 30 01:28:39 2019 -0500
+++ b/packaging/gplugin.spec.in Thu Oct 31 23:55:18 2019 -0500
@@ -260,6 +260,10 @@
%{_datadir}/vala/vapi/gplugin-gtk.deps
%changelog
+* Thu Oct 31 2019 Gary Kramlich <grim@reaperworld.com>
+- Fixed an include bug in gplugin-gtk
+- Fixed building again python3.8
+
* Mon Aug 12 2019 Gary Kramlich <grim@reaperworld.com>
- Added vala
--- a/python/meson.build Mon Sep 30 01:28:39 2019 -0500
+++ b/python/meson.build Thu Oct 31 23:55:18 2019 -0500
@@ -16,7 +16,10 @@
'gplugin-python-utils.h',
]
- PYTHON3 = dependency('python3')
+ PYTHON3 = dependency('python3-embed', required: false)
+ if not PYTHON3.found()
+ PYTHON3 = dependency('python3')
+ endif
PYGOBJECT = dependency('pygobject-3.0', version : '>=3.0.0')