Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 May 2020 14:13:08 +0300
From:      David Gessel <gessel@blackrosetech.com>
To:        ruby@FreeBSD.org, Po-Chuan Hsieh <sunpoet@freebsd.org>
Subject:   www/rubygem-rails4, textproc/rubygem-nokogiri, and devel/rubygem-activesupport4
Message-ID:  <c1832d54-4d25-8c64-4ea6-b1819c36b02c@blackrosetech.com>

next in thread | raw e-mail | index | archive | help
Since updating from FreeBSD 11.2 to FreeBSD 11.3 I've had a few issues with 3 ruby gems not compiling.  I noted the issues previously, but as I was still not fully updated, there was some risk it was a quirk of the install.  I've since updated the whole system and everything else is working as expected.  A few patch issues are holding me up.


If it would help, I can mod the patch files to get past it, but before I start making temporary fixes, perhaps the below summary is useful:


The problems are similar, it seems small variations in the patch targets break patching.  There are a very large number of installed gems that are not afflicted.

The three are:

  * www/rubygem-rails4
  * textproc/rubygem-nokogiri
  * devel/rubygem-activesupport4

*www/rubygem-rails4*
|
||===>  Applying FreeBSD patches for rubygem-rails4-4.2.11.1_2||
||1 out of 1 hunks failed--saving rejects to rails.gemspec.rej||
||====> FAILED Applying FreeBSD patch patch-gemspec|

//usr/ports/www/rubygem-rails4/files/patch-gemspec/

|--- rails.gemspec.orig  2019-04-20 08:38:13 UTC||
||+++ rails.gemspec||
||@@ -30,7 +30,7 @@ Gem::Specification.new do |s|||
||s.add_runtime_dependency(%q<actionmailer>.freeze, ["= 4.2.11.1"])||
||s.add_runtime_dependency(%q<activejob>.freeze, ["= 4.2.11.1"])||
||s.add_runtime_dependency(%q<railties>.freeze, ["= 4.2.11.1"])||
||- s.add_runtime_dependency(%q<bundler>.freeze, [">= 1.3.0", "< 2.0"])||
||+ s.add_runtime_dependency(%q<bundler>.freeze, [">= 1.3.0"])||
||s.add_runtime_dependency(%q<sprockets-rails>.freeze, [">= 0"])||
||     else||
||s.add_dependency(%q<activesupport>.freeze, ["= 4.2.11.1"])|


//var/ports/usr/ports/www/rubygem-rails4/work/rails-4.2.11.1/rails.gemspec.orig/

|00000001 # -*- encoding: utf-8 -*-||
||00000002 # stub: rails 4.2.11.1 ruby lib||
||00000003 ||
||00000004 Gem::Specification.new do |s|||
||00000005   s.name = "rails".freeze||
||00000006   s.version = "4.2.11.1"||
||00000007 ||
||00000008   s.required_rubygems_version = Gem::Requirement.new(">= 1.8.11".freeze) if s.respond_to? :required_rubygems_version=||
||00000009   s.require_paths = ["lib".freeze]||
||00000010   s.authors = ["David Heinemeier Hansson".freeze]||
||00000011   s.date = "2019-03-11"||
||00000012   s.description = "Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration||
||00000013   s.email = "david@loudthinking.com".freeze||
||00000014   s.files = ["README.md".freeze, "guides/CHANGELOG.md".freeze, "guides/Rakefile".freeze, "guides/assets/images/akshaysurve.jpg".freeze, "guides/assets/images/belongs_to.png".freeze, "guides/assets/i||
||00000015   s.homepage = "http://www.rubyonrails.org".freeze||
||00000016   s.licenses = ["MIT".freeze]||
||00000017   s.required_ruby_version = Gem::Requirement.new(">= 1.9.3".freeze)||
||00000018   s.rubygems_version = "3.1.2".freeze||
||00000019   s.summary = "Full-stack web application framework.".freeze||
||00000020 ||
||00000021   if s.respond_to? :specification_version then||
||00000022     s.specification_version = 4||
||00000023   end||
||00000024 ||
||00000025   if s.respond_to? :add_runtime_dependency then||
||00000026 s.add_runtime_dependency(%q<activesupport>.freeze, ["= 4.2.11.1"])||
||00000027 s.add_runtime_dependency(%q<actionpack>.freeze, ["= 4.2.11.1"])||
||00000028 s.add_runtime_dependency(%q<actionview>.freeze, ["= 4.2.11.1"])||
||00000029 s.add_runtime_dependency(%q<activemodel>.freeze, ["= 4.2.11.1"])||
||00000030 s.add_runtime_dependency(%q<activerecord>.freeze, ["= 4.2.11.1"])||
||00000031 s.add_runtime_dependency(%q<actionmailer>.freeze, ["= 4.2.11.1"])||
||00000032 s.add_runtime_dependency(%q<activejob>.freeze, ["= 4.2.11.1"])||
||00000033 s.add_runtime_dependency(%q<railties>.freeze, ["= 4.2.11.1"])||
||00000034 s.add_runtime_dependency(%q<bundler>.freeze, [">= 1.3.0", "< 2.0"])||
||00000035 s.add_runtime_dependency(%q<sprockets-rails>.freeze, [">= 0"])||
||00000036   else||
||00000037 s.add_dependency(%q<activesupport>.freeze, ["= 4.2.11.1"])||
||00000038 s.add_dependency(%q<actionpack>.freeze, ["= 4.2.11.1"])||
||00000039 s.add_dependency(%q<actionview>.freeze, ["= 4.2.11.1"])||
||00000040 s.add_dependency(%q<activemodel>.freeze, ["= 4.2.11.1"])||
||00000041 s.add_dependency(%q<activerecord>.freeze, ["= 4.2.11.1"])||
||00000042 s.add_dependency(%q<actionmailer>.freeze, ["= 4.2.11.1"])||
||00000043 s.add_dependency(%q<activejob>.freeze, ["= 4.2.11.1"])||
||00000044 s.add_dependency(%q<railties>.freeze, ["= 4.2.11.1"])||
||00000045 s.add_dependency(%q<bundler>.freeze, [">= 1.3.0", "< 2.0"])||
||00000046 s.add_dependency(%q<sprockets-rails>.freeze, [">= 0"])||
||00000047   end||
||00000048 end|


Isn't the patch one line off? (31, not 30?)

*textproc/rubygem-nokogiri*

  rubygem-nokogiri-1.10.5_1 fails:
  1 out of 1 hunks failed--saving rejects to nokogiri.gemspec.rej
/var/ports/usr/ports/textproc/rubygem-nokogiri/work/nokogiri-1.10.9/nokogiri.gemspec.rej

//usr/ports/textproc/rubygem-nokogiri/files/patch-gemspec/

|--- nokogiri.gemspec.orig       2019-08-12 17:41:47 UTC||
||+++ nokogiri.gemspec||
||@@ -26,7 +26,6 @@ Gem::Specification.new do |s|||
||     s.specification_version = 4||
||
||     if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then||
||- s.add_runtime_dependency(%q<mini_portile2>.freeze, ["~> 2.4.0"])||
||s.add_development_dependency(%q<concourse>.freeze, ["~> 0.24"])||
||s.add_development_dependency(%q<hoe-bundler>.freeze, ["~> 1.2"])||
||s.add_development_dependency(%q<hoe-debugging>.freeze, ["~> 2.0"])|

//var/ports/usr/ports/textproc/rubygem-nokogiri/work/nokogiri-1.10.9/nokogiri.gemspec.orig/

|00000001 # -*- encoding: utf-8 -*-||
||00000002 # stub: nokogiri 1.10.9 ruby lib||
||00000003 # stub: ext/nokogiri/extconf.rb||
||00000004 ||
||00000005 Gem::Specification.new do |s|||
||00000006   s.name = "nokogiri".freeze||
||00000007   s.version = "1.10.9"||
||00000008 ||
||00000009   s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=||
||00000010   s.metadata = { "bug_tracker_uri" => "https://github.com/sparklemotion/nokogiri/issues", "changelog_uri" => "https://nokogiri.org/CHANGELOG.html", "documentation_uri" => "https://nokogiri.org/rdoc/||
||00000011   s.require_paths = ["lib".freeze]||
||00000012   s.authors = ["Aaron Patterson".freeze, "Mike Dalessio".freeze, "Yoko Harada".freeze, "Tim Elliott".freeze, "Akinori MUSHA".freeze, "John Shahid".freeze, "Lars Kanis".freeze]||
||00000013   s.date = "2020-03-01"||
||00000014   s.description = "Nokogiri (\u92F8) is an HTML, XML, SAX, and Reader parser.  Among\nNokogiri's many features is the ability to search documents via XPath\nor CSS3 selectors.".freeze||
||00000015   s.email = ["aaronp@rubyforge.org".freeze, "mike.dalessio@gmail.com".freeze, "yokolet@gmail.com".freeze, "tle@holymonkey.com".freeze, "knu@idaemons.org".freeze, "jvshahid@gmail.com".freeze, "lars@g||
||00000016   s.executables = ["nokogiri".freeze]||
||00000017   s.extensions = ["ext/nokogiri/extconf.rb".freeze]||
||00000018   s.extra_rdoc_files = ["LICENSE-DEPENDENCIES.md".freeze, "LICENSE.md".freeze, "README.md".freeze, "ext/nokogiri/html_document.c".freeze, "ext/nokogiri/html_element_description.c".freeze, "ext/nokog||
||00000019   s.files = ["LICENSE-DEPENDENCIES.md".freeze, "LICENSE.md".freeze, "README.md".freeze, "bin/nokogiri".freeze, "dependencies.yml".freeze, "ext/nokogiri/depend".freeze, "ext/nokogiri/extconf.rb".free||
||00000020   s.homepage = "https://nokogiri.org".freeze||
||00000021   s.licenses = ["MIT".freeze]||
||00000022   s.rdoc_options = ["--main".freeze, "README.md".freeze]||
||00000023   s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)||
||00000024   s.rubygems_version = "3.1.2".freeze||
||00000025   s.summary = "Nokogiri (\u92F8) is an HTML, XML, SAX, and Reader parser".freeze||
||00000026 ||
||00000027   if s.respond_to? :specification_version then||
||00000028     s.specification_version = 4||
||00000029   end||
||00000030 ||
||00000031   if s.respond_to? :add_runtime_dependency then||
||00000032 s.add_runtime_dependency(%q<mini_portile2>.freeze, ["~> 2.4.0"])||
||00000033 s.add_development_dependency(%q<concourse>.freeze, ["~> 0.24"])||
||00000034 s.add_development_dependency(%q<hoe-bundler>.freeze, ["~> 1.2"])||
||00000035 s.add_development_dependency(%q<hoe-debugging>.freeze, ["~> 2.0"])||
||00000036 s.add_development_dependency(%q<hoe-gemspec>.freeze, ["~> 1.0"])||
||00000037 s.add_development_dependency(%q<hoe-git>.freeze, ["~> 1.6"])||
||00000038 s.add_development_dependency(%q<minitest>.freeze, ["~> 5.8"])||
||00000039 s.add_development_dependency(%q<racc>.freeze, ["~> 1.4.14"])||
||00000040 s.add_development_dependency(%q<rake>.freeze, ["~> 12.0"])||
||00000041 s.add_development_dependency(%q<rake-compiler>.freeze, ["~> 1.1.0"])||
||00000042 s.add_development_dependency(%q<rake-compiler-dock>.freeze, ["~> 0.7.0"])||
||00000043 s.add_development_dependency(%q<rexical>.freeze, ["~> 1.0.5"])||
||00000044 s.add_development_dependency(%q<rubocop>.freeze, ["~> 0.73"])||
||00000045 s.add_development_dependency(%q<simplecov>.freeze, ["~> 0.16"])||
||00000046 s.add_development_dependency(%q<rdoc>.freeze, [">= 4.0", "< 7"])||
||00000047 s.add_development_dependency(%q<hoe>.freeze, ["~> 3.22"])||
||00000048   else||
||00000049 s.add_dependency(%q<mini_portile2>.freeze, ["~> 2.4.0"])||
||00000050 s.add_dependency(%q<concourse>.freeze, ["~> 0.24"])||
||00000051 s.add_dependency(%q<hoe-bundler>.freeze, ["~> 1.2"])||
||00000052 s.add_dependency(%q<hoe-debugging>.freeze, ["~> 2.0"])||
||00000053 s.add_dependency(%q<hoe-gemspec>.freeze, ["~> 1.0"])||
||00000054 s.add_dependency(%q<hoe-git>.freeze, ["~> 1.6"])||
||00000055 s.add_dependency(%q<minitest>.freeze, ["~> 5.8"])||
||00000056     s.add_dependency(%q<racc>.freeze, ["~> 1.4.14"])||
||00000057     s.add_dependency(%q<rake>.freeze, ["~> 12.0"])||
||00000058 s.add_dependency(%q<rake-compiler>.freeze, ["~> 1.1.0"])||
||00000059 s.add_dependency(%q<rake-compiler-dock>.freeze, ["~> 0.7.0"])||
||00000060 s.add_dependency(%q<rexical>.freeze, ["~> 1.0.5"])||
||00000061 s.add_dependency(%q<rubocop>.freeze, ["~> 0.73"])||
||00000062 s.add_dependency(%q<simplecov>.freeze, ["~> 0.16"])||
||00000063     s.add_dependency(%q<rdoc>.freeze, [">= 4.0", "< 7"])||
||00000064     s.add_dependency(%q<hoe>.freeze, ["~> 3.22"])||
||00000065   end||
||00000066 end|

Dependent ports also fail to build:

  * textproc/rubygem-rails-html-sanitizer
  * textproc/rubygem-loofah
  * mail/rubygem-roadie3
  * mail/rubygem-roadie-rails-rails4

*
**/usr/ports/devel/rubygem-activesupport4*

**
===>  Applying FreeBSD patches for rubygem-activesupport4-4.2.11.1_1
1 out of 1 hunks failed--saving rejects to activesupport.gemspec.rej

//usr/ports/devel/rubygem-activesupport4/files/patch-gemspec/

|--- activesupport.gemspec.orig  2018-02-14 14:06:12 UTC||
||+++ activesupport.gemspec||
||@@ -23,7 +23,7 @@ Gem::Specification.new do |s|||
||     s.specification_version = 4||
||
||     if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then||
||- s.add_runtime_dependency(%q<i18n>.freeze, ["~> 0.7"])||
||+ s.add_runtime_dependency(%q<i18n>.freeze, [">= 0.7"])||
||s.add_runtime_dependency(%q<tzinfo>.freeze, ["~> 1.1"])||
||s.add_runtime_dependency(%q<minitest>.freeze, ["~> 5.1"])||
||s.add_runtime_dependency(%q<thread_safe>.freeze, ["~> 0.3", ">= 0.3.4"])|

//var/ports/usr/ports/devel/rubygem-activesupport4/work/activesupport-4.2.11.1/activesupport.gemspec.orig/

|00000001 # -*- encoding: utf-8 -*-||
||00000002 # stub: activesupport 4.2.11.1 ruby lib||
||00000003 ||
||00000004 Gem::Specification.new do |s|||
||00000005   s.name = "activesupport".freeze||
||00000006   s.version = "4.2.11.1"||
||00000007 ||
||00000008   s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=||
||00000009   s.require_paths = ["lib".freeze]||
||00000010   s.authors = ["David Heinemeier Hansson".freeze]||
||00000011   s.date = "2019-03-11"||
||00000012   s.description = "A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.".fre||
||00000013   s.email = "david@loudthinking.com".freeze||
||00000014   s.files = ["CHANGELOG.md".freeze, "MIT-LICENSE".freeze, "README.rdoc".freeze, "lib/active_support.rb".freeze, "lib/active_support/all.rb".freeze, "lib/active_support/backtrace_cleaner.rb".freeze,||
||00000015   s.homepage = "http://www.rubyonrails.org".freeze||
||00000016   s.licenses = ["MIT".freeze]||
||00000017   s.rdoc_options = ["--encoding".freeze, "UTF-8".freeze]||
||00000018   s.required_ruby_version = Gem::Requirement.new(">= 1.9.3".freeze)||
||00000019   s.rubygems_version = "3.1.2".freeze||
||00000020   s.summary = "A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.".freeze||
||00000021 ||
||00000022   if s.respond_to? :specification_version then||
||00000023     s.specification_version = 4||
||00000024   end||
||00000025 ||
||00000026   if s.respond_to? :add_runtime_dependency then||
||00000027 s.add_runtime_dependency(%q<i18n>.freeze, ["~> 0.7"])||
||00000028 s.add_runtime_dependency(%q<tzinfo>.freeze, ["~> 1.1"])||
||00000029 s.add_runtime_dependency(%q<minitest>.freeze, ["~> 5.1"])||
||00000030 s.add_runtime_dependency(%q<thread_safe>.freeze, ["~> 0.3", ">= 0.3.4"])||
||00000031   else||
||00000032     s.add_dependency(%q<i18n>.freeze, ["~> 0.7"])||
||00000033 s.add_dependency(%q<tzinfo>.freeze, ["~> 1.1"])||
||00000034 s.add_dependency(%q<minitest>.freeze, ["~> 5.1"])||
||00000035 s.add_dependency(%q<thread_safe>.freeze, ["~> 0.3", ">= 0.3.4"])||
||00000036   end||
||00000037 end|


*System Information:*

  FreeBSD 11.3-RELEASE-p8 #0 r360490

|# cc -v||
||FreeBSD clang version 8.0.0 (tags/RELEASE_800/final 356365) (based on LLVM 8.0.0)||
||Target: x86_64-unknown-freebsd11.3||
||Thread model: posix||
||InstalledDir: /usr/bin||
||
||
|| # cpp -v||
||FreeBSD clang version 8.0.0 (tags/RELEASE_800/final 356365) (based on LLVM 8.0.0)||
||Target: x86_64-unknown-freebsd11.3||
||Thread model: posix||
||InstalledDir: /usr/bin||
|| "/basejail/usr/bin/cpp" -cc1 -triple x86_64-unknown-freebsd11.3 -E -disable-free -disable-llvm-verifier -discard-value-names -main-file-name - -mrelocation-model static -mthread-model posix -mdisable-fp-elim -masm-verbose -mconstructor-aliases -munwind-tables -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -v -resource-dir /basejail/usr/lib/clang/8.0.0 -fdebug-compilation-dir /usr/home/gessel -ferror-limit 19 -fmessage-length 198 -fobjc-runtime=gnustep -fdiagnostics-show-option -fcolor-diagnostics -o - -x c - -faddrsig||
||clang -cc1 version 8.0.0 based upon LLVM 8.0.0 default target x86_64-unknown-freebsd11.3||
||#include "..." search starts here:||
||#include <...> search starts here:||
|| /basejail/usr/lib/clang/8.0.0/include||
|| /usr/include||
||End of search list.||
|
Installed (and, aside from the above, properly compiling) ruby ports:

|ruby-2.6.6,1                       =   up-to-date with index||
||ruby26-gems-3.0.6                  =   up-to-date with index||
||ruby26-xapian-1.4.15               =   up-to-date with index||
||rubygem-actionmailer4-4.2.11.1     =   up-to-date with index||
||rubygem-actionpack-xml_parser1-rails4-1.0.2_1 = up-to-date with index||
||rubygem-actionpack4-4.2.11.1_1     =   up-to-date with index||
||rubygem-actionview4-4.2.11.1       =   up-to-date with index||
||rubygem-activejob4-4.2.11.1        =   up-to-date with index||
||rubygem-activemodel4-4.2.11.1      =   up-to-date with index||
||rubygem-activerecord4-4.2.11.1     =   up-to-date with index||
||rubygem-activeresource4-4.1.0      =   up-to-date with index||
||rubygem-activesupport4-4.2.11.1_1  =   up-to-date with index||
||rubygem-addressable-2.7.0          =   up-to-date with index||
||rubygem-arel6-6.0.4                =   up-to-date with index||
||rubygem-binding_of_caller-0.8.0    =   up-to-date with index||
||rubygem-builder-3.2.3              =   up-to-date with index||
||rubygem-bundler-2.0.2,1            =   up-to-date with index||
||rubygem-byebug-11.1.3              =   up-to-date with index||
||rubygem-coderay-1.1.2              =   up-to-date with index||
||rubygem-coffee-rails41-4.1.1       =   up-to-date with index||
||rubygem-coffee-script-2.4.1        =   up-to-date with index||
||rubygem-coffee-script-source-1.12.2 =   up-to-date with index||
||rubygem-concurrent-ruby-1.1.6      =   up-to-date with index||
||rubygem-crass-1.0.4                =   up-to-date with index||
||rubygem-css_parser-1.7.1           =   up-to-date with index||
||rubygem-debug_inspector-0.0.3      =   up-to-date with index||
||rubygem-erubis-2.7.0_1             =   up-to-date with index||
||rubygem-execjs-2.7.0               =   up-to-date with index||
||rubygem-ffi-1.12.2                 =   up-to-date with index||
||rubygem-gemoji-3.0.1               =   up-to-date with index||
||rubygem-globalid-0.4.2             =   up-to-date with index||
||rubygem-htmlentities-4.3.4         =   up-to-date with index||
||rubygem-i18n-1.8.2,2               =   up-to-date with index||
||rubygem-jbuilder-2.9.1             =   up-to-date with index||
||rubygem-jquery-rails-4.3.3         =   up-to-date with index||
||rubygem-mail-2.7.1,2               =   up-to-date with index||
||rubygem-memcache-client-1.8.5      =   up-to-date with index||
||rubygem-mime-types-3.2.2           =   up-to-date with index||
||rubygem-mime-types-data-3.2020.0425 =   up-to-date with index||
||rubygem-mimemagic-0.3.4            =   up-to-date with index||
||rubygem-mini_mime-1.0.2            =   up-to-date with index||
||rubygem-mini_portile2-2.5.0        =   up-to-date with index||
||rubygem-minitest-5.11.3            =   up-to-date with index||
||rubygem-mysql204-0.4.10            =   up-to-date with index||
||rubygem-net-ldap-0.16.1            =   up-to-date with index||
||rubygem-nokogiri-1.10.5_1          <   needs updating (index has 1.10.9)||
||rubygem-nokogiri18-1.8.5           =   up-to-date with index||
||rubygem-passenger-apache-6.0.4_1   =   up-to-date with index||
||rubygem-pkg-config-1.4.1           =   up-to-date with index||
||rubygem-protected_attributes-1.1.4 =   up-to-date with index||
||rubygem-public_suffix-4.0.4        =   up-to-date with index||
||rubygem-rack-2.2.2,3               =   up-to-date with index||
||rubygem-rack-openid-1.4.2_4        =   up-to-date with index||
||rubygem-rack-test-1.1.0            =   up-to-date with index||
||rubygem-rack16-1.6.13              =   up-to-date with index||
||rubygem-rails-deprecated_sanitizer-1.0.3 = up-to-date with index||
||rubygem-rails-dom-testing-2.0.3    =   up-to-date with index||
||rubygem-rails-dom-testing1-1.0.9   =   up-to-date with index||
||rubygem-rails-observers-0.1.5      =   up-to-date with index||
||rubygem-rails4-4.2.11.1_2          =   up-to-date with index||
||rubygem-railties4-4.2.11.1         =   up-to-date with index||
||rubygem-rake-12.3.3                =   up-to-date with index||
||rubygem-rb-fsevent-0.10.3          =   up-to-date with index||
||rubygem-rb-inotify-0.10.1          =   up-to-date with index||
||rubygem-rbpdf-1.20.1               =   up-to-date with index||
||rubygem-rbpdf-font-1.19.1          =   up-to-date with index||
||rubygem-rdoc-6.1.2_1               =   up-to-date with index||
||rubygem-redcarpet-3.4.0            =   up-to-date with index||
||rubygem-request_store-1.4.1        =   up-to-date with index||
||rubygem-rmagick-2.16.0_6           =   up-to-date with index||
||rubygem-ruby-openid-2.9.2          =   up-to-date with index||
||rubygem-sass-3.7.4                 =   up-to-date with index||
||rubygem-sass-listen-4.0.0          =   up-to-date with index||
||rubygem-sass-rails-rails4-6.0.0    =   up-to-date with index||
||rubygem-sassc-2.3.0                =   up-to-date with index||
||rubygem-sassc-rails-rails4-2.1.2_1 =   up-to-date with index||
||rubygem-sdoc-1.0.0                 =   up-to-date with index||
||rubygem-spring-2.1.0               =   up-to-date with index||
||rubygem-sprockets-rails-rails4-3.2.1 =   up-to-date with index||
||rubygem-sprockets3-3.7.2           =   up-to-date with index||
||rubygem-sqlite3-1.4.2              =   up-to-date with index||
||rubygem-thor-0.20.3                =   up-to-date with index||
||rubygem-thread_safe-0.3.6          =   up-to-date with index||
||rubygem-tilt-2.0.9                 =   up-to-date with index||
||rubygem-turbolinks-5.2.1           =   up-to-date with index||
||rubygem-turbolinks-source-5.2.0    =   up-to-date with index||
||rubygem-tzinfo-2.0.2               =   up-to-date with index||
||rubygem-tzinfo1-1.2.7              =   up-to-date with index||
||rubygem-uglifier-4.1.20            =   up-to-date with index||
||rubygem-web-console2-2.3.0_1       =   up-to-date with index|




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?c1832d54-4d25-8c64-4ea6-b1819c36b02c>