devel/gitlab-shell: Update from 3.0.0 to 3.2.1
v3.2.1 - Allow gitlab-project's fork-project command to fork projects between different repository storages v3.2.0 - Allow GitLab Shell to check for allowed access based on the used Git protocol - Add an error message when using shell commands with incompatible GitLab versions v3.1.0 - Refactor repository paths handling to allow multiple git mount points v3.0.1 - Update PostReceive worker to provide enqueued_at time. Approved by: swills (mentor)
This commit is contained in:
parent
f55fd3cef9
commit
228f03b91c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424245
4 changed files with 9 additions and 16 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gitlab-shell
|
||||
PORTVERSION= 3.0.0
|
||||
PORTVERSION= 3.2.1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://gitlab.com/gitlab-org/${PORTNAME}/repository/archive.tar.gz?ref=v${PORTVERSION}&dummy=/
|
||||
DISTNAME= ${PORTNAME}-v${PORTVERSION}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1468920011
|
||||
SHA256 (gitlab-shell-v3.0.0.tar.gz) = b57561ce84f108fd99aa7e152dc129ec9e0348063ce4fa7b796a2ebfcafdba75
|
||||
SIZE (gitlab-shell-v3.0.0.tar.gz) = 68128
|
||||
TIMESTAMP = 1470988234
|
||||
SHA256 (gitlab-shell-v3.2.1.tar.gz) = ad21f8676901b9d90a1c8016b5fe2ad73f9a7966ab378ce244b12fc0373e9f46
|
||||
SIZE (gitlab-shell-v3.2.1.tar.gz) = 68788
|
||||
|
|
|
@ -1,15 +1,6 @@
|
|||
--- config.yml.example.orig 2016-04-07 14:39:29 UTC
|
||||
--- config.yml.example.orig 2016-07-26 21:04:16 UTC
|
||||
+++ config.yml.example
|
||||
@@ -28,7 +28,7 @@ http_settings:
|
||||
# Give the canonicalized absolute pathname,
|
||||
# REPOS_PATH MUST NOT CONTAIN ANY SYMLINK!!!
|
||||
# Check twice that none of the components is a symlink, including "/home".
|
||||
-repos_path: "/home/git/repositories"
|
||||
+repos_path: "/usr/home/git/repositories"
|
||||
|
||||
# File used as authorized_keys for gitlab user
|
||||
auth_file: "/home/git/.ssh/authorized_keys"
|
||||
@@ -49,7 +49,7 @@ redis:
|
||||
@@ -43,7 +43,7 @@ redis:
|
||||
|
||||
# Log file.
|
||||
# Default is gitlab-shell.log in the root directory.
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
%%DATADIR%%/.gitignore
|
||||
%%DATADIR%%/.gitlab-ci.yml
|
||||
%%DATADIR%%/.hound.yml
|
||||
%%DATADIR%%/.rspec
|
||||
%%DATADIR%%/.rubocop.yml
|
||||
%%DATADIR%%/CHANGELOG
|
||||
|
@ -33,6 +32,7 @@
|
|||
%%DATADIR%%/lib/gitlab_net.rb
|
||||
%%DATADIR%%/lib/gitlab_post_receive.rb
|
||||
%%DATADIR%%/lib/gitlab_projects.rb
|
||||
%%DATADIR%%/lib/gitlab_redis.rb
|
||||
%%DATADIR%%/lib/gitlab_shell.rb
|
||||
%%DATADIR%%/lib/httpunix.rb
|
||||
%%DATADIR%%/lib/names_helper.rb
|
||||
|
@ -70,6 +70,8 @@
|
|||
%%DATADIR%%/spec/vcr_cassettes/denied-push-with-user.yml
|
||||
%%DATADIR%%/spec/vcr_cassettes/denied-push.yml
|
||||
%%DATADIR%%/spec/vcr_cassettes/discover-ok.yml
|
||||
%%DATADIR%%/spec/vcr_cassettes/http-access-disabled.yml
|
||||
%%DATADIR%%/spec/vcr_cassettes/ssh-access-disabled.yml
|
||||
%%DATADIR%%/spec/vcr_cassettes/ssh-key-not-found.yml
|
||||
%%DATADIR%%/spec/vcr_cassettes/ssh-key-not-implemented.yml
|
||||
%%DATADIR%%/spec/vcr_cassettes/ssh-key-ok.yml
|
||||
|
|
Loading…
Reference in a new issue