From owner-svn-ports-head@FreeBSD.ORG Fri Mar 1 19:06:03 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4FF71B92; Fri, 1 Mar 2013 19:06:03 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 29B141057; Fri, 1 Mar 2013 19:06:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r21J63bG053725; Fri, 1 Mar 2013 19:06:03 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r21J625c053719; Fri, 1 Mar 2013 19:06:02 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201303011906.r21J625c053719@svn.freebsd.org> From: Jason Helfman Date: Fri, 1 Mar 2013 19:06:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313161 - in head/ports-mgmt: . prhistory prhistory/files X-SVN-Group: ports-head 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.14 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: Fri, 01 Mar 2013 19:06:03 -0000 Author: jgh Date: Fri Mar 1 19:06:01 2013 New Revision: 313161 URL: http://svnweb.freebsd.org/changeset/ports/313161 Log: - add new port: ports-mgmt/prhistory prhistory shows PR from the FreeBSD GNATS database corresponding to a port. Show a summary view of all PR related to a port and request an individual PR by number. WWW: https://github.com/waitman/prhistory PR: 175627 Submitted by: uzimac@da3m0n8t3r.com Added: head/ports-mgmt/prhistory/ head/ports-mgmt/prhistory/Makefile (contents, props changed) head/ports-mgmt/prhistory/distinfo (contents, props changed) head/ports-mgmt/prhistory/files/ head/ports-mgmt/prhistory/files/pkg-message.in (contents, props changed) head/ports-mgmt/prhistory/pkg-descr (contents, props changed) head/ports-mgmt/prhistory/pkg-plist (contents, props changed) Modified: head/ports-mgmt/Makefile (contents, props changed) Modified: head/ports-mgmt/Makefile ============================================================================== --- head/ports-mgmt/Makefile Fri Mar 1 18:55:56 2013 (r313160) +++ head/ports-mgmt/Makefile Fri Mar 1 19:06:01 2013 (r313161) @@ -75,6 +75,7 @@ SUBDIR += portupgrade-devel SUBDIR += poudriere SUBDIR += poudriere-devel + SUBDIR += prhistory SUBDIR += psearch SUBDIR += pver SUBDIR += qtpkg Added: head/ports-mgmt/prhistory/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/prhistory/Makefile Fri Mar 1 19:06:01 2013 (r313161) @@ -0,0 +1,39 @@ +# Created by: "Waitman Gobble" +# $FreeBSD$ + +PORTNAME= prhistory +PORTVERSION= 1.0 +CATEGORIES= ports-mgmt +MASTER_SITES= GH + +MAINTAINER= waitman@waitman.net +COMMENT= PR review for ports + +LICENSE= PRHISTORY +LICENSE_NAME= PRHISTORY BSD LICENSE +LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE_PERMS= ${_LICENSE_PERMS_DEFAULT} + +LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \ + sqlite3:${PORTSDIR}/databases/sqlite3 + +USE_GITHUB= yes +GH_ACCOUNT= waitman +GH_TAGNAME= master +GH_COMMIT= 9113c59 + +MAN7= prhistory.7 + +SUB_FILES= pkg-message +PORTDOCS= * + +.include + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + @${CAT} ${PKGMESSAGE} + +.include Added: head/ports-mgmt/prhistory/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/prhistory/distinfo Fri Mar 1 19:06:01 2013 (r313161) @@ -0,0 +1,2 @@ +SHA256 (prhistory-1.0.tar.gz) = eb3e02a91a7b0c9dae96dd77706029d91e91fbad1cec4faf4b67825e6b5e1788 +SIZE (prhistory-1.0.tar.gz) = 4237 Added: head/ports-mgmt/prhistory/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/prhistory/files/pkg-message.in Fri Mar 1 19:06:01 2013 (r313161) @@ -0,0 +1,24 @@ +************************************************************************ + +NOTICE + +prhistory has been installed as %%PREFIX%%/bin/prhistory + +In order to download the pr (ports only) database, +run the following command: +# prhistory -u + +WARNING + +This command will download an SQLite db file to +/var/db/ports/ports-pr.db + +The remote file ports-pr.db is updated at most once per hour. + +MORE INFORMATION + +To create your own ports-pr.db see the notes at the following URL: +https://dx.burplex.com/bin/prhistory.html + +************************************************************************ + Added: head/ports-mgmt/prhistory/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/prhistory/pkg-descr Fri Mar 1 19:06:01 2013 (r313161) @@ -0,0 +1,5 @@ +prhistory shows PR from the FreeBSD GNATS database corresponding +to a port. Show a summary view of all PR related to a port and +request an individual PR by number. + +WWW: https://github.com/waitman/prhistory Added: head/ports-mgmt/prhistory/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/prhistory/pkg-plist Fri Mar 1 19:06:01 2013 (r313161) @@ -0,0 +1,2 @@ +bin/prhistory +@unexec echo "NOTICE: If you are permanently removing this utility, you may wish to delete the database file /var/db/ports/ports-pr.db"