Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libfole for openSUSE:Factory checked in at 2021-06-11 00:18:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libfole (Old) and /work/SRC/openSUSE:Factory/.libfole.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libfole" Fri Jun 11 00:18:09 2021 rev:3 rq:898705 version:20210415 Changes: -------- --- /work/SRC/openSUSE:Factory/libfole/libfole.changes 2017-10-05 11:57:02.575307812 +0200 +++ /work/SRC/openSUSE:Factory/.libfole.new.32437/libfole.changes 2021-06-11 00:18:18.281278444 +0200 @@ -1,0 +2,7 @@ +Thu May 13 11:41:22 UTC 2021 - Jan Engelhardt <jeng...@inai.de> + +- Update to snapshot 20210415 (bd3f3608) + * No changelog was provided +- Add system-libs.patch + +------------------------------------------------------------------- Old: ---- libfole-alpha-20170502.tar.gz New: ---- _service libfole-20210415.tar.xz system-libs.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libfole.spec ++++++ --- /var/tmp/diff_new_pack.IkBKzi/_old 2021-06-11 00:18:18.789279326 +0200 +++ /var/tmp/diff_new_pack.IkBKzi/_new 2021-06-11 00:18:18.793279332 +0200 @@ -1,7 +1,7 @@ # # spec file for package libfole # -# Copyright (c) 2017 SUSE LINUX 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,25 +12,25 @@ # 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: libfole %define lname libfole1 -%define timestamp 20170502 -Version: 0~%{timestamp} +Version: 20210415 Release: 0 Summary: Library for Object Linking and Embedding (OLE) data types -License: LGPL-3.0+ +License: LGPL-3.0-or-later Group: Productivity/File utilities -Url: https://github.com/libyal/libfole/wiki -Source: https://github.com/libyal/libfole/releases/download/%timestamp/%{name}-alpha-%{timestamp}.tar.gz +URL: https://github.com/libyal/libfole +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(libcstring) >= 20150101 -BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: pkgconfig(libcerror) >= 20201121 %description libfole is a library for Object Linking and Embedding (OLE) data types. @@ -58,28 +58,25 @@ applications that want to make use of libfole. %prep -%setup -q -n libfole-%{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 +%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}/libfole.so.* %files devel -%defattr(-,root,root) -%doc AUTHORS COPYING README ChangeLog %{_includedir}/libfole.h %{_includedir}/libfole/ %{_libdir}/libfole.so ++++++ _service ++++++ <services> <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/libyal/libfole</param> <param name="revision">bd3f3608503dcbaacfb555d48c7f3b81c0e5aaa5</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 | 2 -- configure.ac | 1 - 2 files changed, 3 deletions(-) Index: libfole/Makefile.am =================================================================== --- libfole.orig/Makefile.am +++ libfole/Makefile.am @@ -3,7 +3,6 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = \ include \ common \ - libcerror \ libfole \ po \ manuals \ @@ -53,7 +52,6 @@ lib: library library: (cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS)) - (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS)) (cd $(srcdir)/libfole && $(MAKE) $(AM_MAKEFLAGS)) (cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS)) Index: libfole/configure.ac =================================================================== --- libfole.orig/configure.ac +++ libfole/configure.ac @@ -97,7 +97,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([libfole/Makefile]) AC_CONFIG_FILES([po/Makefile.in]) AC_CONFIG_FILES([po/Makevars])