diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-11-14 21:17:14 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-11-14 21:22:20 +0000 |
commit | 907cb05fadf051442d63013db4bb625aeb49d3e9 (patch) | |
tree | b129d4c50cd431d6deb3e70684ac8a1b2a4b8375 | |
parent | cf9a5a227e50f6c95cda0765be129d16a00f40ee (diff) | |
download | ports-907cb05fadf051442d63013db4bb625aeb49d3e9.tar.gz ports-907cb05fadf051442d63013db4bb625aeb49d3e9.zip |
www/gitlab-ce: Fix Gemfile
The (similar) fix for Gemfile was already committed [1] but being removed later during gitlab-ce updates.
(cd /wrkdirs/usr/ports/www/gitlab-ce/work/gitlab-foss-v16.5.1 && /bin/rm -f Gemfile.lock && bundle install --local)
Don't run Bundler as root. Installing your bundle as root will break this
application for all non-root users on this machine.
Could not find gem 'aws-sdk-core (~> 3.185.1)' in cached gems or installed
locally.
The source contains the following gems matching 'aws-sdk-core':
* aws-sdk-core-3.186.0
*** Error code 7
Reference: https://cgit.freebsd.org/ports/commit/www/gitlab-ce?id=cd3ccf5407757430ac5899a4ba0fecd61992a431 [1]
-rw-r--r-- | www/gitlab-ce/files/patch-Gemfile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/www/gitlab-ce/files/patch-Gemfile b/www/gitlab-ce/files/patch-Gemfile index 34c54fa1a116..e45a53a12844 100644 --- a/www/gitlab-ce/files/patch-Gemfile +++ b/www/gitlab-ce/files/patch-Gemfile @@ -1,4 +1,4 @@ ---- Gemfile.orig 2023-10-20 08:41:39 UTC +--- Gemfile.orig 2023-10-30 16:33:01 UTC +++ Gemfile @@ -56,7 +56,7 @@ gem 'neighbor', '~> 0.2.3' # rubocop:todo Gemfile/Miss @@ -38,6 +38,15 @@ gem 'google-apis-compute_v1', '~> 0.57.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'google-apis-container_v1', '~> 0.43.0' # rubocop:todo Gemfile/MissingFeatureCategory gem 'google-apis-container_v1beta1', '~> 0.43.0' # rubocop:todo Gemfile/MissingFeatureCategory +@@ -196,7 +196,7 @@ gem 'seed-fu', '~> 2.3.7' # rubocop:todo Gemfile/Missi + gem 'elasticsearch-model', '~> 7.2' # rubocop:todo Gemfile/MissingFeatureCategory + gem 'elasticsearch-rails', '~> 7.2', require: 'elasticsearch/rails/instrumentation' # rubocop:todo Gemfile/MissingFeatureCategory + gem 'elasticsearch-api', '7.13.3' # rubocop:todo Gemfile/MissingFeatureCategory +-gem 'aws-sdk-core', '~> 3.185.1' # rubocop:todo Gemfile/MissingFeatureCategory ++gem 'aws-sdk-core', '~> 3.185' # rubocop:todo Gemfile/MissingFeatureCategory + gem 'aws-sdk-cloudformation', '~> 1' # rubocop:todo Gemfile/MissingFeatureCategory + gem 'aws-sdk-s3', '~> 1.136.0' # rubocop:todo Gemfile/MissingFeatureCategory + gem 'faraday_middleware-aws-sigv4', '~>0.3.0' # rubocop:todo Gemfile/MissingFeatureCategory @@ -385,80 +385,10 @@ gem 'prometheus-client-mmap', '~> 0.28', '>= 0.28.1', gem 'warning', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory |