From owner-svn-ports-all@freebsd.org Mon Jun 20 16:05:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E020BA7B70E; Mon, 20 Jun 2016 16:05:18 +0000 (UTC) (envelope-from tz@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 mx1.freebsd.org (Postfix) with ESMTPS id 945911976; Mon, 20 Jun 2016 16:05:18 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5KG5HYr089944; Mon, 20 Jun 2016 16:05:17 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5KG5H73089942; Mon, 20 Jun 2016 16:05:17 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201606201605.u5KG5H73089942@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Mon, 20 Jun 2016 16:05:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417165 - in head/textproc/rubygem-gitlab-grit: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Jun 2016 16:05:19 -0000 Author: tz Date: Mon Jun 20 16:05:17 2016 New Revision: 417165 URL: https://svnweb.freebsd.org/changeset/ports/417165 Log: textproc/rubygem-gitlab-grit: make it work with rubygem-mime-types again The update of misc/rubygem-mime-types break this port, because it is not allowed to work with mime-types version >= 3. I removed this limitation since the port works fine with newer version of mime-types. Approved by: swills (mentor) Added: head/textproc/rubygem-gitlab-grit/files/ head/textproc/rubygem-gitlab-grit/files/patch-gemspec (contents, props changed) Modified: head/textproc/rubygem-gitlab-grit/Makefile Modified: head/textproc/rubygem-gitlab-grit/Makefile ============================================================================== --- head/textproc/rubygem-gitlab-grit/Makefile Mon Jun 20 16:01:37 2016 (r417164) +++ head/textproc/rubygem-gitlab-grit/Makefile Mon Jun 20 16:05:17 2016 (r417165) @@ -2,6 +2,7 @@ PORTNAME= gitlab-grit PORTVERSION= 2.8.1 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG Added: head/textproc/rubygem-gitlab-grit/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-gitlab-grit/files/patch-gemspec Mon Jun 20 16:05:17 2016 (r417165) @@ -0,0 +1,11 @@ +--- gitlab-grit.gemspec.orig 2016-06-20 14:45:29 UTC ++++ gitlab-grit.gemspec +@@ -25,7 +25,7 @@ Gem::Specification.new do |s| + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q.freeze, ["~> 0.6"]) + s.add_runtime_dependency(%q.freeze, ["~> 0.3"]) +- s.add_runtime_dependency(%q.freeze, ["< 3", ">= 1.16"]) ++ s.add_runtime_dependency(%q.freeze, [">= 1.16"]) + s.add_runtime_dependency(%q.freeze, ["~> 1.1"]) + s.add_development_dependency(%q.freeze, [">= 0"]) + else