Add py-urlman 1.2.0

Replaces things like get_absolute_url with a .urls attribute that can reference
other URLs and build sensible trees of things, and can then be accessed using
instance.urls.name.

WWW: https://github.com/andrewgodwin/urlman

PR:		239103
Submitted by:	Alexander Sieg <alex@xanderio.de>
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-08-25 18:51:34 +00:00
parent 215f343b44
commit c555532ea2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=509845
4 changed files with 28 additions and 0 deletions

View file

@ -1880,6 +1880,7 @@
SUBDIR += py-unit
SUBDIR += py-url
SUBDIR += py-urlgrabber
SUBDIR += py-urlman
SUBDIR += py-urlobject
SUBDIR += py-urlwatch
SUBDIR += py-user_agent

19
www/py-urlman/Makefile Normal file
View file

@ -0,0 +1,19 @@
# $FreeBSD$
PORTNAME= urlman
DISTVERSION= 1.2.0
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= alex@xanderio.de
COMMENT= Nicer way to do URLs for Django models
LICENSE= APACHE20
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

3
www/py-urlman/distinfo Normal file
View file

@ -0,0 +1,3 @@
TIMESTAMP = 1563114829
SHA256 (urlman-1.2.0.tar.gz) = 32d8d3fca062be7dee97d144dff08f312d4f444d28550e0a38651c02353c75c8
SIZE (urlman-1.2.0.tar.gz) = 3599

5
www/py-urlman/pkg-descr Normal file
View file

@ -0,0 +1,5 @@
Replaces things like get_absolute_url with a .urls attribute that can reference
other URLs and build sensible trees of things, and can then be accessed using
instance.urls.name.
WWW: https://github.com/andrewgodwin/urlman