1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

sysutils/rubygem-bosh_cli: Make version requirement to json_pure less strict

With the recent updates to the json_pure gem, the version requirement
in bosh_cli is too strict. After using it for a day, it looks like the
latest json_pure is compatible with bosh_cli. Thus, make it less strict.

Bump PORTREVISION.

Approved by:	antoine (mentor)
Differential Revision:	https://reviews.freebsd.org/D9156
This commit is contained in:
Jean-Sébastien Pédron 2017-01-12 19:06:58 +00:00
parent 78fa5c7594
commit 29ea22821d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=431295
2 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,7 @@
PORTNAME= bosh_cli
PORTVERSION= 1.3262.24.0
PORTREVISION= 1
CATEGORIES= sysutils rubygems
MASTER_SITES= RG

View File

@ -1,16 +1,17 @@
--- bosh_cli.gemspec.orig 2016-11-19 16:52:52 UTC
--- bosh_cli.gemspec.orig 2017-01-12 12:51:57 UTC
+++ bosh_cli.gemspec
@@ -25,19 +25,19 @@ Gem::Specification.new do |s|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<bosh_common>.freeze, ["~> 1.3262.24.0"])
s.add_runtime_dependency(%q<bosh-template>.freeze, ["~> 1.3262.24.0"])
- s.add_runtime_dependency(%q<cf-uaa-lib>.freeze, ["~> 3.2.1"])
+ s.add_runtime_dependency(%q<cf-uaa-lib>.freeze, [">= 3.2.1"])
s.add_runtime_dependency(%q<json_pure>.freeze, ["~> 1.7"])
- s.add_runtime_dependency(%q<json_pure>.freeze, ["~> 1.7"])
- s.add_runtime_dependency(%q<highline>.freeze, ["~> 1.6.2"])
- s.add_runtime_dependency(%q<progressbar>.freeze, ["~> 0.9.0"])
- s.add_runtime_dependency(%q<httpclient>.freeze, ["= 2.7.1"])
- s.add_runtime_dependency(%q<terminal-table>.freeze, ["~> 1.4.3"])
+ s.add_runtime_dependency(%q<cf-uaa-lib>.freeze, [">= 3.2.1"])
+ s.add_runtime_dependency(%q<json_pure>.freeze, [">= 1.7"])
+ s.add_runtime_dependency(%q<highline>.freeze, [">= 1.6.2"])
+ s.add_runtime_dependency(%q<progressbar>.freeze, [">= 0.9.0"])
+ s.add_runtime_dependency(%q<httpclient>.freeze, [">= 2.7.1"])