git: 3083687cbace - main - www/gitlab-ce: fix problem with rubygem-sidekiq 6.5.10
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 05 Oct 2023 12:59:13 UTC
The branch main has been updated by mfechner:
URL: https://cgit.FreeBSD.org/ports/commit/?id=3083687cbace383da3247089d07360d4be36033d
commit 3083687cbace383da3247089d07360d4be36033d
Author: Matthias Fechner <mfechner@FreeBSD.org>
AuthorDate: 2023-10-05 12:57:59 +0000
Commit: Matthias Fechner <mfechner@FreeBSD.org>
CommitDate: 2023-10-05 12:57:59 +0000
www/gitlab-ce: fix problem with rubygem-sidekiq 6.5.10
Fix a regression instroduced by:
aa93117abe2109fc18dda351690beb5358bb8c95
---
www/gitlab-ce/Makefile | 1 +
www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/www/gitlab-ce/Makefile b/www/gitlab-ce/Makefile
index bbbd508350ce..9c30f90440a8 100644
--- a/www/gitlab-ce/Makefile
+++ b/www/gitlab-ce/Makefile
@@ -1,5 +1,6 @@
PORTNAME= gitlab-ce
PORTVERSION= 16.4.1
+PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= www devel
diff --git a/www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb b/www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb
index ce56be8d52f7..394302ab9855 100644
--- a/www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb
+++ b/www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb
@@ -5,7 +5,7 @@
require 'sidekiq/cron/version'
-if Gem::Version.new(Sidekiq::VERSION) != Gem::Version.new('6.5.7')
-+if Gem::Version.new(Sidekiq::VERSION) != Gem::Version.new('6.5.9')
++if Gem::Version.new(Sidekiq::VERSION) != Gem::Version.new('6.5.10')
raise 'New version of sidekiq detected, please remove or update this patch'
end