pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/misc/ruby-bundler misc/ruby-bundler: update to 2.1.4



details:   https://anonhg.NetBSD.org/pkgsrc/rev/80110ee94bdf
branches:  trunk
changeset: 414000:80110ee94bdf
user:      taca <taca%pkgsrc.org@localhost>
date:      Mon Mar 23 16:34:26 2020 +0000

description:
misc/ruby-bundler: update to 2.1.4

Update ruby-bundler to 2.1.4.
pkgsrc change: Add "USE_LANGAUGES=      # none".


## 2.1.4 (January 5, 2020)

Bugfixes:

  - Fix `net-http-pipeline` no longer being allowed in Gemfiles if already installed in the system due to our vendored version of `net-http-persistent` optionally requiring it 
[#7529](https://github.com/bundler/bundler/pull/7529)
  - Fix inline gems no longer being requirable if no Gemfile is present in the directory hierarchy [#7537](https://github.com/bundler/bundler/pull/7537)

## 2.1.3 (January 2, 2020)

Bugfixes:

  - Fix `rake build` when path has spaces on it [#7514](https://github.com/bundler/bundler/pull/7514)
  - Fix `rake release` git push tasks when the running shell has `git` as an alias of another command (like `hub`) [#7510](https://github.com/bundler/bundler/pull/7510)
  - Fix some circular require warnings [#7520](https://github.com/bundler/bundler/pull/7520)
  - Fix `bundle config set deployment true` recommended alternative to `bundle config --deployment` to behave in the same way as the `--deployment` flag 
[#7519](https://github.com/bundler/bundler/pull/7519)

## 2.1.2 (December 20, 2019)

Bugfixes:

  - Restore an explicit `require "rubygems"` on top `rubygems_integration.rb` to avoid some missing constant errors under some convoluted setups [#7505](https://github.com/bundler/bundler/pull/7505)

## 2.1.1 (December 17, 2019)

Bugfixes:

  - Fix some cases of shelling out to `rubygems` still being silent [#7493](https://github.com/bundler/bundler/pull/7493)
  - Restore compatibility with `rubygems-bundler` so that binstubs work under `RVM` [#7498](https://github.com/bundler/bundler/pull/7498)

## 2.1.0 (December 15, 2019)

Features:

  - Add support for new default gems. In particular,

    * `open3` [#7455](https://github.com/bundler/bundler/pull/7455)
    * `cgi`: [#7456](https://github.com/bundler/bundler/pull/7456)
    * `uri` [#7460](https://github.com/bundler/bundler/pull/7460)

    plus other PRs removing or lazily loading usages of these gems from other places to not interfere with user's choice, such as [#7471](https://github.com/bundler/bundler/pull/7471) or 
[#7473](https://github.com/bundler/bundler/pull/7473)

Bugfixes:

  - Fix `bundle exec rake install` failing [#7474](https://github.com/bundler/bundler/pull/7474)
  - Fix `bundle exec`'ing to rubygems being silent [#7442](https://github.com/bundler/bundler/pull/7442)
  - Restore previous `BUNDLE_GEMFILE` in `bundler/inline` [#7418](https://github.com/bundler/bundler/pull/7418)
  - Fix error when using `gem` DSL's `:glob` option for selecting gemspecs from a specific source [#7419](https://github.com/bundler/bundler/pull/7419)

Changes:

  - `bundle config` no longer warns when using "old interface" (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
  - `bundle update` no longer warns when used without arguments (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)

## 2.1.0.pre.3 (November 12, 2019)

Features:

  - Add caller information to some deprecation messages to make them easier to fix [#7361](https://github.com/bundler/bundler/pull/7361)
  - Reconcile `bundle cache` vs `bundle package` everywhere. Now in docs, CLI help and everywhere else `bundle cache` is the preferred version and `bundle package` remains as an alias 
[#7389](https://github.com/bundler/bundler/pull/7389)
  - Display some basic `bundler` documentation together with ruby's RDoc based documentation [#7394](https://github.com/bundler/bundler/pull/7394)

Bugfixes:

  - Fix typos deprecation message and upgrading docs [#7374](https://github.com/bundler/bundler/pull/7374)
  - Deprecation warnings about `taint` usage on ruby 2.7 [#7385](https://github.com/bundler/bundler/pull/7385)
  - Fix `--help` flag not correctly delegating to `man` when used with command aliases [#7388](https://github.com/bundler/bundler/pull/7388)
  - `bundle add` should cache newly added gems if an application cache exists [#7393](https://github.com/bundler/bundler/pull/7393)
  - Stop using an insecure folder as a "fallback home" when user home is not defined [#7416](https://github.com/bundler/bundler/pull/7416)
  - Fix `bundler/inline` warning about `Bundler.root` redefinition [#7417](https://github.com/bundler/bundler/pull/7417)

## 2.1.0.pre.2 (September 15, 2019)

Bugfixes:

  - Fix `bundle clean` trying to delete non-existent directory ([#7340](https://github.com/bundler/bundler/pull/7340))
  - Fix warnings about keyword argument separation on ruby 2.7 ([#7337](https://github.com/bundler/bundler/pull/7337))

## 2.1.0.pre.1 (August 28, 2019)

One of the biggest changes in bundler 2.1.0 is that deprecations for upcoming
breaking changes in bundler 3 will be turned on by default. We do this to grab
feedback and communicate early to our users the kind of changes we're intending
to ship with bundler 3. See
[#6965](https://github.com/bundler/bundler/pull/6965).

Another important improvement is a better coexistence between bundler
installations and the default copy of bundler that comes with ruby installed as
a default gem. Since bundler is shipped as a default gem with ruby, a number of
users have been affected by issues where bundler ends up failing due to version
mismatches, because at some point of the execution, bundler switches to run the
default copy instead of the expected version. A number of PRs have been focused
on minimizing (hopefully eliminating) this, such as
[#7100](https://github.com/bundler/bundler/pull/7100),
[#7137](https://github.com/bundler/bundler/pull/7137),
[#6996](https://github.com/bundler/bundler/pull/6996),
[#7056](https://github.com/bundler/bundler/pull/7056),
[#7062](https://github.com/bundler/bundler/pull/7062),
[#7193](https://github.com/bundler/bundler/pull/7193),
[#7216](https://github.com/bundler/bundler/pull/7216),
[#7274](https://github.com/bundler/bundler/pull/7274)

Deprecations:

  * See the [the upgrading document](UPGRADING.md) for a detailed explanation of
    the deprecations that are getting enabled in bundler 2.1, and the future
    breaking changes in bundler 3.

Features:

  - Reimplement `config` command using subcommands ([#5981](https://github.com/bundler/bundler/pull/5981))
  - Add `bundle plugin list` command ([#6120](https://github.com/bundler/bundler/pull/6120))
  - Introduce a `bundle lock --gemfile` flag ([#6748](https://github.com/bundler/bundler/pull/6748))
  - Add local git repository source option (`--local_git`) to plugin installation ([#6749](https://github.com/bundler/bundler/pull/6749))
  - Add `quiet` flag to inline bundler ([#6828](https://github.com/bundler/bundler/pull/6828))
  - Introduce a `prefer_patch` configuration that makes `bundle update` behave like `bundle update --patch` ([#6931](https://github.com/bundler/bundler/pull/6931))
  - Introduce `Bundler.original_system` and `Bundler.original_exec` to shell out or exec to external programs using the original environment before bundler was loaded 
([#7052](https://github.com/bundler/bundler/pull/7052))
  - Add feature parity to `bundle info GEM` with respect to the old deprecated command `bundle show GEM` [#7026](https://github.com/bundler/bundler/pull/7026)
  - Introduce `bundle list` to list groups of gems in your Gemfile. This command was actually documented, but was working as an alias to `bundle show` so this could also be considered a bug fix :) 
[#7072](https://github.com/bundler/bundler/pull/7072)
  - Introduce `bundle outdated --filter-strict` as an alias to `bundle outdated --strict` [#6030](https://github.com/bundler/bundler/pull/6030)
  - Add `:git` and `:branch` options to `bundle add` ([#7127](https://github.com/bundler/bundler/pull/7127))
  - Add `:ruby_26` as a valid value to the `:platform(s)` dsl ([#7155](https://github.com/bundler/bundler/pull/7155))
  - Let the `bundle cache` command include all features currently provided by `bundle package` ([#7249](https://github.com/bundler/bundler/pull/7249))
  - Several improvements on new gem templates ([#6924](https://github.com/bundler/bundler/pull/6924), [#6968](https://github.com/bundler/bundler/pull/6968), 
[#7209](https://github.com/bundler/bundler/pull/7209), [#7222](https://github.com/bundler/bundler/pull/7222), [#7238](https://github.com/bundler/bundler/pull/7238))
  - Add `--[no-]git` option to `bundle gem` to generate non source control gems. Useful for monorepos, for example ([#7263](https://github.com/bundler/bundler/pull/7263))

Bugfixes:

  - Raise when the same gem is available in multiple sources, and show a suggestion to solve it ([#5985](https://github.com/bundler/bundler/pull/5985))
  - Validate that bundler has permissions to write to the tmp directory, and raise with a meaningful error otherwise ([#5954](https://github.com/bundler/bundler/pull/5954))
  - Remove downloaded `.gem` file from the cache if it's corrupted ([#6010](https://github.com/bundler/bundler/pull/6010))
  - Fix generated README in new gems to explicitly suggest running `bundle install`, so that the outcome is independent from the major version of bundler being run 
([#6068](https://github.com/bundler/bundler/pull/6068))
  - Fix `bundle outdated --group NAME` when the group is listed second in the Gemfile ([#6116](https://github.com/bundler/bundler/pull/6116))
  - Improve conflict resolution messages by not calling "ruby" a gem when conflict happens in the `required_ruby_version`, and by filtering out requirements that didn't contribute to the conflict 
([#6647](https://github.com/bundler/bundler/pull/6647))
  - Avoid fetching and rebuilding git gems whenever any gem is changed in the Gemfile ([#6711](https://github.com/bundler/bundler/pull/6711))
  - Include the exact bundler version in the lock file in the suggested command when bundler warns about version mismatches of itself [#6971](https://github.com/bundler/bundler/pull/6971)
  - Fix plugins being installed every time a command is run #[#6978](https://github.com/bundler/bundler/pull/6978)
  - Fallback to sequentially fetching specs on 429s [#6728](https://github.com/bundler/bundler/pull/6728)
  - Make `bundle clean` also clean native extensions for gems with a git source [#7058](https://github.com/bundler/bundler/pull/7058)
  - Fix `bundle info bundler` to show the correct path to the bundler gem [#7026](https://github.com/bundler/bundler/pull/7026)
  - Fix `bundle config build.<gem>` not sending multiple parameters to `extconf.rb` correctly [#7023](https://github.com/bundler/bundler/pull/7023)
  - Fix bad error message on Gemfile errors under ruby 2.7 (still unreleased, but it's a bugfix for beta testers after all) [#7038](https://github.com/bundler/bundler/pull/7038)
  - Warn about situations where multiple gems provide the same executable ([#7075](https://github.com/bundler/bundler/pull/7075))
  - Ignore `frozen` setting in inline mode ([#7125](https://github.com/bundler/bundler/pull/7125))
  - Fix incorrect "bundler attempted to update GEM but version stayed the same" message when updating git sourced gems ([#6325](https://github.com/bundler/bundler/pull/6325))
  - Don't check for existence of a writable home directory if `BUNDLE_USER_HOME` is set ([#6885](https://github.com/bundler/bundler/pull/6885))
  - Fix error message when server would respond to a bad username/password requiest with a 401 ([#6928](https://github.com/bundler/bundler/pull/6928))
  - Fix `bundle outdated` pluralization when multiple groups are requested ([#7063](https://github.com/bundler/bundler/pull/7063))
  - Fix `bundle install` not updating conservatively when gemspec is changed ([#7143](https://github.com/bundler/bundler/pull/7143))
  - Fix `bundle exec` not respecting custom process titles inside scripts ([#7140](https://github.com/bundler/bundler/pull/7140))
  - Fix `bundle update` message about exclude groups saying "installed" instead of "updated" ([#7150](https://github.com/bundler/bundler/pull/7150))
  - Fix `bundle licenses` not showing correct information about bundler itself ([#7147](https://github.com/bundler/bundler/pull/7147))
  - Fix installation path not including ruby scope when `BUNDLE_PATH` was set ([#7163](https://github.com/bundler/bundler/pull/7163))
  - Fix `bundle clean` incorrectly removing git depedencies present in the Gemfile when rubygems 3.0+ was used and path involved a symlink ([#7211](https://github.com/bundler/bundler/pull/7211))
  - Fix platform specific gems always being re-resolved when bundler was not running under that platform ([#7212](https://github.com/bundler/bundler/pull/7212))
  - Fix `bundle package --all-platforms` causing `bundle install` to ignore `--with` and `--without` ([#6113](https://github.com/bundler/bundler/pull/6113))
  - Fix `MissingRevision` git errors to include the specific `git` command that failed under the hood ([#7225](https://github.com/bundler/bundler/pull/7225))
  - Fix using gemspec & `force_ruby_platform` on Windows ([#6809](https://github.com/bundler/bundler/pull/6809))
  - Make bundler's binstub checks on bundler version consistent with rubygems `BundlerVersionFinder` ([#7259](https://github.com/bundler/bundler/pull/7259))
  - Fix `bundle install` and `bundle update` generating different lockfiles when `path:` gems with relative paths starting with "./" were used ([#7264](https://github.com/bundler/bundler/pull/7264))
  - Give a proper error when user tries to `bundle open` a default gem ([#7288](https://github.com/bundler/bundler/pull/7288))
  - Fix `bundle doctor` command ([#7309](https://github.com/bundler/bundler/pull/7309))
  - Fix bundler giving an unclear recommendation when duplicated gems are found in the Gemfile ([#7302](https://github.com/bundler/bundler/pull/7302))

Documentation:

  - Fix typo on a file extension in `bundle.ronn` [#7146](https://github.com/bundler/bundler/pull/7146)
  - Fix incorrect default value for `cache_path` configuration ([#7229](https://github.com/bundler/bundler/pull/7229))
  - Binstubs documentation has been improved ([#5889](https://github.com/bundler/bundler/pull/5889))
  - Fix incorrect sections when explaining `:git`, `:branch`, and `:ref` options ([#7265](https://github.com/bundler/bundler/pull/7265))
  - Fix mentions to remembered options in docs to explain the current state ([#7242](https://github.com/bundler/bundler/pull/7242))

Internally, there's also been a bunch of improvements in our development
environment, test suite, policies, contributing docs, and a bunch of cleanups of
old compatibility code.

diffstat:

 misc/ruby-bundler/Makefile |   5 +++--
 misc/ruby-bundler/PLIST    |  44 ++++++++++++++++++++++++++------------------
 misc/ruby-bundler/distinfo |  10 +++++-----
 3 files changed, 34 insertions(+), 25 deletions(-)

diffs (175 lines):

diff -r d5358bd1cc7c -r 80110ee94bdf misc/ruby-bundler/Makefile
--- a/misc/ruby-bundler/Makefile        Mon Mar 23 16:33:49 2020 +0000
+++ b/misc/ruby-bundler/Makefile        Mon Mar 23 16:34:26 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.35 2019/09/18 14:30:43 taca Exp $
+# $NetBSD: Makefile,v 1.36 2020/03/23 16:34:26 taca Exp $
 
-DISTNAME=      bundler-2.0.2
+DISTNAME=      bundler-2.1.4
 CATEGORIES=    misc
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -10,6 +10,7 @@
 
 RUBYGEM_OPTIONS+=      --format-executable
 COMMANDS=              bundle bundler
+USE_LANGUAGES=         # none
 
 post-install:
        cd ${DESTDIR}${PREFIX}/bin && \
diff -r d5358bd1cc7c -r 80110ee94bdf misc/ruby-bundler/PLIST
--- a/misc/ruby-bundler/PLIST   Mon Mar 23 16:33:49 2020 +0000
+++ b/misc/ruby-bundler/PLIST   Mon Mar 23 16:34:26 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.26 2019/09/18 14:30:43 taca Exp $
+@comment $NetBSD: PLIST,v 1.27 2020/03/23 16:34:26 taca Exp $
 bin/bundle2-${RUBY_SUFFIX}
 bin/bundler2-${RUBY_SUFFIX}
 ${GEM_HOME}/cache/${GEM_NAME}.gem
@@ -7,7 +7,6 @@
 ${GEM_LIBDIR}/README.md
 ${GEM_LIBDIR}/bundler.gemspec
 ${GEM_LIBDIR}/exe/bundle
-${GEM_LIBDIR}/exe/bundle_ruby
 ${GEM_LIBDIR}/exe/bundler
 ${GEM_LIBDIR}/lib/bundler.rb
 ${GEM_LIBDIR}/lib/bundler/build_metadata.rb
@@ -33,7 +32,6 @@
 ${GEM_LIBDIR}/lib/bundler/cli/lock.rb
 ${GEM_LIBDIR}/lib/bundler/cli/open.rb
 ${GEM_LIBDIR}/lib/bundler/cli/outdated.rb
-${GEM_LIBDIR}/lib/bundler/cli/package.rb
 ${GEM_LIBDIR}/lib/bundler/cli/platform.rb
 ${GEM_LIBDIR}/lib/bundler/cli/plugin.rb
 ${GEM_LIBDIR}/lib/bundler/cli/pristine.rb
@@ -44,7 +42,6 @@
 ${GEM_LIBDIR}/lib/bundler/compact_index_client.rb
 ${GEM_LIBDIR}/lib/bundler/compact_index_client/cache.rb
 ${GEM_LIBDIR}/lib/bundler/compact_index_client/updater.rb
-${GEM_LIBDIR}/lib/bundler/compatibility_guard.rb
 ${GEM_LIBDIR}/lib/bundler/constants.rb
 ${GEM_LIBDIR}/lib/bundler/current_ruby.rb
 ${GEM_LIBDIR}/lib/bundler/definition.rb
@@ -67,7 +64,6 @@
 ${GEM_LIBDIR}/lib/bundler/friendly_errors.rb
 ${GEM_LIBDIR}/lib/bundler/gem_helper.rb
 ${GEM_LIBDIR}/lib/bundler/gem_helpers.rb
-${GEM_LIBDIR}/lib/bundler/gem_remote_fetcher.rb
 ${GEM_LIBDIR}/lib/bundler/gem_tasks.rb
 ${GEM_LIBDIR}/lib/bundler/gem_version_promoter.rb
 ${GEM_LIBDIR}/lib/bundler/gemdeps.rb
@@ -122,11 +118,6 @@
 ${GEM_LIBDIR}/lib/bundler/source/rubygems/remote.rb
 ${GEM_LIBDIR}/lib/bundler/source_list.rb
 ${GEM_LIBDIR}/lib/bundler/spec_set.rb
-${GEM_LIBDIR}/lib/bundler/ssl_certs/.document
-${GEM_LIBDIR}/lib/bundler/ssl_certs/certificate_manager.rb
-${GEM_LIBDIR}/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem
-${GEM_LIBDIR}/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem
-${GEM_LIBDIR}/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem
 ${GEM_LIBDIR}/lib/bundler/stub_specification.rb
 ${GEM_LIBDIR}/lib/bundler/templates/.document
 ${GEM_LIBDIR}/lib/bundler/templates/Executable
@@ -160,8 +151,11 @@
 ${GEM_LIBDIR}/lib/bundler/ui/shell.rb
 ${GEM_LIBDIR}/lib/bundler/ui/silent.rb
 ${GEM_LIBDIR}/lib/bundler/uri_credentials_filter.rb
+${GEM_LIBDIR}/lib/bundler/vendor/connection_pool/lib/connection_pool.rb
+${GEM_LIBDIR}/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb
+${GEM_LIBDIR}/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb
+${GEM_LIBDIR}/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/fileutils/lib/fileutils.rb
-${GEM_LIBDIR}/lib/bundler/vendor/fileutils/lib/fileutils/version.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/molinillo/lib/molinillo.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb
@@ -183,9 +177,10 @@
 ${GEM_LIBDIR}/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/molinillo/lib/molinillo/state.rb
-${GEM_LIBDIR}/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb
-${GEM_LIBDIR}/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb
+${GEM_LIBDIR}/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb
+${GEM_LIBDIR}/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb
+${GEM_LIBDIR}/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/actions.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb
@@ -197,14 +192,13 @@
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/base.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/command.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
-${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb
-${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/error.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/group.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/invocation.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/line_editor.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb
+${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/nested_context.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/parser.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/parser/argument.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb
@@ -218,10 +212,24 @@
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/shell/html.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/util.rb
 ${GEM_LIBDIR}/lib/bundler/vendor/thor/lib/thor/version.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/common.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/file.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/ftp.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/generic.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/http.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/https.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/ldap.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/ldaps.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/mailto.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb
+${GEM_LIBDIR}/lib/bundler/vendor/uri/lib/uri/version.rb
 ${GEM_LIBDIR}/lib/bundler/vendored_fileutils.rb
 ${GEM_LIBDIR}/lib/bundler/vendored_molinillo.rb
 ${GEM_LIBDIR}/lib/bundler/vendored_persistent.rb
 ${GEM_LIBDIR}/lib/bundler/vendored_thor.rb
+${GEM_LIBDIR}/lib/bundler/vendored_uri.rb
 ${GEM_LIBDIR}/lib/bundler/version.rb
 ${GEM_LIBDIR}/lib/bundler/version_ranges.rb
 ${GEM_LIBDIR}/lib/bundler/vlad.rb
@@ -233,6 +241,9 @@
 ${GEM_LIBDIR}/man/bundle-binstubs.1
 ${GEM_LIBDIR}/man/bundle-binstubs.1.txt
 ${GEM_LIBDIR}/man/bundle-binstubs.ronn
+${GEM_LIBDIR}/man/bundle-cache.1
+${GEM_LIBDIR}/man/bundle-cache.1.txt
+${GEM_LIBDIR}/man/bundle-cache.ronn
 ${GEM_LIBDIR}/man/bundle-check.1
 ${GEM_LIBDIR}/man/bundle-check.1.txt
 ${GEM_LIBDIR}/man/bundle-check.ronn
@@ -275,9 +286,6 @@
 ${GEM_LIBDIR}/man/bundle-outdated.1
 ${GEM_LIBDIR}/man/bundle-outdated.1.txt
 ${GEM_LIBDIR}/man/bundle-outdated.ronn
-${GEM_LIBDIR}/man/bundle-package.1
-${GEM_LIBDIR}/man/bundle-package.1.txt
-${GEM_LIBDIR}/man/bundle-package.ronn
 ${GEM_LIBDIR}/man/bundle-platform.1
 ${GEM_LIBDIR}/man/bundle-platform.1.txt
 ${GEM_LIBDIR}/man/bundle-platform.ronn
diff -r d5358bd1cc7c -r 80110ee94bdf misc/ruby-bundler/distinfo
--- a/misc/ruby-bundler/distinfo        Mon Mar 23 16:33:49 2020 +0000
+++ b/misc/ruby-bundler/distinfo        Mon Mar 23 16:34:26 2020 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.32 2019/09/18 14:30:43 taca Exp $
+$NetBSD: distinfo,v 1.33 2020/03/23 16:34:26 taca Exp $
 
-SHA1 (bundler-2.0.2.gem) = fe373c106bdb98fa9ef93e2a15e59c3fc081abbb
-RMD160 (bundler-2.0.2.gem) = cb8ce17de3862658560094f6f4df0b2fff765faf
-SHA512 (bundler-2.0.2.gem) = f41fe9e385fbf42859f3514b71abdaa1fd787f4ff4b1169b8ee40ea7778c114657c60ca3d6d6d72fbe972af0558f0cccd9c9f28cad7fc712ada27f037dce8a6a
-Size (bundler-2.0.2.gem) = 366592 bytes
+SHA1 (bundler-2.1.4.gem) = d78f5cd87af76a3c5129c33028a0ea3716fe8acd
+RMD160 (bundler-2.1.4.gem) = ae3d6345db91bcb1a7e6f5dd5f941eb2a737c0d5
+SHA512 (bundler-2.1.4.gem) = 6c870061a78e17d97a9219433c7ef8fbf1112de17d0e0f3d8b6db1a518318528e3803184278412aabe65008e93f451ffa59465062856918ef488f9438399eff6
+Size (bundler-2.1.4.gem) = 396800 bytes



Home | Main Index | Thread Index | Old Index