git: update to 2.6.4

This commit is contained in:
Tom G. Christensen 2015-12-19 20:31:42 +01:00
parent 072cf6ddd7
commit 3c6fd0cf69
3 changed files with 28 additions and 10 deletions

View File

@ -6,12 +6,13 @@
########################################################### ###########################################################
# Check the following 4 variables before running the script # Check the following 4 variables before running the script
topdir=git topdir=git
version=2.4.5 version=2.6.4
pkgver=1 pkgver=1
source[0]=https://www.kernel.org/pub/software/scm/git/$topdir-$version.tar.gz source[0]=https://www.kernel.org/pub/software/scm/git/$topdir-$version.tar.gz
source[1]=https://www.kernel.org/pub/software/scm/git/$topdir-manpages-$version.tar.gz source[1]=https://www.kernel.org/pub/software/scm/git/$topdir-manpages-$version.tar.gz
# If there are no patches, simply comment this # If there are no patches, simply comment this
patch[0]=git-1.8.1.5-inet_addrstrlen.patch patch[0]=git-1.8.1.5-inet_addrstrlen.patch
patch[1]=git-2.6.3-stdint_h.patch
# Source function library # Source function library
. ${BUILDPKG_SCRIPTS}/buildpkg.functions . ${BUILDPKG_SCRIPTS}/buildpkg.functions

View File

@ -1,5 +1,11 @@
CHANGELOG CHANGELOG
--------- ---------
* Sat Dec 12 2015 Tom G. Christensen <swpkg@jupiterrise.com> - 2.6.4-1
- Update to 2.6.4
* Wed Nov 11 2015 Tom G. Christensen <swpkg@jupiterrise.com> - 2.6.3-1
- Update to 2.6.3
* Wed Jul 01 2015 Tom G. Christensen <swpkg@jupiterrise.com> - 2.4.5-1 * Wed Jul 01 2015 Tom G. Christensen <swpkg@jupiterrise.com> - 2.4.5-1
- Update to 2.4.5 - Update to 2.4.5

View File

@ -0,0 +1,11 @@
--- git-2.6.3/compat/regex/regcomp.c.no_stdint-h 2015-11-05 22:31:55.000000000 +0100
+++ git-2.6.3/compat/regex/regcomp.c 2015-11-11 18:24:26.206399000 +0100
@@ -18,7 +18,7 @@
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA. */
-#include <stdint.h>
+#include <inttypes.h>
static reg_errcode_t re_compile_internal (regex_t *preg, const char * pattern,
size_t length, reg_syntax_t syntax);