diff -Nur python/py-subvertpy/Portfile .../python/py-subvertpy/Portfile
old
|
new
|
|
| 1 | # $Id: Portfile 67900 2010-05-21 09:19:45Z ryandesign@macports.org $ |
| 2 | |
| 3 | PortSystem 1.0 |
| 4 | PortGroup python24 1.0 |
| 5 | |
| 6 | name py-subvertpy |
| 7 | version 0.7.3 |
| 8 | categories python devel |
| 9 | maintainers danchr@gmail.com openmaintainer |
| 10 | platforms darwin |
| 11 | description Alternative Python bindings for Subversion (svn) |
| 12 | long_description Alternative Python bindings for Subversion, split out \ |
| 13 | from bzr-svn. The goal is to have complete, portable and "Pythonic" \ |
| 14 | Python bindings. |
| 15 | |
| 16 | homepage https://launchpad.net/subvertpy/ |
| 17 | master_sites ${homepage}trunk/${version}/+download \ |
| 18 | http://samba.org/~jelmer/subvertpy |
| 19 | distname subvertpy-${version} |
| 20 | |
| 21 | checksums md5 2fba8b634774d384e326a3818a1a51a4 \ |
| 22 | sha1 e9d8b207cfffeafe3317d0739a0bfd0ef7f2aa53 \ |
| 23 | rmd160 475c5006e0c9f1355f011031b512a5b8a1d13f67 |
| 24 | |
| 25 | depends_lib-append port:subversion |
| 26 | |
| 27 | build.env-append SVN_PREFIX=${prefix} |
| 28 | |
| 29 | destroot.env-append SVN_PREFIX=${prefix} |
| 30 | |
| 31 | livecheck.type regex |
| 32 | livecheck.url ${homepage}/+download |
| 33 | livecheck.regex {subvertpy-(\d+(?:\.\d+)*).tar.gz} |
diff -Nur python/py25-subvertpy/Portfile .../python/py25-subvertpy/Portfile
old
|
new
|
|
4 | 4 | PortGroup python25 1.0 |
5 | 5 | |
6 | 6 | name py25-subvertpy |
7 | | version 0.6.8 |
| 7 | version 0.7.3 |
8 | 8 | categories python devel |
9 | | maintainers nomaintainer |
| 9 | maintainers danchr@gmail.com openmaintainer |
10 | 10 | platforms darwin |
11 | 11 | description Alternative Python bindings for Subversion (svn) |
12 | 12 | long_description Alternative Python bindings for Subversion, split out \ |
… |
… |
|
14 | 14 | Python bindings. |
15 | 15 | |
16 | 16 | homepage https://launchpad.net/subvertpy/ |
17 | | master_sites ${homepage}trunk/${version}/+download |
| 17 | master_sites ${homepage}trunk/${version}/+download \ |
| 18 | http://samba.org/~jelmer/subvertpy |
18 | 19 | distname subvertpy-${version} |
19 | 20 | |
20 | | checksums md5 7075b971301fa8efa5fae4021fa9b087 \ |
21 | | sha1 f867df7b54ae32a13d18a7de4c0ccad3ebe6c171 \ |
22 | | rmd160 ce5c41b678aed28d73ddddb74ea6b845ffc490ef |
| 21 | checksums md5 2fba8b634774d384e326a3818a1a51a4 \ |
| 22 | sha1 e9d8b207cfffeafe3317d0739a0bfd0ef7f2aa53 \ |
| 23 | rmd160 475c5006e0c9f1355f011031b512a5b8a1d13f67 |
23 | 24 | |
24 | 25 | depends_lib-append port:subversion |
25 | 26 | |
… |
… |
|
27 | 28 | |
28 | 29 | destroot.env-append SVN_PREFIX=${prefix} |
29 | 30 | |
| 31 | post-destroot { |
| 32 | foreach f [glob -directory ${destroot}${prefix}/bin *] { |
| 33 | file rename ${f} ${f}-${python.branch} |
| 34 | } |
| 35 | } |
| 36 | |
30 | 37 | livecheck.type regex |
31 | 38 | livecheck.url ${homepage}/+download |
32 | 39 | livecheck.regex {subvertpy-(\d+(?:\.\d+)*).tar.gz} |
diff -Nur python/py26-subvertpy/Portfile .../python/py26-subvertpy/Portfile
old
|
new
|
|
4 | 4 | PortGroup python26 1.0 |
5 | 5 | |
6 | 6 | name py26-subvertpy |
7 | | version 0.7.2 |
| 7 | version 0.7.3 |
8 | 8 | categories python devel |
9 | | maintainers nomaintainer |
| 9 | maintainers danchr@gmail.com openmaintainer |
10 | 10 | platforms darwin |
11 | 11 | description Alternative Python bindings for Subversion (svn) |
12 | 12 | long_description Alternative Python bindings for Subversion, split out \ |
… |
… |
|
14 | 14 | Python bindings. |
15 | 15 | |
16 | 16 | homepage https://launchpad.net/subvertpy/ |
17 | | master_sites ${homepage}trunk/${version}/+download |
| 17 | master_sites ${homepage}trunk/${version}/+download \ |
| 18 | http://samba.org/~jelmer/subvertpy |
18 | 19 | distname subvertpy-${version} |
19 | 20 | |
20 | | checksums md5 01e2098db04ddddaf06a7e27c075745d \ |
21 | | sha1 f8eb472084d771eb1ae7a67517ecd1061d548759 \ |
22 | | rmd160 b57be7948eb87bed7861c23ed3da5bf8c070eb73 |
| 21 | checksums md5 2fba8b634774d384e326a3818a1a51a4 \ |
| 22 | sha1 e9d8b207cfffeafe3317d0739a0bfd0ef7f2aa53 \ |
| 23 | rmd160 475c5006e0c9f1355f011031b512a5b8a1d13f67 |
23 | 24 | |
24 | 25 | depends_lib-append port:subversion |
25 | 26 | |
diff -Nur python/py27-subvertpy/Portfile .../python/py27-subvertpy/Portfile
old
|
new
|
|
| 1 | # $Id: Portfile 67900 2010-05-21 09:19:45Z ryandesign@macports.org $ |
| 2 | |
| 3 | PortSystem 1.0 |
| 4 | PortGroup python27 1.0 |
| 5 | |
| 6 | name py27-subvertpy |
| 7 | version 0.7.3 |
| 8 | categories python devel |
| 9 | maintainers danchr@gmail.com openmaintainer |
| 10 | platforms darwin |
| 11 | description Alternative Python bindings for Subversion (svn) |
| 12 | long_description Alternative Python bindings for Subversion, split out \ |
| 13 | from bzr-svn. The goal is to have complete, portable and "Pythonic" \ |
| 14 | Python bindings. |
| 15 | |
| 16 | homepage https://launchpad.net/subvertpy/ |
| 17 | master_sites ${homepage}trunk/${version}/+download \ |
| 18 | http://samba.org/~jelmer/subvertpy |
| 19 | distname subvertpy-${version} |
| 20 | |
| 21 | checksums md5 2fba8b634774d384e326a3818a1a51a4 \ |
| 22 | sha1 e9d8b207cfffeafe3317d0739a0bfd0ef7f2aa53 \ |
| 23 | rmd160 475c5006e0c9f1355f011031b512a5b8a1d13f67 |
| 24 | |
| 25 | depends_lib-append port:subversion |
| 26 | |
| 27 | build.env-append SVN_PREFIX=${prefix} |
| 28 | |
| 29 | destroot.env-append SVN_PREFIX=${prefix} |
| 30 | |
| 31 | livecheck.type regex |
| 32 | livecheck.url ${homepage}/+download |
| 33 | livecheck.regex {subvertpy-(\d+(?:\.\d+)*).tar.gz} |