git: 9b53145f43e1 - 2023Q4 - www/gitlab-ce: fix problem with rubygem-sidekiq 6.5.10
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 06 Oct 2023 07:24:19 UTC
The branch 2023Q4 has been updated by mfechner:
URL: https://cgit.FreeBSD.org/ports/commit/?id=9b53145f43e120edf7151c106c65edd5e245b61d
commit 9b53145f43e120edf7151c106c65edd5e245b61d
Author: Matthias Fechner <mfechner@FreeBSD.org>
AuthorDate: 2023-10-05 12:57:59 +0000
Commit: Matthias Fechner <mfechner@FreeBSD.org>
CommitDate: 2023-10-06 06:05:53 +0000
www/gitlab-ce: fix problem with rubygem-sidekiq 6.5.10
Fix a regression instroduced by:
aa93117abe2109fc18dda351690beb5358bb8c95
(cherry picked from commit 3083687cbace383da3247089d07360d4be36033d)
---
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 813e17c652ab..6bfe2a75c5c9 100644
--- a/www/gitlab-ce/Makefile
+++ b/www/gitlab-ce/Makefile
@@ -1,5 +1,6 @@
PORTNAME= gitlab-ce
PORTVERSION= 16.3.5
+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