Commits
reneeotten authored and Frank Schima committed c1d570e61a8
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-cdb |
7 - | version 0.34 |
7 + | python.rootname python-cdb |
8 + | version 0.35 |
9 + | revision 0 |
10 + | |
8 11 | platforms darwin |
9 12 | license GPL-2+ |
10 13 | maintainers nomaintainer |
11 14 | |
12 15 | description python module for using the constant database package |
13 16 | long_description The python-cdb extension module is an adaptation of \ |
14 17 | D. J. Bernstein's constant database package (see \ |
15 18 | https://cr.yp.to/cdb.html). The cdb files are mappings \ |
16 19 | of keys to values, designed for wickedly fast lookups \ |
17 20 | and atomic updates. This module mimics the normal cdb \ |
18 21 | utilities, cdb(get|dump|make), via convenient, \ |
19 22 | high-level Python objects. |
20 23 | |
21 - | homepage https://pilcrow.madison.wi.us/ |
22 - | master_sites ${homepage}/python-cdb/ |
23 - | distname python-cdb-${version} |
24 + | homepage https://github.com/acg/python-cdb |
25 + | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
26 + | distname ${python.rootname}-${version} |
24 27 | |
25 - | checksums md5 bda23cd135c9d71bede98929bc18b36f \ |
26 - | sha1 6c5ef1f27fe0e5c2e9a4a032435ebf58c82639f2 \ |
27 - | rmd160 02519e7c03aae5798823ab4cd0388b6afaf1908a |
28 + | checksums rmd160 c067f06959b59d71846c82f3348c9ca471402f94 \ |
29 + | sha256 c6cdc195c30f6ad638267f232d89b491598037910307e8b46ac6e39f622160fe \ |
30 + | size 19573 |
28 31 | |
29 32 | python.versions 27 |
30 33 | |
31 34 | if {${name} ne ${subport}} { |
32 35 | post-destroot { |
33 - | xinstall -m 644 -W ${worksrcpath} COPYING ChangeLog README \ |
36 + | xinstall -m 0644 -W ${worksrcpath} COPYING ChangeLog README Example\ |
34 37 | ${destroot}${prefix}/share/doc/${subport} |
35 - | xinstall -m 644 ${worksrcpath}/Example \ |
36 - | ${destroot}${prefix}/share/doc/${subport}/examples/example.py |
37 38 | } |
39 + | livecheck.type none |
38 40 | } |
39 - | |
40 - | # Local Variables: |
41 - | # mode:tcl |
42 - | # tab-width: 4 |
43 - | # indent-tabs-mode: nil |
44 - | # c-basic-offset:4 |
45 - | # indent-tabs-mode:nil |
46 - | # End: |