Received: by mail.netbsd.org (Postfix, from userid 605) id 11069850FD; Fri, 12 Feb 2021 09:33:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4CEFC850DD for ; Fri, 12 Feb 2021 09:33:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id jRpqBd4wvz3Y for ; Fri, 12 Feb 2021 09:33:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 41AC484C71 for ; Fri, 12 Feb 2021 09:33:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3EBC9FA95; Fri, 12 Feb 2021 09:33:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161312240076640" MIME-Version: 1.0 Date: Fri, 12 Feb 2021 09:33:20 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210212093320.3EBC9FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161312240076640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Feb 12 09:33:20 UTC 2021 Modified Files: pkgsrc/net: Makefile pkgsrc/www: Makefile pkgsrc/www/py-aiohttp-socks: Makefile pkgsrc/www/py-httpx-socks: Makefile Added Files: pkgsrc/net/py-python-socks: DESCR Makefile PLIST distinfo Log Message: Quickly rename www/py-socks to net/py-pythons-socks as suggested by @leot To generate a diff of this commit: cvs rdiff -u -r1.1382 -r1.1383 pkgsrc/net/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/net/py-python-socks/DESCR \ pkgsrc/net/py-python-socks/Makefile pkgsrc/net/py-python-socks/PLIST \ pkgsrc/net/py-python-socks/distinfo cvs rdiff -u -r1.1506 -r1.1507 pkgsrc/www/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/www/py-aiohttp-socks/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/py-httpx-socks/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161312240076640 Content-Disposition: inline Content-Length: 11442 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/Makefile diff -u pkgsrc/net/Makefile:1.1382 pkgsrc/net/Makefile:1.1383 --- pkgsrc/net/Makefile:1.1382 Thu Feb 11 19:55:22 2021 +++ pkgsrc/net/Makefile Fri Feb 12 09:33:19 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1382 2021/02/11 19:55:22 markd Exp $ +# $NetBSD: Makefile,v 1.1383 2021/02/12 09:33:19 adam Exp $ # COMMENT= Networking tools @@ -743,6 +743,7 @@ SUBDIR+= py-pyftpdlib SUBDIR+= py-pylint-celery SUBDIR+= py-pypiserver SUBDIR+= py-pysendfile +SUBDIR+= py-python-socks SUBDIR+= py-requestbuilder SUBDIR+= py-responses SUBDIR+= py-rpyc Index: pkgsrc/www/Makefile diff -u pkgsrc/www/Makefile:1.1506 pkgsrc/www/Makefile:1.1507 --- pkgsrc/www/Makefile:1.1506 Fri Feb 12 08:19:59 2021 +++ pkgsrc/www/Makefile Fri Feb 12 09:33:19 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1506 2021/02/12 08:19:59 adam Exp $ +# $NetBSD: Makefile,v 1.1507 2021/02/12 09:33:19 adam Exp $ # COMMENT= Packages related to the World Wide Web @@ -812,7 +812,6 @@ SUBDIR+= py-scgi SUBDIR+= py-scrapy SUBDIR+= py-selenium SUBDIR+= py-simpletal -SUBDIR+= py-socks SUBDIR+= py-soupsieve SUBDIR+= py-sparqlwrapper SUBDIR+= py-static Index: pkgsrc/www/py-aiohttp-socks/Makefile diff -u pkgsrc/www/py-aiohttp-socks/Makefile:1.10 pkgsrc/www/py-aiohttp-socks/Makefile:1.11 --- pkgsrc/www/py-aiohttp-socks/Makefile:1.10 Fri Feb 12 08:22:00 2021 +++ pkgsrc/www/py-aiohttp-socks/Makefile Fri Feb 12 09:33:19 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2021/02/12 08:22:00 adam Exp $ +# $NetBSD: Makefile,v 1.11 2021/02/12 09:33:19 adam Exp $ DISTNAME= aiohttp_socks-0.5.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} @@ -12,7 +12,7 @@ LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-aiohttp>=2.3.2:../../www/py-aiohttp DEPENDS+= ${PYPKGPREFIX}-attrs>=19.2.0:../../devel/py-attrs -DEPENDS+= ${PYPKGPREFIX}-socks>=1.0.1:../../www/py-socks +DEPENDS+= ${PYPKGPREFIX}-python-socks>=1.0.1:../../net/py-python-socks USE_LANGUAGES= # none Index: pkgsrc/www/py-httpx-socks/Makefile diff -u pkgsrc/www/py-httpx-socks/Makefile:1.1 pkgsrc/www/py-httpx-socks/Makefile:1.2 --- pkgsrc/www/py-httpx-socks/Makefile:1.1 Fri Feb 12 08:19:59 2021 +++ pkgsrc/www/py-httpx-socks/Makefile Fri Feb 12 09:33:20 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2021/02/12 08:19:59 adam Exp $ +# $NetBSD: Makefile,v 1.2 2021/02/12 09:33:20 adam Exp $ DISTNAME= httpx-socks-0.3.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,7 +11,7 @@ COMMENT= Proxy (HTTP, SOCKS) transports LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-httpx>=0.15.4:../../www/py-httpx -DEPENDS+= ${PYPKGPREFIX}-socks>=1.1.0:../../www/py-socks +DEPENDS+= ${PYPKGPREFIX}-python-socks>=1.1.0:../../net/py-python-socks USE_LANGUAGES= # none Added files: Index: pkgsrc/net/py-python-socks/DESCR diff -u /dev/null pkgsrc/net/py-python-socks/DESCR:1.1 --- /dev/null Fri Feb 12 09:33:20 2021 +++ pkgsrc/net/py-python-socks/DESCR Fri Feb 12 09:33:19 2021 @@ -0,0 +1,4 @@ +The python-socks package provides a core proxy client functionality for Python. +Supports SOCKS4(a), SOCKS5, HTTP (tunneling) proxy and provides sync and async +(asyncio, trio, curio) APIs. You probably don't need to use python-socks +directly. It is used internally by aiohttp-socks and httpx-socks packages. Index: pkgsrc/net/py-python-socks/Makefile diff -u /dev/null pkgsrc/net/py-python-socks/Makefile:1.1 --- /dev/null Fri Feb 12 09:33:20 2021 +++ pkgsrc/net/py-python-socks/Makefile Fri Feb 12 09:33:19 2021 @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2021/02/12 09:33:19 adam Exp $ + +DISTNAME= python-socks-1.2.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= net python +MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-socks/} + +MAINTAINER= pkgsrc-users@pkgsrc.org +HOMEPAGE= https://github.com/romis2012/python-socks +COMMENT= Core proxy (SOCKS4, SOCKS5, HTTP tunneling) functionality for Python +LICENSE= apache-2.0 + +DEPENDS+= ${PYPKGPREFIX}-async-timeout>=3.0.1:../../devel/py-async-timeout + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/py-python-socks/PLIST diff -u /dev/null pkgsrc/net/py-python-socks/PLIST:1.1 --- /dev/null Fri Feb 12 09:33:20 2021 +++ pkgsrc/net/py-python-socks/PLIST Fri Feb 12 09:33:19 2021 @@ -0,0 +1,135 @@ +@comment $NetBSD: PLIST,v 1.1 2021/02/12 09:33:19 adam 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}/python_socks/__init__.py +${PYSITELIB}/python_socks/__init__.pyc +${PYSITELIB}/python_socks/__init__.pyo +${PYSITELIB}/python_socks/_basic_auth.py +${PYSITELIB}/python_socks/_basic_auth.pyc +${PYSITELIB}/python_socks/_basic_auth.pyo +${PYSITELIB}/python_socks/_errors.py +${PYSITELIB}/python_socks/_errors.pyc +${PYSITELIB}/python_socks/_errors.pyo +${PYSITELIB}/python_socks/_helpers.py +${PYSITELIB}/python_socks/_helpers.pyc +${PYSITELIB}/python_socks/_helpers.pyo +${PYSITELIB}/python_socks/_proto_http.py +${PYSITELIB}/python_socks/_proto_http.pyc +${PYSITELIB}/python_socks/_proto_http.pyo +${PYSITELIB}/python_socks/_proto_http_async.py +${PYSITELIB}/python_socks/_proto_http_async.pyc +${PYSITELIB}/python_socks/_proto_http_async.pyo +${PYSITELIB}/python_socks/_proto_http_sync.py +${PYSITELIB}/python_socks/_proto_http_sync.pyc +${PYSITELIB}/python_socks/_proto_http_sync.pyo +${PYSITELIB}/python_socks/_proto_socks4.py +${PYSITELIB}/python_socks/_proto_socks4.pyc +${PYSITELIB}/python_socks/_proto_socks4.pyo +${PYSITELIB}/python_socks/_proto_socks4_async.py +${PYSITELIB}/python_socks/_proto_socks4_async.pyc +${PYSITELIB}/python_socks/_proto_socks4_async.pyo +${PYSITELIB}/python_socks/_proto_socks4_sync.py +${PYSITELIB}/python_socks/_proto_socks4_sync.pyc +${PYSITELIB}/python_socks/_proto_socks4_sync.pyo +${PYSITELIB}/python_socks/_proto_socks5.py +${PYSITELIB}/python_socks/_proto_socks5.pyc +${PYSITELIB}/python_socks/_proto_socks5.pyo +${PYSITELIB}/python_socks/_proto_socks5_async.py +${PYSITELIB}/python_socks/_proto_socks5_async.pyc +${PYSITELIB}/python_socks/_proto_socks5_async.pyo +${PYSITELIB}/python_socks/_proto_socks5_sync.py +${PYSITELIB}/python_socks/_proto_socks5_sync.pyc +${PYSITELIB}/python_socks/_proto_socks5_sync.pyo +${PYSITELIB}/python_socks/_proxy_async.py +${PYSITELIB}/python_socks/_proxy_async.pyc +${PYSITELIB}/python_socks/_proxy_async.pyo +${PYSITELIB}/python_socks/_proxy_async_aio.py +${PYSITELIB}/python_socks/_proxy_async_aio.pyc +${PYSITELIB}/python_socks/_proxy_async_aio.pyo +${PYSITELIB}/python_socks/_proxy_async_curio.py +${PYSITELIB}/python_socks/_proxy_async_curio.pyc +${PYSITELIB}/python_socks/_proxy_async_curio.pyo +${PYSITELIB}/python_socks/_proxy_async_trio.py +${PYSITELIB}/python_socks/_proxy_async_trio.pyc +${PYSITELIB}/python_socks/_proxy_async_trio.pyo +${PYSITELIB}/python_socks/_proxy_chain_async.py +${PYSITELIB}/python_socks/_proxy_chain_async.pyc +${PYSITELIB}/python_socks/_proxy_chain_async.pyo +${PYSITELIB}/python_socks/_proxy_chain_sync.py +${PYSITELIB}/python_socks/_proxy_chain_sync.pyc +${PYSITELIB}/python_socks/_proxy_chain_sync.pyo +${PYSITELIB}/python_socks/_proxy_factory.py +${PYSITELIB}/python_socks/_proxy_factory.pyc +${PYSITELIB}/python_socks/_proxy_factory.pyo +${PYSITELIB}/python_socks/_proxy_sync.py +${PYSITELIB}/python_socks/_proxy_sync.pyc +${PYSITELIB}/python_socks/_proxy_sync.pyo +${PYSITELIB}/python_socks/_resolver_async.py +${PYSITELIB}/python_socks/_resolver_async.pyc +${PYSITELIB}/python_socks/_resolver_async.pyo +${PYSITELIB}/python_socks/_resolver_async_aio.py +${PYSITELIB}/python_socks/_resolver_async_aio.pyc +${PYSITELIB}/python_socks/_resolver_async_aio.pyo +${PYSITELIB}/python_socks/_resolver_async_curio.py +${PYSITELIB}/python_socks/_resolver_async_curio.pyc +${PYSITELIB}/python_socks/_resolver_async_curio.pyo +${PYSITELIB}/python_socks/_resolver_async_trio.py +${PYSITELIB}/python_socks/_resolver_async_trio.pyc +${PYSITELIB}/python_socks/_resolver_async_trio.pyo +${PYSITELIB}/python_socks/_resolver_sync.py +${PYSITELIB}/python_socks/_resolver_sync.pyc +${PYSITELIB}/python_socks/_resolver_sync.pyo +${PYSITELIB}/python_socks/_stream_async.py +${PYSITELIB}/python_socks/_stream_async.pyc +${PYSITELIB}/python_socks/_stream_async.pyo +${PYSITELIB}/python_socks/_stream_async_aio.py +${PYSITELIB}/python_socks/_stream_async_aio.pyc +${PYSITELIB}/python_socks/_stream_async_aio.pyo +${PYSITELIB}/python_socks/_stream_async_curio.py +${PYSITELIB}/python_socks/_stream_async_curio.pyc +${PYSITELIB}/python_socks/_stream_async_curio.pyo +${PYSITELIB}/python_socks/_stream_async_trio.py +${PYSITELIB}/python_socks/_stream_async_trio.pyc +${PYSITELIB}/python_socks/_stream_async_trio.pyo +${PYSITELIB}/python_socks/_stream_sync.py +${PYSITELIB}/python_socks/_stream_sync.pyc +${PYSITELIB}/python_socks/_stream_sync.pyo +${PYSITELIB}/python_socks/_types.py +${PYSITELIB}/python_socks/_types.pyc +${PYSITELIB}/python_socks/_types.pyo +${PYSITELIB}/python_socks/_version.py +${PYSITELIB}/python_socks/_version.pyc +${PYSITELIB}/python_socks/_version.pyo +${PYSITELIB}/python_socks/async_/__init__.py +${PYSITELIB}/python_socks/async_/__init__.pyc +${PYSITELIB}/python_socks/async_/__init__.pyo +${PYSITELIB}/python_socks/async_/asyncio/__init__.py +${PYSITELIB}/python_socks/async_/asyncio/__init__.pyc +${PYSITELIB}/python_socks/async_/asyncio/__init__.pyo +${PYSITELIB}/python_socks/async_/asyncio/ext/__init__.py +${PYSITELIB}/python_socks/async_/asyncio/ext/__init__.pyc +${PYSITELIB}/python_socks/async_/asyncio/ext/__init__.pyo +${PYSITELIB}/python_socks/async_/asyncio/ext/_chain.py +${PYSITELIB}/python_socks/async_/asyncio/ext/_chain.pyc +${PYSITELIB}/python_socks/async_/asyncio/ext/_chain.pyo +${PYSITELIB}/python_socks/async_/asyncio/ext/_factory.py +${PYSITELIB}/python_socks/async_/asyncio/ext/_factory.pyc +${PYSITELIB}/python_socks/async_/asyncio/ext/_factory.pyo +${PYSITELIB}/python_socks/async_/asyncio/ext/_proxy.py +${PYSITELIB}/python_socks/async_/asyncio/ext/_proxy.pyc +${PYSITELIB}/python_socks/async_/asyncio/ext/_proxy.pyo +${PYSITELIB}/python_socks/async_/asyncio/ext/_stream.py +${PYSITELIB}/python_socks/async_/asyncio/ext/_stream.pyc +${PYSITELIB}/python_socks/async_/asyncio/ext/_stream.pyo +${PYSITELIB}/python_socks/async_/curio/__init__.py +${PYSITELIB}/python_socks/async_/curio/__init__.pyc +${PYSITELIB}/python_socks/async_/curio/__init__.pyo +${PYSITELIB}/python_socks/async_/trio/__init__.py +${PYSITELIB}/python_socks/async_/trio/__init__.pyc +${PYSITELIB}/python_socks/async_/trio/__init__.pyo +${PYSITELIB}/python_socks/sync/__init__.py +${PYSITELIB}/python_socks/sync/__init__.pyc +${PYSITELIB}/python_socks/sync/__init__.pyo Index: pkgsrc/net/py-python-socks/distinfo diff -u /dev/null pkgsrc/net/py-python-socks/distinfo:1.1 --- /dev/null Fri Feb 12 09:33:20 2021 +++ pkgsrc/net/py-python-socks/distinfo Fri Feb 12 09:33:19 2021 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2021/02/12 09:33:19 adam Exp $ + +SHA1 (python-socks-1.2.0.tar.gz) = b184e858e95a07dd84ef2a2282d9f335c624f502 +RMD160 (python-socks-1.2.0.tar.gz) = 5e2a4921231f7fc52a19d8155efd746598c6d300 +SHA512 (python-socks-1.2.0.tar.gz) = 36459956ca608ab4464deda67f0debfcf334208a9fc050517f10143b519bcf9f33f2dd317d68849fadef1eff21d53dd390775acdc5a2e2a2baf141bbe026d794 +Size (python-socks-1.2.0.tar.gz) = 20400 bytes --_----------=_161312240076640--