From owner-svn-ports-head@FreeBSD.ORG Mon Mar 23 13:16:26 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0C0278D; Mon, 23 Mar 2015 13:16:26 +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 823F1959; Mon, 23 Mar 2015 13:16:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2NDGQUa067756; Mon, 23 Mar 2015 13:16:26 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2NDGOGX067751; Mon, 23 Mar 2015 13:16:24 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201503231316.t2NDGOGX067751@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Mon, 23 Mar 2015 13:16:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381992 - in head/sysutils: . pick 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.18-1 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: Mon, 23 Mar 2015 13:16:26 -0000 Author: bofh Date: Mon Mar 23 13:16:23 2015 New Revision: 381992 URL: https://svnweb.freebsd.org/changeset/ports/381992 QAT: https://qat.redports.org/buildarchive/r381992/ Log: [NEW] sysutils/pick: Tool for choosing one option from a set of choices with an interface pick allows users to choose one option from a set of choices using an interface with fuzzy search functionality. WWW: https://www.github.com/thoughtbot/pick PR: 198695 Submitted by: neel@neelc.org Approved by: bapt marino (implicit) Added: head/sysutils/pick/ head/sysutils/pick/Makefile (contents, props changed) head/sysutils/pick/distinfo (contents, props changed) head/sysutils/pick/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Mar 23 12:21:33 2015 (r381991) +++ head/sysutils/Makefile Mon Mar 23 13:16:23 2015 (r381992) @@ -697,6 +697,7 @@ SUBDIR += php55-posix SUBDIR += php56-fileinfo SUBDIR += php56-posix + SUBDIR += pick SUBDIR += pidof SUBDIR += pipemeter SUBDIR += plasma-applet-apcups Added: head/sysutils/pick/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pick/Makefile Mon Mar 23 13:16:23 2015 (r381992) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= pick +PORTVERSION= 1.1.1 +CATEGORIES= sysutils +MASTER_SITES= http://github.com/thoughtbot/pick/releases/download/v${PORTVERSION}/ + +MAINTAINER= neel@neelc.org +COMMENT= Tool for choosing one option from a set of choices with an interface + +LICENSE= MIT + +GNU_CONFIGURE= yes +PLIST_FILES= bin/pick man/man1/pick.1.gz + +.include Added: head/sysutils/pick/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pick/distinfo Mon Mar 23 13:16:23 2015 (r381992) @@ -0,0 +1,2 @@ +SHA256 (pick-1.1.1.tar.gz) = 2d2707d9fb6d9f8b3afffc0f02f81e7b6a02cf7823127e10b1c952adee42a306 +SIZE (pick-1.1.1.tar.gz) = 106841 Added: head/sysutils/pick/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pick/pkg-descr Mon Mar 23 13:16:23 2015 (r381992) @@ -0,0 +1,4 @@ +pick allows users to choose one option from a set of choices using an interface +with fuzzy search functionality. + +WWW: https://www.github.com/thoughtbot/pick