Date: Wed, 5 Jul 2017 08:39:22 +0000 (UTC) From: Torsten Zuehlsdorff <tz@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445057 - in head/www/gitlab: . files Message-ID: <201707050839.v658dMcS094253@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tz Date: Wed Jul 5 08:39:22 2017 New Revision: 445057 URL: https://svnweb.freebsd.org/changeset/ports/445057 Log: www/gitlab: Unbreak GitLab after Rails-Update GitLab currently does not start after an update of Rails to 4.2.9. Patch this, since its working fine with the new version. Submitted by: Matthias Fechner <idefix@fechner.net> MFH: 2017Q3 Modified: head/www/gitlab/Makefile head/www/gitlab/files/patch-Gemfile Modified: head/www/gitlab/Makefile ============================================================================== --- head/www/gitlab/Makefile Wed Jul 5 08:12:20 2017 (r445056) +++ head/www/gitlab/Makefile Wed Jul 5 08:39:22 2017 (r445057) @@ -4,7 +4,7 @@ PORTNAME= gitlab PORTVERSION= 9.0.10 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www devel MAINTAINER= tz@FreeBSD.org Modified: head/www/gitlab/files/patch-Gemfile ============================================================================== --- head/www/gitlab/files/patch-Gemfile Wed Jul 5 08:12:20 2017 (r445056) +++ head/www/gitlab/files/patch-Gemfile Wed Jul 5 08:39:22 2017 (r445057) @@ -1,6 +1,12 @@ --- Gemfile.orig 2017-06-07 20:58:14 UTC +++ Gemfile -@@ -6,41 +6,36 @@ gem 'rails-deprecated_sanitizer', '~> 1. +@@ -1,46 +1,41 @@ + source 'https://rubygems.org' + +-gem 'rails', '4.2.8' ++gem 'rails', '>= 4.2.8' + gem 'rails-deprecated_sanitizer', '~> 1.0.3' + # Responders respond_to and respond_with gem 'responders', '~> 2.0'
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707050839.v658dMcS094253>