From owner-svn-ports-all@freebsd.org Fri May 18 04:30:26 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C78EEE94F3; Fri, 18 May 2018 04:30:26 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BC18385266; Fri, 18 May 2018 04:30:25 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 985B613378; Fri, 18 May 2018 04:30:25 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4I4UP1L091310; Fri, 18 May 2018 04:30:25 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4I4UOYh091307; Fri, 18 May 2018 04:30:24 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201805180430.w4I4UOYh091307@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 18 May 2018 04:30:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470262 - in head/net: . py-haproxyctl X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/net: . py-haproxyctl X-SVN-Commit-Revision: 470262 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 04:30:26 -0000 Author: koobs Date: Fri May 18 04:30:24 2018 New Revision: 470262 URL: https://svnweb.freebsd.org/changeset/ports/470262 Log: [NEW] net/py-haproxyctl: HAProxy control tool HAProxyctl is a tool to manage the various aspects of HAProxy that can be controlled by means of its socket. HAProxyctl can be used in 2 modes. CLI mode and Python API mode. CLI mode, as the name implies, gives you a command, haproxyctl, that can be used to control HAProxy. You can use the Python API mode to integrate HAProxyctl directly in your Python project. WWW: https://github.com/neurogeek/haproxyctl PR: 228264 Submitted by: Tao Zhou Added: head/net/py-haproxyctl/ head/net/py-haproxyctl/Makefile (contents, props changed) head/net/py-haproxyctl/distinfo (contents, props changed) head/net/py-haproxyctl/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri May 18 03:58:25 2018 (r470261) +++ head/net/Makefile Fri May 18 04:30:24 2018 (r470262) @@ -1044,6 +1044,7 @@ SUBDIR += py-gspread SUBDIR += py-gspreadsheet SUBDIR += py-haproxy-log-analysis + SUBDIR += py-haproxyctl SUBDIR += py-httpstat SUBDIR += py-impacket SUBDIR += py-ipaddress Added: head/net/py-haproxyctl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-haproxyctl/Makefile Fri May 18 04:30:24 2018 (r470262) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= haproxyctl +PORTVERSION= 0.5 +DISTVERSIONPREFIX= v +CATEGORIES= net python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= zhoutao@laocius.org +COMMENT= HAProxy control tool + +LICENSE= GPLv3 + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${FLAVOR} + +USES= python +USE_PYTHON= distutils concurrent autoplist + +USE_GITHUB= yes +GH_ACCOUNT= neurogeek + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m nose -v haproxy/tests + +.include Added: head/net/py-haproxyctl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-haproxyctl/distinfo Fri May 18 04:30:24 2018 (r470262) @@ -0,0 +1,3 @@ +TIMESTAMP = 1526356889 +SHA256 (neurogeek-haproxyctl-v0.5_GH0.tar.gz) = 781b04556f00f42464f10dc943cdce040dd9868015d5b43f097730f107bef6cc +SIZE (neurogeek-haproxyctl-v0.5_GH0.tar.gz) = 7532 Added: head/net/py-haproxyctl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-haproxyctl/pkg-descr Fri May 18 04:30:24 2018 (r470262) @@ -0,0 +1,9 @@ +HAProxyctl is a tool to manage the various aspects of HAProxy that can be +controlled by means of its socket. + +HAProxyctl can be used in 2 modes. CLI mode and Python API mode. CLI mode, +as the name implies, gives you a command, haproxyctl, that can be used to +control HAProxy. You can use the Python API mode to integrate HAProxyctl +directly in your Python project. + +WWW: https://github.com/neurogeek/haproxyctl