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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python27 1.0 |
---|
6 | |
---|
7 | name py27-mcrypt |
---|
8 | version 1.1 |
---|
9 | categories python |
---|
10 | platforms darwin |
---|
11 | maintainers openmaintainer |
---|
12 | |
---|
13 | description A comprehensive Python interface to the mcrypt library. |
---|
14 | |
---|
15 | long_description A comprehensive Python interface to the crypt library, \ |
---|
16 | which a library providing a uniform interface to several \ |
---|
17 | symmetric encryption algorithms. It is intended to have \ |
---|
18 | a simple interface to access encryption algorithms in \ |
---|
19 | ofb, cbc, cfb, ecb and stream modes. The algorithms it \ |
---|
20 | supports are DES, 3DES, RIJNDAEL, Twofish, IDEA, GOST, \ |
---|
21 | CAST-256, ARCFOUR, SERPENT, SAFER+, and more. |
---|
22 | |
---|
23 | homepage http://niemeyer.net/python-mcrypt |
---|
24 | master_sites http://niemeyer.net/download/python-mcrypt/ |
---|
25 | distname python-mcrypt-${version} |
---|
26 | |
---|
27 | checksums md5 0e9f7cc17545af6b51188b38984fe034 \ |
---|
28 | sha1 a6bed6ef183ed042a1261e8da1edb462deadc891 \ |
---|
29 | rmd160 eb02c61e4ea11836716c442c24078da56cf4d1c1 \ |
---|
30 | |
---|
31 | depends_lib port:mcrypt |
---|
32 | |
---|
33 | patchfiles patch-setup.py.diff |
---|
34 | |
---|
35 | post-patch { |
---|
36 | reinplace "s|@@PREFIX@@|${prefix}|g" ${worksrcpath}/setup.py |
---|
37 | } |
---|
38 | |
---|
39 | livecheck.type regex |
---|
40 | livecheck.url ${homepage} |
---|
41 | livecheck.regex "python-mcrypt-(\\d+(?:\\.\\d+)*)" |
---|