git: Update from 2.16.3 to 2.17.0
authorFredrik Fornwall <fredrik@fornwall.net>
Tue, 3 Apr 2018 22:09:18 +0000 (00:09 +0200)
committerFredrik Fornwall <fredrik@fornwall.net>
Tue, 3 Apr 2018 22:09:18 +0000 (00:09 +0200)
packages/git/build.sh
packages/git/disable_daemon_syslog.patch
packages/git/help.c.patch
packages/git/makefile.patch [deleted file]
packages/git/perl-Makefile.PL.patch [deleted file]

index a5e9bc5..324481d 100755 (executable)
@@ -2,8 +2,8 @@ TERMUX_PKG_HOMEPAGE=https://git-scm.com/
 TERMUX_PKG_DESCRIPTION="Fast, scalable, distributed revision control system"
 # less is required as a pager for git log, and the busybox less does not handle used escape sequences.
 TERMUX_PKG_DEPENDS="libcurl, less, openssl"
-TERMUX_PKG_VERSION=2.16.3
-TERMUX_PKG_SHA256=d65d99e9e5b081c1f14ea018973806e942a2eb7d0da2ebc01bd2525adee62d48
+TERMUX_PKG_VERSION=2.17.0
+TERMUX_PKG_SHA256=e916e5e95e81dbeafa7aac5d719c01108b5c814eb90b746695afa1afedf955c7
 TERMUX_PKG_SRCURL=https://www.kernel.org/pub/software/scm/git/git-${TERMUX_PKG_VERSION}.tar.xz
 ## This requires a working $TERMUX_PREFIX/bin/sh on the host building:
 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
index 905da02..904d003 100644 (file)
@@ -1,15 +1,25 @@
-diff -u -r ../git-1.8.5.3/daemon.c ./daemon.c
---- ../git-1.8.5.3/daemon.c    2014-01-14 18:10:09.000000000 +0100
-+++ ./daemon.c 2014-02-02 20:29:55.000000000 +0100
-@@ -64,9 +64,11 @@
- static void logreport(int priority, const char *err, va_list params)
+diff -u -r ../git-2.17.0/daemon.c ./daemon.c
+--- ../git-2.17.0/daemon.c     2018-04-02 19:44:04.000000000 +0200
++++ ./daemon.c 2018-04-03 23:10:19.566140810 +0200
+@@ -82,9 +82,11 @@
  {
-       if (log_syslog) {
+       switch (log_destination) {
+       case LOG_DESTINATION_SYSLOG: {
 +              /*
                char buf[1024];
                vsnprintf(buf, sizeof(buf), err, params);
                syslog(priority, "%s", buf);
 +              */
-       } else {
-               /*
-                * Since stderr is set to buffered mode, the
+               break;
+       }
+       case LOG_DESTINATION_STDERR:
+@@ -1432,7 +1434,9 @@
+       }
+       if (log_destination == LOG_DESTINATION_SYSLOG) {
++              /*
+               openlog("git-daemon", LOG_PID, LOG_DAEMON);
++              */
+               set_die_routine(daemon_die);
+       } else
+               /* avoid splitting a message in the middle */
index 18af2d6..8f9be7f 100644 (file)
@@ -6,7 +6,7 @@ diff -u -r ../git-2.9.3/help.c ./help.c
  static const char bad_interpreter_advice[] =
        N_("'%s' appears to be a git command, but we were not\n"
 -      "able to execute it. Maybe git-%s is broken?");
-+      "able to execute it. Maybe you need to 'apt install perl'?");
++      "able to execute it. Maybe you need to 'pkg install perl'?");
  
  const char *help_unknown_cmd(const char *cmd)
  {
diff --git a/packages/git/makefile.patch b/packages/git/makefile.patch
deleted file mode 100644 (file)
index 9790a15..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-The Termux git package installs git perl files to $PREFIX/share/git-perl
-by patching perl/Makefile.PL, so setup that path when building perl
-files in this Makefile.
-
-diff -u -r ../git-2.7.4/Makefile ./Makefile
---- ../git-2.7.4/Makefile      2016-03-17 16:47:59.000000000 -0400
-+++ ./Makefile 2016-03-24 22:46:20.335193973 -0400
-@@ -1789,7 +1788,7 @@
-       sed -e '1{' \
-           -e '        s|#!.*perl|#!$(PERL_PATH_SQ)|' \
-           -e '        h' \
--          -e '        s=.*=use lib (split(/$(pathsep)/, $$ENV{GITPERLLIB} || "'"$$INSTLIBDIR"'"));=' \
-+          -e '        s=.*=use lib (split(/$(pathsep)/, $$ENV{GITPERLLIB} || "'"@TERMUX_PREFIX@/share/git-perl"'"));=' \
-           -e '        H' \
-           -e '        x' \
-           -e '}' \
diff --git a/packages/git/perl-Makefile.PL.patch b/packages/git/perl-Makefile.PL.patch
deleted file mode 100644 (file)
index 07bc374..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-Install git perl files to a local git-specific folder and
-be sure to bring the private Error.pm copy with it.
-
-diff -u -r ../git-2.7.4/perl/Makefile.PL ./perl/Makefile.PL
---- ../git-2.7.4/perl/Makefile.PL      2016-03-17 16:47:59.000000000 -0400
-+++ ./perl/Makefile.PL 2016-03-24 22:38:12.222059955 -0400
-@@ -38,15 +38,13 @@
-       my $pm_path = $File::Find::name;
-       $pm_path =~ s{^\./}{};
--      $pm{$pm_path} = '$(INST_LIBDIR)/'.$pm_path;
-+      $pm{$pm_path} = '@TERMUX_PREFIX@/share/git-perl/'.$pm_path;
- }, "Git", "Git.pm";
- # We come with our own bundled Error.pm. It's not in the set of default
- # Perl modules so install it if it's not available on the system yet.
--if ( !eval { require Error } || $Error::VERSION < 0.15009) {
--      $pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
--}
-+      $pm{'private-Error.pm'} = '@TERMUX_PREFIX@/share/git-perl/Error.pm';
- # redirect stdout, otherwise the message "Writing perl.mak for Git"
- # disrupts the output for the target 'instlibdir'