You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-07-10 12:19:27 -07:00
11a018688e
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@140211 d073be05-634f-4543-b044-5fe20cf6d1d6
35 lines
1.2 KiB
Tcl
35 lines
1.2 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
|
|
# $Id$
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
|
|
name py-sqlparse
|
|
version 0.1.16
|
|
python.versions 27
|
|
categories-append textproc
|
|
license BSD
|
|
platforms darwin
|
|
supported_archs noarch
|
|
maintainers nomaintainer
|
|
description Non-validating SQL parser
|
|
long_description \
|
|
${description} that provides support for parsing, splitting and \
|
|
formatting SQL statements.
|
|
|
|
homepage https://pypi.python.org/pypi/sqlparse/
|
|
master_sites https://pypi.python.org/packages/source/s/sqlparse/
|
|
distname sqlparse-${version}
|
|
|
|
checksums md5 370962a307ebaaa70a28b6b0ccb53980 \
|
|
rmd160 02112a55638ec9d1a05d089f5740b4ac6b756328 \
|
|
sha256 678c6c36ca4b01405177da8b84eecf92ec92c9f6c762396c965bb5d305f20f81
|
|
|
|
if {${name} ne ${subport}} {
|
|
livecheck.type none
|
|
} else {
|
|
livecheck.type regex
|
|
livecheck.url ${homepage}
|
|
livecheck.regex "sqlparse (\\d+\\.\\d+(?:\\.\\d+))"
|
|
}
|