2017-05-28 09:21:42 -06:00
|
|
|
# -*- 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
|
|
|
|
|
|
|
|
|
|
PortSystem 1.0
|
|
|
|
|
PortGroup python 1.0
|
|
|
|
|
|
|
|
|
|
name py-agate-sql
|
2022-03-11 09:33:37 -05:00
|
|
|
version 0.5.8
|
2020-06-30 17:10:42 -04:00
|
|
|
revision 0
|
|
|
|
|
|
|
|
|
|
supported_archs noarch
|
2022-12-07 18:51:53 +11:00
|
|
|
platforms {darwin any}
|
2017-05-28 09:21:42 -06:00
|
|
|
license MIT
|
2020-06-30 17:10:42 -04:00
|
|
|
maintainers {gmail.com:esafak @esafak} openmaintainer
|
2017-05-28 09:21:42 -06:00
|
|
|
|
|
|
|
|
description agate-sql adds SQL read/write support to agate.
|
2022-12-07 18:51:53 +11:00
|
|
|
long_description {*}${description}
|
2017-05-28 09:21:42 -06:00
|
|
|
|
2020-06-30 17:10:42 -04:00
|
|
|
homepage https://agate-sql.readthedocs.org/
|
2017-05-28 09:21:42 -06:00
|
|
|
|
2022-03-11 09:33:37 -05:00
|
|
|
checksums rmd160 11e6b3b8198585aa1b2e1bd8b023ef3ec9b8c013 \
|
|
|
|
|
sha256 581e062ae878cc087d3d0948670d46b16589df0790bf814524b0587a359f2ada \
|
|
|
|
|
size 15182
|
2017-05-28 09:21:42 -06:00
|
|
|
|
2025-10-29 10:07:33 -04:00
|
|
|
python.versions 310 311 312 313
|
2017-05-28 09:21:42 -06:00
|
|
|
|
|
|
|
|
if {${name} ne ${subport}} {
|
|
|
|
|
depends_lib-append port:py${python.version}-agate \
|
|
|
|
|
port:py${python.version}-parsedatetime \
|
|
|
|
|
port:py${python.version}-sqlalchemy
|
|
|
|
|
|
2020-06-30 17:10:42 -04:00
|
|
|
post-destroot {
|
|
|
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
|
|
|
xinstall -d ${destroot}${docdir}
|
|
|
|
|
xinstall -m 0644 -W ${worksrcpath} README.rst COPYING \
|
|
|
|
|
AUTHORS.rst ${destroot}${docdir}
|
|
|
|
|
}
|
2017-05-28 09:21:42 -06:00
|
|
|
}
|