Received: by mail.netbsd.org (Postfix, from userid 605) id 98ACD84EDC; Wed, 10 May 2023 21:59:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C6F9A84CF4 for ; Wed, 10 May 2023 21:59:58 +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 jnOA4VWHtl6Q for ; Wed, 10 May 2023 21:59:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 202D584CDC for ; Wed, 10 May 2023 21:59:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 12E46FA87; Wed, 10 May 2023 21:59:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168375599819150" MIME-Version: 1.0 Date: Wed, 10 May 2023 21:59:58 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/www To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20230510215958.12E46FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168375599819150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Wed May 10 21:59:57 UTC 2023 Modified Files: pkgsrc/www: Makefile Added Files: pkgsrc/www/py-robot-detection: DESCR Makefile PLIST distinfo Log Message: py-robot-detection: add version 0.4 robot_detection is a python module to detect if a given HTTP User Agent is a web crawler. It uses the list of registered robots from http://www.robotstxt.org: (Robots Database) To generate a diff of this commit: cvs rdiff -u -r1.1709 -r1.1710 pkgsrc/www/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/www/py-robot-detection/DESCR \ pkgsrc/www/py-robot-detection/Makefile \ pkgsrc/www/py-robot-detection/PLIST \ pkgsrc/www/py-robot-detection/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168375599819150 Content-Disposition: inline Content-Length: 3037 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/Makefile diff -u pkgsrc/www/Makefile:1.1709 pkgsrc/www/Makefile:1.1710 --- pkgsrc/www/Makefile:1.1709 Fri May 5 11:01:09 2023 +++ pkgsrc/www/Makefile Wed May 10 21:59:57 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1709 2023/05/05 11:01:09 adam Exp $ +# $NetBSD: Makefile,v 1.1710 2023/05/10 21:59:57 markd Exp $ # COMMENT= Packages related to the World Wide Web @@ -846,6 +846,7 @@ SUBDIR+= py-requests-wsgi-adapter SUBDIR+= py-respx SUBDIR+= py-rfc3986 SUBDIR+= py-robobrowser +SUBDIR+= py-robot-detection SUBDIR+= py-rss2gen SUBDIR+= py-sanic SUBDIR+= py-sanic-routing Added files: Index: pkgsrc/www/py-robot-detection/DESCR diff -u /dev/null pkgsrc/www/py-robot-detection/DESCR:1.1 --- /dev/null Wed May 10 21:59:58 2023 +++ pkgsrc/www/py-robot-detection/DESCR Wed May 10 21:59:57 2023 @@ -0,0 +1,3 @@ +robot_detection is a python module to detect if a given HTTP User Agent +is a web crawler. It uses the list of registered robots from +http://www.robotstxt.org: (Robots Database) Index: pkgsrc/www/py-robot-detection/Makefile diff -u /dev/null pkgsrc/www/py-robot-detection/Makefile:1.1 --- /dev/null Wed May 10 21:59:58 2023 +++ pkgsrc/www/py-robot-detection/Makefile Wed May 10 21:59:57 2023 @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2023/05/10 21:59:57 markd Exp $ + +DISTNAME= robot-detection-0.4 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= www python +MASTER_SITES= ${MASTER_SITE_PYPI:=r/robot-detection/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/rory/robot-detection/ +COMMENT= Detect web crawlers using HTTP User Agent +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-robot-detection/PLIST diff -u /dev/null pkgsrc/www/py-robot-detection/PLIST:1.1 --- /dev/null Wed May 10 21:59:58 2023 +++ pkgsrc/www/py-robot-detection/PLIST Wed May 10 21:59:57 2023 @@ -0,0 +1,9 @@ +@comment $NetBSD: PLIST,v 1.1 2023/05/10 21:59:57 markd Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/robot_detection.py +${PYSITELIB}/robot_detection.pyc +${PYSITELIB}/robot_detection.pyo Index: pkgsrc/www/py-robot-detection/distinfo diff -u /dev/null pkgsrc/www/py-robot-detection/distinfo:1.1 --- /dev/null Wed May 10 21:59:58 2023 +++ pkgsrc/www/py-robot-detection/distinfo Wed May 10 21:59:57 2023 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2023/05/10 21:59:57 markd Exp $ + +BLAKE2s (robot-detection-0.4.tar.gz) = 3426065d5e685b356e53f0134db577b1a983541706ee89e68abdc3bee3ed0c3b +SHA512 (robot-detection-0.4.tar.gz) = c6b9979143a4dbe68a55c2ef47d3e029c66ec758d4ba17150199ae932201dda5b8e3c31aba092f8a7889fec38b3f647f161db813f6fca12b6c7404deb3726c08 +Size (robot-detection-0.4.tar.gz) = 6387 bytes --_----------=_168375599819150--