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

net/py-haproxy-cli: new port

haproxy-cli is a tool to manage the various aspects of HAProxy that can be
controlled by means of its socket.

haproxy-cli can be used in 2 modes: CLI mode and Python API mode. CLI mode,
as the name implies, gives you a command, haproxy-cli, that can be used to
control HAProxy. You can use the Python API mode to integrate haproxy-cli
directly in your Python project.

PR:	275562
This commit is contained in:
Frank Wall 2024-03-29 21:14:20 +01:00 committed by Kurt Jaeger
parent 4df5042677
commit 6b3a98ee34
4 changed files with 29 additions and 0 deletions

View File

@ -1056,6 +1056,7 @@
SUBDIR += py-gntp
SUBDIR += py-gspread
SUBDIR += py-h11
SUBDIR += py-haproxy-cli
SUBDIR += py-haproxy-log-analysis
SUBDIR += py-haproxyctl
SUBDIR += py-httpstat

View File

@ -0,0 +1,18 @@
PORTNAME= haproxy-cli
PORTVERSION= 0.6.1
CATEGORIES= net python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= freebsd@moov.de
COMMENT= Tool to interact with HAProxy
WWW= https://github.com/markt-de/haproxy-cli
LICENSE= GPLv3
USES= python
USE_PYTHON= distutils concurrent autoplist
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1701813827
SHA256 (haproxy-cli-0.6.1.tar.gz) = 869f8e5c21db8db9a43cc50020d50e4697d2a9141669bc161289e0163d412319
SIZE (haproxy-cli-0.6.1.tar.gz) = 22513

View File

@ -0,0 +1,7 @@
haproxy-cli is a tool to manage the various aspects of HAProxy that can be
controlled by means of its socket.
haproxy-cli can be used in 2 modes: CLI mode and Python API mode. CLI mode,
as the name implies, gives you a command, haproxy-cli, that can be used to
control HAProxy. You can use the Python API mode to integrate haproxy-cli
directly in your Python project.