Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Oct 2017 14:47:06 +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: r452339 - in head/deskutils: . noti
Message-ID:  <201710181447.v9IEl6FO084986@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <tagattie@yandex.com>

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 <tagattie@yandex.com>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710181447.v9IEl6FO084986>