Date: Tue, 19 Jan 2021 07:38:01 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562031 - in head/devel: . goredo Message-ID: <202101190738.10J7c1ET091158@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Tue Jan 19 07:38:00 2021 New Revision: 562031 URL: https://svnweb.freebsd.org/changeset/ports/562031 Log: New port: devel/goredo: Go implementation of djb's redo, Makefile replacement that sucks less Added: head/devel/goredo/ head/devel/goredo/Makefile (contents, props changed) head/devel/goredo/distinfo (contents, props changed) head/devel/goredo/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 19 07:28:41 2021 (r562030) +++ head/devel/Makefile Tue Jan 19 07:38:00 2021 (r562031) @@ -871,6 +871,7 @@ SUBDIR += google-styleguide SUBDIR += googletest SUBDIR += goprotobuf + SUBDIR += goredo SUBDIR += gorm SUBDIR += goswagger SUBDIR += got Added: head/devel/goredo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/goredo/Makefile Tue Jan 19 07:38:00 2021 (r562031) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= goredo +DISTVERSION= 1.0.0 +CATEGORIES= devel +MASTER_SITES= http://www.goredo.cypherpunks.ru/download/ +EXTRACT_SUFX= .tar.zst + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Go implementation of djb's redo, Makefile replacement that sucks less + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/../COPYING + +USES= go + +WRKSRC_SUBDIR= src + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.mk> Added: head/devel/goredo/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/goredo/distinfo Tue Jan 19 07:38:00 2021 (r562031) @@ -0,0 +1,3 @@ +TIMESTAMP = 1611041027 +SHA256 (goredo-1.0.0.tar.zst) = 8d99b8fc1057aef6437be1312112781e00030afdd01da2f0e233b042187a2f01 +SIZE (goredo-1.0.0.tar.zst) = 346488 Added: head/devel/goredo/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/goredo/pkg-descr Tue Jan 19 07:38:00 2021 (r562031) @@ -0,0 +1,5 @@ +This is pure Go implementation of DJB's redo build system proposal. Originally +it was just a rewrite of redo-c, but later most features of apenwarr/redo were +also implemented. + +WWW: http://www.goredo.cypherpunks.ru/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101190738.10J7c1ET091158>