From owner-svn-ports-head@freebsd.org Fri Jan 3 02:29:56 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 821B31E32D0; Fri, 3 Jan 2020 02:29:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47pplS2jW8z4JM7; Fri, 3 Jan 2020 02:29:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5863B252A9; Fri, 3 Jan 2020 02:29:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0032Tuip054747; Fri, 3 Jan 2020 02:29:56 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0032Ttwt054746; Fri, 3 Jan 2020 02:29:55 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202001030229.0032Ttwt054746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 3 Jan 2020 02:29:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521894 - in head/www/gitlab-ce: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/www/gitlab-ce: . files X-SVN-Commit-Revision: 521894 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2020 02:29:56 -0000 Author: swills Date: Fri Jan 3 02:29:55 2020 New Revision: 521894 URL: https://svnweb.freebsd.org/changeset/ports/521894 Log: www/gitlab-ce: fix startup PR: 243043 Reported by: Andreas Diem Approved by: mfechner Added: head/www/gitlab-ce/files/patch-bin_background__jobs (contents, props changed) Modified: head/www/gitlab-ce/Makefile (contents, props changed) Modified: head/www/gitlab-ce/Makefile ============================================================================== --- head/www/gitlab-ce/Makefile Fri Jan 3 01:37:30 2020 (r521893) +++ head/www/gitlab-ce/Makefile Fri Jan 3 02:29:55 2020 (r521894) @@ -3,7 +3,7 @@ PORTNAME= gitlab-ce PORTVERSION= 12.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www devel MAINTAINER= mfechner@FreeBSD.org Added: head/www/gitlab-ce/files/patch-bin_background__jobs ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/gitlab-ce/files/patch-bin_background__jobs Fri Jan 3 02:29:55 2020 (r521894) @@ -0,0 +1,11 @@ +--- bin/background_jobs.orig 2020-01-02 22:36:53 UTC ++++ bin/background_jobs +@@ -45,7 +45,7 @@ start_sidekiq() + cmd="${cmd} ${chpst} -P" + fi + +- ${cmd} bundle exec sidekiq -C "${sidekiq_config}" -e $RAILS_ENV "$@" ++ ${cmd} bundle exec sidekiq5 -C "${sidekiq_config}" -e $RAILS_ENV "$@" + } + + load_ok()