From owner-svn-ports-all@FreeBSD.ORG Tue Jun 3 10:56:57 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C484E6AF; Tue, 3 Jun 2014 10:56:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 A62662AAC; Tue, 3 Jun 2014 10:56:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s53Auvvw004020; Tue, 3 Jun 2014 10:56:57 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s53Auutb004016; Tue, 3 Jun 2014 10:56:56 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201406031056.s53Auutb004016@svn.freebsd.org> From: Alex Dupre Date: Tue, 3 Jun 2014 10:56:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356327 - in head/www: . httpie 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.18 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: Tue, 03 Jun 2014 10:56:58 -0000 Author: ale Date: Tue Jun 3 10:56:56 2014 New Revision: 356327 URL: http://svnweb.freebsd.org/changeset/ports/356327 QAT: https://qat.redports.org/buildarchive/r356327/ Log: HTTPie (pronounced aych-tee-tee-pie) is a command line HTTP client. Its goal is to make CLI interaction with web services as human-friendly as possible. It provides a simple http command that allows for sending arbitrary HTTP requests using a simple and natural syntax, and displays colorized responses. HTTPie can be used for testing, debugging, and generally interacting with HTTP servers. Added: head/www/httpie/ head/www/httpie/Makefile (contents, props changed) head/www/httpie/distinfo (contents, props changed) head/www/httpie/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jun 3 10:55:24 2014 (r356326) +++ head/www/Makefile Tue Jun 3 10:56:56 2014 (r356327) @@ -346,6 +346,7 @@ SUBDIR += httpasyncclient SUBDIR += httpclient SUBDIR += httpcore + SUBDIR += httpie SUBDIR += httpsqs SUBDIR += httptunnel SUBDIR += httrack Added: head/www/httpie/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/httpie/Makefile Tue Jun 3 10:56:56 2014 (r356327) @@ -0,0 +1,26 @@ +# Created by: Alex Dupre +# $FreeBSD$ + +PORTNAME= httpie +PORTVERSION= 0.8.0 +CATEGORIES= www +MASTER_SITES= GH + +MAINTAINER= ale@FreeBSD.org +COMMENT= Command line HTTP client + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}pygments>0:${PORTSDIR}/textproc/py-pygments + +USE_GITHUB= yes +GH_ACCOUNT= jakubroztocil +GH_COMMIT= 43cc3e7 + +USE_PYTHON= yes +USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/www/httpie/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/httpie/distinfo Tue Jun 3 10:56:56 2014 (r356327) @@ -0,0 +1,2 @@ +SHA256 (httpie-0.8.0.tar.gz) = ca6b10e3288b56a6ab018672f3209bc34ed1ba38aa1f4774302c5d5391adf245 +SIZE (httpie-0.8.0.tar.gz) = 511763 Added: head/www/httpie/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/httpie/pkg-descr Tue Jun 3 10:56:56 2014 (r356327) @@ -0,0 +1,8 @@ +HTTPie (pronounced aych-tee-tee-pie) is a command line HTTP client. +Its goal is to make CLI interaction with web services as +human-friendly as possible. It provides a simple http command that +allows for sending arbitrary HTTP requests using a simple and natural +syntax, and displays colorized responses. HTTPie can be used for +testing, debugging, and generally interacting with HTTP servers. + +WWW: https://github.com/jakubroztocil/httpie