Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id C55017A21A for ; Mon, 13 Feb 2017 21:21:10 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7888E855C8; Mon, 13 Feb 2017 21:21:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0A07F84CBD for ; Mon, 13 Feb 2017 21:21:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id spcRR4wLUQan for ; Mon, 13 Feb 2017 21:21:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 758718559B for ; Mon, 13 Feb 2017 21:21:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 73605FBE3; Mon, 13 Feb 2017 21:21:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148702086968690" MIME-Version: 1.0 Date: Mon, 13 Feb 2017 21:21:09 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170213212109.73605FBE3@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148702086968690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Feb 13 21:21:09 UTC 2017 Modified Files: pkgsrc/www: Makefile Added Files: pkgsrc/www/py-parsel: DESCR Makefile PLIST distinfo Log Message: Added www/py-parsel version 1.1.0 Parsel is a library to extract data from HTML and XML using XPath and CSS selectors. Features: * Extract text using CSS or XPath selectors * Regular expression helper methods To generate a diff of this commit: cvs rdiff -u -r1.1211 -r1.1212 pkgsrc/www/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/www/py-parsel/DESCR \ pkgsrc/www/py-parsel/Makefile pkgsrc/www/py-parsel/PLIST \ pkgsrc/www/py-parsel/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148702086968690 Content-Disposition: inline Content-Length: 3615 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/Makefile diff -u pkgsrc/www/Makefile:1.1211 pkgsrc/www/Makefile:1.1212 --- pkgsrc/www/Makefile:1.1211 Mon Feb 13 17:22:06 2017 +++ pkgsrc/www/Makefile Mon Feb 13 21:21:09 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1211 2017/02/13 17:22:06 adam Exp $ +# $NetBSD: Makefile,v 1.1212 2017/02/13 21:21:09 adam Exp $ # COMMENT= Packages related to the World Wide Web @@ -686,6 +686,7 @@ SUBDIR+= py-mod_wsgi SUBDIR+= py-mod_wsgi-metrics SUBDIR+= py-moin SUBDIR+= py-nevow +SUBDIR+= py-parsel SUBDIR+= py-paste SUBDIR+= py-pelican SUBDIR+= py-pendrell @@ -710,6 +711,7 @@ SUBDIR+= py-uliweb SUBDIR+= py-urllib3 SUBDIR+= py-uwsgi SUBDIR+= py-uwsgitop +SUBDIR+= py-w3lib SUBDIR+= py-waitress SUBDIR+= py-webassets SUBDIR+= py-webcolors Added files: Index: pkgsrc/www/py-parsel/DESCR diff -u /dev/null pkgsrc/www/py-parsel/DESCR:1.1 --- /dev/null Mon Feb 13 21:21:09 2017 +++ pkgsrc/www/py-parsel/DESCR Mon Feb 13 21:21:09 2017 @@ -0,0 +1,6 @@ +Parsel is a library to extract data from HTML and XML using XPath and CSS +selectors. + +Features: +* Extract text using CSS or XPath selectors +* Regular expression helper methods Index: pkgsrc/www/py-parsel/Makefile diff -u /dev/null pkgsrc/www/py-parsel/Makefile:1.1 --- /dev/null Mon Feb 13 21:21:09 2017 +++ pkgsrc/www/py-parsel/Makefile Mon Feb 13 21:21:09 2017 @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2017/02/13 21:21:09 adam Exp $ + +DISTNAME= parsel-1.1.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= www python +MASTER_SITES= ${MASTER_SITE_PYPI:=p/parsel/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://github.com/scrapy/parsel +COMMENT= Library to extract data from HTML and XML using XPath and CSS +LICENSE= modified-bsd + +DEPENDS+= ${PYPKGPREFIX}-cssselect>=0.9:../../textproc/py-cssselect +DEPENDS+= ${PYPKGPREFIX}-lxml>=2.3:../../textproc/py-lxml +DEPENDS+= ${PYPKGPREFIX}-six>=1.5.2:../../lang/py-six +DEPENDS+= ${PYPKGPREFIX}-w3lib>=1.8.0:../../www/py-w3lib + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-parsel/PLIST diff -u /dev/null pkgsrc/www/py-parsel/PLIST:1.1 --- /dev/null Mon Feb 13 21:21:09 2017 +++ pkgsrc/www/py-parsel/PLIST Mon Feb 13 21:21:09 2017 @@ -0,0 +1,19 @@ +@comment $NetBSD: PLIST,v 1.1 2017/02/13 21:21:09 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/parsel/__init__.py +${PYSITELIB}/parsel/__init__.pyc +${PYSITELIB}/parsel/__init__.pyo +${PYSITELIB}/parsel/csstranslator.py +${PYSITELIB}/parsel/csstranslator.pyc +${PYSITELIB}/parsel/csstranslator.pyo +${PYSITELIB}/parsel/selector.py +${PYSITELIB}/parsel/selector.pyc +${PYSITELIB}/parsel/selector.pyo +${PYSITELIB}/parsel/utils.py +${PYSITELIB}/parsel/utils.pyc +${PYSITELIB}/parsel/utils.pyo Index: pkgsrc/www/py-parsel/distinfo diff -u /dev/null pkgsrc/www/py-parsel/distinfo:1.1 --- /dev/null Mon Feb 13 21:21:09 2017 +++ pkgsrc/www/py-parsel/distinfo Mon Feb 13 21:21:09 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/02/13 21:21:09 adam Exp $ + +SHA1 (parsel-1.1.0.tar.gz) = 980be253dffa2f3c41bf277f581697062650c3a9 +RMD160 (parsel-1.1.0.tar.gz) = 5e225a5de3676b4734d473abb7115fc3885a9df2 +SHA512 (parsel-1.1.0.tar.gz) = fdc08423cdef31d6e430d1562ce22be47d998e3dcdc1049055500081a0d52f46f670350f731de18e212bec23642e3f005f89f6ae0bfa7d7d0222eda8b969d5ba +Size (parsel-1.1.0.tar.gz) = 32243 bytes --_----------=_148702086968690--