net/py-uri-template: Add py-uri-template 1.2.0

uri_template implements URI Template expansion in strict adherence to RFC 6570,
but adds a few extensions.
This commit is contained in:
Po-Chuan Hsieh 2023-03-22 02:35:23 +08:00
parent c42e6ba699
commit 5dfd9de053
No known key found for this signature in database
GPG key ID: 9A4BD10F002DD04B
4 changed files with 26 additions and 0 deletions

View file

@ -1155,6 +1155,7 @@
SUBDIR += py-twitter-tools
SUBDIR += py-txamqp
SUBDIR += py-txrestapi
SUBDIR += py-uri-template
SUBDIR += py-uritemplate
SUBDIR += py-uritools
SUBDIR += py-url-normalize

View file

@ -0,0 +1,20 @@
PORTNAME= uri-template
PORTVERSION= 1.2.0
CATEGORIES= net python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= uri_template-${PORTVERSION}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= RFC 6570 URI Template Processor
WWW= https://github.com/plinss/uri_template
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python:3.7+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1677770947
SHA256 (uri_template-1.2.0.tar.gz) = 934e4d09d108b70eb8a24410af8615294d09d279ce0e7cbcdaef1bd21f932b06
SIZE (uri_template-1.2.0.tar.gz) = 8975

View file

@ -0,0 +1,2 @@
uri_template implements URI Template expansion in strict adherence to RFC 6570,
but adds a few extensions.