Hello community,

here is the log from the commit of package lbdb for openSUSE:Factory checked in 
at 2020-05-20 18:46:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lbdb (Old)
 and      /work/SRC/openSUSE:Factory/.lbdb.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lbdb"

Wed May 20 18:46:32 2020 rev:25 rq:807433 version:0.48.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/lbdb/lbdb.changes        2015-12-16 
17:42:21.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.lbdb.new.2738/lbdb.changes      2020-05-20 
18:46:38.101440394 +0200
@@ -1,0 +2,34 @@
+Wed May  6 08:15:56 UTC 2020 - Paolo Stivanin <[email protected]>
+
+- Update to 0.48.1:
+  * Fix wrong quoting in lbdb-fetchaddr 
+  * m_muttalias: Fix some shellcheck warnings.
+  * Change project homepage URL to https.
+  * Use literal tab characters in order to make m_abook and m_goobook
+    modules work without requiring GNU sed(1).  Thanks to Raf Czlonka.
+  * Add tests for m_abook.
+  * Add update-version target to update version in all autotool files.
+  * m_abook: Fix a shellcheck warning.
+  * lbdbq, lbdb-fetchaddr: Fix some shellcheck warnings.
+  * Upgrade Standards-Version to 4.3.0
+    - Declare Rules-Requires-Root: no.
+  * Upgrade debhelper to v12.
+  * m_inmail/lbdb-munge: Use INMAIL_DB if set in config
+  * Upgrade debhelper to v11.
+  * Replace legacy `...` by $(...) in sh scripts.
+  * Update copyright notice.
+  * Add test_perl to check perl syntax.
+  * Add some perl libs <!nocheck> to Build-Depends, to be able do
+    perl syntax check.
+  * Replace undefined $rv by $?.
+  * Make the database file for m_inmail/lbdb-fetchaddr configurable.
+  * Add LBDB_OVERRIDE_METHODS, OVERIDE_MUTTALIAS_FILES variables for
+    testing.
+  * Add a test suite.
+    - Add a test for m_muttalias.
+  * m_muttalias: rewrite sed regex as ERE, which should be more POSIX
+    compatible and should work on non GNU sed, too.
+  * lbdbq: Remove whitespace from number of matches to become more
+    portable.
+
+-------------------------------------------------------------------

Old:
----
  lbdb_0.39.tar.xz

New:
----
  lbdb_0.48.1.tar.xz

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

Other differences:
------------------
++++++ lbdb.spec ++++++
--- /var/tmp/diff_new_pack.cvyuFz/_old  2020-05-20 18:46:39.337443172 +0200
+++ /var/tmp/diff_new_pack.cvyuFz/_new  2020-05-20 18:46:39.341443180 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lbdb
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,17 +12,17 @@
 # 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:           lbdb
-Version:        0.39
+Version:        0.48.1
 Release:        0
 Summary:        Address Database for mutt
-License:        GPL-2.0+
+License:        GPL-2.0-or-later
 Group:          Productivity/Networking/Email/Utilities
-Url:            http://www.spinnaker.de/lbdb/
+URL:            http://www.spinnaker.de/lbdb/
 Source:         http://www.spinnaker.de/debian/lbdb_%{version}.tar.xz
 Patch0:         lbdb.rc.dif
 Patch2:         lbdb-hostname.diff
@@ -46,7 +46,7 @@
 
 %prep
 %setup -q -n lbdb-%{version}
-%patch0
+%patch0 -p1
 %patch2 -p1
 
 %build

++++++ lbdb-hostname.diff ++++++
--- /var/tmp/diff_new_pack.cvyuFz/_old  2020-05-20 18:46:39.369443243 +0200
+++ /var/tmp/diff_new_pack.cvyuFz/_new  2020-05-20 18:46:39.369443243 +0200
@@ -1,29 +1,16 @@
-Index: lbdb-0.34/lbdb_lib.sh.in
-===================================================================
---- lbdb-0.34.orig/lbdb_lib.sh.in
-+++ lbdb-0.34/lbdb_lib.sh.in
-@@ -55,21 +55,18 @@ lbdb_hostname()
-       if test "x$MAIL_DOMAIN_NAME" != "x" ; then
-               hn=$MAIL_DOMAIN_NAME
-       elif test -f /etc/mailname; then
--              hn=`cat /etc/mailname`
-+              read hn < /etc/mailname
+--- b/lbdb_lib.sh.in   2019-01-07 19:30:29.000000000 +0100
++++ a/lbdb_lib.sh.in   2020-05-06 10:13:38.987327900 +0200
+@@ -56,11 +56,8 @@
        else
                hn=""
                if test -r /etc/resolv.conf ; then
--                      hn="`sed -n -e 's/^[    ]*domain[       ]\{1,\}\([^ 
]*\)/\1/p' /etc/resolv.conf`"
+-                      hn="$(sed -n -e 's/^[   ]*domain[       ]\{1,\}\([^ 
]*\)/\1/p' /etc/resolv.conf)"
 -                      if test "x$hn" = "x" ; then
--                              hn="`sed -n -e 's/^[    ]*search[       
]\{1,\}\([^ ]*\)/\1/p' /etc/resolv.conf`"
+-                              hn="$(sed -n -e 's/^[   ]*search[       
]\{1,\}\([^ ]*\)/\1/p' /etc/resolv.conf)"
 -                      fi
-+                      hn=`awk '/^#/{next}($1 == "search" || $1 == "domain" ) 
&& $2 != "" {print $2;exit}' < /etc/resolv.conf`
-               fi
+-              fi
++              hn=`awk '/^#/{next}($1 == "search" || $1 == "domain" ) && $2 != 
"" {print $2;exit}' < /etc/resolv.conf`
++        fi
                if test "x$hn" = "x" ; then
-                       hn=`lbdb_hn_sendmail`
+                       hn=$(lbdb_hn_sendmail)
                        if test "x$hn" = "xNONE" ; then
-                               for i in /etc/HOSTNAME /etc/hostname ; do
-                                       if test -f $i ; then
--                                              hn="`cat $i`"
-+                                              read hn < $i
-                                               break;
-                                       fi
-                               done

++++++ lbdb.rc.dif ++++++
--- /var/tmp/diff_new_pack.cvyuFz/_old  2020-05-20 18:46:39.385443279 +0200
+++ /var/tmp/diff_new_pack.cvyuFz/_new  2020-05-20 18:46:39.385443279 +0200
@@ -1,13 +1,12 @@
-Index: lbdb.rc.in
-===================================================================
---- lbdb.rc.in.orig
-+++ lbdb.rc.in
-@@ -40,7 +40,7 @@
- # - m_evolution  search in the Ximan Evolution addressbook.
+diff -ru a/lbdb.rc.in b/lbdb.rc.in
+--- a/lbdb.rc.in       2019-01-07 19:30:29.000000000 +0100
++++ b/lbdb.rc.in       2020-05-06 10:09:09.738793553 +0200
+@@ -41,7 +41,7 @@
  # - m_vcf        search a vcard (according to RFC2426) file.
+ # - m_khard      search a CardDAV address book via khard
  
 -METHODS="m_inmail m_passwd m_finger"
 +METHODS="m_inmail m_finger m_getent m_gpg"
  
- 
  #
+ # If you want to use a different database file for m_inmail, you can

++++++ lbdb_0.39.tar.xz -> lbdb_0.48.1.tar.xz ++++++
++++ 9056 lines of diff (skipped)


Reply via email to