Ticket #11962: mp_git1514.patch

File mp_git1514.patch, 3.9 KB (added by zacheryph@…, 17 years ago)

updated patch removing t4200

  • 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
     1diff --git http.h http.h
     2index 69b6b66..b33fe7b 100644
     3--- http.h
     4+++ http.h
    35@@ -7,7 +7,6 @@
    46 #include <curl/easy.h>
    5  
    6  #if LIBCURL_VERSION_NUM >= 0x070908
     7
     8 #if LIBCURL_VERSION_NUM >= 0x071000
    79-#define USE_CURL_MULTI
    810 #define DEFAULT_MAX_REQUESTS 5
    911 #endif
    10  
     12
  • dports/devel/git-core/files/patch-t4200

     
    1 diff --git t/t4200-rerere.sh t/t4200-rerere.sh
    2 index 6ba63d7..300e90e 100755
    3 --- t/t4200-rerere.sh
    4 +++ t/t4200-rerere.sh
    5 @@ -44,7 +44,7 @@ mkdir .git/rr-cache
    6  
    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/$sha1
    12  test_expect_success 'recorded preimage' "grep ======= $rr/preimage"
    13  
  • dports/devel/git-core/files/patch-perl-path

     
    1 diff --git perl/Makefile perl/Makefile
    2 index 17d004e..2832cb4 100644
    3 --- perl/Makefile
    4 +++ perl/Makefile
    5 @@ -33,7 +33,7 @@ $(makfile): ../GIT-CFLAGS Makefile
    6         echo '  echo $(instdir_SQ)' >> $@
    7  else
    8  $(makfile): Makefile.PL ../GIT-CFLAGS
    9 -       '$(PERL_PATH_SQ)' $< PREFIX='$(prefix_SQ)'
    10 +       $(PERL_PATH_SQ) $< PREFIX='$(prefix_SQ)'
    11  endif
    12  
    13  # this is just added comfort for calling make directly in perl dir
  • dports/devel/git-core/Portfile

     
    22
    33PortSystem 1.0
    44name            git-core
    5 version         1.5.1.3
     5version         1.5.1.4
    66description     The stupid content tracker.
    77long_description        A stupid (but extremely fast) directory \
    88                        content manager. It doesn't do a whole lot, \
    99                        but what it _does_ do is track directory contents \
    10                         efficiently. 
     10                        efficiently.
    1111maintainers     bryan@larsen.st
    1212categories      devel
    1313platforms       darwin
     
    1717distname        git-${version}
    1818distfiles       git-${version}${extract.suffix} \
    1919                git-manpages-${version}${extract.suffix}
    20  
    21 checksums       git-${version}${extract.suffix} sha1 673bbd457e713251a7fbf54369150dd760c5606d \
    22                 git-manpages-${version}${extract.suffix} sha1 3a5ecaa36fb5b7c3dba9a96240016fcccac6cfc0
     20
     21checksums       git-${version}${extract.suffix} sha1 6ab0e784ca9ab499718103179576fb890e61c06e \
     22                git-manpages-${version}${extract.suffix} sha1 c112ddccf99b22088959a5b3c7b9edae23fef6c2
    2323depends_run     port:curl port:diffutils \
    2424                port:openssh port:rsync port:gsed
    2525depends_lib     port:curl port:zlib port:openssl port:expat port:libiconv
    2626
    27 patchfiles      patch-Makefiles patch-curl patch-t4200 patch-ld-R patch-perl-path
     27patchfiles      patch-Makefiles patch-curl patch-ld-R
    2828
    2929use_configure   no
    3030
     
    4949                        xinstall ${m} ${destroot}${prefix}/share/man/man${f}
    5050                }
    5151        }
    52         if {[variant_isset no_svn]} {
     52        if {![variant_isset svn]} {
    5353                system "rm ${destroot}${prefix}/bin/git-svn*"
    5454        }
    5555}
     
    6060        destroot.target-append  install-doc
    6161}
    6262
    63 variant svn conflicts no_svn {
     63variant svn {
    6464        depends_run             port:p5-svn-simple port:subversion port:perl port:p5-libwww-perl
    6565}
    66 
    67 variant no_svn conflicts svn {
    68 }
    69 
    70 default_variants +no_svn