diff options
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/devd/Makefile | 23 | ||||
-rw-r--r-- | www/devd/distinfo | 3 | ||||
-rw-r--r-- | www/devd/pkg-descr | 10 |
4 files changed, 37 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 58543c1151b7..1e6e9f97bdcd 100644 --- a/www/Makefile +++ b/www/Makefile @@ -107,6 +107,7 @@ SUBDIR += ddgr SUBDIR += decss SUBDIR += demoroniser + SUBDIR += devd SUBDIR += dfileserver SUBDIR += dhttpd SUBDIR += dillo2 diff --git a/www/devd/Makefile b/www/devd/Makefile new file mode 100644 index 000000000000..f15b6a4b83a1 --- /dev/null +++ b/www/devd/Makefile @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= devd +DISTVERSIONPREFIX= v +DISTVERSION= 0.9 +CATEGORIES= www + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Local webserver for developers + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go +USE_GITHUB= yes +GH_ACCOUNT= cortesi + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} +GO_TARGET= ${GO_PKGNAME}/cmd/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/www/devd/distinfo b/www/devd/distinfo new file mode 100644 index 000000000000..76baf36d2eff --- /dev/null +++ b/www/devd/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1560573058 +SHA256 (cortesi-devd-v0.9_GH0.tar.gz) = 5aee062c49ffba1e596713c0c32d88340360744f57619f95809d01c59bff071f +SIZE (cortesi-devd-v0.9_GH0.tar.gz) = 5120152 diff --git a/www/devd/pkg-descr b/www/devd/pkg-descr new file mode 100644 index 000000000000..3391871f29d4 --- /dev/null +++ b/www/devd/pkg-descr @@ -0,0 +1,10 @@ +Devd is a single statically compiled binary with no external dependencies. +No need to install gigantic frameworks like Node JS, just copy over the devd +binary and be done with it. + +No config file, no daemonization, and logs that are designed to be read in the +terminal by a developer. Logs are colorized and log entries span multiple lines. +Devd's logs are detailed, warn about corner cases that other daemons ignore, and +can optionally include things like detailed timing information and full headers. + +WWW: https://github.com/cortesi/devd |