Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qatzip for openSUSE:Factory checked in at 2022-12-06 14:24:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qatzip (Old) and /work/SRC/openSUSE:Factory/.qatzip.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qatzip" Tue Dec 6 14:24:24 2022 rev:3 rq:1040558 version:1.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/qatzip/qatzip.changes 2022-07-02 15:34:40.723030042 +0200 +++ /work/SRC/openSUSE:Factory/.qatzip.new.1835/qatzip.changes 2022-12-06 14:24:42.846311637 +0100 @@ -1,0 +2,14 @@ +Sat Dec 3 23:31:08 UTC 2022 - Dirk Müller <dmuel...@suse.com> + +- update to 1.1.0: + * Add dependancy update tool file + * Updated New "Crc" series API + * Bug fix + * Enable static link QATzip into Envoy + * Support autoconf & automake to build QATzip + * Change the API for ABI/API compatibility + * Change the default installation directory of QATzip lib to + /usr/local/lib + * Bug fix + +------------------------------------------------------------------- Old: ---- qatzip-1.0.6.tar.xz New: ---- v1.1.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qatzip.spec ++++++ --- /var/tmp/diff_new_pack.8TswAH/_old 2022-12-06 14:24:43.254315115 +0100 +++ /var/tmp/diff_new_pack.8TswAH/_new 2022-12-06 14:24:43.258315149 +0100 @@ -17,16 +17,19 @@ Name: qatzip -Version: 1.0.6 +Version: 1.1.0 Release: 0 Summary: Intel QuickAssist Technology (QAT) QATzip Library License: BSD-3-Clause Group: Hardware/Other URL: https://github.com/intel/QATzip -Source: %{name}-%{version}.tar.xz +Source: https://github.com/intel/QATzip/archive/refs/tags/v%{version}.tar.gz Patch0: qatzip-fortify_source=3.patch -BuildRequires: gcc >= 4.8.5 -BuildRequires: qatlib-devel >= 21.08.0 +BuildRequires: automake +BuildRequires: gcc +BuildRequires: liblz4-devel +BuildRequires: libtool +BuildRequires: qatlib-devel >= 22.07.0 BuildRequires: zlib-devel >= 1.2.7 # This package can be built on all archs, but is useful only on enterprise-class intel. ExclusiveArch: x86_64 @@ -42,18 +45,18 @@ advantage of the performance provided by Intel QuickAssist Technology. -%package -n libqatzip1 +%package -n libqatzip3 Summary: Libraries for the qatzip package Group: Hardware/Other -%description -n libqatzip1 +%description -n libqatzip3 This package contains libraries for applications to use the QATzip APIs. %package devel Summary: Development components for the libqatzip package Group: Hardware/Other -Requires: libqatzip1%{?_isa} = %{version}-%{release} +Requires: libqatzip3%{?_isa} = %{version}-%{release} %description devel This package contains headers and libraries required to build @@ -63,32 +66,26 @@ %autosetup -n QATzip-%{version} %build -%{set_build_flags} -./configure \ - --bindir=%{_bindir} \ - --sharedlib-dir=%{_libdir} \ - --includedir=%{_includedir} \ - --mandir=%{_mandir} \ - --prefix=%{_prefix} \ - --enable-symbol +autoreconf -fiv +%configure --enable-symbol %make_build %install %make_install rm -vf %{buildroot}%{_mandir}/*.pdf +rm -vf %{buildroot}%{_libdir}/*.{la,a} -%post -n libqatzip1 -p /sbin/ldconfig -%postun -n libqatzip1 -p /sbin/ldconfig +%post -n libqatzip3 -p /sbin/ldconfig +%postun -n libqatzip3 -p /sbin/ldconfig %files %license LICENSE* %{_mandir}/man1/qzip.1%{?ext_man} %{_bindir}/qzip -%files -n libqatzip1 +%files -n libqatzip3 %license LICENSE* -%{_libdir}/libqatzip.so.1 -%{_libdir}/libqatzip.so.%{version} +%{_libdir}/libqatzip.so.3* %files devel %doc docs/QATzip-man.pdf ++++++ qatzip-fortify_source=3.patch ++++++ --- /var/tmp/diff_new_pack.8TswAH/_old 2022-12-06 14:24:43.286315388 +0100 +++ /var/tmp/diff_new_pack.8TswAH/_new 2022-12-06 14:24:43.290315422 +0100 @@ -1,14 +1,13 @@ -Index: QATzip-1.0.6/configure +Index: QATzip-1.1.0/configure.ac =================================================================== ---- QATzip-1.0.6.orig/configure -+++ QATzip-1.0.6/configure -@@ -160,8 +160,6 @@ fi - - if [ "$enable_debug" = "yes" ] ; then - CFLAGS+=" -g -DQATZIP_DEBUG -O0" --else -- CFLAGS+=" -O2 -D_FORTIFY_SOURCE=2" - fi - - if [ "$enable_symbol" = "yes" ] ; then +--- QATzip-1.1.0.orig/configure.ac ++++ QATzip-1.1.0/configure.ac +@@ -232,7 +232,6 @@ AC_ARG_ENABLE(debug, + [ + debug=false + CFLAGS+=' -O2' +- AS_IF([test "x${CC}" = "xgcc"], [CFLAGS+=' -D_FORTIFY_SOURCE=2'], []) + ] + ) + AM_CONDITIONAL([QATZIP_DEBUG_AC], [test x$debug = xtrue])