Hello community,

here is the log from the commit of package git for openSUSE:Factory checked in 
at 2016-09-05 21:18:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/git (Old)
 and      /work/SRC/openSUSE:Factory/.git.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "git"

Changes:
--------
--- /work/SRC/openSUSE:Factory/git/git.changes  2016-08-17 12:03:46.000000000 
+0200
+++ /work/SRC/openSUSE:Factory/.git.new/git.changes     2016-09-05 
21:18:56.000000000 +0200
@@ -1,0 +2,16 @@
+Sat Sep  3 19:25:08 UTC 2016 - [email protected]
+
+- git 2.10.0, feature and bugfix update:
+  * various workflow output improvements
+  * various improvements and extensions of command line options
+  * A handful of "git svn" updates.
+  * internal performance improvements
+
+-------------------------------------------------------------------
+Wed Aug 31 15:55:05 UTC 2016 - [email protected]
+
+- Reduce build-compare noise 
+  git-asciidoc.patch
+  git-tclIndex.patch
+
+-------------------------------------------------------------------

Old:
----
  git-2.9.3.tar.sign
  git-2.9.3.tar.xz

New:
----
  git-2.10.0.tar.sign
  git-2.10.0.tar.xz
  git-asciidoc.patch
  git-tclIndex.patch

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

Other differences:
------------------
++++++ git.spec ++++++
--- /var/tmp/diff_new_pack.Ssq87j/_old  2016-09-05 21:18:58.000000000 +0200
+++ /var/tmp/diff_new_pack.Ssq87j/_new  2016-09-05 21:18:58.000000000 +0200
@@ -26,7 +26,7 @@
 %endif
 
 Name:           git
-Version:        2.9.3
+Version:        2.10.0
 Release:        0
 Summary:        Fast, scalable, distributed revision control system
 License:        GPL-2.0
@@ -53,6 +53,8 @@
 Patch6:         git-tcsh-completion-fixes.diff
 # adapt paths in zsh completion (bnc#853183)
 Patch7:         git-zsh-completion-fixes.diff
+Patch8:         git-asciidoc.patch
+Patch9:         git-tclIndex.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  apache2
 BuildRequires:  asciidoc
@@ -244,6 +246,8 @@
 %patch5 -p1
 %patch6 -p1
 %patch7 -p1
+%patch8 -p1
+%patch9 -p1
 
 %build
 cat > .make <<'EOF'

++++++ git-2.9.3.tar.xz -> git-2.10.0.tar.xz ++++++
++++ 116215 lines of diff (skipped)

++++++ git-asciidoc.patch ++++++
---
 Documentation/asciidoc.conf |    2 ++
 1 file changed, 2 insertions(+)

--- a/Documentation/asciidoc.conf
+++ b/Documentation/asciidoc.conf
@@ -21,6 +21,8 @@ tilde=&#126;
 apostrophe=&#39;
 backtick=&#96;
 litdd=&#45;&#45;
+# drops the "last-updated" footer, with asciidoc-8.6.9+
+footer-style=none
 
 ifdef::backend-docbook[]
 [linkgit-inlinemacro]

++++++ git-tclIndex.patch ++++++
ALL_LIBFILES uses wildcard, which provides the result in directory
order. This order depends on the underlying filesystem on the
buildhost. To get reproducible builds it is required to sort such list
before using them.
---
 git-gui/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/git-gui/Makefile
+++ b/git-gui/Makefile
@@ -259,7 +259,7 @@ lib/tclIndex: $(ALL_LIBFILES) GIT-GUI-VA
         rm -f $@ ; \
         echo '# Autogenerated by git-gui Makefile' >$@ && \
         echo >>$@ && \
-        $(foreach p,$(PRELOAD_FILES) $(ALL_LIBFILES),echo '$(subst lib/,,$p)' 
>>$@ &&) \
+        $(foreach p,$(PRELOAD_FILES) $(sort $(ALL_LIBFILES)),echo '$(subst 
lib/,,$p)' >>$@ &&) \
         echo >>$@ ; \
        fi
 

Reply via email to