From owner-svn-ports-head@freebsd.org Sun Mar 13 12:56:02 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 2F8DFACF688; Sun, 13 Mar 2016 12:56:02 +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 E60E71EB; Sun, 13 Mar 2016 12:56:01 +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 u2DCu0WF003231; Sun, 13 Mar 2016 12:56:00 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2DCu0N3003226; Sun, 13 Mar 2016 12:56:00 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603131256.u2DCu0N3003226@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:56:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410963 - in head/devel: . 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:56:02 -0000 Author: rakuco Date: Sun Mar 13 12:56:00 2016 New Revision: 410963 URL: https://svnweb.freebsd.org/changeset/ports/410963 Log: New port: devel/gitlab-shell. GitLab Shell handles git commands for GitLab and modifies the list of authorized keys. WWW: https://gitlab.com/gitlab-org/gitlab-shell PR: 207791 Submitted by: Torsten Zühlsdorff Added: head/devel/gitlab-workhorse/ head/devel/gitlab-workhorse/Makefile (contents, props changed) head/devel/gitlab-workhorse/distinfo (contents, props changed) head/devel/gitlab-workhorse/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 13 12:46:02 2016 (r410962) +++ head/devel/Makefile Sun Mar 13 12:56:00 2016 (r410963) @@ -675,6 +675,7 @@ SUBDIR += gitg0 SUBDIR += github-backup-utils SUBDIR += gitinspector + SUBDIR += gitlab-shell SUBDIR += gitlist SUBDIR += gitolite SUBDIR += gitolite2 Added: head/devel/gitlab-workhorse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitlab-workhorse/Makefile Sun Mar 13 12:56:00 2016 (r410963) @@ -0,0 +1,29 @@ +# 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/devel/gitlab-workhorse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitlab-workhorse/distinfo Sun Mar 13 12:56:00 2016 (r410963) @@ -0,0 +1,2 @@ +SHA256 (gitlab-workhorse-0.6.5.tar.gz) = 629279a966ee7662fb6158465158659877de550609b95f5249ed801746991ced +SIZE (gitlab-workhorse-0.6.5.tar.gz) = 31621 Added: head/devel/gitlab-workhorse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitlab-workhorse/pkg-descr Sun Mar 13 12:56:00 2016 (r410963) @@ -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