Commits
Renee Otten authored fd5e07162ed
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-pbr |
7 - | version 5.3.0 |
7 + | version 5.3.1 |
8 8 | revision 0 |
9 9 | |
10 10 | categories-append devel |
11 11 | platforms darwin |
12 12 | supported_archs noarch |
13 13 | license Apache-2 |
14 14 | maintainers {reneeotten @reneeotten} openmaintainer |
15 15 | |
16 16 | description Python Build Reasonableness |
17 17 | long_description A library for managing setuptools packaging needs \ |
20 20 | default values and provide more sensible \ |
21 21 | behaviors, and then feeds the results in as the \ |
22 22 | arguments to a call to setup.py - so the heavy \ |
23 23 | lifting of handling python packaging needs is \ |
24 24 | still being done by setuptools. |
25 25 | |
26 26 | homepage https://docs.openstack.org/pbr/latest/ |
27 27 | master_sites pypi:p/pbr |
28 28 | distname pbr-${version} |
29 29 | |
30 - | checksums rmd160 5b0e3acfe5f63a51225dc95f44a25df91b815e7c \ |
31 - | sha256 9fb1c3371344cd617eb073c6c00872e9b0e5a7fefed6cd29f327a1b26ab5c498 \ |
32 - | size 118344 |
30 + | checksums rmd160 aae3d427b8e765c6d4fa58672d40636751f68bf7 \ |
31 + | sha256 9181e2a34d80f07a359ff1d0504fad3a47e00e1cf2c475b0aa7dcb030af54c40 \ |
32 + | size 117572 |
33 33 | |
34 34 | python.versions 27 34 35 36 37 |
35 35 | |
36 36 | if {${subport} ne ${name}} { |
37 37 | depends_lib-append port:py${python.version}-setuptools |
38 38 | |
39 39 | post-destroot { |
40 40 | set docdir ${prefix}/share/doc/${subport} |
41 41 | xinstall -d ${destroot}${docdir} |
42 42 | xinstall -m 0644 -W ${worksrcpath} README.rst LICENSE \ |