1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

www/py-proxy_tools: New port: Simple proxy implementation for Python

proxy_tools is a very simple and useful proxy (as in the GoF design
pattern) implementation, that I found to be useful outside the web
context -- hence the extraction.

WWW: https://github.com/jtushman/proxy_tools
PR:		282455
This commit is contained in:
Jesús Daniel Colmenares Oviedo 2024-11-02 10:26:38 -07:00 committed by Jose Alonso Cardenas Marquez
parent f754c341f2
commit f704f6e0ff
No known key found for this signature in database
GPG Key ID: 335B9246BA5E30F4
4 changed files with 25 additions and 0 deletions

View File

@ -1780,6 +1780,7 @@
SUBDIR += py-priority
SUBDIR += py-priority1
SUBDIR += py-protego
SUBDIR += py-proxy_tools
SUBDIR += py-puppetboard
SUBDIR += py-py-restclient
SUBDIR += py-pygsheets

View File

@ -0,0 +1,18 @@
PORTNAME= proxy_tools
DISTVERSION= 0.1.0
CATEGORIES= www python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= DtxdF@disroot.org
COMMENT= Simple proxy implementation for Python
WWW= https://github.com/jtushman/proxy_tools
LICENSE= MIT
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1730061330
SHA256 (proxy_tools-0.1.0.tar.gz) = ccb3751f529c047e2d8a58440d86b205303cf0fe8146f784d1cbcd94f0a28010
SIZE (proxy_tools-0.1.0.tar.gz) = 2978

View File

@ -0,0 +1,3 @@
proxy_tools is a very simple and useful proxy (as in the GoF design
pattern) implementation, that I found to be useful outside the web
context -- hence the extraction.