From owner-svn-ports-head@freebsd.org Sun Mar 13 12:46:04 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9F9BACF40F; Sun, 13 Mar 2016 12:46:03 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A859D1D29; Sun, 13 Mar 2016 12:46:03 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2DCk2a4099969; Sun, 13 Mar 2016 12:46:02 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2DCk2e6099965; Sun, 13 Mar 2016 12:46:02 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603131246.u2DCk2e6099965@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 13 Mar 2016 12:46:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410962 - in head/www: . gitlab-workhorse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Mar 2016 12:46:04 -0000 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 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 =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 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