From owner-svn-ports-all@freebsd.org Tue Mar 8 17:49:46 2016 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 7BEC2AC87A5; Tue, 8 Mar 2016 17:49:46 +0000 (UTC) (envelope-from pi@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 57B2DC82; Tue, 8 Mar 2016 17:49:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u28HnjKh058541; Tue, 8 Mar 2016 17:49:45 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u28Hnj3q058536; Tue, 8 Mar 2016 17:49:45 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201603081749.u28Hnj3q058536@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 8 Mar 2016 17:49:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410637 - in head/ports-mgmt: . portest 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.21 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, 08 Mar 2016 17:49:46 -0000 Author: pi Date: Tue Mar 8 17:49:44 2016 New Revision: 410637 URL: https://svnweb.freebsd.org/changeset/ports/410637 Log: New port: ports-mgmt/portest With portest, you can create, update, patch and revert a port tree with svn, git and portsnap. Portest can also do portlint testing, test a port with port test, or poudriere, and also generate a list of ports a patchfile(s) will modify. Portest is written in shell with minimal dependencies mostly using FreeBSD-base WWW: https://github.com/Ultima1252/portest PR: 207810 Submitted by: Ultima1252@gmail.com Added: head/ports-mgmt/portest/ head/ports-mgmt/portest/Makefile (contents, props changed) head/ports-mgmt/portest/distinfo (contents, props changed) head/ports-mgmt/portest/pkg-descr (contents, props changed) Modified: head/ports-mgmt/Makefile Modified: head/ports-mgmt/Makefile ============================================================================== --- head/ports-mgmt/Makefile Tue Mar 8 17:27:59 2016 (r410636) +++ head/ports-mgmt/Makefile Tue Mar 8 17:49:44 2016 (r410637) @@ -44,6 +44,7 @@ SUBDIR += portconf SUBDIR += portdowngrade SUBDIR += portell + SUBDIR += portest SUBDIR += portfind SUBDIR += portless SUBDIR += portlint Added: head/ports-mgmt/portest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/portest/Makefile Tue Mar 8 17:49:44 2016 (r410637) @@ -0,0 +1,38 @@ +# Created by: Ultima +# $FreeBSD$ + +PORTNAME= portest +PORTVERSION= 0.1.4 +CATEGORIES= ports-mgmt + +MAINTAINER= ultima1252@gmail.com +COMMENT= Patch file automation for FreeBSD-ports + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= portlint:${PORTSDIR}/ports-mgmt/portlint + +USE_GITHUB= yes +GH_ACCOUNT= ultima1252 + +NO_BUILD= yes + +PLIST_FILES= sbin/portest + +OPTIONS_DEFINE= GIT PORTTOOLS POUDRIERE +OPTIONS_DEFAULT= GIT PORTTOOLS POUDRIERE + +GIT_DESC= Git support +GIT_RUN_DEPENDS= git:${PORTSDIR}/devel/git + +PORTTOOLS_DESC= Porttools support +PORTTOOLS_RUN_DEPENDS= port:${PORTSDIR}/ports-mgmt/porttools + +POUDRIERE_DESC= Poudriere and parallel build support +POUDRIERE_RUN_DEPENDS= poudriere:${PORTSDIR}/ports-mgmt/poudriere \ + tmux:${PORTSDIR}/sysutils/tmux + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/portest ${STAGEDIR}${PREFIX}/sbin/portest + +.include Added: head/ports-mgmt/portest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/portest/distinfo Tue Mar 8 17:49:44 2016 (r410637) @@ -0,0 +1,2 @@ +SHA256 (ultima1252-portest-0.1.4_GH0.tar.gz) = e326011a6712197ef6a725efca198245440110870484efb2b3562f1d25215cbd +SIZE (ultima1252-portest-0.1.4_GH0.tar.gz) = 7389 Added: head/ports-mgmt/portest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/portest/pkg-descr Tue Mar 8 17:49:44 2016 (r410637) @@ -0,0 +1,7 @@ +With portest, you can create, update, patch and revert a port tree with +svn, git and portsnap. Portest can also do portlint testing, test a port +with port test, or poudriere, and also generate a list of ports a +patchfile(s) will modify. Portest is written in shell with minimal +dependencies mostly using FreeBSD-base + +WWW: https://github.com/Ultima1252/portest