Hello community,

here is the log from the commit of package git for openSUSE:Factory checked in 
at 2020-10-28 09:56:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/git (Old)
 and      /work/SRC/openSUSE:Factory/.git.new.3463 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "git"

Wed Oct 28 09:56:54 2020 rev:254 rq:843670 version:2.29.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/git/git.changes  2020-10-23 12:20:05.128587388 
+0200
+++ /work/SRC/openSUSE:Factory/.git.new.3463/git.changes        2020-10-28 
09:57:24.131103515 +0100
@@ -1,0 +2,7 @@
+Fri Oct 23 19:03:18 UTC 2020 - Andreas Stieger <andreas.stie...@gmx.de>
+
+- git 2.29.1:
+  * build system fixes for non-default installations
+    (not affecting this package)
+
+-------------------------------------------------------------------

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

New:
----
  git-2.29.1.tar.sign
  git-2.29.1.tar.xz

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

Other differences:
------------------
++++++ git.spec ++++++
--- /var/tmp/diff_new_pack.w1LnX0/_old  2020-10-28 09:57:27.967106297 +0100
+++ /var/tmp/diff_new_pack.w1LnX0/_new  2020-10-28 09:57:27.971106300 +0100
@@ -36,7 +36,7 @@
 %endif
 
 Name:           git
-Version:        2.29.0
+Version:        2.29.1
 Release:        0
 Summary:        Fast, scalable, distributed revision control system
 License:        GPL-2.0-only

++++++ git-2.29.0.tar.xz -> git-2.29.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/git-2.29.0/Documentation/RelNotes/2.29.1.txt 
new/git-2.29.1/Documentation/RelNotes/2.29.1.txt
--- old/git-2.29.0/Documentation/RelNotes/2.29.1.txt    1970-01-01 
01:00:00.000000000 +0100
+++ new/git-2.29.1/Documentation/RelNotes/2.29.1.txt    2020-10-23 
00:31:53.000000000 +0200
@@ -0,0 +1,11 @@
+Git v2.29.1 Release Notes
+=========================
+
+This is to fix the build procedure change in 2.28 where we failed to
+install a few programs that should be installed in /usr/bin (namely,
+receive-pack, upload-archive and upload-pack) when the non-default
+SKIP_DASHED_BUILT_INS installation option is in effect.
+
+A minor glitch in a non-default installation may usually not deserve
+a hotfix, but I know Git for Windows ship binaries built with this
+option, so let's make an exception.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/git-2.29.0/GIT-VERSION-GEN 
new/git-2.29.1/GIT-VERSION-GEN
--- old/git-2.29.0/GIT-VERSION-GEN      2020-10-19 19:31:08.000000000 +0200
+++ new/git-2.29.1/GIT-VERSION-GEN      2020-10-23 00:31:53.000000000 +0200
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v2.29.0
+DEF_VER=v2.29.1
 
 LF='
 '
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/git-2.29.0/Makefile new/git-2.29.1/Makefile
--- old/git-2.29.0/Makefile     2020-10-19 19:31:08.000000000 +0200
+++ new/git-2.29.1/Makefile     2020-10-23 00:31:53.000000000 +0200
@@ -2981,15 +2981,12 @@
        } && \
        for p in $(filter $(install_bindir_programs),$(BUILT_INS)); do \
                $(RM) "$$bindir/$$p" && \
-               if test -z "$(SKIP_DASHED_BUILT_INS)"; \
-               then \
-                       test -n "$(INSTALL_SYMLINKS)" && \
-                       ln -s "git$X" "$$bindir/$$p" || \
-                       { test -z "$(NO_INSTALL_HARDLINKS)" && \
-                         ln "$$bindir/git$X" "$$bindir/$$p" 2>/dev/null || \
-                         ln -s "git$X" "$$bindir/$$p" 2>/dev/null || \
-                         cp "$$bindir/git$X" "$$bindir/$$p" || exit; }; \
-               fi \
+               test -n "$(INSTALL_SYMLINKS)" && \
+               ln -s "git$X" "$$bindir/$$p" || \
+               { test -z "$(NO_INSTALL_HARDLINKS)" && \
+                 ln "$$bindir/git$X" "$$bindir/$$p" 2>/dev/null || \
+                 ln -s "git$X" "$$bindir/$$p" 2>/dev/null || \
+                 cp "$$bindir/git$X" "$$bindir/$$p" || exit; }; \
        done && \
        for p in $(BUILT_INS); do \
                $(RM) "$$execdir/$$p" && \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/git-2.29.0/RelNotes new/git-2.29.1/RelNotes
--- old/git-2.29.0/RelNotes     2020-10-28 09:57:29.535107394 +0100
+++ new/git-2.29.1/RelNotes     2020-10-28 09:57:29.543107400 +0100
@@ -1 +1 @@
-symbolic link to Documentation/RelNotes/2.29.0.txt
+symbolic link to Documentation/RelNotes/2.29.1.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/git-2.29.0/configure new/git-2.29.1/configure
--- old/git-2.29.0/configure    2020-10-19 19:31:08.000000000 +0200
+++ new/git-2.29.1/configure    2020-10-23 00:31:53.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for git 2.29.0.
+# Generated by GNU Autoconf 2.69 for git 2.29.1.
 #
 # Report bugs to <g...@vger.kernel.org>.
 #
@@ -580,8 +580,8 @@
 # Identity of this package.
 PACKAGE_NAME='git'
 PACKAGE_TARNAME='git'
-PACKAGE_VERSION='2.29.0'
-PACKAGE_STRING='git 2.29.0'
+PACKAGE_VERSION='2.29.1'
+PACKAGE_STRING='git 2.29.1'
 PACKAGE_BUGREPORT='g...@vger.kernel.org'
 PACKAGE_URL=''
 
@@ -1265,7 +1265,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures git 2.29.0 to adapt to many kinds of systems.
+\`configure' configures git 2.29.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1327,7 +1327,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of git 2.29.0:";;
+     short | recursive ) echo "Configuration of git 2.29.1:";;
    esac
   cat <<\_ACEOF
 
@@ -1472,7 +1472,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-git configure 2.29.0
+git configure 2.29.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1952,7 +1952,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by git $as_me 2.29.0, which was
+It was created by git $as_me 2.29.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -8360,7 +8360,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by git $as_me 2.29.0, which was
+This file was extended by git $as_me 2.29.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -8417,7 +8417,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-git config.status 2.29.0
+git config.status 2.29.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/git-2.29.0/version new/git-2.29.1/version
--- old/git-2.29.0/version      2020-10-19 19:31:08.000000000 +0200
+++ new/git-2.29.1/version      2020-10-23 00:31:53.000000000 +0200
@@ -1 +1 @@
-2.29.0
+2.29.1



Reply via email to