Hello community, here is the log from the commit of package paps for openSUSE:Factory checked in at 2019-05-13 14:52:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/paps (Old) and /work/SRC/openSUSE:Factory/.paps.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "paps" Mon May 13 14:52:53 2019 rev:2 rq:702583 version:0.7.0+ Changes: -------- --- /work/SRC/openSUSE:Factory/paps/paps.changes 2017-12-13 11:58:40.475791645 +0100 +++ /work/SRC/openSUSE:Factory/.paps.new.5148/paps.changes 2019-05-13 14:52:54.131145668 +0200 @@ -1,0 +2,7 @@ +Mon May 13 07:29:44 UTC 2019 - Dr. Werner Fink <[email protected]> + +- Add patch paps-glib.patch to amke it build again ... seems to be + a problem with the actuial linker as it ignores dependencies of + the already specified libraries. + +------------------------------------------------------------------- New: ---- paps-glib.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ paps.spec ++++++ --- /var/tmp/diff_new_pack.ho3BnH/_old 2019-05-13 14:52:54.831147431 +0200 +++ /var/tmp/diff_new_pack.ho3BnH/_new 2019-05-13 14:52:54.831147431 +0200 @@ -1,7 +1,7 @@ # # spec file for package paps # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -22,7 +22,7 @@ Version: 0.7.0+ Release: 0 Summary: A text to postscript converter through pango -License: LGPL-2.0 +License: LGPL-2.0-only Group: System/Base Url: https://github.com/dov/paps Source: https://github.com/dov/%{name}/archive/%{uuid}.tar.gz#/%{name}-%{uuid}.tar.gz @@ -33,6 +33,7 @@ Patch4: paps-gutter-width.patch Patch5: paps-page_setup.patch Patch6: paps-layout.patch +Patch7: paps-glib.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: intltool @@ -53,6 +54,7 @@ %patch4 -p0 -b .p4 %patch5 -p0 -b .p5 %patch6 -p0 -b .p6 +%patch7 -p0 -b .p7 mkdir -p config m4 for c in /usr/share/aclocal*/{codeset,gettext,glibc21,iconv,isc-posix,lcmessage}.m4 do ++++++ paps-glib.patch ++++++ >From ddd83dc5ae1989be904181cbe9148d518c9722ed Mon Sep 17 00:00:00 2001 From: Werner Fink <[email protected]> Date: Mon, 13 May 2019 09:24:34 +0200 Subject: [PATCH] Make it build again Signed-off-by: Werner Fink <[email protected]> --- configure.ac | 2 +- src/paps.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git configure.ac configure.ac index 87f43df..be91ebd 100644 --- configure.ac +++ configure.ac @@ -14,7 +14,7 @@ dnl Requires to declare wcwidth() AC_GNU_SOURCE PKG_PROG_PKG_CONFIG -PKG_CHECK_MODULES([PANGO], [pangocairo pangoft2]) +PKG_CHECK_MODULES([PANGO], [pangocairo pangoft2 gobject-2.0 glib-2.0]) AC_PROG_INTLTOOL([0.23]) diff --git src/paps.c src/paps.c index 29e7098..d8105eb 100644 --- src/paps.c +++ src/paps.c @@ -282,11 +282,13 @@ parse_enum (GType type, char *possible_values = NULL; gboolean ret; +G_GNUC_BEGIN_IGNORE_DEPRECATIONS ret = pango_parse_enum (type, arg, value, FALSE, &possible_values); +G_GNUC_END_IGNORE_DEPRECATIONS if (!ret && error) { -- 2.16.4
