Date: Tue, 28 Apr 2020 08:02:39 +0000 (UTC) From: Hiroki Tagato <tagattie@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533238 - in head/deskutils: . ultralist Message-ID: <202004280802.03S82duB087452@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tagattie Date: Tue Apr 28 08:02:39 2020 New Revision: 533238 URL: https://svnweb.freebsd.org/changeset/ports/533238 Log: Ultralist is a task management system for technical people. It includes a command-line component that is very fast and stays out of the way. There is also a beautiful webapp that seamlessly syncs with the command-line. Ultralist is based off of the Getting Things Done system. It has a concept of due dates, projects, and contexts. WWW: https://ultralist.io/ PR: 243777 Submitted by: Lewis Cook <vulcan@wired.sh> Approved by: ehaupt (mentor) Added: head/deskutils/ultralist/ head/deskutils/ultralist/Makefile (contents, props changed) head/deskutils/ultralist/distinfo (contents, props changed) head/deskutils/ultralist/pkg-descr (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Tue Apr 28 07:57:14 2020 (r533237) +++ head/deskutils/Makefile Tue Apr 28 08:02:39 2020 (r533238) @@ -238,6 +238,7 @@ SUBDIR += tpb SUBDIR += treeline SUBDIR += treesheets + SUBDIR += ultralist SUBDIR += virt-manager SUBDIR += vit SUBDIR += when Added: head/deskutils/ultralist/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/ultralist/Makefile Tue Apr 28 08:02:39 2020 (r533238) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= ultralist +DISTVERSION= 0.9.4 +CATEGORIES= deskutils + +MAINTAINER= vulcan@wired.sh +COMMENT= Simple, powerful, task management system for the command line + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= go +USE_GITHUB= yes +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/deskutils/ultralist/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/ultralist/distinfo Tue Apr 28 08:02:39 2020 (r533238) @@ -0,0 +1,3 @@ +TIMESTAMP = 1580563043 +SHA256 (ultralist-ultralist-0.9.4_GH0.tar.gz) = fde0d3c7b1ba398944b01b55eddd16c2163d61c3c478528c4c36abd643fe76ad +SIZE (ultralist-ultralist-0.9.4_GH0.tar.gz) = 2060240 Added: head/deskutils/ultralist/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/ultralist/pkg-descr Tue Apr 28 08:02:39 2020 (r533238) @@ -0,0 +1,10 @@ +Ultralist is a task management system for technical people. + +It includes a command-line component that is very fast and stays out +of the way. There is also a beautiful webapp that seamlessly syncs +with the command-line. + +Ultralist is based off of the Getting Things Done system. It has a +concept of due dates, projects, and contexts. + +WWW: https://ultralist.io/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004280802.03S82duB087452>