Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tntdb for openSUSE:Factory checked 
in at 2021-01-30 13:56:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tntdb (Old)
 and      /work/SRC/openSUSE:Factory/.tntdb.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tntdb"

Sat Jan 30 13:56:56 2021 rev:5 rq:867900 version:1.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/tntdb/tntdb.changes      2020-03-19 
19:54:15.372277588 +0100
+++ /work/SRC/openSUSE:Factory/.tntdb.new.28504/tntdb.changes   2021-01-30 
13:57:54.098410638 +0100
@@ -1,0 +2,10 @@
+Sat Jan 23 14:12:48 UTC 2021 - Luigi Baldoni <aloi...@gmx.com>
+
+- Update to version 1.4 (see
+  https://github.com/maekitalo/tntdb/compare/1.3...1.4
+  for a changelog)
+- Refreshed tntdb-1.3-avoid-version.patch as
+  tntdb-1.4-avoid-version.patch
+- Spec cleanup
+
+-------------------------------------------------------------------

Old:
----
  tntdb-1.3-avoid-version.patch
  tntdb-1.3.tar.gz

New:
----
  tntdb-1.4-avoid-version.patch
  tntdb-1.4.tar.gz

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

Other differences:
------------------
++++++ tntdb.spec ++++++
--- /var/tmp/diff_new_pack.p1OxrE/_old  2021-01-30 13:57:54.602411487 +0100
+++ /var/tmp/diff_new_pack.p1OxrE/_new  2021-01-30 13:57:54.606411495 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tntdb
 #
-# 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
@@ -16,33 +16,30 @@
 #
 
 
+%define sover   5
 Name:           tntdb
-Version:        1.3
+Version:        1.4
 Release:        0
 Summary:        Library for simple database access
 License:        LGPL-2.1-or-later
 Group:          Development/Libraries/C and C++
 URL:            http://www.tntnet.org/index.html
 Source0:        http://www.tntnet.org/download/tntdb-%{version}.tar.gz
-Patch0:         tntdb-1.3-avoid-version.patch
+Patch0:         tntdb-1.4-avoid-version.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  doxygen
 BuildRequires:  findutils
 BuildRequires:  gcc-c++
-BuildRequires:  glibc-devel
-BuildRequires:  libcxxtools-devel
 BuildRequires:  libtool
-BuildRequires:  lzo
-BuildRequires:  lzo-devel
-BuildRequires:  mysql-devel
-BuildRequires:  postgresql-devel
+BuildRequires:  pkgconfig(cxxtools)
+BuildRequires:  pkgconfig(libmariadb)
+BuildRequires:  pkgconfig(libpq)
+BuildRequires:  pkgconfig(sqlite3)
+BuildRequires:  pkgconfig(zlib)
 %if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150200
 BuildRequires:  postgresql-server-devel
 %endif
-BuildRequires:  sqlite-devel
-BuildRequires:  zip
-BuildRequires:  zlib-devel
 
 %description
 Tntdb is a library for simple database access.
@@ -63,12 +60,12 @@
 
 This package contains documentation
 
-%package -n libtntdb4
+%package -n libtntdb%{sover}
 Summary:        Library for simple database access
 Group:          Development/Libraries/C and C++
 Provides:       tntdb
 
-%description -n libtntdb4
+%description -n libtntdb%{sover}
 Tntdb is a library for simple database access.
 
 The database independent layer offers easy to use methods for working with the 
database and also greatly simplifies resource-management. The classes hold 
reference-counted pointers to the actual implementation. They are copyable and 
assignable. The user can use the classes just like simple values. The resources 
they reference are freed, when the last reference is deleted. This happens 
normally just by leaving the scope. There is normally no reason to instantiate 
them dynamically on the heap.
@@ -78,7 +75,7 @@
 %package -n libtntdb-devel
 Summary:        Development files for tntdb
 Group:          Development/Libraries/C and C++
-Requires:       libtntdb4 = %{version}
+Requires:       libtntdb%{sover} = %{version}
 
 %description -n libtntdb-devel
 Headers and so links for tntdb library.
@@ -112,8 +109,7 @@
 Replication plugin for tntdb abstraction library.
 
 %prep
-%setup -q -n tntdb-%{version}
-%patch0
+%autosetup -p1
 
 %build
 autoreconf -fi
@@ -123,20 +119,20 @@
        --with-mysql \
        --with-sqlite \
        --with-doxygen
-make %{?_smp_mflags}
+%make_build
 
 %install
 %make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 find %{buildroot} -name '*.a' -delete
 
-%post -n libtntdb4 -p /sbin/ldconfig
-%postun -n libtntdb4 -p /sbin/ldconfig
+%post -n libtntdb%{sover} -p /sbin/ldconfig
+%postun -n libtntdb%{sover} -p /sbin/ldconfig
 
 %files doc
 %doc %{_datadir}/doc/%{name}
 
-%files -n libtntdb4
+%files -n libtntdb%{sover}
 %license COPYING
 %{_libdir}/libtntdb.so.*
 
@@ -145,6 +141,7 @@
 %{_includedir}/tntdb
 %{_includedir}/tntdb.h
 %{_libdir}/libtntdb.so
+%{_libdir}/pkgconfig/tntdb.pc
 
 %files -n tntdb-mysql
 %dir %{_libdir}/tntdb

++++++ tntdb-1.3-avoid-version.patch -> tntdb-1.4-avoid-version.patch ++++++
--- /work/SRC/openSUSE:Factory/tntdb/tntdb-1.3-avoid-version.patch      
2015-05-19 23:38:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.tntdb.new.28504/tntdb-1.4-avoid-version.patch   
2021-01-30 13:57:53.962410408 +0100
@@ -1,8 +1,8 @@
-Index: src/mysql/Makefile.am
+Index: tntdb-1.4/src/mysql/Makefile.am
 ===================================================================
---- src/mysql/Makefile.am.orig
-+++ src/mysql/Makefile.am
-@@ -9,7 +9,7 @@ if MAKE_MYSQL
+--- tntdb-1.4.orig/src/mysql/Makefile.am
++++ tntdb-1.4/src/mysql/Makefile.am
+@@ -7,7 +7,7 @@ if MAKE_MYSQL
  driver_LTLIBRARIES = tntdb@abi_curr...@-mysql.la
  
  tntdb@abi_current@_mysql_la_SOURCES = $(sources)
@@ -11,24 +11,24 @@
  tntdb@abi_current@_mysql_la_LIBADD = $(top_builddir)/src/libtntdb.la
  
  endif
-Index: src/oracle/Makefile.am
+Index: tntdb-1.4/src/oracle/Makefile.am
 ===================================================================
---- src/oracle/Makefile.am.orig
-+++ src/oracle/Makefile.am
-@@ -22,7 +22,7 @@ if MAKE_ORACLE
+--- tntdb-1.4.orig/src/oracle/Makefile.am
++++ tntdb-1.4/src/oracle/Makefile.am
+@@ -23,7 +23,7 @@ if MAKE_ORACLE
  driver_LTLIBRARIES = tntdb@abi_curr...@-oracle.la
  
  tntdb@abi_current@_oracle_la_SOURCES = $(sources)
 -tntdb@abi_current@_oracle_la_LDFLAGS = -module -version-info @sonumber@ 
@SHARED_LIB_FLAG@
 +tntdb@abi_current@_oracle_la_LDFLAGS = -module -avoid-version -version-info 
@sonumber@ @SHARED_LIB_FLAG@
- tntdb@abi_current@_oracle_la_LIBADD = $(top_builddir)/src/libtntdb.la -lclntsh
+ tntdb@abi_current@_oracle_la_LIBADD = $(top_builddir)/src/libtntdb.la 
@ORACLE_OCI_LDFLAGS@ 
  
  endif
-Index: src/postgresql/Makefile.am
+Index: tntdb-1.4/src/postgresql/Makefile.am
 ===================================================================
---- src/postgresql/Makefile.am.orig
-+++ src/postgresql/Makefile.am
-@@ -9,7 +9,7 @@ if MAKE_POSTGRESQL
+--- tntdb-1.4.orig/src/postgresql/Makefile.am
++++ tntdb-1.4/src/postgresql/Makefile.am
+@@ -7,7 +7,7 @@ if MAKE_POSTGRESQL
  driver_LTLIBRARIES = tntdb@abi_curr...@-postgresql.la
  
  tntdb@abi_current@_postgresql_la_SOURCES = $(sources)
@@ -37,10 +37,10 @@
  tntdb@abi_current@_postgresql_la_LIBADD = $(top_builddir)/src/libtntdb.la
  
  endif
-Index: src/replicate/Makefile.am
+Index: tntdb-1.4/src/replicate/Makefile.am
 ===================================================================
---- src/replicate/Makefile.am.orig
-+++ src/replicate/Makefile.am
+--- tntdb-1.4.orig/src/replicate/Makefile.am
++++ tntdb-1.4/src/replicate/Makefile.am
 @@ -7,7 +7,7 @@ if MAKE_REPLICATE
  driver_LTLIBRARIES = tntdb@abi_curr...@-replicate.la
  
@@ -50,10 +50,10 @@
  tntdb@abi_current@_replicate_la_LIBADD = $(top_builddir)/src/libtntdb.la
  
  endif
-Index: src/sqlite/Makefile.am
+Index: tntdb-1.4/src/sqlite/Makefile.am
 ===================================================================
---- src/sqlite/Makefile.am.orig
-+++ src/sqlite/Makefile.am
+--- tntdb-1.4.orig/src/sqlite/Makefile.am
++++ tntdb-1.4/src/sqlite/Makefile.am
 @@ -7,7 +7,7 @@ if MAKE_SQLITE
  driver_LTLIBRARIES = tntdb@abi_curr...@-sqlite.la
  

++++++ tntdb-1.3.tar.gz -> tntdb-1.4.tar.gz ++++++
++++ 54193 lines of diff (skipped)

Reply via email to