Created attachment 203888 [details] patch To adapt upcoming bundler update to 2, bundler dependency pin needs to be loosened as well as bug 237384. Confirmed it works well with bundler 2. Without this patch, it fails to build. ====> Running Q/A tests (stage-qa) Error: RubyGem dependency bundler ~> 1.16 is not satisfied. Error: RubyGem dependency bundler < 2.0 is not satisfied. *** Error code 1 Stop. make: stopped in /usr/ports/devel/rubygem-tty =>> Error: stage-qa failures detected build of devel/rubygem-tty | rubygem-tty-0.9.1_1 ended at Mon Apr 22 18:02:22 JST 2019 build time: 00:00:24 !!! build failure encountered !!! [00:02:58] Error: Build failed in phase: stage-qa
If a dependency is defined as ~> 1.16 that means that you can only increase the last part of the version without breaking it. So 1.17, 1.18, ... is ok, but not 2.x. In this case you have to change ~> 1.16 to >= 1.16. You maybe should try that first upstream.
Just updating to the latest release might solve the problem, I'll check it.
Ah, 0.9.1 is already the latest version. Anyway, I'll try in upstream.
Created attachment 203916 [details] patch Found an upstream PR: https://github.com/piotrmurach/tty/pull/51
A commit references this bug: Author: sunpoet Date: Tue Apr 23 17:53:29 UTC 2019 New revision: 499783 URL: https://svnweb.freebsd.org/changeset/ports/499783 Log: Relax bundler dependency - Bump PORTREVISION for package change PR: 237460 Submitted by: meta Changes: head/devel/rubygem-tty/Makefile head/devel/rubygem-tty/files/patch-gemspec
Committed. Thanks!