Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libfguid for openSUSE:Factory 
checked in at 2021-06-11 00:18:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libfguid (Old)
 and      /work/SRC/openSUSE:Factory/.libfguid.new.32437 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libfguid"

Fri Jun 11 00:18:07 2021 rev:11 rq:898703 version:20210415

Changes:
--------
--- /work/SRC/openSUSE:Factory/libfguid/libfguid.changes        2019-06-12 
13:08:23.669130737 +0200
+++ /work/SRC/openSUSE:Factory/.libfguid.new.32437/libfguid.changes     
2021-06-11 00:18:16.477275309 +0200
@@ -1,0 +2,7 @@
+Wed May 12 22:21:09 UTC 2021 - Jan Engelhardt <jeng...@inai.de>
+
+- Update to snapshot 20210415 (c8bed427)
+  * No changelog was provided
+- Add system-libs.patch
+
+-------------------------------------------------------------------

Old:
----
  libfguid-alpha-20180724.tar.gz

New:
----
  _service
  libfguid-20210415.tar.xz
  system-libs.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libfguid.spec ++++++
--- /var/tmp/diff_new_pack.Dy7IR4/_old  2021-06-11 00:18:16.969276164 +0200
+++ /var/tmp/diff_new_pack.Dy7IR4/_new  2021-06-11 00:18:16.973276170 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libfguid
 #
-# Copyright (c) 2019 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
@@ -18,18 +18,19 @@
 
 Name:           libfguid
 %define lname  libfguid1
-%define timestamp 20180724
-Version:        0~%timestamp
+Version:        20210415
 Release:        0
 Summary:        A library for GUID/UUID data types
 License:        LGPL-3.0-or-later
 Group:          Development/Libraries/C and C++
-Url:            https://github.com/libyal/libfguid/wiki
-Source:         
https://github.com/libyal/libfguid/releases/download/%timestamp/%{name}-alpha-%timestamp.tar.gz
+URL:            https://github.com/libyal/libfguid
+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) >= 20130609
-BuildRequires:  pkgconfig(libcstring) >= 20120425
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig(libcerror) >= 20201121
 
 %description
 A library for GUID/UUID data types. Part of the libyal family of libraries.
@@ -53,11 +54,12 @@
 applications that want to make use of libfguid.
 
 %prep
-%setup -qn libfguid-%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
@@ -67,13 +69,10 @@
 %postun -n %lname -p /sbin/ldconfig
 
 %files -n %lname
-%defattr(-,root,root)
-%doc AUTHORS ChangeLog
-%license COPYING 
+%license COPYING*
 %{_libdir}/libfguid.so.1*
 
 %files devel
-%defattr(-,root,root)
 %{_includedir}/libfguid*
 %{_libdir}/libfguid.so
 %{_libdir}/pkgconfig/libfguid.pc

++++++ _service ++++++
<services>
        <service name="tar_scm" mode="disabled">
                <param name="scm">git</param>
                <param name="url">https://github.com/libyal/libfguid</param>
                <param 
name="revision">c8bed42795056d108d9ae67848246ad2d71f01d7</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: libfguid/Makefile.am
===================================================================
--- libfguid.orig/Makefile.am
+++ libfguid/Makefile.am
@@ -3,7 +3,6 @@ ACLOCAL_AMFLAGS = -I m4
 SUBDIRS = \
        include \
        common \
-       libcerror \
        libfguid \
        po \
        manuals \
@@ -53,7 +52,6 @@ lib: library
 
 library:
        (cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
-       (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
        (cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
        (cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
 
Index: libfguid/configure.ac
===================================================================
--- libfguid.orig/configure.ac
+++ libfguid/configure.ac
@@ -91,7 +91,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([libfguid/Makefile])
 AC_CONFIG_FILES([po/Makefile.in])
 AC_CONFIG_FILES([po/Makevars])

Reply via email to