svn commit: r452339 - in head/deskutils: . noti
Tobias Kortkamp
tobik at FreeBSD.org
Wed Oct 18 14:47:07 UTC 2017
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 at 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 at yandex.com>
+# $FreeBSD$
+
+PORTNAME= noti
+DISTVERSIONPREFIX= v
+DISTVERSION= 2.7.0
+CATEGORIES= deskutils
+
+MAINTAINER= tagattie at 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
More information about the svn-ports-head
mailing list