Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libvc for openSUSE:Factory checked in at 2026-04-08 17:16:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libvc (Old) and /work/SRC/openSUSE:Factory/.libvc.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libvc" Wed Apr 8 17:16:52 2026 rev:8 rq:1345099 version:013 Changes: -------- --- /work/SRC/openSUSE:Factory/libvc/libvc.changes 2022-10-04 20:38:18.332965743 +0200 +++ /work/SRC/openSUSE:Factory/.libvc.new.21863/libvc.changes 2026-04-08 17:16:54.714835435 +0200 @@ -1,0 +2,7 @@ +Wed Apr 8 03:35:33 UTC 2026 - Michael Vetter <[email protected]> + +- Update to 013: + * Increased AC_PREREQ to 2.72 + * Abort the configure script if Flex or Bison programs are not found + +------------------------------------------------------------------- Old: ---- v012.tar.gz New: ---- v013.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libvc.spec ++++++ --- /var/tmp/diff_new_pack.A19hSj/_old 2026-04-08 17:16:55.526868820 +0200 +++ /var/tmp/diff_new_pack.A19hSj/_new 2026-04-08 17:16:55.530868985 +0200 @@ -1,7 +1,7 @@ # # spec file for package libvc # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,14 +18,14 @@ %define c_lib libvc0 Name: libvc -Version: 012 +Version: 013 Release: 0 Summary: Library to read and write vcard files License: LGPL-2.1-only Group: Development/Libraries/C and C++ URL: https://github.com/libvc/libvc Source0: https://github.com/libvc/libvc/archive/v%{version}.tar.gz -BuildRequires: autoconf >= 2.71 +BuildRequires: autoconf >= 2.72 BuildRequires: automake BuildRequires: bison BuildRequires: byacc ++++++ v012.tar.gz -> v013.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvc-012/NEWS new/libvc-013/NEWS --- old/libvc-012/NEWS 2022-10-04 14:02:25.000000000 +0200 +++ new/libvc-013/NEWS 2026-04-07 17:47:45.000000000 +0200 @@ -1,3 +1,31 @@ +libvc 013 (2026-04-07) + +* Bump AC_PREREQ to 2.72 +* Abort configure script if flex- or bison-equivalent programs are not found + +libvc 012 (2022-10-04) + +Avoid implicit declaration of functions + +libvc 011 (2021-13-12) + +* src/vc_scan.l: Hide visibility of non-api functions and variables + +* Fixed segfault causes by using current_vcard when parse doesn't +match anything, changed file location tracking mechanism so that +reading extra large vcards doesn't cause the parsing to fail early + +* Improve parsing times of large vcards + +libvc 010 (2021-01-12) + +* Do not call exit() + +* Port to Autoconf 2.71 + +* Clean files that are removed by the clean target of the generated +Makefiles + libvc 009 (2021-02-05) * Cope with libtoolize warnings regarding the m4 directory diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvc-012/configure.ac new/libvc-013/configure.ac --- old/libvc-012/configure.ac 2022-10-04 14:02:25.000000000 +0200 +++ new/libvc-013/configure.ac 2026-04-07 17:47:45.000000000 +0200 @@ -2,15 +2,15 @@ # $Id: configure.ac,v 1.3 2003/06/14 01:54:15 ahsu Rel $ ### Versioning -AC_INIT([libvc],[012],[[email protected]]) +AC_INIT([libvc],[013],[[email protected]]) LIBVC_ABI_VERSION=1:4:1 AC_SUBST(LIBVC_ABI_VERSION) ### Main definitions AM_INIT_AUTOMAKE -AC_PREREQ([2.71]) +AC_PREREQ([2.72]) AC_COPYRIGHT([Copyright (C) 2003 Andrew Hsu -Copyright (C) 2017, 2019-2021 Rafael Laboissière]) +Copyright (C) 2017, 2019-2022, 2026 Rafael Laboissière]) AC_REVISION($Revision: 1.3 $) AC_CONFIG_SRCDIR([src/vc.c]) AC_CONFIG_MACRO_DIRS([m4]) @@ -18,7 +18,17 @@ ### Checks for programs. AC_PROG_CC AC_PROG_LEX([noyywrap]) +if test "$LEX" = ":" ; then + AC_MSG_ERROR([LEX program not found]) +fi AC_PROG_YACC +dnl For some strange reason, if neither bison of byacc are found, the YACC +dnl variable is set to "yacc", even if this program does not exist in the +dnl system. +AC_CHECK_PROG(have_yacc,$YACC,yes,no) +if test "$have_yacc" = no ; then + AC_MSG_ERROR([YACC program not found]) +fi LT_INIT AC_CHECK_PROG(have_shunit2,shunit2,yes) AM_CONDITIONAL([HAVE_SHUNIT2], [test x$have_shunit2 = xyes])
