From owner-svn-ports-all@freebsd.org Wed Oct 18 14:47:07 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 7B315E3AE1A; Wed, 18 Oct 2017 14:47:07 +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 557F28044A; Wed, 18 Oct 2017 14:47:07 +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 v9IEl64o084990; Wed, 18 Oct 2017 14:47:06 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9IEl6FO084986; Wed, 18 Oct 2017 14:47:06 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201710181447.v9IEl6FO084986@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 18 Oct 2017 14:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452339 - in head/deskutils: . noti X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/deskutils: . noti X-SVN-Commit-Revision: 452339 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.23 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: Wed, 18 Oct 2017 14:47:07 -0000 Author: tobik Date: Wed Oct 18 14:47:06 2017 New Revision: 452339 URL: https://svnweb.freebsd.org/changeset/ports/452339 Log: New port: deskutils/noti Trigger notifications when a process completes. Never sit and wait for some long-running process to finish! noti will alert you when it's done-on your computer or smartphone-so you can stop worrying about constantly checking the terminal. WWW: https://github.com/variadico/noti PR: 222220 Submitted by: Hiroki Tagato Added: head/deskutils/noti/ head/deskutils/noti/Makefile (contents, props changed) head/deskutils/noti/distinfo (contents, props changed) head/deskutils/noti/pkg-descr (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Wed Oct 18 14:34:03 2017 (r452338) +++ head/deskutils/Makefile Wed Oct 18 14:47:06 2017 (r452339) @@ -161,6 +161,7 @@ SUBDIR += nemo-extensions SUBDIR += note SUBDIR += notecase + SUBDIR += noti SUBDIR += notification-daemon SUBDIR += notify-osd SUBDIR += orage Added: head/deskutils/noti/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/noti/Makefile Wed Oct 18 14:47:06 2017 (r452339) @@ -0,0 +1,30 @@ +# Created by: Hiroki Tagato +# $FreeBSD$ + +PORTNAME= noti +DISTVERSIONPREFIX= v +DISTVERSION= 2.7.0 +CATEGORIES= deskutils + +MAINTAINER= tagattie@yandex.com +COMMENT= Trigger notifications when a process completes + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= notify-send:devel/libnotify + +USES= go +USE_GITHUB= yes + +GH_ACCOUNT= variadico + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} +GO_TARGET= github.com/${GH_ACCOUNT}/${PORTNAME}/cmd/noti + +PLIST_FILES= bin/noti + +do-install: + ${INSTALL_PROGRAM} ${WRKDIR}/bin/noti ${STAGEDIR}${PREFIX}/bin + +.include Added: head/deskutils/noti/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/noti/distinfo Wed Oct 18 14:47:06 2017 (r452339) @@ -0,0 +1,3 @@ +TIMESTAMP = 1508212235 +SHA256 (variadico-noti-v2.7.0_GH0.tar.gz) = afa49bf15795e007b5cfd3cf65eb46187f16f39c2afd1040a2c6dccc4adeb2d0 +SIZE (variadico-noti-v2.7.0_GH0.tar.gz) = 3736439 Added: head/deskutils/noti/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/noti/pkg-descr Wed Oct 18 14:47:06 2017 (r452339) @@ -0,0 +1,7 @@ +Trigger notifications when a process completes. + +Never sit and wait for some long-running process to finish! noti will +alert you when it's done-on your computer or smartphone-so you can +stop worrying about constantly checking the terminal. + +WWW: https://github.com/variadico/noti