From owner-svn-ports-head@freebsd.org Sun Mar 13 13:40:40 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 7C57AACD90D; Sun, 13 Mar 2016 13:40:40 +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 584A2AEE; Sun, 13 Mar 2016 13:40:40 +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 u2DDedJx016226; Sun, 13 Mar 2016 13:40:39 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2DDecpI016220; Sun, 13 Mar 2016 13:40:38 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603131340.u2DDecpI016220@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 13:40:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410968 - in head/devel: . gitlab-shell gitlab-shell/files 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 13:40:40 -0000 Author: rakuco Date: Sun Mar 13 13:40:38 2016 New Revision: 410968 URL: https://svnweb.freebsd.org/changeset/ports/410968 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-shell/ head/devel/gitlab-shell/Makefile (contents, props changed) head/devel/gitlab-shell/distinfo (contents, props changed) head/devel/gitlab-shell/files/ head/devel/gitlab-shell/files/patch-config.yml.example (contents, props changed) head/devel/gitlab-shell/pkg-descr (contents, props changed) head/devel/gitlab-shell/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 13 13:38:55 2016 (r410967) +++ head/devel/Makefile Sun Mar 13 13:40:38 2016 (r410968) @@ -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-shell/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitlab-shell/Makefile Sun Mar 13 13:40:38 2016 (r410968) @@ -0,0 +1,31 @@ +# Created by: Torsten Zuehlsdorff =2.1.5:${PORTSDIR}/lang/ruby21 \ + gem:${PORTSDIR}/devel/ruby-gems + +USERS= git +GROUPS= git + +NO_BUILD= yes +NO_ARCH= yes + +do-install: + ${MV} ${WRKSRC}/config.yml.example ${WRKSRC}/config.yml.sample + +post-install: + ${MKDIR} ${STAGEDIR}/var/log/ + ${TOUCH} ${STAGEDIR}/var/log/gitlab-shell.log + ${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}) + +.include Added: head/devel/gitlab-shell/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitlab-shell/distinfo Sun Mar 13 13:40:38 2016 (r410968) @@ -0,0 +1,2 @@ +SHA256 (gitlab-shell-v2.6.10.tar.gz) = 25c4e05e6fb0068e4be6a6b44d5fe30b98957ea6fe1470fb622480354fb17bb7 +SIZE (gitlab-shell-v2.6.10.tar.gz) = 35474 Added: head/devel/gitlab-shell/files/patch-config.yml.example ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitlab-shell/files/patch-config.yml.example Sun Mar 13 13:40:38 2016 (r410968) @@ -0,0 +1,11 @@ +--- config.yml.example.orig 2016-02-24 09:49:01 UTC ++++ config.yml.example +@@ -48,7 +48,7 @@ redis: + + # Log file. + # Default is gitlab-shell.log in the root directory. +-# log_file: "/home/git/gitlab-shell/gitlab-shell.log" ++log_file: "/var/log/gitlab-shell.log" + + # Log level. INFO by default + log_level: INFO Added: head/devel/gitlab-shell/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitlab-shell/pkg-descr Sun Mar 13 13:40:38 2016 (r410968) @@ -0,0 +1,4 @@ +GitLab Shell handles git commands for GitLab +and modifies the list of authorized keys. + +WWW: https://gitlab.com/gitlab-org/gitlab-shell Added: head/devel/gitlab-shell/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gitlab-shell/pkg-plist Sun Mar 13 13:40:38 2016 (r410968) @@ -0,0 +1,65 @@ +%%DATADIR%%/.gitignore +%%DATADIR%%/.gitlab-ci.yml +%%DATADIR%%/.hound.yml +%%DATADIR%%/.rspec +%%DATADIR%%/.rubocop.yml +%%DATADIR%%/CHANGELOG +%%DATADIR%%/Gemfile +%%DATADIR%%/Gemfile.lock +%%DATADIR%%/Guardfile +%%DATADIR%%/LICENSE +%%DATADIR%%/README.md +%%DATADIR%%/VERSION +@(git,,555) %%DATADIR%%/bin/check +@(git,,555) %%DATADIR%%/bin/create-hooks +@(git,,555) %%DATADIR%%/bin/gitlab-keys +@(git,,555) %%DATADIR%%/bin/gitlab-projects +@(git,,555) %%DATADIR%%/bin/gitlab-shell +@(git,,555) %%DATADIR%%/bin/install +@sample %%DATADIR%%/config.yml.sample +%%DATADIR%%/hooks/post-receive +%%DATADIR%%/hooks/pre-receive +%%DATADIR%%/hooks/update +%%DATADIR%%/lib/gitlab_access.rb +%%DATADIR%%/lib/gitlab_access_status.rb +%%DATADIR%%/lib/gitlab_config.rb +%%DATADIR%%/lib/gitlab_custom_hook.rb +%%DATADIR%%/lib/gitlab_init.rb +%%DATADIR%%/lib/gitlab_keys.rb +%%DATADIR%%/lib/gitlab_logger.rb +%%DATADIR%%/lib/gitlab_net.rb +%%DATADIR%%/lib/gitlab_post_receive.rb +%%DATADIR%%/lib/gitlab_projects.rb +%%DATADIR%%/lib/gitlab_shell.rb +%%DATADIR%%/lib/httpunix.rb +%%DATADIR%%/lib/names_helper.rb +%%DATADIR%%/spec/gitlab_access_spec.rb +%%DATADIR%%/spec/gitlab_config_spec.rb +%%DATADIR%%/spec/gitlab_keys_spec.rb +%%DATADIR%%/spec/gitlab_logger_spec.rb +%%DATADIR%%/spec/gitlab_net_spec.rb +%%DATADIR%%/spec/gitlab_post_receive_spec.rb +%%DATADIR%%/spec/gitlab_projects_spec.rb +%%DATADIR%%/spec/gitlab_shell_spec.rb +%%DATADIR%%/spec/httpunix_spec.rb +%%DATADIR%%/spec/names_helper_spec.rb +%%DATADIR%%/spec/spec_helper.rb +%%DATADIR%%/spec/vcr_cassettes/allowed-pull.yml +%%DATADIR%%/spec/vcr_cassettes/allowed-push.yml +%%DATADIR%%/spec/vcr_cassettes/broadcast_message-none.yml +%%DATADIR%%/spec/vcr_cassettes/broadcast_message-ok.yml +%%DATADIR%%/spec/vcr_cassettes/check-ok.yml +%%DATADIR%%/spec/vcr_cassettes/denied-pull.yml +%%DATADIR%%/spec/vcr_cassettes/denied-push-with-user.yml +%%DATADIR%%/spec/vcr_cassettes/denied-push.yml +%%DATADIR%%/spec/vcr_cassettes/discover-ok.yml +%%DATADIR%%/support/rewrite-hooks.sh +%%DATADIR%%/support/truncate_repositories.sh +@(git,,664) /var/log/gitlab-shell.log +@dir %%DATADIR%%/bin +@dir %%DATADIR%%/hooks +@dir %%DATADIR%%/lib +@dir %%DATADIR%%/spec/vcr_cassettes +@dir %%DATADIR%%/spec +@dir %%DATADIR%%/support +@dir %%DATADIR%%