Hello community,

here is the log from the commit of package scdoc for openSUSE:Factory checked 
in at 2019-03-05 12:26:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/scdoc (Old)
 and      /work/SRC/openSUSE:Factory/.scdoc.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "scdoc"

Tue Mar  5 12:26:14 2019 rev:7 rq:681623 version:1.9.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/scdoc/scdoc.changes      2019-03-01 
16:47:32.077796597 +0100
+++ /work/SRC/openSUSE:Factory/.scdoc.new.28833/scdoc.changes   2019-03-05 
12:26:16.100829194 +0100
@@ -1,0 +2,15 @@
+Tue Mar  5 07:18:35 UTC 2019 - mvet...@suse.com
+
+- Update to 1.9.4:
+  * Fix SOURCE_DATE_EPOCH test w/busybox date
+  * Drop install -D flag after acb0f64a7b73
+  * Fix the "Ignores underscores in underlined words" test
+  * Add a pkg-config template
+
+-------------------------------------------------------------------
+Mon Mar  4 08:30:32 UTC 2019 - mvet...@suse.com
+
+- Update to 1.9.3:
+  * parse_text: return if next is UTF8_INVALID
+
+-------------------------------------------------------------------

Old:
----
  1.9.1.tar.gz

New:
----
  1.9.4.tar.gz

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

Other differences:
------------------
++++++ scdoc.spec ++++++
--- /var/tmp/diff_new_pack.swCtUL/_old  2019-03-05 12:26:16.680829298 +0100
+++ /var/tmp/diff_new_pack.swCtUL/_new  2019-03-05 12:26:16.684829299 +0100
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via https://bugs.opensuse.org/
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
 
 Name:           scdoc
-Version:        1.9.1
+Version:        1.9.4
 Release:        0
 Summary:        A man page generator written in C99
 License:        MIT

++++++ 1.9.1.tar.gz -> 1.9.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.9.1/.gitignore new/scdoc-1.9.4/.gitignore
--- old/scdoc-1.9.1/.gitignore  2019-02-28 01:09:09.000000000 +0100
+++ new/scdoc-1.9.4/.gitignore  2019-03-04 16:43:31.000000000 +0100
@@ -2,3 +2,4 @@
 scdoc
 scdoc.1
 scdoc.5
+scdoc.pc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.9.1/Makefile new/scdoc-1.9.4/Makefile
--- old/scdoc-1.9.1/Makefile    2019-02-28 01:09:09.000000000 +0100
+++ new/scdoc-1.9.4/Makefile    2019-03-04 16:43:31.000000000 +0100
@@ -1,4 +1,4 @@
-VERSION=1.9.1
+VERSION=1.9.4
 CFLAGS+=-g -DVERSION='"$(VERSION)"' -Wall -Wextra -Werror -Wno-unused-parameter
 LDFLAGS+=-static
 INCLUDE+=-Iinclude
@@ -35,16 +35,20 @@
 scdoc.5: scdoc.5.scd $(HOST_SCDOC)
        $(HOST_SCDOC) < $< > $@
 
-all: scdoc scdoc.1 scdoc.5
+scdoc.pc: scdoc.pc.in
+       sed -e 's:@prefix@:$(PREFIX):g' -e 's:@version@:$(VERSION):g' < $< > $@
+
+all: scdoc scdoc.1 scdoc.5 scdoc.pc
 
 clean:
-       rm -rf $(OUTDIR) scdoc scdoc.1 scdoc.5
+       rm -rf $(OUTDIR) scdoc scdoc.1 scdoc.5 scdoc.pc
 
 install: all
-       install -Dm755 scdoc $(BINDIR)/scdoc
-       install -Dm644 scdoc.1 $(MANDIR)/man1/scdoc.1
-       install -Dm644 scdoc.5 $(MANDIR)/man5/scdoc.5
-       install -Dm644 scdoc.pc $(PCDIR)/scdoc.pc
+       mkdir -p $(BINDIR) $(MANDIR)/man1 $(MANDIR)/man5 $(PCDIR)
+       install -m755 scdoc $(BINDIR)/scdoc
+       install -m644 scdoc.1 $(MANDIR)/man1/scdoc.1
+       install -m644 scdoc.5 $(MANDIR)/man5/scdoc.5
+       install -m644 scdoc.pc $(PCDIR)/scdoc.pc
 
 check: scdoc scdoc.1 scdoc.5
        @find test -perm -111 -exec '{}' \;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.9.1/scdoc.pc new/scdoc-1.9.4/scdoc.pc
--- old/scdoc-1.9.1/scdoc.pc    2019-02-28 01:09:09.000000000 +0100
+++ new/scdoc-1.9.4/scdoc.pc    1970-01-01 01:00:00.000000000 +0100
@@ -1,7 +0,0 @@
-prefix=/usr
-exec_prefix=${prefix}
-scdoc=${exec_prefix}/bin/scdoc
-
-Name: scdoc
-Description: Man page generator
-Version: 1.9.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.9.1/scdoc.pc.in new/scdoc-1.9.4/scdoc.pc.in
--- old/scdoc-1.9.1/scdoc.pc.in 1970-01-01 01:00:00.000000000 +0100
+++ new/scdoc-1.9.4/scdoc.pc.in 2019-03-04 16:43:31.000000000 +0100
@@ -0,0 +1,7 @@
+prefix=@prefix@
+exec_prefix=${prefix}
+scdoc=${exec_prefix}/bin/scdoc
+
+Name: scdoc
+Description: Man page generator
+Version: @version@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.9.1/src/main.c new/scdoc-1.9.4/src/main.c
--- old/scdoc-1.9.1/src/main.c  2019-02-28 01:09:09.000000000 +0100
+++ new/scdoc-1.9.4/src/main.c  2019-03-04 16:43:31.000000000 +0100
@@ -219,6 +219,9 @@
                        } else {
                                utf8_fputch(p->output, ch);
                        }
+                       if (next == UTF8_INVALID) {
+                               return;
+                       }
                        parser_pushch(p, next);
                        break;
                case '+':
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.9.1/test/inline-formatting 
new/scdoc-1.9.4/test/inline-formatting
--- old/scdoc-1.9.1/test/inline-formatting      2019-02-28 01:09:09.000000000 
+0100
+++ new/scdoc-1.9.4/test/inline-formatting      2019-03-04 16:43:31.000000000 
+0100
@@ -23,7 +23,7 @@
 
 _hello_world_
 EOF
-end0
+end 0
 
 begin "Ignores underscores in bolded words"
 scdoc <<EOF | grep '^\\fBhello_world\\fR' >/dev/null
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.9.1/test/preamble 
new/scdoc-1.9.4/test/preamble
--- old/scdoc-1.9.1/test/preamble       2019-02-28 01:09:09.000000000 +0100
+++ new/scdoc-1.9.4/test/preamble       2019-03-04 16:43:31.000000000 +0100
@@ -70,7 +70,7 @@
 EOF
 end 0
 
-export SOURCE_DATE_EPOCH=$(date --date="2017-12-09 23:18:57 -0500" +'%s')
+export SOURCE_DATE_EPOCH=$(date --date="2017-12-09 23:18:57" +'%s')
 
 begin "Supports \$SOURCE_DATE_EPOCH"
 scdoc <<EOF | grep '^\.TH "reproducible-manual" "8" "2017-12-10"' >/dev/null

++++++ scdoc-1.6.1-makefile.patch ++++++
--- /var/tmp/diff_new_pack.swCtUL/_old  2019-03-05 12:26:16.732829308 +0100
+++ /var/tmp/diff_new_pack.swCtUL/_new  2019-03-05 12:26:16.732829308 +0100
@@ -1,8 +1,8 @@
-diff -urEbwB scdoc-1.8.0/Makefile scdoc-1.8.0.new/Makefile
---- scdoc-1.8.0/Makefile       2019-01-27 17:09:10.000000000 +0100
-+++ scdoc-1.8.0.new/Makefile   2019-02-04 10:31:38.792833379 +0100
+diff -urEbwB scdoc-1.9.4/Makefile scdoc-1.9.4.new/Makefile
+--- scdoc-1.9.4/Makefile       2019-03-04 16:43:31.000000000 +0100
++++ scdoc-1.9.4.new/Makefile   2019-03-05 08:18:13.614838942 +0100
 @@ -1,6 +1,5 @@
- VERSION=1.9.1
+ VERSION=1.9.4
  CFLAGS+=-g -DVERSION='"$(VERSION)"' -Wall -Wextra -Werror 
-Wno-unused-parameter
 -LDFLAGS+=-static
  INCLUDE+=-Iinclude


Reply via email to