1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

www/gitlab-ce: fix database migration

The current gitlab version misses a gem, we add it here.
Refer to:
https://gitlab.com/gitlab-org/gitlab/-/issues/350866
This commit is contained in:
Matthias Fechner 2022-01-26 11:26:57 +01:00
parent 5f255f62ce
commit d87992a617
2 changed files with 15 additions and 4 deletions

View File

@ -13,6 +13,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
# the rubygems of RUN_DEPENDS matches the order of the Gemfile
# which makes maintaining this long list much easier!
# devel/rubygem-parser is required for database upgrade process
# see https://gitlab.com/gitlab-org/gitlab/-/issues/350866
MY_DEPENDS= git>=2.32.0:devel/git \
gitaly>=${PORTVERSION}:devel/gitaly \
gitlab-elasticsearch-indexer>=2.17.0:textproc/gitlab-elasticsearch-indexer \
@ -254,7 +256,8 @@ MY_DEPENDS= git>=2.32.0:devel/git \
rubygem-webauthn>=2.3<3:security/rubygem-webauthn \
rubygem-ipaddress>=0.8.3<0.9:net/rubygem-ipaddress \
rubygem-parslet1>=1.8<2:textproc/rubygem-parslet1 \
rubygem-ipynbdiff>=0.3.8<0.3.9:devel/rubygem-ipynbdiff
rubygem-ipynbdiff>=0.3.8<0.3.9:devel/rubygem-ipynbdiff \
rubygem-parser>=0:devel/rubygem-parser
BUILD_DEPENDS= gem:devel/ruby-gems \
${MY_DEPENDS}

View File

@ -26,7 +26,7 @@
gem 'graphlient', '~> 0.4.0' # Used by BulkImport feature (group::import)
gem 'hashie'
@@ -328,114 +327,13 @@ gem 'batch-loader', '~> 2.0.1'
@@ -328,115 +327,14 @@ gem 'batch-loader', '~> 2.0.1'
gem 'peek', '~> 1.1'
# Snowplow events tracking
@ -39,7 +39,7 @@
gem 'prometheus-client-mmap', '~> 0.15.0', require: 'prometheus/client'
gem 'warning', '~> 1.2.0'
-
-group :development do
- gem 'lefthook', '~> 0.7.0', require: false
- gem 'solargraph', '~> 0.43', require: false
@ -139,6 +139,14 @@
- # Moved in `test` because https://gitlab.com/gitlab-org/gitlab/-/issues/217527
- gem 'derailed_benchmarks', require: false
-end
-
gem 'octokit', '~> 4.15'
# Updating this gem version here is deprecated. See:
@@ -542,3 +440,6 @@ gem 'ipaddress', '~> 0.8.3'
gem 'parslet', '~> 1.8'
gem 'ipynbdiff', '0.3.8'
+
+gem 'parser'
+