Date: Sat, 6 Apr 2019 08:15:37 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r498080 - in head/www: . py-soupsieve Message-ID: <201904060815.x368Fbu1001175@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Sat Apr 6 08:15:37 2019 New Revision: 498080 URL: https://svnweb.freebsd.org/changeset/ports/498080 Log: SoupSieve is a CSS selector library designed to be used with BeautifulSoup4. It aims to provide selecting, matching, and filtering using modern CSS selectors. SoupSieve currently provides selectors from the CSS level 1 specifications up through the latest CSS level 4 drafts (though some are not yet implemented). WWW: https://github.com/facelessuser/soupsieve Added: head/www/py-soupsieve/ head/www/py-soupsieve/Makefile (contents, props changed) head/www/py-soupsieve/distinfo (contents, props changed) head/www/py-soupsieve/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Apr 6 08:15:31 2019 (r498079) +++ head/www/Makefile Sat Apr 6 08:15:37 2019 (r498080) @@ -1856,6 +1856,7 @@ SUBDIR += py-slimmer SUBDIR += py-slumber SUBDIR += py-sockjs-tornado + SUBDIR += py-soupsieve SUBDIR += py-splinter SUBDIR += py-spyne SUBDIR += py-sseclient Added: head/www/py-soupsieve/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-soupsieve/Makefile Sat Apr 6 08:15:37 2019 (r498080) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= soupsieve +PORTVERSION= 1.9 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wen@FreeBSD.org +COMMENT= CSS4 selector implementation for BeautifulSoup + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= python +USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/www/py-soupsieve/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-soupsieve/distinfo Sat Apr 6 08:15:37 2019 (r498080) @@ -0,0 +1,3 @@ +TIMESTAMP = 1554507432 +SHA256 (soupsieve-1.9.tar.gz) = e41a65e99bd125972d84221022beb1e4b5cfc68fa12c170c39834ce32d1b294c +SIZE (soupsieve-1.9.tar.gz) = 91366 Added: head/www/py-soupsieve/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-soupsieve/pkg-descr Sat Apr 6 08:15:37 2019 (r498080) @@ -0,0 +1,8 @@ +SoupSieve is a CSS selector library designed to be used with +BeautifulSoup4. It aims to provide selecting, matching, and +filtering using modern CSS selectors. SoupSieve currently +provides selectors from the CSS level 1 specifications up +through the latest CSS level 4 drafts (though some are not yet +implemented). + +WWW: https://github.com/facelessuser/soupsieve
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904060815.x368Fbu1001175>