Date: Sun, 13 Mar 2016 12:46:02 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410962 - in head/www: . gitlab-workhorse Message-ID: <201603131246.u2DCk2e6099965@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rakuco Date: Sun Mar 13 12:46:02 2016 New Revision: 410962 URL: https://svnweb.freebsd.org/changeset/ports/410962 Log: New port: www/gitlab-workhorse. Gitlab-workhorse is a smart reverse proxy for GitLab. It handles "large" HTTP requests such as file downloads, file uploads, Git push/pull and Git archive downloads. WWW: https://gitlab.com/gitlab-org/gitlab-workhorse PR: 207800 Submitted by: Torsten Zühlsdorff <ports@toco-domains.de> Added: head/www/gitlab-workhorse/ head/www/gitlab-workhorse/Makefile (contents, props changed) head/www/gitlab-workhorse/distinfo (contents, props changed) head/www/gitlab-workhorse/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Mar 13 12:20:14 2016 (r410961) +++ head/www/Makefile Sun Mar 13 12:46:02 2016 (r410962) @@ -227,6 +227,7 @@ SUBDIR += get_flash_videos SUBDIR += getleft SUBDIR += gist + SUBDIR += gitlab-workhorse SUBDIR += glassfish SUBDIR += glpi SUBDIR += gnome-user-share Added: head/www/gitlab-workhorse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/gitlab-workhorse/Makefile Sun Mar 13 12:46:02 2016 (r410962) @@ -0,0 +1,28 @@ +# Created by: Torsten Zuehlsdorff <ports@toco-domains.de +# $FreeBSD$ + +PORTNAME= gitlab-workhorse +PORTVERSION= 0.6.5 +CATEGORIES= www +MASTER_SITES= http://ports.toco-domains.de/ + +MAINTAINER= ports@toco-domains.de +COMMENT= Smart reverse proxy for GitLab + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= go>=1.5.3:${PORTSDIR}/lang/go + +PLIST_FILES= bin/gitlab-workhorse \ + bin/gitlab-zip-cat \ + bin/gitlab-zip-metadata +PLIST_DIRS= %%WWWDIR%% + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gitlab-workhorse + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gitlab-zip-cat + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gitlab-zip-metadata + +.include <bsd.port.mk> Added: head/www/gitlab-workhorse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/gitlab-workhorse/distinfo Sun Mar 13 12:46:02 2016 (r410962) @@ -0,0 +1,2 @@ +SHA256 (gitlab-workhorse-0.6.5.tar.gz) = 629279a966ee7662fb6158465158659877de550609b95f5249ed801746991ced +SIZE (gitlab-workhorse-0.6.5.tar.gz) = 31621 Added: head/www/gitlab-workhorse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/gitlab-workhorse/pkg-descr Sun Mar 13 12:46:02 2016 (r410962) @@ -0,0 +1,5 @@ +Gitlab-workhorse is a smart reverse proxy for GitLab. It handles "large" +HTTP requests such as file downloads, file uploads, +Git push/pull and Git archive downloads. + +WWW: https://gitlab.com/gitlab-org/gitlab-workhorse
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603131246.u2DCk2e6099965>