Date: Sun, 9 Sep 2018 08:51:33 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479280 - in head/sysutils: . yank yank/files Message-ID: <201809090851.w898pXQD060960@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sun Sep 9 08:51:33 2018 New Revision: 479280 URL: https://svnweb.freebsd.org/changeset/ports/479280 Log: New port: sysutils/yank The yank utility reads input from stdin and display a selection interface that allows a field to be selected and copied to the clipboard. Fields are either recognized by a regular expression or by splitting the input on a delimiter sequence. WWW: https://github.com/mptre/yank Added: head/sysutils/yank/ head/sysutils/yank/Makefile (contents, props changed) head/sysutils/yank/distinfo (contents, props changed) head/sysutils/yank/files/ head/sysutils/yank/files/patch-Makefile (contents, props changed) head/sysutils/yank/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Sep 9 08:29:09 2018 (r479279) +++ head/sysutils/Makefile Sun Sep 9 08:51:33 2018 (r479280) @@ -1468,6 +1468,7 @@ SUBDIR += xsysstats SUBDIR += xvidcap SUBDIR += yadm + SUBDIR += yank SUBDIR += yum SUBDIR += zap SUBDIR += zbackup Added: head/sysutils/yank/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/yank/Makefile Sun Sep 9 08:51:33 2018 (r479280) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= yank +DISTVERSION= 1.0.0 +CATEGORIES= sysutils +MASTER_SITES= https://github.com/mptre/yank/releases/download/v${DISTVERSION}/ + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Yank terminal output to clipboard + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= xsel-conrad>=0:x11/xsel-conrad + +MAKE_ARGS= MANPREFIX=${PREFIX}/man +PLIST_FILES= bin/yank \ + man/man1/yank.1.gz + +.include <bsd.port.mk> Added: head/sysutils/yank/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/yank/distinfo Sun Sep 9 08:51:33 2018 (r479280) @@ -0,0 +1,3 @@ +TIMESTAMP = 1536480383 +SHA256 (yank-1.0.0.tar.gz) = 20ba1b01a7514f2f670702e83846f42429e2e90491dc1f679c8319a45a0382de +SIZE (yank-1.0.0.tar.gz) = 8364 Added: head/sysutils/yank/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/yank/files/patch-Makefile Sun Sep 9 08:51:33 2018 (r479280) @@ -0,0 +1,14 @@ +https://github.com/mptre/yank/pull/43 + +--- Makefile.orig 2018-09-09 07:45:36 UTC ++++ Makefile +@@ -23,6 +23,9 @@ DISTFILES= CHANGELOG.md \ + + all: ${PROG} + ++.c.o: ++ ${CC} ${CPPFLAGS} ${CFLAGS} -c ${<} ++ + ${PROG}: ${OBJS} + ${CC} -o ${PROG} ${OBJS} ${LDFLAGS} + Added: head/sysutils/yank/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/yank/pkg-descr Sun Sep 9 08:51:33 2018 (r479280) @@ -0,0 +1,6 @@ +The yank utility reads input from stdin and display a selection +interface that allows a field to be selected and copied to the +clipboard. Fields are either recognized by a regular expression +or by splitting the input on a delimiter sequence. + +WWW: https://github.com/mptre/yank
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809090851.w898pXQD060960>