Hello community,

here is the log from the commit of package libvc for openSUSE:Factory checked 
in at 2020-07-16 12:15:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libvc (Old)
 and      /work/SRC/openSUSE:Factory/.libvc.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libvc"

Thu Jul 16 12:15:46 2020 rev:3 rq:821036 version:007

Changes:
--------
--- /work/SRC/openSUSE:Factory/libvc/libvc.changes      2020-06-19 
17:22:33.383747025 +0200
+++ /work/SRC/openSUSE:Factory/.libvc.new.3592/libvc.changes    2020-07-16 
12:17:07.830884505 +0200
@@ -1,0 +2,7 @@
+Wed Jul 15 06:17:00 UTC 2020 - Michael Vetter <mvet...@suse.com>
+
+- Update to 007:
+  * This releases uses mktemp instead of the deprecated tempfile
+    command in the unit tests.
+
+-------------------------------------------------------------------

Old:
----
  v006.tar.gz

New:
----
  v007.tar.gz

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

Other differences:
------------------
++++++ libvc.spec ++++++
--- /var/tmp/diff_new_pack.SAZXLD/_old  2020-07-16 12:17:08.870885557 +0200
+++ /var/tmp/diff_new_pack.SAZXLD/_new  2020-07-16 12:17:08.874885560 +0200
@@ -18,7 +18,7 @@
 
 %define c_lib   libvc0
 Name:           libvc
-Version:        006
+Version:        007
 Release:        0
 Summary:        Library to read and write vcard files
 License:        LGPL-2.1-only

++++++ v006.tar.gz -> v007.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvc-006/NEWS new/libvc-007/NEWS
--- old/libvc-006/NEWS  2019-07-13 19:46:24.000000000 +0200
+++ new/libvc-007/NEWS  2020-07-14 20:27:59.000000000 +0200
@@ -1,3 +1,7 @@
+libvc 007 (2020-07-14)
+
+* Use mktemp instead of deprecated tempfile in unit tests
+
 libvc 006 (2019-07-13)
 
 * Add unit tests
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvc-006/configure.ac new/libvc-007/configure.ac
--- old/libvc-006/configure.ac  2019-07-13 19:46:24.000000000 +0200
+++ new/libvc-007/configure.ac  2020-07-14 20:27:59.000000000 +0200
@@ -2,7 +2,7 @@
 # $Id: configure.ac,v 1.3 2003/06/14 01:54:15 ahsu Rel $
 
 ### Versioning
-AC_INIT([libvc],[006],[raf...@laboissiere.net])
+AC_INIT([libvc],[007],[raf...@laboissiere.net])
 LIBVC_ABI_VERSION=0:1:0
 AC_SUBST(LIBVC_ABI_VERSION)
 
@@ -10,7 +10,7 @@
 AM_INIT_AUTOMAKE
 AC_PREREQ(2.59)
 AC_COPYRIGHT([Copyright (C) 2003  Andrew Hsu
-Copyright (C) 2017, 2019 Rafael Laboissiere])
+Copyright (C) 2017, 2019, 2020 Rafael Laboissiere])
 AC_REVISION($Revision: 1.3 $)
 AC_CONFIG_SRCDIR([src/vc.c])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvc-006/test/run-tests new/libvc-007/test/run-tests
--- old/libvc-006/test/run-tests        2019-07-13 19:46:24.000000000 +0200
+++ new/libvc-007/test/run-tests        2020-07-14 20:27:59.000000000 +0200
@@ -16,7 +16,7 @@
 
 ### Test header inclusion
 test_header_inclusion() {
-    src=$(tempfile --suffix .c)
+    src=$(mktemp --suffix .c)
     cat <<EOF > $src
 #include <vc.h>
 EOF
@@ -26,7 +26,7 @@
 
 ### Test call to the function vc_new
 test_vc_new() {
-    src=$(tempfile --suffix .c)
+    src=$(mktemp --suffix .c)
     cat <<EOF > $src
 #include <vc.h>
 
@@ -37,7 +37,7 @@
    v = vc_new ();
 }
 EOF
-    out=$(tempfile)
+    out=$(mktemp)
     $CC -o $out $INC $src $LIB
     $out
     rm -f $src $out


Reply via email to