Commits
reneeotten authored and Perry E. Metzger committed 1b5ffa9e5d8
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-keyring |
7 - | version 16.0.0 |
7 + | version 16.0.1 |
8 8 | categories-append security |
9 9 | |
10 10 | license {MIT PSF} |
11 11 | maintainers {gmail.com:ottenr.work @reneeotten} openmaintainer |
12 12 | description Python interface to access the system keyring service |
13 13 | long_description The Python keyring lib provides a easy way to access the system \ |
14 14 | keyring service from python. It can be used in any application \ |
15 15 | that needs safe password storage. The OSXKeychain keyring service \ |
16 16 | supports the Keychain service in Mac OS X. |
17 17 | |
18 18 | platforms darwin |
19 19 | |
20 20 | homepage https://github.com/jaraco/keyring |
21 21 | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
22 22 | distname ${python.rootname}-${version} |
23 23 | |
24 - | checksums rmd160 b68f547986abf18bd6332269b6404e1f030e9031 \ |
25 - | sha256 8a9b0c2c2abc3e7326559f840e1f05e6d010ccaf397d09f450485920ba08e443 \ |
26 - | size 43658 |
24 + | checksums rmd160 d778cb37d7820b65755c143945b989080b6471f7 \ |
25 + | sha256 a86499736e2e6555618606c2fbc98147e803fa276f990ddba7011eb29a01b5ad \ |
26 + | size 43862 |
27 27 | |
28 28 | python.versions 27 34 35 36 37 |
29 29 | |
30 30 | if {${name} ne ${subport}} { |
31 31 | depends_build-append \ |
32 32 | port:py${python.version}-setuptools_scm |
33 33 | |
34 34 | depends_lib-append port:py${python.version}-setuptools \ |
35 35 | port:py${python.version}-entrypoints |
36 36 | |