Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libcdirectory for openSUSE:Factory checked in at 2021-06-11 00:18:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libcdirectory (Old) and /work/SRC/openSUSE:Factory/.libcdirectory.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libcdirectory" Fri Jun 11 00:18:02 2021 rev:4 rq:898209 version:20210415 Changes: -------- --- /work/SRC/openSUSE:Factory/libcdirectory/libcdirectory.changes 2020-12-28 00:28:58.973789969 +0100 +++ /work/SRC/openSUSE:Factory/.libcdirectory.new.32437/libcdirectory.changes 2021-06-11 00:18:06.489257953 +0200 @@ -1,0 +2,7 @@ +Thu May 13 11:21:15 UTC 2021 - Jan Engelhardt <[email protected]> + +- Update to snapshot 20210415 (63fab974) + * No changelog was provided +- Add system-libs.patch + +------------------------------------------------------------------- Old: ---- libcdirectory-experimental-20200702.tar.gz New: ---- _service libcdirectory-20210415.tar.xz system-libs.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libcdirectory.spec ++++++ --- /var/tmp/diff_new_pack.vmeh4V/_old 2021-06-11 00:18:07.013258864 +0200 +++ /var/tmp/diff_new_pack.vmeh4V/_new 2021-06-11 00:18:07.013258864 +0200 @@ -1,7 +1,7 @@ # # spec file for package libcdirectory # -# Copyright (c) 2020 SUSE LLC +# 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 @@ -17,22 +17,22 @@ %define lname libcdirectory1 -%define timestamp 20200702 Name: libcdirectory -Version: 0~%{timestamp} +Version: 20210415 Release: 0 Summary: Library for Windows NT data types -License: LGPL-3.0-or-later AND GFDL-1.3-or-later +License: GFDL-1.3-or-later AND LGPL-3.0-or-later Group: Productivity/File utilities -URL: https://github.com/libyal/libcdirectory/wiki -Source: https://github.com/libyal/libcdirectory/releases/download/%timestamp/%{name}-experimental-%{timestamp}.tar.gz +URL: https://github.com/libyal/libcdirectory +Source: %{name}-%{version}.tar.xz +Patch1: system-libs.patch +BuildRequires: c_compiler +BuildRequires: gettext-tools >= 0.18.1 +BuildRequires: libtool BuildRequires: pkg-config -BuildRequires: python-devel -BuildRequires: pkgconfig(libcerror) >= 20150101 -BuildRequires: pkgconfig(libclocale) >= 20150101 -BuildRequires: pkgconfig(libcstring) >= 20150101 -BuildRequires: pkgconfig(libuna) >= 20150101 -BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: pkgconfig(libcerror) >= 20201121 +BuildRequires: pkgconfig(libclocale) >= 20200913 +BuildRequires: pkgconfig(libuna) >= 20201204 %description Library to provide Windows NT data type support for the libyal family of libraries. @@ -49,7 +49,7 @@ %package devel Summary: Development files for libcdirectory -License: LGPL-3.0-or-later AND GFDL-1.3-or-later +License: GFDL-1.3-or-later AND LGPL-3.0-or-later Group: Development/Libraries/C and C++ Requires: %{lname} = %{version} @@ -60,28 +60,26 @@ applications that want to make use of libcdirectory. %prep -%setup -q -n libcdirectory-%{timestamp} +%autosetup -p1 %build -%configure --disable-static --enable-wide-character-type --enable-python -make %{?_smp_mflags} +if [ ! -e configure ]; then ./autogen.sh; fi +%configure --disable-static --enable-wide-character-type +%make_build %install -make DESTDIR=%{buildroot} install %{?_smp_mflags} +%make_install find %{buildroot} -type f -name "*.la" -delete -print %post -n %{lname} -p /sbin/ldconfig - %postun -n %{lname} -p /sbin/ldconfig %files -n %{lname} -%defattr(-,root,root) -%doc AUTHORS COPYING ChangeLog +%license COPYING* %{_libdir}/libcdirectory.so.* %files devel -%defattr(-,root,root) -%doc AUTHORS COPYING README ChangeLog +%license COPYING* %{_includedir}/libcdirectory.h %{_includedir}/libcdirectory/ %{_libdir}/libcdirectory.so ++++++ _service ++++++ <services> <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/libyal/libcdirectory</param> <param name="revision">63fab9741ececf4497317d1b71400eb62c3b9426</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 <[email protected]> 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 | 6 ------ configure.ac | 3 --- 2 files changed, 9 deletions(-) Index: libcdirectory/Makefile.am =================================================================== --- libcdirectory.orig/Makefile.am +++ libcdirectory/Makefile.am @@ -3,9 +3,6 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = \ include \ common \ - libcerror \ - libclocale \ - libuna \ libcdirectory \ po \ manuals \ @@ -55,9 +52,6 @@ lib: library library: cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS) - cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS) - cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS) - cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS) cd $(srcdir)/libcdirectory && $(MAKE) $(AM_MAKEFLAGS) cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS) Index: libcdirectory/configure.ac =================================================================== --- libcdirectory.orig/configure.ac +++ libcdirectory/configure.ac @@ -106,9 +106,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([libclocale/Makefile]) -AC_CONFIG_FILES([libuna/Makefile]) AC_CONFIG_FILES([libcdirectory/Makefile]) AC_CONFIG_FILES([po/Makefile.in]) AC_CONFIG_FILES([po/Makevars])
