From owner-svn-ports-all@freebsd.org Fri Dec 8 17:41:58 2017 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 31770E8993C; Fri, 8 Dec 2017 17:41:58 +0000 (UTC) (envelope-from tobik@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 0915C7BCC5; Fri, 8 Dec 2017 17:41:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB8HfvHh035622; Fri, 8 Dec 2017 17:41:57 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB8HfuxI035616; Fri, 8 Dec 2017 17:41:56 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201712081741.vB8HfuxI035616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 8 Dec 2017 17:41:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455786 - in head/sysutils: . nq X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/sysutils: . nq X-SVN-Commit-Revision: 455786 X-SVN-Commit-Repository: ports 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.25 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: Fri, 08 Dec 2017 17:41:58 -0000 Author: tobik Date: Fri Dec 8 17:41:56 2017 New Revision: 455786 URL: https://svnweb.freebsd.org/changeset/ports/455786 Log: New port: sysutils/nq These small utilities allow creating very lightweight job queue systems which require no setup, maintenance, supervision, or any long-running processes. The intended purpose is ad-hoc queuing of command lines (e.g. for building several targets of a Makefile, downloading multiple files one at a time, running benchmarks in several configurations, or simply as a glorified nohup), but as any good Unix tool, it can be abused for whatever you like. WWW: https://github.com/chneukirchen/nq Added: head/sysutils/nq/ head/sysutils/nq/Makefile (contents, props changed) head/sysutils/nq/distinfo (contents, props changed) head/sysutils/nq/pkg-descr (contents, props changed) head/sysutils/nq/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Dec 8 17:05:59 2017 (r455785) +++ head/sysutils/Makefile Fri Dec 8 17:41:56 2017 (r455786) @@ -696,6 +696,7 @@ SUBDIR += node_exporter SUBDIR += nomad SUBDIR += npadmin + SUBDIR += nq SUBDIR += nrg2iso SUBDIR += nut SUBDIR += nvclock Added: head/sysutils/nq/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/nq/Makefile Fri Dec 8 17:41:56 2017 (r455786) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= nq +DISTVERSIONPREFIX= v +DISTVERSION= 0.2.1 +CATEGORIES= sysutils + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Unix command line queue utility + +LICENSE= CC0-1.0 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= perl5 +USE_GITHUB= yes +GH_ACCOUNT= chneukirchen +USE_PERL5= test + +MAKE_ARGS= PREFIX="${PREFIX}" MANDIR="${PREFIX}/man" +TEST_TARGET= check + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/fq ${STAGEDIR}${PREFIX}/bin/nq + @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions + ${INSTALL_DATA} ${WRKSRC}/_nq ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_nq + +.include Added: head/sysutils/nq/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/nq/distinfo Fri Dec 8 17:41:56 2017 (r455786) @@ -0,0 +1,3 @@ +TIMESTAMP = 1512754132 +SHA256 (chneukirchen-nq-v0.2.1_GH0.tar.gz) = 1773290791cce646e5e54e935118498a95948ca39ff5d58ac6dc65135275d3fc +SIZE (chneukirchen-nq-v0.2.1_GH0.tar.gz) = 10456 Added: head/sysutils/nq/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/nq/pkg-descr Fri Dec 8 17:41:56 2017 (r455786) @@ -0,0 +1,11 @@ +These small utilities allow creating very lightweight job queue +systems which require no setup, maintenance, supervision, or any +long-running processes. + +The intended purpose is ad-hoc queuing of command lines (e.g. for +building several targets of a Makefile, downloading multiple files one +at a time, running benchmarks in several configurations, or simply as +a glorified nohup), but as any good Unix tool, it can be abused for +whatever you like. + +WWW: https://github.com/chneukirchen/nq Added: head/sysutils/nq/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/nq/pkg-plist Fri Dec 8 17:41:56 2017 (r455786) @@ -0,0 +1,7 @@ +bin/fq +bin/nq +bin/tq +man/man1/fq.1.gz +man/man1/nq.1.gz +man/man1/tq.1.gz +share/zsh/site-functions/_nq