Date: Tue, 10 Sep 2019 17:13:03 +0000 (UTC) From: Dan Langille <dvl@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511763 - in head/devel: . py-furl Message-ID: <201909101713.x8AHD3m0037220@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dvl Date: Tue Sep 10 17:13:02 2019 New Revision: 511763 URL: https://svnweb.freebsd.org/changeset/ports/511763 Log: Add furl, URL parsing and manipulation made easy. Submitted by: Gilbert Morgan <gmm@tutanota.com> (via private email) Added: head/devel/py-furl/ head/devel/py-furl/Makefile (contents, props changed) head/devel/py-furl/distinfo (contents, props changed) head/devel/py-furl/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 10 15:45:23 2019 (r511762) +++ head/devel/Makefile Tue Sep 10 17:13:02 2019 (r511763) @@ -4452,6 +4452,7 @@ SUBDIR += py-funcsigs SUBDIR += py-functools32 SUBDIR += py-funcy + SUBDIR += py-furl SUBDIR += py-fusefs SUBDIR += py-fusepy SUBDIR += py-future Added: head/devel/py-furl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-furl/Makefile Tue Sep 10 17:13:02 2019 (r511763) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= furl +PORTVERSION= 2.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= gmm@tutanota.com +COMMENT= Small Python library that makes parsing and manipulating URLs easy + +LICENSE= PD +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= python +USE_PYTHON= autoplist distutils + +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}orderedmultidict>0:devel/py-orderedmultidict@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}flake8>0:devel/py-flake8@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-furl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-furl/distinfo Tue Sep 10 17:13:02 2019 (r511763) @@ -0,0 +1,3 @@ +TIMESTAMP = 1568134642 +SHA256 (furl-2.0.0.tar.gz) = fdcaedc1fb19a63d7d875b0105b0a5b496dd0989330d454a42bcb401fa5454ec +SIZE (furl-2.0.0.tar.gz) = 42732 Added: head/devel/py-furl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-furl/pkg-descr Tue Sep 10 17:13:02 2019 (r511763) @@ -0,0 +1,12 @@ +furl is a small Python library that makes parsing and +manipulating URLs easy. + +Python's standard urllib and urlparse modules provide a number of URL +related functions, but using these functions to perform common URL +operations proves tedious. Furl makes parsing and manipulating URLs +easy. + +Furl is well tested, Unlicensed in the public domain, and supports +Python 2, Python 3, PyPy2, and PyPy3. + +WWW: https://github.com/gruns/furl
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909101713.x8AHD3m0037220>