Commits
Marius Schamschula authored 81ebf233f7c
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 7 | set real_name pyasn1 |
8 - | github.setup etingof ${real_name} 0.4.7 v |
8 + | github.setup etingof ${real_name} 0.4.8 v |
9 9 | name py-asn1 |
10 10 | epoch 1 |
11 11 | revision 0 |
12 12 | categories-append devel crypto |
13 13 | platforms darwin |
14 14 | supported_archs noarch |
15 15 | license BSD |
16 16 | maintainers nomaintainer |
17 17 | |
18 18 | description Implementation of ASN.1 types and codecs in Python |
19 19 | |
20 20 | long_description This project is dedicated to implementation of ASN.1 \ |
21 21 | types (concrete syntax) and codecs (transfer syntaxes) \ |
22 22 | for Python programming environment. |
23 23 | |
24 24 | python.versions 27 35 36 37 38 |
25 25 | |
26 26 | worksrcdir ${real_name}-${version} |
27 27 | distfiles ${real_name}-${version}${extract.suffix} |
28 28 | |
29 - | checksums rmd160 8acdc2bea2d75171aca559be33b303373d25310e \ |
30 - | sha256 86725a82fa245bd7ef0d2c03f4d3ecf5aa4ff9ba11a11ae120089eb98b1e0d47 \ |
31 - | size 134964 |
29 + | checksums rmd160 0c390f8274d39429a79d99b1c972f0723e4fff37 \ |
30 + | sha256 96db41dedbe9a64bbe2e35d638b1f73728c09b60fe3fdb096ef78081ddf11734 \ |
31 + | size 135775 |
32 32 | |
33 33 | if {${name} ne ${subport}} { |
34 34 | depends_build-append port:py${python.version}-setuptools |
35 35 | |
36 36 | post-destroot { |
37 37 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${subport} |
38 38 | xinstall -m 644 -W ${worksrcpath} CHANGES.rst LICENSE.rst README.md THANKS.txt TODO.rst \ |
39 39 | ${destroot}${prefix}/share/doc/${subport} |
40 40 | } |
41 41 | |