6dcf69a08f
parse() is the opposite of format(). It parses strings using a specification based on the Python format() syntax. The module is set up to only export parse(), search(), findall(), and with_pattern() when import * is used. WWW: https://github.com/r1chardj0n3s/parse
22 lines
402 B
Makefile
22 lines
402 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= parse
|
|
PORTVERSION= 1.15.0
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Opposite of format()
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python:3.4+
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|