Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package t1utils for openSUSE:Factory checked 
in at 2021-03-02 14:42:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/t1utils (Old)
 and      /work/SRC/openSUSE:Factory/.t1utils.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "t1utils"

Tue Mar  2 14:42:46 2021 rev:20 rq:874582 version:1.42

Changes:
--------
--- /work/SRC/openSUSE:Factory/t1utils/t1utils.changes  2021-02-04 
20:22:57.558724416 +0100
+++ /work/SRC/openSUSE:Factory/.t1utils.new.2378/t1utils.changes        
2021-03-02 15:32:25.098036979 +0100
@@ -1,0 +2,7 @@
+Sun Feb 21 05:44:27 UTC 2021 - Dave Plater <davejpla...@gmail.com>
+
+- Update to 1.42 to fix t1asm seg fault in lilypond's Factory build
+  See: boo#1182596 and
+  https://github.com/kohler/lcdf-typetools/issues/8
+
+-------------------------------------------------------------------

Old:
----
  t1utils-1.41.tar.gz

New:
----
  t1utils-1.42.tar.gz

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

Other differences:
------------------
++++++ t1utils.spec ++++++
--- /var/tmp/diff_new_pack.hWTXj2/_old  2021-03-02 15:32:25.570037208 +0100
+++ /var/tmp/diff_new_pack.hWTXj2/_new  2021-03-02 15:32:25.574037209 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           t1utils
-Version:        1.41
+Version:        1.42
 Release:        0
 Summary:        A collection of simple type-1 font manipulation programs
 License:        ISC

++++++ t1utils-1.41.tar.gz -> t1utils-1.42.tar.gz ++++++
++++ 6934 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/NEWS.md new/t1utils-1.42/NEWS.md
--- old/t1utils-1.41/NEWS.md    2017-08-16 18:27:35.000000000 +0200
+++ new/t1utils-1.42/NEWS.md    2020-10-27 16:09:49.000000000 +0100
@@ -1,6 +1,11 @@
 T1utils NEWS
 ============
 
+## Version 1.42 ??? 27.Oct.2020
+
+* Compile fixes for OSes that do not declare a function.
+
+
 ## Version 1.41 ??? 16.Aug.2017
 
 * t1asm, t1disasm: More security fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/compile new/t1utils-1.42/compile
--- old/t1utils-1.41/compile    2014-12-11 18:25:05.000000000 +0100
+++ new/t1utils-1.42/compile    2020-10-27 16:08:38.000000000 +0100
@@ -1,9 +1,9 @@
 #! /bin/sh
 # Wrapper for compilers which do not understand '-c -o'.
 
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
+# Copyright (C) 1999-2020 Free Software Foundation, Inc.
 # Written by Tom Tromey <tro...@cygnus.com>.
 #
 # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -53,7 +53,7 @@
          MINGW*)
            file_conv=mingw
            ;;
-         CYGWIN*)
+         CYGWIN* | MSYS*)
            file_conv=cygwin
            ;;
          *)
@@ -67,7 +67,7 @@
        mingw/*)
          file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
          ;;
-       cygwin/*)
+       cygwin/* | msys/*)
          file=`cygpath -m "$file" || echo "$file"`
          ;;
        wine/*)
@@ -255,7 +255,8 @@
     echo "compile $scriptversion"
     exit $?
     ;;
-  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+  icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
     func_cl_wrapper "$@"      # Doesn't return...
     ;;
 esac
@@ -339,9 +340,9 @@
 # Local Variables:
 # mode: shell-script
 # sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
 # time-stamp-end: "; # UTC"
 # End:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/config.h.in new/t1utils-1.42/config.h.in
--- old/t1utils-1.41/config.h.in        2017-08-16 18:28:15.000000000 +0200
+++ new/t1utils-1.42/config.h.in        2020-10-27 16:09:11.000000000 +0100
@@ -3,6 +3,10 @@
 #ifndef T1UTILS_CONFIG_H
 #define T1UTILS_CONFIG_H
 
+/* Define to 1 if you have the declaration of `memmem', and to 0 if you don't.
+   */
+#undef HAVE_DECL_MEMMEM
+
 /* Define if intXX_t types are not available. */
 #undef HAVE_FAKE_INT_TYPES
 
@@ -96,7 +100,7 @@
 #endif
 
 /* Prototype memmem if we don't have it. */
-#if !HAVE_MEMMEM
+#if !HAVE_MEMMEM || !HAVE_DECL_MEMMEM
 void* memmem(const void* haystack, size_t haystack_len,
              const void* needle, size_t needle_len);
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/configure.ac new/t1utils-1.42/configure.ac
--- old/t1utils-1.41/configure.ac       2017-08-16 18:27:16.000000000 +0200
+++ new/t1utils-1.42/configure.ac       2020-10-27 16:08:44.000000000 +0100
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT([t1utils], [1.41])
+AC_INIT([t1utils], [1.42])
 AC_CONFIG_SRCDIR([t1ascii.c])
 AM_INIT_AUTOMAKE
 AC_CONFIG_HEADERS([config.h])
@@ -19,6 +19,7 @@
 dnl
 
 AC_REPLACE_FUNCS([strerror memmem])
+AC_CHECK_DECLS([memmem])
 
 
 dnl
@@ -88,7 +89,7 @@
 #endif
 
 /* Prototype memmem if we don't have it. */
-#if !HAVE_MEMMEM
+#if !HAVE_MEMMEM || !HAVE_DECL_MEMMEM
 void* memmem(const void* haystack, size_t haystack_len,
              const void* needle, size_t needle_len);
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/missing new/t1utils-1.42/missing
--- old/t1utils-1.41/missing    2014-12-11 18:25:05.000000000 +0100
+++ new/t1utils-1.42/missing    2020-10-27 16:08:38.000000000 +0100
@@ -1,9 +1,9 @@
 #! /bin/sh
 # Common wrapper for a few potentially missing GNU programs.
 
-scriptversion=2013-10-28.13; # UTC
+scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
+# Copyright (C) 1996-2020 Free Software Foundation, Inc.
 # Originally written by Fran,cois Pinard <pin...@iro.umontreal.ca>, 1996.
 
 # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@
 # GNU General Public License for more details.
 
 # You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -101,9 +101,9 @@
   exit $st
 fi
 
-perl_URL=http://www.perl.org/
-flex_URL=http://flex.sourceforge.net/
-gnu_software_URL=http://www.gnu.org/software
+perl_URL=https://www.perl.org/
+flex_URL=https://github.com/westes/flex
+gnu_software_URL=https://www.gnu.org/software
 
 program_details ()
 {
@@ -207,9 +207,9 @@
 exit $st
 
 # Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
 # time-stamp-end: "; # UTC"
 # End:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/t1ascii.1 new/t1utils-1.42/t1ascii.1
--- old/t1utils-1.41/t1ascii.1  2017-08-16 18:29:33.000000000 +0200
+++ new/t1utils-1.42/t1ascii.1  2020-10-27 16:09:18.000000000 +0100
@@ -1,4 +1,4 @@
-.ds V 1.41
+.ds V 1.42
 .de M
 .BR "\\$1" "(\\$2)\\$3"
 ..
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/t1asm.1 new/t1utils-1.42/t1asm.1
--- old/t1utils-1.41/t1asm.1    2017-08-16 18:29:33.000000000 +0200
+++ new/t1utils-1.42/t1asm.1    2020-10-27 16:09:18.000000000 +0100
@@ -1,4 +1,4 @@
-.ds V 1.41
+.ds V 1.42
 .de M
 .BR "\\$1" "(\\$2)\\$3"
 ..
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/t1binary.1 new/t1utils-1.42/t1binary.1
--- old/t1utils-1.41/t1binary.1 2017-08-16 18:29:33.000000000 +0200
+++ new/t1utils-1.42/t1binary.1 2020-10-27 16:09:18.000000000 +0100
@@ -1,4 +1,4 @@
-.ds V 1.41
+.ds V 1.42
 .de M
 .BR "\\$1" "(\\$2)\\$3"
 ..
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/t1disasm.1 new/t1utils-1.42/t1disasm.1
--- old/t1utils-1.41/t1disasm.1 2017-08-16 18:29:33.000000000 +0200
+++ new/t1utils-1.42/t1disasm.1 2020-10-27 16:09:18.000000000 +0100
@@ -1,4 +1,4 @@
-.ds V 1.41
+.ds V 1.42
 .de M
 .BR "\\$1" "(\\$2)\\$3"
 ..
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/t1mac.1 new/t1utils-1.42/t1mac.1
--- old/t1utils-1.41/t1mac.1    2017-08-16 18:29:33.000000000 +0200
+++ new/t1utils-1.42/t1mac.1    2020-10-27 16:09:18.000000000 +0100
@@ -1,4 +1,4 @@
-.ds V 1.41
+.ds V 1.42
 .de M
 .BR "\\$1" "(\\$2)\\$3"
 ..
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/t1utils-1.41/t1unmac.1 new/t1utils-1.42/t1unmac.1
--- old/t1utils-1.41/t1unmac.1  2017-08-16 18:29:33.000000000 +0200
+++ new/t1utils-1.42/t1unmac.1  2020-10-27 16:09:18.000000000 +0100
@@ -1,4 +1,4 @@
-.ds V 1.41
+.ds V 1.42
 .de M
 .BR "\\$1" "(\\$2)\\$3"
 ..

Reply via email to