Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libcdata for openSUSE:Factory checked in at 2021-06-11 00:18:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libcdata (Old) and /work/SRC/openSUSE:Factory/.libcdata.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libcdata" Fri Jun 11 00:18:04 2021 rev:11 rq:898220 version:20210415 Changes: -------- --- /work/SRC/openSUSE:Factory/libcdata/libcdata.changes 2019-04-20 17:13:30.862955158 +0200 +++ /work/SRC/openSUSE:Factory/.libcdata.new.32437/libcdata.changes 2021-06-11 00:18:10.229264451 +0200 @@ -1,0 +2,13 @@ +Wed May 12 15:38:47 UTC 2021 - Jan Engelhardt <jeng...@inai.de> + +- Update to snapshot 20210415 (2401fd5d) + * No changelog was provided +- Add system-libs.patch + +------------------------------------------------------------------- +Sun Dec 13 01:08:51 UTC 2020 - Greg Freemyer <greg.freem...@gmail.com> + +- update to v0~20200509 + * No documented changes + +------------------------------------------------------------------- @@ -4 +17 @@ -- update to v0~2019 +- update to v0~20190112 Old: ---- libcdata-alpha-20190112.tar.gz New: ---- _service libcdata-20210415.tar.xz system-libs.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libcdata.spec ++++++ --- /var/tmp/diff_new_pack.GpMMYD/_old 2021-06-11 00:18:10.789265424 +0200 +++ /var/tmp/diff_new_pack.GpMMYD/_new 2021-06-11 00:18:10.793265432 +0200 @@ -1,7 +1,7 @@ # # spec file for package libcdata # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,72 +12,72 @@ # 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/ # Name: libcdata %define lname libcdata1 -%define timestamp 20190112 -Version: 0~%timestamp +Version: 20210415 Release: 0 -Summary: Library for cross-platform C generic data functions -License: LGPL-3.0+ +Summary: Library for C generic data functions +License: LGPL-3.0-or-later Group: Development/Libraries/C and C++ -Url: https://github.com/libyal/libcdata/wiki -Source: https://github.com/libyal/libcdata/releases/download/%timestamp/%name-alpha-%timestamp.tar.gz +URL: https://github.com/libyal/libcdata +Source: %name-%version.tar.xz +Patch1: system-libs.patch +BuildRequires: c_compiler +BuildRequires: gettext-tools >= 0.18.1 +BuildRequires: libtool BuildRequires: pkg-config -BuildRequires: pkgconfig(libcerror) >= 20130904 -BuildRequires: pkgconfig(libcthreads) >= 20150101 -BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: pkgconfig(libcerror) >= 20201121 +BuildRequires: pkgconfig(libcthreads) >= 20200508 %description -A library for cross-platform C generic data functions. +A library for C generic data functions. This package is part of the libyal library collection and is used by other libraries in the collection %package -n %lname -Summary: Library for cross-platform C generic data functions +Summary: Library for C generic data functions Group: System/Libraries %description -n %lname -A library for cross-platform C generic data functions. +A library for C generic data functions. This subpackage contains the actual shared object library %package devel -Summary: Development files for libcdata, a cross-platform C generic data library +Summary: Development files for libcdata, a C generic data library Group: Development/Libraries/C and C++ Requires: %lname = %version %description devel -A library for cross-platform C generic data functions. +A library for C generic data functions. This subpackage contains libraries and header files for developing applications that want to make use of libcdata. %prep -%setup -qn libcdata-%timestamp +%autosetup -p1 %build -%configure --disable-static --enable-wide-character-type -make %{?_smp_mflags} +if [ ! -e configure ]; then ./autogen.sh; fi +%configure --disable-static +%make_build %install -make install DESTDIR="%buildroot" +%make_install rm -f "%buildroot/%_libdir"/*.la %post -n %lname -p /sbin/ldconfig %postun -n %lname -p /sbin/ldconfig %files -n %lname -%defattr(-,root,root) -%doc AUTHORS ChangeLog -%license COPYING +%license COPYING* %_libdir/libcdata.so.1* %files devel -%defattr(-,root,root) %_includedir/libcdata* %_libdir/libcdata.so %_libdir/pkgconfig/libcdata.pc ++++++ _service ++++++ <services> <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/libyal/libcdata</param> <param name="revision">2401fd5dfe810e3baf993676b2e2e027b5266c77</param> <!-- see configure.ac --> <param name="versionformat">20210415</param> </service> <service name="recompress" mode="disabled"> <param name="file">*.tar</param> <param name="compression">xz</param> </service> <service name="set_version" mode="disabled"/> </services> ++++++ system-libs.patch ++++++ From: Jan Engelhardt <jeng...@inai.de> Date: 2021-05-12 17:36:02.536572543 +0200 Some dirs are not present in snapshots directly generated from git (nor are they marked as a submodule). Patch it out, since we have them as system libs. --- Makefile.am | 4 ---- configure.ac | 2 -- 2 files changed, 6 deletions(-) Index: libcdata/Makefile.am =================================================================== --- libcdata.orig/Makefile.am +++ libcdata/Makefile.am @@ -3,8 +3,6 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = \ include \ common \ - libcerror \ - libcthreads \ libcdata \ po \ manuals \ @@ -54,8 +52,6 @@ lib: library library: cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS) - cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS) - cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS) cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS) cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS) Index: libcdata/configure.ac =================================================================== --- libcdata.orig/configure.ac +++ libcdata/configure.ac @@ -94,8 +94,6 @@ dnl Generate Makefiles AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([include/Makefile]) AC_CONFIG_FILES([common/Makefile]) -AC_CONFIG_FILES([libcerror/Makefile]) -AC_CONFIG_FILES([libcthreads/Makefile]) AC_CONFIG_FILES([libcdata/Makefile]) AC_CONFIG_FILES([po/Makefile.in]) AC_CONFIG_FILES([po/Makevars])