diff -ur pypy.orig/Portfile pypy/Portfile
old
|
new
|
|
4 | 4 | PortSystem 1.0 |
5 | 5 | |
6 | 6 | name pypy |
7 | | version 1.5 |
| 7 | version 1.6 |
8 | 8 | categories lang python devel |
9 | 9 | license MIT PSF |
10 | 10 | maintainers jmr openmaintainer |
… |
… |
|
17 | 17 | platforms darwin |
18 | 18 | |
19 | 19 | homepage http://pypy.org/ |
20 | | master_sites http://pypy.org/download/ |
| 20 | master_sites https://bitbucket.org/pypy/pypy/get/ |
21 | 21 | use_bzip2 yes |
22 | | distname ${name}-${version}-src |
| 22 | distname release-${version} |
23 | 23 | |
24 | | checksums md5 cb9ada2c50666318c3a2863da1fbe487 \ |
25 | | sha1 0ebcecaa4c725bf1a48272033d9f429b8a82b7e1 \ |
26 | | rmd160 9c7d479ac5cd51c3789f3db99674b4c2936d88e0 |
| 24 | checksums rmd160 74170120f53d13ed931b56ae8dbf1a27ec7649d3 \ |
| 25 | sha256 83060354ab1ea2a068e28ab2a61f0d17020e20530a3f83a46f4af0bb0751acac |
27 | 26 | |
28 | 27 | depends_build port:pkgconfig |
29 | 28 | depends_lib port:libffi \ |
… |
… |
|
48 | 47 | } |
49 | 48 | } |
50 | 49 | |
| 50 | worksrcdir ${name}-${name}-release-${version} |
51 | 51 | build.dir ${worksrcpath}/pypy/translator/goal |
52 | 52 | # use pypy to build if it's already installed |
53 | 53 | if {[file executable ${prefix}/lib/pypy/pypy-c]} { |
diff -ur pypy.orig/files/.svn/entries pypy/files/.svn/entries
old
|
new
|
|
66 | 66 | |
67 | 67 | |
68 | 68 | |
69 | | 2011-08-19T14:08:01.000000Z |
| 69 | 2011-08-09T11:53:26.000000Z |
70 | 70 | d770ade1fc801d33d7622953a2888a52 |
71 | 71 | 2011-05-01T22:31:49.453590Z |
72 | 72 | 78296 |
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 |
3 | 3 | @@ -30,10 +30,12 @@ |
4 | 4 | + args) |
5 | 5 | |
… |
… |
|
15 | 15 | |
16 | 16 | def check___thread(self): |
17 | 17 | # currently __thread is not supported by Darwin gccs |
18 | | @@ -68,12 +70,12 @@ |
| 18 | @@ -68,10 +70,12 @@ |
19 | 19 | |
20 | 20 | class Darwin_i386(Darwin): |
21 | 21 | 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') |
23 | 24 | + 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', |
26 | 26 | + '-mmacosx-version-min=__MDT__') |
27 | 27 | |
28 | 28 | class Darwin_x86_64(Darwin): |
29 | 29 | 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') |
31 | 32 | + 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', |
34 | 34 | + '-mmacosx-version-min=__MDT__') |