Script 'mail_helper' called by obssrc
Hello community,

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

Package is "libmapidb"

Fri Jun 11 00:18:16 2021 rev:3 rq:898728 version:20210421

Changes:
--------
--- /work/SRC/openSUSE:Factory/libmapidb/libmapidb.changes      2019-06-12 
13:10:00.949086171 +0200
+++ /work/SRC/openSUSE:Factory/.libmapidb.new.32437/libmapidb.changes   
2021-06-11 00:18:32.577303283 +0200
@@ -1,0 +2,7 @@
+Fri May 14 21:17:43 UTC 2021 - Jan Engelhardt <jeng...@inai.de>
+
+- Update to snapshot 20210421 (14a17a14)
+  * No changelog was provided
+- Add system-libs.patch
+
+-------------------------------------------------------------------

Old:
----
  libmapidb-experimental-20170304.tar.gz

New:
----
  _service
  libmapidb-20210421.tar.xz
  system-libs.patch

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

Other differences:
------------------
++++++ libmapidb.spec ++++++
--- /var/tmp/diff_new_pack.UHbRpQ/_old  2021-06-11 00:18:34.177306063 +0200
+++ /var/tmp/diff_new_pack.UHbRpQ/_new  2021-06-11 00:18:34.177306063 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmapidb
 #
-# 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,19 +18,20 @@
 
 Name:           libmapidb
 %define lname  libmapidb1
-%define timestamp 20170304
-Version:        0~%timestamp
+Version:        20210421
 Release:        0
 Summary:        Library for accessing the Exchange MAPI database format
 License:        LGPL-3.0-or-later
 Group:          Development/Libraries/C and C++
-Url:            https://github.com/libyal/libmapidb/wiki
-Source:         
https://github.com/libyal/libmapidb/releases/download/%timestamp/%name-experimental-%timestamp.tar.gz
+URL:            https://github.com/libyal/libmapidb
+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(libcnotify)
-BuildRequires:  pkgconfig(libcstring) >= 20150101
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig(libcerror) >= 20201121
+BuildRequires:  pkgconfig(libcnotify) >= 20200913
 
 %description
 A library for accessing the Exchange MAPI database format
@@ -58,27 +59,25 @@
 applications that want to make use of libmapidb.
 
 %prep
-%setup -qn libmapidb-%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/libmapidb.so.1*
 
 %files devel
-%defattr(-,root,root)
 %_includedir/libmapidb*
 %_libdir/libmapidb.so
 %_libdir/pkgconfig/libmapidb.pc

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

Reply via email to