You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
40 lines
1.3 KiB
Tcl
40 lines
1.3 KiB
Tcl
# -*- 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-flask-script
|
|
set realname Flask-Script
|
|
version 2.0.6
|
|
python.versions 27 35 36
|
|
license BSD
|
|
platforms darwin
|
|
supported_archs noarch
|
|
maintainers {aronnax @lpsinger} openmaintainer
|
|
description Scripting support for Flask
|
|
long_description Flask support for writing external scripts.
|
|
homepage https://flask-script.readthedocs.org/
|
|
master_sites pypi:[string index ${realname} 0]/${realname}/
|
|
distname ${realname}-${version}
|
|
|
|
checksums rmd160 bfc8d52e970890f6f4875e4858873f3f911fadd5 \
|
|
sha256 6425963d91054cfcc185807141c7314a9c5ad46325911bd24dcb489bd0161c65 \
|
|
size 43146
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
|
|
depends_lib-append \
|
|
port:py${python.version}-flask
|
|
|
|
depends_test-append \
|
|
port:py${python.version}-pytest
|
|
test.run yes
|
|
test.cmd py.test-${python.branch}
|
|
test.target tests.py
|
|
test.env PYTHONPATH=${worksrcpath}/build/lib
|
|
|
|
livecheck.type none
|
|
}
|