On Mon, Aug 01, 2016 at 12:16:40PM -0500, Kent R. Spillner wrote: > timewarrior is a new command line time tracking util from the same > people behind taskwarrior. Attached & included below is a port for > the newly released v1.0.0.beta1. I think it makes sense to wait > to import until the final release, but would appreciate feedback in > the meantime.
timewarrior v1.0.0 was just released. Ok? Index: Makefile =================================================================== RCS file: Makefile diff -N Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Makefile 23 Aug 2016 17:19:28 -0000 @@ -0,0 +1,36 @@ +# $OpenBSD: Makefile,v 1.7 2016/03/04 10:11:22 kirby Exp $ + +COMMENT = command line time tracking application + +DISTNAME = timew-1.0.0 +CATEGORIES = productivity + +HOMEPAGE = http://www.taskwarrior.org/ + +MAINTAINER = Kent R. Spillner <[email protected]> + +MASTER_SITES = ${HOMEPAGE}/download/ + +# MIT +PERMIT_PACKAGE_CDROM = Yes + +MODULES = gcc4 \ + devel/cmake + +MODGCC4_LANGS = c++ +MODGCC4_ARCHS = * + +WANTLIB += c gnutls m pthread + +LIB_DEPENDS = security/gnutls + +CONFIGURE_ARGS += -DTIMEW_DOCDIR=share/timewarrior \ + -DTIMEW_MAN1DIR=man/man1 \ + -DTIMEW_MAN5DIR=man/man5 + +CONFIGURE_ENV += CFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +NO_TEST = Yes + +.include <bsd.port.mk> Index: distinfo =================================================================== RCS file: distinfo diff -N distinfo --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ distinfo 23 Aug 2016 17:19:37 -0000 @@ -0,0 +1,2 @@ +SHA256 (timew-1.0.0.tar.gz) = rAJ5EOHoNlvdIYqLQjibJtAX0408llFsQI221aROC7U= +SIZE (timew-1.0.0.tar.gz) = 140539 Index: pkg/DESCR =================================================================== RCS file: pkg/DESCR diff -N pkg/DESCR --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/DESCR 6 Jul 2016 15:18:58 -0000 @@ -0,0 +1,3 @@ +Timewarrior is a command line time tracking application, which allows +you to record time spent on activities. You may be tracking your time +for curiosity, or because your work requires it. Index: pkg/PLIST =================================================================== RCS file: pkg/PLIST diff -N pkg/PLIST --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/PLIST 29 Jun 2016 17:19:09 -0000 @@ -0,0 +1,19 @@ +@comment $OpenBSD$ +@bin bin/timew +@man man/man1/timew.1 +share/timewarrior/ +share/timewarrior/AUTHORS +share/timewarrior/COPYING +share/timewarrior/ChangeLog +share/timewarrior/INSTALL +share/timewarrior/LICENSE +share/timewarrior/NEWS +share/timewarrior/README.md +share/timewarrior/doc/ +share/timewarrior/doc/holidays/ +share/timewarrior/doc/holidays/README +share/timewarrior/doc/holidays/holidays.en-US +share/timewarrior/doc/holidays/refresh +share/timewarrior/doc/themes/ +share/timewarrior/doc/themes/README +share/timewarrior/doc/themes/dark.theme
