ports/net/py-sbws/Makefile
Stefan Eßer b7f05445c0 Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
2022-09-07 23:10:59 +02:00

62 lines
2.1 KiB
Makefile

PORTNAME= sbws
PORTVERSION= 1.3.0
DISTVERSIONPREFIX= v
CATEGORIES= net python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= egypcio@FreeBSD.org
COMMENT= Tor network bandwidth scanner
WWW= https://sbws.readthedocs.io/
LICENSE= CC0-1.0
LICENSE_FILE= ${WRKSRC}/LICENSE.rst
# pysocks: indirect dependency via requests[socks]
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pysocks>=1.6.8:net/py-pysocks@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}requests>=2.18.4:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}stem>=1.7.0:security/py-stem@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}psutil>=5.5:sysutils/py-psutil@${PY_FLAVOR} \
tor:security/tor \
obfs4proxy:security/obfs4proxy-tor
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}flake8>=0:devel/py-flake8@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}flake8-docstrings>=0:devel/py-flake8-docstrings@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}freezegun>=0:devel/py-freezegun@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-mock>=0:devel/py-pytest-mock@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}tox>=0:devel/py-tox@${PY_FLAVOR} \
bash:shells/bash
USES= cpe python:3.6+ shebangfix
USE_GITLAB= yes
USE_PYTHON= autoplist distutils concurrent flavors
PLIST_FILES= "@sample ${PREFIX}/etc/sbws.ini.sample"
CPE_VENDOR= torproject
GL_SITE= https://gitlab.torproject.org/tpo
GL_ACCOUNT= network-health
GL_PROJECT= sbws
GL_COMMIT= 25aa5b232ca26729e1bf30a7c5a54fd22f5c3eeb
SHEBANG_FILES= setup.py \
scripts/tools/get-per-relay-budget.py \
scripts/tools/sbws-http-server.py \
scripts/tools/scale-v3bw-with-budget.py \
tests/integration/stop_chutney.sh \
tests/integration/start_chutney.sh \
tests/integration/run.sh
NO_ARCH= yes
do-test:
cd ${WRKSRC} && \
${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v
post-install:
${INSTALL_DATA} ${WRKSRC}/docs/source/examples/sbws.example.ini \
${STAGEDIR}${PREFIX}/etc/sbws.ini.sample
.include <bsd.port.mk>