Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package suck for openSUSE:Factory checked in at 2024-03-20 21:18:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/suck (Old) and /work/SRC/openSUSE:Factory/.suck.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "suck" Wed Mar 20 21:18:22 2024 rev:21 rq:1159782 version:4.3.5 Changes: -------- --- /work/SRC/openSUSE:Factory/suck/suck.changes 2018-08-02 15:00:39.120531483 +0200 +++ /work/SRC/openSUSE:Factory/.suck.new.1905/suck.changes 2024-03-20 21:21:34.753991383 +0100 @@ -1,0 +2,8 @@ +Wed Mar 20 08:16:15 UTC 2024 - Michael Vetter <[email protected]> + +- Update to 4.3.5: + * Add missing <string.h> include (#4) + * Fix usage of non-standard LDFLAGS (#5) + * configure.ac: properly test $with_inn_{lib,include} (#5) + +------------------------------------------------------------------- Old: ---- 4.3.4.tar.gz New: ---- 4.3.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ suck.spec ++++++ --- /var/tmp/diff_new_pack.4g5G2T/_old 2024-03-20 21:21:36.334049427 +0100 +++ /var/tmp/diff_new_pack.4g5G2T/_new 2024-03-20 21:21:36.350050015 +0100 @@ -1,7 +1,7 @@ # # spec file for package suck # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,7 +12,7 @@ # 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/ # @@ -21,9 +21,9 @@ BuildRequires: automake BuildRequires: inn-devel BuildRequires: openssl-devel -Version: 4.3.4 +Version: 4.3.5 Release: 0 -Url: https://github.com/lazarus-pkgs/suck +URL: https://github.com/lazarus-pkgs/suck Summary: Reading News Offline License: SUSE-Public-Domain Group: Productivity/Networking/News/Utilities ++++++ 4.3.4.tar.gz -> 4.3.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suck-4.3.4/CHANGELOG new/suck-4.3.5/CHANGELOG --- old/suck-4.3.4/CHANGELOG 2018-08-01 15:54:24.000000000 +0200 +++ new/suck-4.3.5/CHANGELOG 2024-03-20 09:12:57.000000000 +0100 @@ -1,5 +1,13 @@ CHANGES ======= +-- Changes from suck-4.3.4 -> Suck-4.3.5 + +- Add missing <string.h> include (#4) +- Fix usage of non-standard LDFLAGS (#5) +- configure.ac: properly test $with_inn_{lib,include} (#5) + +March 20, 2024 - Suck-4.3.5 released + -- Changes from suck-4.3.3 -> Suck-4.3.4 - Fix invalid memory access in both.c (Debian bug #858040) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suck-4.3.4/Makefile.in new/suck-4.3.5/Makefile.in --- old/suck-4.3.4/Makefile.in 2018-08-01 15:54:24.000000000 +0200 +++ new/suck-4.3.5/Makefile.in 2024-03-20 09:12:57.000000000 +0100 @@ -103,7 +103,7 @@ PKGNAME=suck VERSION_MAJOR=4 VERSION_MINOR=3 -VERSION_PATCH=4 +VERSION_PATCH=5 VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH) CC = @CC@ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suck-4.3.4/chkhistory_db.c new/suck-4.3.5/chkhistory_db.c --- old/suck-4.3.4/chkhistory_db.c 2018-08-01 15:54:24.000000000 +0200 +++ new/suck-4.3.5/chkhistory_db.c 2024-03-20 09:12:57.000000000 +0100 @@ -5,6 +5,7 @@ /* be used. */ #include <stdio.h> +#include <string.h> #include "suck_config.h" #include "suck.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suck-4.3.4/configure.ac new/suck-4.3.5/configure.ac --- old/suck-4.3.4/configure.ac 2018-08-01 15:54:24.000000000 +0200 +++ new/suck-4.3.5/configure.ac 2024-03-20 09:12:57.000000000 +0100 @@ -41,10 +41,10 @@ dnl Checks for library functions. AC_TYPE_SIGNAL AC_CHECK_FUNCS(gettimeofday select strerror memmove setvbuf sigaction) -if test "$with_inn_lib" ; then - LDFLAGS+="$DB_LIB -L${with_inn_lib}" +if test "x$with_inn_lib" != "xno" ; then + LDFLAGS="${LDFLAGS} $DB_LIB -L${with_inn_lib}" fi -if test "$with_inn_include" ; then +if test "x$with_inn_include" != "xno" ; then testpath=$with_inn_include else testpath="/usr/include/inn /usr/local/include /usr/local/include/inn" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suck-4.3.4/suck.spec new/suck-4.3.5/suck.spec --- old/suck-4.3.4/suck.spec 2018-08-01 15:54:24.000000000 +0200 +++ new/suck-4.3.5/suck.spec 2024-03-20 09:12:57.000000000 +0100 @@ -1,4 +1,4 @@ -%define version 4.3.4 +%define version 4.3.5 %define name suck %define release 1
