git: update to 1.8.5.3

This commit is contained in:
Tom G. Christensen 2014-02-02 14:37:50 +01:00
parent 281e54d264
commit 77d11357bc
4 changed files with 7 additions and 75 deletions

View File

@ -6,7 +6,7 @@
###########################################################
# Check the following 4 variables before running the script
topdir=git
version=1.8.4.3
version=1.8.5.3
pkgver=1
source[0]=http://git-core.googlecode.com/files/$topdir-$version.tar.gz
source[1]=http://git-core.googlecode.com/files/$topdir-manpages-$version.tar.gz
@ -45,6 +45,8 @@ prefix=$prefix
NEEDS_RESOLV = YesPlease
# missing PTHREAD_MUTEX_RECURSIVE with posix95 pthreads
NO_PTHREADS = YesPlease
# It takes forever to run SVN tests
NO_SVN_TESTS = YesPlease
EOF
}

View File

@ -1,5 +1,8 @@
CHANGELOG
---------
* Sun Feb 02 2014 Tom G. Christensen <swpkg@jupiterrise.com> - 1.8.5.3-1
- Update to 1.8.5.3
* Sun Nov 17 2013 Tom G. Christensen <swpkg@jupiterrise.com> - 1.8.4.3-1
- Update to 1.8.4.3

View File

@ -1,27 +0,0 @@
PACKAGE DETAILS
---------------
Name: %%PKGNAME%%
Version: %%SOURCE_AND_VER%%
Vendor: %%VENDOR%%
Packager: %%PKGEDBY%%
Source (sha1sum):
%%SOURCE_SHA1SUM%%
BUILD DETAILS
-------------
Compiler:
%%COMPILER%%
Environment:
%%ENVIRONMENT%%
Configure:
%%CONFIGURE%%
KNOWN DEPENDENCIES
------------------
%%DEPENDENCIES%%
ERRORS/MISCELLANEOUS
--------------------

View File

@ -1,46 +0,0 @@
--- git-1.7.2.3/Makefile.symlinks 2010-09-03 23:05:21.000000000 +0200
+++ git-1.7.2.3/Makefile 2010-09-07 12:15:43.500000000 +0200
@@ -1594,7 +1594,6 @@
$(BUILT_INS): git$X
$(QUIET_BUILT_IN)$(RM) $@ && \
- ln git$X $@ 2>/dev/null || \
ln -s git$X $@ 2>/dev/null || \
cp git$X $@
@@ -1895,7 +1894,6 @@
$(REMOTE_CURL_ALIASES): $(REMOTE_CURL_PRIMARY)
$(QUIET_LNCP)$(RM) $@ && \
- ln $< $@ 2>/dev/null || \
ln -s $< $@ 2>/dev/null || \
cp $< $@
@@ -2079,26 +2077,23 @@
for p in git$X $(filter $(install_bindir_programs),$(ALL_PROGRAMS)); do \
$(RM) "$$execdir/$$p" && \
test -z "$(NO_CROSS_DIRECTORY_HARDLINKS)" && \
- ln "$$bindir/$$p" "$$execdir/$$p" 2>/dev/null || \
+ ln -s "$$bindir/$$p" "$$execdir/$$p" 2>/dev/null || \
cp "$$bindir/$$p" "$$execdir/$$p" || exit; \
done; \
} && \
for p in $(filter $(install_bindir_programs),$(BUILT_INS)); do \
$(RM) "$$bindir/$$p" && \
- 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" && \
- ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \
ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \
cp "$$execdir/git$X" "$$execdir/$$p" || exit; \
done && \
remote_curl_aliases="$(REMOTE_CURL_ALIASES)" && \
for p in $$remote_curl_aliases; do \
$(RM) "$$execdir/$$p" && \
- ln "$$execdir/git-remote-http$X" "$$execdir/$$p" 2>/dev/null || \
ln -s "git-remote-http$X" "$$execdir/$$p" 2>/dev/null || \
cp "$$execdir/git-remote-http$X" "$$execdir/$$p" || exit; \
done && \