Hello community, here is the log from the commit of package qore for openSUSE:Leap:15.2 checked in at 2020-02-22 17:48:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/qore (Old) and /work/SRC/openSUSE:Leap:15.2/.qore.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qore" Sat Feb 22 17:48:30 2020 rev:12 rq:778069 version:0.8.13 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/qore/qore.changes 2020-01-15 15:55:13.083658937 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.qore.new.26092/qore.changes 2020-02-22 17:48:32.517298605 +0100 @@ -1,0 +2,14 @@ +Mon Aug 5 19:25:11 UTC 2019 - Dominique Leuenberger <[email protected]> + +- Make the qore-module-api-* provides more fail prove: store the + provides list in qore-module.prov. During build, this file is + auto-generated and compared against the package provided one to + ensure the list is correct. + +------------------------------------------------------------------- +Thu Jul 12 19:51:04 UTC 2018 - [email protected] + +- Add reproducible.patch to not include build hostname in package + to make build reproducible (boo#1084909) + +------------------------------------------------------------------- New: ---- qore-module.prov reproducible.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qore.spec ++++++ --- /var/tmp/diff_new_pack.S1Kli5/_old 2020-02-22 17:48:33.341300270 +0100 +++ /var/tmp/diff_new_pack.S1Kli5/_new 2020-02-22 17:48:33.345300279 +0100 @@ -1,7 +1,7 @@ # # spec file for package qore # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2014 David Nichols <[email protected]> # Copyright (c) 2014 Petr Vanek <[email protected]> # @@ -14,7 +14,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/ # @@ -23,11 +23,14 @@ Version: 0.8.13 Release: 0 Summary: Multithreaded Programming Language -License: LGPL-2.1+ or GPL-2.0+ or MIT +License: LGPL-2.1-or-later OR GPL-2.0-or-later OR MIT Group: Development/Languages/Other Url: http://qore.org Source: https://github.com/qorelanguage/qore/releases/download/release-%{version}/qore-%{version}.tar.bz2 +Source99: qore-module.prov Patch: qore-libtool-2.4.6.patch +# PATCH-FIX-OPENSUSE bmwiedemann boo#1084909 +Patch1: reproducible.patch BuildRequires: automake BuildRequires: bison BuildRequires: bzip2 @@ -53,27 +56,13 @@ %package -n libqore5 Summary: The libraries for the qore runtime and qore clients -License: LGPL-2.0+ or GPL-2.0+ or MIT +License: LGPL-2.0-or-later OR GPL-2.0-or-later OR MIT Group: Development/Languages/Other Provides: qore-module(abi)%{?_isa} = 0.18 Provides: qore-module(abi)%{?_isa} = 0.19 Provides: qore-module(abi)%{?_isa} = 0.20 # provided for backwards-compatibility with unversioned capabilities and will be removed when the ABI drops backwards-compatibility -Provides: qore-module-api-0.10 -Provides: qore-module-api-0.11 -Provides: qore-module-api-0.12 -Provides: qore-module-api-0.13 -Provides: qore-module-api-0.14 -Provides: qore-module-api-0.15 -Provides: qore-module-api-0.16 -Provides: qore-module-api-0.17 -Provides: qore-module-api-0.18 -Provides: qore-module-api-0.19 -Provides: qore-module-api-0.5 -Provides: qore-module-api-0.5 -Provides: qore-module-api-0.7 -Provides: qore-module-api-0.8 -Provides: qore-module-api-0.9 +%(cat %{SOURCE99}) %description -n libqore5 Qore is a scripting language supporting threading and embedded logic, designed @@ -94,7 +83,7 @@ %package doc Summary: API documentation, programming language reference, and Qore example programs -License: LGPL-2.0+ or GPL-2.0+ or MIT +License: LGPL-2.0-or-later OR GPL-2.0-or-later OR MIT Group: Documentation/HTML %description doc @@ -111,7 +100,7 @@ %package devel Summary: The header files needed to compile programs using the qore library -License: LGPL-2.0+ or GPL-2.0+ or MIT +License: LGPL-2.0-or-later OR GPL-2.0-or-later OR MIT Group: Development/Languages/C and C++ Requires: libqore5 = %{version}-%{release} @@ -136,7 +125,7 @@ %package devel-doc Summary: C++ API documentation for the qore library -License: LGPL-2.0+ or GPL-2.0+ or MIT +License: LGPL-2.0-or-later OR GPL-2.0-or-later OR MIT Group: Documentation/HTML Requires: libqore5 = %{version}-%{release} @@ -151,7 +140,7 @@ %package misc-tools Summary: Miscellaneous user tools writen in Qore Programming Language -License: LGPL-2.0+ or GPL-2.0+ or MIT +License: LGPL-2.0-or-later OR GPL-2.0-or-later OR MIT Group: Development/Tools/Other Requires: qore = %{version}-%{release} @@ -171,6 +160,7 @@ %prep %setup -q %patch -p1 +%patch1 -p1 # silence the executable warning for examples find examples -type f|xargs chmod 644 @@ -191,6 +181,10 @@ rm %{buildroot}/%{_libdir}/libqore.la %fdupes -s docs +# Check if we have all the provides for libqore - to ensure we provide all the qore-module-api-* the code supports +./qore --module-apis | awk -F',[[:blank:]]' '{i = 1; while (i < NF) { print "Provides: qore-module-api-"$i; i++ } }' > /tmp/qore-modules.prov +diff -ur %{SOURCE99} /tmp/qore-modules.prov + %files %defattr(-,root,root,-) %{_bindir}/qore ++++++ qore-module.prov ++++++ Provides: qore-module-api-0.20 Provides: qore-module-api-0.19 Provides: qore-module-api-0.18 Provides: qore-module-api-0.17 Provides: qore-module-api-0.16 Provides: qore-module-api-0.15 Provides: qore-module-api-0.14 Provides: qore-module-api-0.13 Provides: qore-module-api-0.12 Provides: qore-module-api-0.11 Provides: qore-module-api-0.10 Provides: qore-module-api-0.9 Provides: qore-module-api-0.8 Provides: qore-module-api-0.7 Provides: qore-module-api-0.6 ++++++ reproducible.patch ++++++ Index: qore-0.8.13/configure.ac =================================================================== --- qore-0.8.13.orig/configure.ac +++ qore-0.8.13/configure.ac @@ -1932,7 +1932,7 @@ AC_DEFINE_UNQUOTED([QORE_LIB_CPPFLAGS], AC_DEFINE_UNQUOTED([QORE_LIB_CXXFLAGS], "$QORE_LIB_CXXFLAGS", [c++ compiler flags]) AC_DEFINE_UNQUOTED([QORE_LIB_CFLAGS], "$QORE_LIB_CFLAGS", [c++ compiler flags]) AC_DEFINE_UNQUOTED([QORE_LIB_LDFLAGS], "$QORE_LIB_LDFLAGS", [linker flags]) -AC_DEFINE_UNQUOTED([QORE_BUILD_HOST], "`uname -a`", [Qore build host info]) +AC_DEFINE_UNQUOTED([QORE_BUILD_HOST], "`uname -smpo`", [Qore build host info]) AC_CONFIG_FILES([Makefile lib/Makefile]) AC_CONFIG_FILES([modules/astparser/Makefile modules/astparser/src/Makefile])
