From owner-svn-ports-head@freebsd.org Sun Feb 25 05:32:58 2018 Return-Path: Delivered-To: svn-ports-head@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 BCEF9F0760F; Sun, 25 Feb 2018 05:32:58 +0000 (UTC) (envelope-from sunpoet@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 F35546B912; Sun, 25 Feb 2018 05:32:57 +0000 (UTC) (envelope-from sunpoet@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 A8E8A78C; Sun, 25 Feb 2018 05:32:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1P5WvYo064922; Sun, 25 Feb 2018 05:32:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1P5WvfO064920; Sun, 25 Feb 2018 05:32:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802250532.w1P5WvfO064920@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 25 Feb 2018 05:32:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462916 - head/devel/py-tapi X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-tapi X-SVN-Commit-Revision: 462916 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2018 05:32:58 -0000 Author: sunpoet Date: Sun Feb 25 05:32:57 2018 New Revision: 462916 URL: https://svnweb.freebsd.org/changeset/ports/462916 Log: Allow concurrent installation (USE_PYTHON=concurrent) - Add NO_ARCH - Adjust pkg-descr - Add PyPI as primary WWW - Update WWW - Bump PORTREVISION for package change - Take maintainership Modified: head/devel/py-tapi/Makefile head/devel/py-tapi/pkg-descr Modified: head/devel/py-tapi/Makefile ============================================================================== --- head/devel/py-tapi/Makefile Sun Feb 25 05:32:51 2018 (r462915) +++ head/devel/py-tapi/Makefile Sun Feb 25 05:32:57 2018 (r462916) @@ -3,17 +3,19 @@ PORTNAME= tapi PORTVERSION= 0.1.7 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Tapi-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Framework for testing APIs LICENSE= MIT +NO_ARCH= yes USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils .include Modified: head/devel/py-tapi/pkg-descr ============================================================================== --- head/devel/py-tapi/pkg-descr Sun Feb 25 05:32:51 2018 (r462915) +++ head/devel/py-tapi/pkg-descr Sun Feb 25 05:32:57 2018 (r462916) @@ -1,6 +1,7 @@ Tapi is a tool to automate the testing of your Application Programmer Interfaces -(APIs). Features: +(APIs). +Features: - Test you API without writing any code (only edit a json file) - Test you APIs in a much more 'natural' way by specifying urls/verbs and what the output should be @@ -12,4 +13,5 @@ Tapi is a tool to automate the testing of your Applica - Execute arbitrary python scripts to verify response from endpoint is valid - Tests your APIs using your own APIs -WWW: https://github.com/jimmyislive/tapi/ +WWW: https://pypi.python.org/pypi/Tapi +WWW: https://github.com/jimmyislive/tapi