1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup collective icalendar 3.1 |
---|
8 | git.branch 85388792e11e106289f7399409c07e904dcca9d5 |
---|
9 | name py-icalendar |
---|
10 | version 3.1 |
---|
11 | categories python |
---|
12 | maintainers deric |
---|
13 | platforms darwin |
---|
14 | description The iCalendar package is a parser/generator of RFC 2445 \ |
---|
15 | iCalendar files. |
---|
16 | long_description The inspiration has come from the email package in the \ |
---|
17 | standard lib, which I think is pretty simple, yet \ |
---|
18 | efficient and powerful. The package can both generate \ |
---|
19 | and parse iCalendar files, and can easily be used as is. \ |
---|
20 | The aim is to make a package that is fully compliant to \ |
---|
21 | RFC 2445, well designed, simple to use and well documented. |
---|
22 | |
---|
23 | homepage http://icalendar.readthedocs.org/ |
---|
24 | checksums md5 a784d5df513dfa7c301f329b1fb28e83 \ |
---|
25 | sha1 65e3ce414c704bd1745d36e1684d2e697134a76c \ |
---|
26 | rmd160 98fe1d94170a1d9f77520d1fbef9195f2df7820a |
---|
27 | |
---|
28 | python.versions 24 25 26 27 |
---|
29 | python.default_version 24 |
---|
30 | |
---|
31 | if {$subport != $name} { |
---|
32 | |
---|
33 | depends_lib-append port:py${python.version}-distribute port:py${python.version}-tz-gae |
---|
34 | |
---|
35 | post-destroot { |
---|
36 | |
---|
37 | # install docs |
---|
38 | xinstall -m 644 -W ${worksrcpath}/docs about.rst examples.rst install.rst license.rst changelog.rst credits.rst \ |
---|
39 | ${destroot}${prefix}/share/doc/${subport} |
---|
40 | |
---|
41 | } |
---|
42 | } |
---|
43 | |
---|
44 | livecheck.type regex |
---|
45 | livecheck.url http://icalendar.readthedocs.org/en/latest/changelog.html |
---|
46 | livecheck.regex <h2>(\[0-9.\]+) |
---|