From owner-svn-ports-all@freebsd.org Wed Jan 25 00:34:09 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DA507CBE9F8; Wed, 25 Jan 2017 00:34:09 +0000 (UTC) (envelope-from lifanov@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 mx1.freebsd.org (Postfix) with ESMTPS id 8F83CF11; Wed, 25 Jan 2017 00:34:09 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0P0Y80Y008495; Wed, 25 Jan 2017 00:34:08 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0P0Y8mW008490; Wed, 25 Jan 2017 00:34:08 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201701250034.v0P0Y8mW008490@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Wed, 25 Jan 2017 00:34:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432409 - in head/net: . py-httpstat X-SVN-Group: ports-head 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.23 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: Wed, 25 Jan 2017 00:34:10 -0000 Author: lifanov Date: Wed Jan 25 00:34:08 2017 New Revision: 432409 URL: https://svnweb.freebsd.org/changeset/ports/432409 Log: add sysutils/httpstat: Curl statistics made simple PR: 213492 Submitted by: Danilo G. Baio Reviewed by: matthew Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D9316 Added: head/net/py-httpstat/ head/net/py-httpstat/Makefile (contents, props changed) head/net/py-httpstat/distinfo (contents, props changed) head/net/py-httpstat/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Jan 24 23:53:52 2017 (r432408) +++ head/net/Makefile Wed Jan 25 00:34:08 2017 (r432409) @@ -974,6 +974,7 @@ SUBDIR += py-gspread SUBDIR += py-gspreadsheet SUBDIR += py-haproxy-log-analysis + SUBDIR += py-httpstat SUBDIR += py-impacket SUBDIR += py-ipaddress SUBDIR += py-iplib Added: head/net/py-httpstat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-httpstat/Makefile Wed Jan 25 00:34:08 2017 (r432409) @@ -0,0 +1,24 @@ +# Created by: Danilo G. Baio +# $FreeBSD$ + +PORTNAME= httpstat +PORTVERSION= 1.2.1 +CATEGORIES= net python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@bsd.com.br +COMMENT= Curl statistics made simple + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= curl:ftp/curl + +USE_GITHUB= yes +GH_ACCOUNT= reorx + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/net/py-httpstat/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-httpstat/distinfo Wed Jan 25 00:34:08 2017 (r432409) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476488960 +SHA256 (reorx-httpstat-1.2.1_GH0.tar.gz) = b670f03d38ecaae40e05cae79dfc296b567598752d5fb6ec174836a5f4d0b381 +SIZE (reorx-httpstat-1.2.1_GH0.tar.gz) = 97012 Added: head/net/py-httpstat/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-httpstat/pkg-descr Wed Jan 25 00:34:08 2017 (r432409) @@ -0,0 +1,3 @@ +httpstat visualizes curl(1) statistics in a way of beauty and clarity. + +WWW: https://github.com/reorx/httpstat