Ticket #11962: mp_git1514.patch
File mp_git1514.patch, 3.9 KB (added by zacheryph@…, 17 years ago) |
---|
-
dports/devel/git-core/files/patch-curl
1 --- http.h.orig 2007-02-18 13:08:46.000000000 -0500 2 +++ http.h 2007-02-18 13:08:54.000000000 -0500 1 diff --git http.h http.h 2 index 69b6b66..b33fe7b 100644 3 --- http.h 4 +++ http.h 3 5 @@ -7,7 +7,6 @@ 4 6 #include <curl/easy.h> 5 6 #if LIBCURL_VERSION_NUM >= 0x07 09087 8 #if LIBCURL_VERSION_NUM >= 0x071000 7 9 -#define USE_CURL_MULTI 8 10 #define DEFAULT_MAX_REQUESTS 5 9 11 #endif 10 12 -
dports/devel/git-core/files/patch-t4200
1 diff --git t/t4200-rerere.sh t/t4200-rerere.sh2 index 6ba63d7..300e90e 1007553 --- t/t4200-rerere.sh4 +++ t/t4200-rerere.sh5 @@ -44,7 +44,7 @@ mkdir .git/rr-cache6 7 test_expect_failure 'conflicting merge' 'git pull . first'8 9 -sha1=$(sed -e 's/\t.*//' .git/rr-cache/MERGE_RR)10 +sha1=$(sed -e 's/[[:space:]].*//' .git/rr-cache/MERGE_RR)11 rr=.git/rr-cache/$sha112 test_expect_success 'recorded preimage' "grep ======= $rr/preimage"13 -
dports/devel/git-core/files/patch-perl-path
1 diff --git perl/Makefile perl/Makefile2 index 17d004e..2832cb4 1006443 --- perl/Makefile4 +++ perl/Makefile5 @@ -33,7 +33,7 @@ $(makfile): ../GIT-CFLAGS Makefile6 echo ' echo $(instdir_SQ)' >> $@7 else8 $(makfile): Makefile.PL ../GIT-CFLAGS9 - '$(PERL_PATH_SQ)' $< PREFIX='$(prefix_SQ)'10 + $(PERL_PATH_SQ) $< PREFIX='$(prefix_SQ)'11 endif12 13 # this is just added comfort for calling make directly in perl dir -
dports/devel/git-core/Portfile
2 2 3 3 PortSystem 1.0 4 4 name git-core 5 version 1.5.1. 35 version 1.5.1.4 6 6 description The stupid content tracker. 7 7 long_description A stupid (but extremely fast) directory \ 8 8 content manager. It doesn't do a whole lot, \ 9 9 but what it _does_ do is track directory contents \ 10 efficiently. 10 efficiently. 11 11 maintainers bryan@larsen.st 12 12 categories devel 13 13 platforms darwin … … 17 17 distname git-${version} 18 18 distfiles git-${version}${extract.suffix} \ 19 19 git-manpages-${version}${extract.suffix} 20 21 checksums git-${version}${extract.suffix} sha1 6 73bbd457e713251a7fbf54369150dd760c5606d\22 git-manpages-${version}${extract.suffix} sha1 3a5ecaa36fb5b7c3dba9a96240016fcccac6cfc020 21 checksums git-${version}${extract.suffix} sha1 6ab0e784ca9ab499718103179576fb890e61c06e \ 22 git-manpages-${version}${extract.suffix} sha1 c112ddccf99b22088959a5b3c7b9edae23fef6c2 23 23 depends_run port:curl port:diffutils \ 24 24 port:openssh port:rsync port:gsed 25 25 depends_lib port:curl port:zlib port:openssl port:expat port:libiconv 26 26 27 patchfiles patch-Makefiles patch-curl patch- t4200 patch-ld-R patch-perl-path27 patchfiles patch-Makefiles patch-curl patch-ld-R 28 28 29 29 use_configure no 30 30 … … 49 49 xinstall ${m} ${destroot}${prefix}/share/man/man${f} 50 50 } 51 51 } 52 if { [variant_isset no_svn]} {52 if {![variant_isset svn]} { 53 53 system "rm ${destroot}${prefix}/bin/git-svn*" 54 54 } 55 55 } … … 60 60 destroot.target-append install-doc 61 61 } 62 62 63 variant svn conflicts no_svn{63 variant svn { 64 64 depends_run port:p5-svn-simple port:subversion port:perl port:p5-libwww-perl 65 65 } 66 67 variant no_svn conflicts svn {68 }69 70 default_variants +no_svn