Commits
reneeotten authored and Chih-Hsuan Yen committed c9c0de6b73e
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 | |
6 6 | name py-pygpgme |
7 7 | version 0.3 |
8 + | revision 0 |
8 9 | platforms darwin |
9 10 | license LGPL |
10 11 | maintainers nomaintainer |
11 12 | |
12 13 | description Python module for working with OpenPGP messages |
13 14 | long_description \ |
14 15 | PyGPGME is a Python module that lets you sign, verify, encrypt and decrypt \ |
15 16 | files using the OpenPGP format. It is built on top of GNU Privacy Guard and \ |
16 17 | the GPGME library. |
17 18 | |
18 - | homepage https://pypi.python.org/pypi/pygpgme/${version}/ |
19 + | homepage https://launchpad.net/pygpgme |
19 20 | master_sites pypi:p/pygpgme/ |
20 21 | distname pygpgme-${version} |
21 - | checksums md5 d38355af73f0352cde3d410b25f34fd0 \ |
22 - | sha1 f8df35bd2705ac2e1642209fba732e6a42d03fd4 \ |
23 - | rmd160 7d15991622ee7adf643d9d658c5da718c6b1bfd0 |
22 + | checksums rmd160 7d15991622ee7adf643d9d658c5da718c6b1bfd0 \ |
23 + | sha256 5fd887c407015296a8fd3f4b867fe0fcca3179de97ccde90449853a3dfb802e1 \ |
24 + | size 50100 |
24 25 | |
25 26 | python.versions 27 |
26 27 | |
27 28 | if {${name} ne ${subport}} { |
28 29 | depends_lib-append \ |
29 30 | port:gpgme |
30 31 | |
31 32 | build.env CPPFLAGS=-I${prefix}/include |
32 33 | } |
33 - | |
34 - | livecheck.type regex |
35 - | livecheck.url ${master_sites} |
36 - | livecheck.regex pygpgme-(\\d+(\\.\\d+)+)${extract.suffix} |