Ticket #30888: pypy.diff

File pypy.diff, 3.4 KB (added by ci42, 13 years ago)
  • Portfile

    diff -ur pypy.orig/Portfile pypy/Portfile
    old new  
    44PortSystem          1.0
    55
    66name                pypy
    7 version             1.5
     7version             1.6
    88categories          lang python devel
    99license             MIT PSF
    1010maintainers         jmr openmaintainer
     
    1717platforms           darwin
    1818
    1919homepage            http://pypy.org/
    20 master_sites        http://pypy.org/download/
     20master_sites        https://bitbucket.org/pypy/pypy/get/
    2121use_bzip2           yes
    22 distname            ${name}-${version}-src
     22distname            release-${version}
    2323
    24 checksums           md5 cb9ada2c50666318c3a2863da1fbe487 \
    25                     sha1 0ebcecaa4c725bf1a48272033d9f429b8a82b7e1 \
    26                     rmd160 9c7d479ac5cd51c3789f3db99674b4c2936d88e0
     24checksums           rmd160  74170120f53d13ed931b56ae8dbf1a27ec7649d3 \
     25                    sha256  83060354ab1ea2a068e28ab2a61f0d17020e20530a3f83a46f4af0bb0751acac
    2726
    2827depends_build       port:pkgconfig
    2928depends_lib         port:libffi \
     
    4847    }
    4948}
    5049
     50worksrcdir          ${name}-${name}-release-${version}
    5151build.dir           ${worksrcpath}/pypy/translator/goal
    5252# use pypy to build if it's already installed
    5353if {[file executable ${prefix}/lib/pypy/pypy-c]} {
  • files/.svn/entries

    diff -ur pypy.orig/files/.svn/entries pypy/files/.svn/entries
    old new  
    6666
    6767
    6868
    69 2011-08-19T14:08:01.000000Z
     692011-08-09T11:53:26.000000Z
    7070d770ade1fc801d33d7622953a2888a52
    71712011-05-01T22:31:49.453590Z
    727278296
  • files/darwin.py.diff

    diff -ur pypy.orig/files/darwin.py.diff pypy/files/darwin.py.diff
    old new  
    1 --- pypy/translator/platform/darwin.py.orig     2011-05-01 00:18:50.000000000 +1000
    2 +++ pypy/translator/platform/darwin.py  2011-05-02 06:53:52.000000000 +1000
     1--- pypy/translator/platform/darwin.py.orig     2011-08-19 12:20:55.000000000 +0200
     2+++ pypy/translator/platform/darwin.py  2011-08-19 12:21:05.000000000 +0200
    33@@ -30,10 +30,12 @@
    44                 + args)
    55     
     
    1515 
    1616     def check___thread(self):
    1717         # currently __thread is not supported by Darwin gccs
    18 @@ -68,12 +70,12 @@
     18@@ -68,10 +70,12 @@
    1919 
    2020 class Darwin_i386(Darwin):
    2121     name = "darwin_i386"
    22 -    link_flags = ('-arch', 'i386', '-mmacosx-version-min=10.4')
     22-    link_flags = ('-arch', 'i386')
     23-    cflags = ('-arch', 'i386', '-O3', '-fomit-frame-pointer')
    2324+    link_flags = ('-arch', 'i386', '-mmacosx-version-min=__MDT__')
    24      cflags = ('-arch', 'i386', '-O3', '-fomit-frame-pointer',
    25 -              '-mmacosx-version-min=10.4')
     25+    cflags = ('-arch', 'i386', '-O3', '-fomit-frame-pointer',
    2626+              '-mmacosx-version-min=__MDT__')
    2727 
    2828 class Darwin_x86_64(Darwin):
    2929     name = "darwin_x86_64"
    30 -    link_flags = ('-arch', 'x86_64', '-mmacosx-version-min=10.4')
     30-    link_flags = ('-arch', 'x86_64')
     31-    cflags = ('-arch', 'x86_64', '-O3', '-fomit-frame-pointer')
    3132+    link_flags = ('-arch', 'x86_64', '-mmacosx-version-min=__MDT__')
    32      cflags = ('-arch', 'x86_64', '-O3', '-fomit-frame-pointer',
    33 -              '-mmacosx-version-min=10.4')
     33+    cflags = ('-arch', 'x86_64', '-O3', '-fomit-frame-pointer',
    3434+              '-mmacosx-version-min=__MDT__')