Ticket #14360: ipython.diff
File ipython.diff, 2.3 KB (added by ebgssth@…, 17 years ago) |
---|
-
py-ipython/Portfile
6 6 name py-ipython 7 7 set my_name ipython 8 8 version 0.8.2 9 revision 1 9 10 categories python 10 11 platforms darwin 11 12 maintainers openmaintainer jochen … … 26 27 27 28 depends_lib-append port:py-readline 28 29 30 test.run yes 29 31 32 post-destroot { 33 foreach f {ipython irunner pycolor} { 34 move ${destroot}${prefix}/bin/${f} \ 35 ${destroot}${prefix}/bin/${f}2.4 36 } 37 foreach f {ipython pycolor} { 38 move ${destroot}${prefix}/share/man/man1/${f}.1.gz \ 39 ${destroot}${prefix}/share/man/man1/${f}2.4.1.gz 40 } 41 } 42 30 43 variant scientific description "Use ScientificPython to provide physical quantities support" { 31 44 depends_lib-append port:py-scientific 32 45 } 33 46 34 47 default_variants +scientific 35 48 49 universal_variant no 50 36 51 livecheck.check regex 37 52 livecheck.url ${master_sites}?C=M&O=D 38 53 livecheck.regex ${my_name}-(\\d+(?:\\.\\d+)*) -
py25-ipython/Portfile
6 6 name py25-ipython 7 7 set my_name ipython 8 8 version 0.8.2 9 revision 1 9 10 categories python 10 11 platforms darwin 11 12 maintainers openmaintainer jochen … … 29 30 30 31 test.run yes 31 32 33 post-destroot { 34 foreach f {ipython irunner pycolor} { 35 move ${destroot}${prefix}/bin/${f} \ 36 ${destroot}${prefix}/bin/${f}2.5 37 } 38 foreach f {ipython pycolor} { 39 move ${destroot}${prefix}/share/man/man1/${f}.1.gz \ 40 ${destroot}${prefix}/share/man/man1/${f}2.5.1.gz 41 } 42 } 43 32 44 variant scientific description "Use ScientificPython to provide physical quantities support" { 33 45 depends_lib-append port:py25-scientific 34 46 } … … 40 52 livecheck.check regex 41 53 livecheck.url ${master_sites}?C=M&O=D 42 54 livecheck.regex ${my_name}-(\\d+(?:\\.\\d+)*) 43