From owner-svn-ports-head@freebsd.org Sat Nov 21 02:44:19 2015 Return-Path: Delivered-To: svn-ports-head@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 D32CDA3443F; Sat, 21 Nov 2015 02:44:19 +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 mx1.freebsd.org (Postfix) with ESMTPS id 8BF351771; Sat, 21 Nov 2015 02:44:19 +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 tAL2iIbk022831; Sat, 21 Nov 2015 02:44:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAL2iI0n022827; Sat, 21 Nov 2015 02:44:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201511210244.tAL2iI0n022827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 21 Nov 2015 02:44:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402131 - in head/www: . rubygem-hackpad-cli 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.20 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: Sat, 21 Nov 2015 02:44:20 -0000 Author: sunpoet Date: Sat Nov 21 02:44:18 2015 New Revision: 402131 URL: https://svnweb.freebsd.org/changeset/ports/402131 Log: - Add hackpad-cli 0.1.4 - While I'm here, add LICENSE_FILE This is a command-line utility to check and manipulate hackpad documents. It uses Hackpad REST API 1.0 https://hackpad.com/Hackpad-API-v1.0-k9bpcEeOo2Q WWW: https://github.com/mose/hackpad-cli/ PR: 204707 Submitted by: mose Added: head/www/rubygem-hackpad-cli/ head/www/rubygem-hackpad-cli/Makefile (contents, props changed) head/www/rubygem-hackpad-cli/distinfo (contents, props changed) head/www/rubygem-hackpad-cli/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Nov 21 02:27:02 2015 (r402130) +++ head/www/Makefile Sat Nov 21 02:44:18 2015 (r402131) @@ -1872,6 +1872,7 @@ SUBDIR += rubygem-gollum-lib SUBDIR += rubygem-gon SUBDIR += rubygem-gon-rails4 + SUBDIR += rubygem-hackpad-cli SUBDIR += rubygem-haml SUBDIR += rubygem-haml-coderay SUBDIR += rubygem-haml-contrib Added: head/www/rubygem-hackpad-cli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-hackpad-cli/Makefile Sat Nov 21 02:44:18 2015 (r402131) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= hackpad-cli +PORTVERSION= 0.1.4 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= mose@mose.com +COMMENT= CLI for some remote hackpad operations + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-cliprompt>=0.1.2:${PORTSDIR}/devel/rubygem-cliprompt \ + rubygem-configstruct>=0.1.0:${PORTSDIR}/devel/rubygem-configstruct \ + rubygem-oauth>=0.4.7:${PORTSDIR}/net/rubygem-oauth \ + rubygem-paint>=1.0.0:${PORTSDIR}/devel/rubygem-paint \ + rubygem-reverse_markdown>=1.0.0:${PORTSDIR}/textproc/rubygem-reverse_markdown \ + rubygem-thor>=0:${PORTSDIR}/devel/rubygem-thor + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes +PLIST_FILES= bin/hpcli + +.include Added: head/www/rubygem-hackpad-cli/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-hackpad-cli/distinfo Sat Nov 21 02:44:18 2015 (r402131) @@ -0,0 +1,2 @@ +SHA256 (rubygem/hackpad-cli-0.1.4.gem) = 18fca8bfe4fbe6a48e099229df565581ce8347e0d1d80f2563034d2d49420e75 +SIZE (rubygem/hackpad-cli-0.1.4.gem) = 18944 Added: head/www/rubygem-hackpad-cli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-hackpad-cli/pkg-descr Sat Nov 21 02:44:18 2015 (r402131) @@ -0,0 +1,5 @@ +This is a command-line utility to check and manipulate +hackpad documents. +It uses Hackpad REST API 1.0 https://hackpad.com/Hackpad-API-v1.0-k9bpcEeOo2Q + +WWW: https://github.com/mose/hackpad-cli/