Commits
Renee Otten authored fbcc94d05a3
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | PortGroup github 1.0 |
6 6 | |
7 - | github.setup Yelp mrjob 0.5.0 v |
7 + | github.setup Yelp mrjob 0.6.12 v |
8 + | name py-mrjob |
9 + | revision 0 |
8 10 | |
9 - | name py-${github.project} |
10 11 | categories-append parallel |
11 12 | platforms darwin |
12 13 | supported_archs noarch |
13 14 | license Apache-2 |
14 15 | maintainers {petr @petrrr} openmaintainer |
15 16 | |
16 17 | description Python MapReduce framework |
17 18 | long_description \ |
18 19 | mrjob is a Python package that helps you write and run Hadoop Streaming \ |
19 20 | jobs. It fully supports Amazon's Elastic MapReduce (EMR) service, which \ |
20 21 | allows you to buy time on a Hadoop cluster on an hourly basis. It also \ |
21 22 | works with your own Hadoop cluster. |
22 23 | |
23 - | homepage https://pythonhosted.org/mrjob/ |
24 + | checksums rmd160 9aa30d419bca2917f8bd495f76e36ead0c123262 \ |
25 + | sha256 5fb72ad6f2f1bb13696dc97c918cb59c29d675d7afe5f84307d31856b545c144 \ |
26 + | size 1676800 |
24 27 | |
25 - | checksums md5 3d2e484d389f049a6e328d5ec7601be8 \ |
26 - | rmd160 4c2b46f67e4b54ba03253069b1164282d4fff576 \ |
27 - | sha256 4c694c1f6f83f0d52b779843927e4dff6ace07213f994d1eb58e8cc98a36655d |
28 - | |
29 - | python.versions 27 34 35 36 |
28 + | python.versions 27 35 36 37 |
30 29 | |
31 30 | if {${name} ne ${subport}} { |
32 - | depends_build-append port:py${python.version}-setuptools |
33 - | |
34 - | depends_lib-append port:py${python.version}-boto \ |
35 - | port:py${python.version}-filechunkio \ |
36 - | port:py${python.version}-yaml |
31 + | depends_lib-append \ |
32 + | port:py${python.version}-boto \ |
33 + | port:py${python.version}-botocore \ |
34 + | port:py${python.version}-yaml \ |
35 + | port:py${python.version}-setuptools |
37 36 | |
38 - | # Adding documentation and examples |
39 37 | post-destroot { |
40 38 | set dest_doc ${destroot}${prefix}/share/doc/${subport} |
41 - | xinstall -d ${dest_doc} |
42 - | xinstall -m 755 -W ${worksrcpath} \ |
43 - | README.rst \ |
44 - | LICENSE.txt \ |
45 - | CHANGES.txt \ |
46 - | CONTRIBUTING.rst \ |
47 - | ${dest_doc} |
39 + | xinstall -d ${dest_doc} |
40 + | xinstall -m 0644 -W ${worksrcpath} README.rst LICENSE.txt \ |
41 + | CHANGES.txt CONTRIBUTING.rst ${dest_doc} |
48 42 | } |
49 43 | |
50 44 | livecheck.type none |
51 45 | } |