diff mbox series

[1/1] package/libxmlpp: bump to version 5.0.1

Message ID 20211228144935.4060468-1-fontaine.fabrice@gmail.com
State Accepted
Headers show
Series [1/1] package/libxmlpp: bump to version 5.0.1 | expand

Commit Message

Fabrice Fontaine Dec. 28, 2021, 2:49 p.m. UTC
Switch to meson-package as configure is not shipped anymore

This bump will fix the following build failure raised since bump of
glibmm to version 2.68.2 in commit
dddb65efbdf2c7952f22a1e51009f17f1676db4a:

Package 'glibmm-2.4', required by 'virtual:world', not found

https://github.com/libxmlplusplus/libxmlplusplus/blob/5.0.1/NEWS

Fixes:
 - http://autobuild.buildroot.org/results/ab3c3ace6d9409a70a4a8c1e27dfa9b915be10fd

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libxmlpp/libxmlpp.hash |  4 ++--
 package/libxmlpp/libxmlpp.mk   | 10 +++++++---
 2 files changed, 9 insertions(+), 5 deletions(-)

Comments

Thomas Petazzoni Dec. 28, 2021, 8:39 p.m. UTC | #1
On Tue, 28 Dec 2021 15:49:35 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Switch to meson-package as configure is not shipped anymore
> 
> This bump will fix the following build failure raised since bump of
> glibmm to version 2.68.2 in commit
> dddb65efbdf2c7952f22a1e51009f17f1676db4a:
> 
> Package 'glibmm-2.4', required by 'virtual:world', not found
> 
> https://github.com/libxmlplusplus/libxmlplusplus/blob/5.0.1/NEWS
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/ab3c3ace6d9409a70a4a8c1e27dfa9b915be10fd
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/libxmlpp/libxmlpp.hash |  4 ++--
>  package/libxmlpp/libxmlpp.mk   | 10 +++++++---
>  2 files changed, 9 insertions(+), 5 deletions(-)

Applied to master, thanks.

Thomas
diff mbox series

Patch

diff --git a/package/libxmlpp/libxmlpp.hash b/package/libxmlpp/libxmlpp.hash
index 7a59880e7e..50238eff00 100644
--- a/package/libxmlpp/libxmlpp.hash
+++ b/package/libxmlpp/libxmlpp.hash
@@ -1,5 +1,5 @@ 
-# From http://ftp.gnome.org/pub/GNOME/sources/libxml++/3.2/libxml++-3.2.0.sha256sum
-sha256  b786fae7fd7820d356698069a787d107995c3efcbef50d8f4efd3766ab768e4f  libxml++-3.2.0.tar.xz
+# From http://ftp.gnome.org/pub/GNOME/sources/libxml++/5.0/libxml++-5.0.1.sha256sum
+sha256  15c38307a964fa6199f4da6683a599eb7e63cc89198545b36349b87cf9aa0098  libxml++-5.0.1.tar.xz
 
 # Hash for license file
 sha256  a190dc9c8043755d90f8b0a75fa66b9e42d4af4c980bf5ddc633f0124db3cee7  COPYING
diff --git a/package/libxmlpp/libxmlpp.mk b/package/libxmlpp/libxmlpp.mk
index 98cba2a5a2..874577eb1f 100644
--- a/package/libxmlpp/libxmlpp.mk
+++ b/package/libxmlpp/libxmlpp.mk
@@ -4,13 +4,17 @@ 
 #
 ################################################################################
 
-LIBXMLPP_VERSION_MAJOR = 3.2
-LIBXMLPP_VERSION = $(LIBXMLPP_VERSION_MAJOR).0
+LIBXMLPP_VERSION_MAJOR = 5.0
+LIBXMLPP_VERSION = $(LIBXMLPP_VERSION_MAJOR).1
 LIBXMLPP_LICENSE = LGPL-2.1 (library), LGPL-2.0+ (examples)
 LIBXMLPP_LICENSE_FILES = COPYING
 LIBXMLPP_SOURCE = libxml++-$(LIBXMLPP_VERSION).tar.xz
 LIBXMLPP_SITE = http://ftp.gnome.org/pub/GNOME/sources/libxml++/$(LIBXMLPP_VERSION_MAJOR)
 LIBXMLPP_INSTALL_STAGING = YES
 LIBXMLPP_DEPENDENCIES = libxml2 glibmm host-pkgconf
+LIBXMLPP_CONF_OPTS = \
+	-Dbuild-examples=false \
+	-Dbuild-tests=false \
+	-Dvalidation=false
 
-$(eval $(autotools-package))
+$(eval $(meson-package))