pkgsrc-Changes archive

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

CVS commit: pkgsrc/misc/ruby-bundler



Module Name:    pkgsrc
Committed By:   taca
Date:           Mon Jun  5 14:32:24 UTC 2017

Modified Files:
        pkgsrc/misc/ruby-bundler: Makefile PLIST distinfo

Log Message:
Update ruby-bundler to 1.15.1.

## 1.15.1 (2017-06-02)

Bugfixes:

  - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile (#5693, @segiddins)
  - `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale)
  - `bundle install --force` works when the gemfile contains git gems (#5678, @segiddins)
  - `bundle env` will print well-formed markdown when there are no settings (#5677, @segiddins)

## 1.15.0 (2017-05-19)

This space intentionally left blank.

## 1.15.0.pre.4 (2017-05-10)

Bugfixes:

  - avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
  - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it (#5592, @jules2689)

## 1.15.0.pre.3 (2017-04-30)

Bugfixes:

  - avoid redundant blank lines in the readme generated by `bundle gem` (@koic)
  - ensure that `open-uri` is not loaded after `bundle exec` (@segiddins)
  - print a helpful error message when an activated default gem conflicts with
    a gem in the gemfile (@segiddins)
  - only shorten `ref` option for git gems when it is a SHA (#5620, @segiddins)

## 1.15.0.pre.2 (2017-04-23)

Bugfixes:

  - ensure pre-existing fit caches are updated from remote sources (#5423, @alextaylor000)
  - avoid duplicating specs in the lockfile after updating with the gem uninstalled (#5599, @segiddins)
  - ensure git gems have their extensions available at runtime (#5594, @jules2689, @segiddins)

## 1.15.0.pre.1 (2017-04-16)

Features:

  - print a notification when a newer version of bundler is available (#4683, @segiddins)
  - add man pages for all bundler commands (#4988, @feministy)
  - add the `bundle info` command (@fredrb, @colby-swandale)
  - all files created with `bundle gem` comply with the bundler style guide (@zachahn)
  - if installing a gem fails, print out the reason the gem needed to be installed (#5078, @segiddins)
  - allow setting `gem.push_key` to set the key used when running `rake release` (@DTrierweiler)
  - print gem versions that are regressing during `bundle update` in yellow (#5506, @brchristian)
  - avoid printing extraneous dependencies when the resolver encounters a conflict (@segiddins)
  - add the `bundle issue` command that prints instructions for reporting issues (#4871, @jonathanpike)
  - add `--source` and `--group` options to the `bundle inject` command (#5452, @Shekharrajak)
  - add the `bundle add` command to add a gem to the gemfile (@denniss)
  - add the `bundle pristine` command to re-install gems from cached `.gem` files (#4509, @denniss)
  - add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale)

Performance:

  - speed up gemfile initialization by storing locked dependencies as a hash (@jules2689)
  - speed up gemfile initialization by making locked dependency comparison lazy, avoiding object allocation (@jules2689)
  - only validate git gems when they are downloaded, instead of every time `Bundler.setup` is run (@segiddins)
  - avoid regenerating the lockfile when nothing has changed (@segiddins)
  - avoid diffing large arrays when no sources in the gemfile have changed (@segiddins)
  - avoid evaluating full gemspecs when running with RubyGems 2.5+ (@segiddins)

Bugfixes:

  - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems (#5031, #5095, @segiddins)
  - print out a stack trace after an interrupt when running in debug mode (@segiddins)
  - print out when bundler starts fetching a gem from a remote server (@segiddins)
  - fix `bundle gem` failing when `git` is unavailable (#5458, @Shekharrajak, @colby-swandale)
  - suggest the appropriate command to unfreeze a bundle (#5009, @denniss)
  - ensure nested calls to `bundle exec` resolve default gems correctly (#5500, @segiddins)
  - ensure that a plugin failing to install doesn't uninstall other plugins (@kerrizor, @roseaboveit)
  - ensure `socket` is required before being referenced (#5533, @rafaelfranca)
  - allow running `bundle outdated` when gems aren't installed locally (#5553, @segiddins)
  - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle (#5487, @segiddins)
  - print an error message when a non-git gem is given a `branch` option (#5530, @colby-swandale)
  - allow interrupts to exit the process after gems have been installed (@segiddins)
  - print the underlying error when downloading gem metadata fails (#5579, @segiddins)
  - avoid deadlocking when installing with a lockfile that is missing dependencies (#5378, #5480, #5519, #5526, #5529, #5549, #5572, @segiddins)


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 pkgsrc/misc/ruby-bundler/Makefile
cvs rdiff -u -r1.20 -r1.21 pkgsrc/misc/ruby-bundler/PLIST
cvs rdiff -u -r1.25 -r1.26 pkgsrc/misc/ruby-bundler/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/misc/ruby-bundler/Makefile
diff -u pkgsrc/misc/ruby-bundler/Makefile:1.24 pkgsrc/misc/ruby-bundler/Makefile:1.25
--- pkgsrc/misc/ruby-bundler/Makefile:1.24      Sat Apr 22 16:37:59 2017
+++ pkgsrc/misc/ruby-bundler/Makefile   Mon Jun  5 14:32:24 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.24 2017/04/22 16:37:59 taca Exp $
+# $NetBSD: Makefile,v 1.25 2017/06/05 14:32:24 taca Exp $
 
-DISTNAME=      bundler-1.14.6
+DISTNAME=      bundler-1.15.1
 CATEGORIES=    misc
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/misc/ruby-bundler/PLIST
diff -u pkgsrc/misc/ruby-bundler/PLIST:1.20 pkgsrc/misc/ruby-bundler/PLIST:1.21
--- pkgsrc/misc/ruby-bundler/PLIST:1.20 Sat Apr 22 16:37:59 2017
+++ pkgsrc/misc/ruby-bundler/PLIST      Mon Jun  5 14:32:24 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.20 2017/04/22 16:37:59 taca Exp $
+@comment $NetBSD: PLIST,v 1.21 2017/06/05 14:32:24 taca Exp $
 bin/bundle${RUBY_SUFFIX}
 bin/bundler${RUBY_SUFFIX}
 ${GEM_HOME}/cache/${GEM_NAME}.gem
@@ -11,8 +11,6 @@ ${GEM_LIBDIR}/.travis.yml
 ${GEM_LIBDIR}/CHANGELOG.md
 ${GEM_LIBDIR}/CODE_OF_CONDUCT.md
 ${GEM_LIBDIR}/CONTRIBUTING.md
-${GEM_LIBDIR}/DEVELOPMENT.md
-${GEM_LIBDIR}/ISSUES.md
 ${GEM_LIBDIR}/LICENSE.md
 ${GEM_LIBDIR}/README.md
 ${GEM_LIBDIR}/Rakefile
@@ -21,12 +19,29 @@ ${GEM_LIBDIR}/bin/rspec
 ${GEM_LIBDIR}/bin/rubocop
 ${GEM_LIBDIR}/bin/with_rubygems
 ${GEM_LIBDIR}/bundler.gemspec
+${GEM_LIBDIR}/doc/README.md
+${GEM_LIBDIR}/doc/TROUBLESHOOTING.md
+${GEM_LIBDIR}/doc/contributing/BUG_TRIAGE.md
+${GEM_LIBDIR}/doc/contributing/COMMUNITY.md
+${GEM_LIBDIR}/doc/contributing/GETTING_HELP.md
+${GEM_LIBDIR}/doc/contributing/HOW_YOU_CAN_HELP.md
+${GEM_LIBDIR}/doc/contributing/ISSUES.md
+${GEM_LIBDIR}/doc/contributing/README.md
+${GEM_LIBDIR}/doc/development/NEW_FEATURES.md
+${GEM_LIBDIR}/doc/development/PULL_REQUESTS.md
+${GEM_LIBDIR}/doc/development/README.md
+${GEM_LIBDIR}/doc/development/RELEASING.md
+${GEM_LIBDIR}/doc/development/SETUP.md
+${GEM_LIBDIR}/doc/documentation/README.md
+${GEM_LIBDIR}/doc/documentation/VISION.md
+${GEM_LIBDIR}/doc/documentation/WRITING.md
 ${GEM_LIBDIR}/exe/bundle
 ${GEM_LIBDIR}/exe/bundle_ruby
 ${GEM_LIBDIR}/exe/bundler
 ${GEM_LIBDIR}/lib/bundler.rb
 ${GEM_LIBDIR}/lib/bundler/capistrano.rb
 ${GEM_LIBDIR}/lib/bundler/cli.rb
+${GEM_LIBDIR}/lib/bundler/cli/add.rb
 ${GEM_LIBDIR}/lib/bundler/cli/binstubs.rb
 ${GEM_LIBDIR}/lib/bundler/cli/cache.rb
 ${GEM_LIBDIR}/lib/bundler/cli/check.rb
@@ -37,15 +52,18 @@ ${GEM_LIBDIR}/lib/bundler/cli/console.rb
 ${GEM_LIBDIR}/lib/bundler/cli/doctor.rb
 ${GEM_LIBDIR}/lib/bundler/cli/exec.rb
 ${GEM_LIBDIR}/lib/bundler/cli/gem.rb
+${GEM_LIBDIR}/lib/bundler/cli/info.rb
 ${GEM_LIBDIR}/lib/bundler/cli/init.rb
 ${GEM_LIBDIR}/lib/bundler/cli/inject.rb
 ${GEM_LIBDIR}/lib/bundler/cli/install.rb
+${GEM_LIBDIR}/lib/bundler/cli/issue.rb
 ${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
 ${GEM_LIBDIR}/lib/bundler/cli/show.rb
 ${GEM_LIBDIR}/lib/bundler/cli/update.rb
 ${GEM_LIBDIR}/lib/bundler/cli/viz.rb
@@ -224,12 +242,22 @@ ${GEM_LIBDIR}/lib/bundler/vendored_molin
 ${GEM_LIBDIR}/lib/bundler/vendored_persistent.rb
 ${GEM_LIBDIR}/lib/bundler/vendored_thor.rb
 ${GEM_LIBDIR}/lib/bundler/version.rb
+${GEM_LIBDIR}/lib/bundler/version_ranges.rb
 ${GEM_LIBDIR}/lib/bundler/vlad.rb
 ${GEM_LIBDIR}/lib/bundler/worker.rb
 ${GEM_LIBDIR}/lib/bundler/yaml_serializer.rb
+${GEM_LIBDIR}/man/bundle-add.1
+${GEM_LIBDIR}/man/bundle-add.1.txt
+${GEM_LIBDIR}/man/bundle-add.ronn
 ${GEM_LIBDIR}/man/bundle-binstubs.1
 ${GEM_LIBDIR}/man/bundle-binstubs.1.txt
 ${GEM_LIBDIR}/man/bundle-binstubs.ronn
+${GEM_LIBDIR}/man/bundle-check.1
+${GEM_LIBDIR}/man/bundle-check.1.txt
+${GEM_LIBDIR}/man/bundle-check.ronn
+${GEM_LIBDIR}/man/bundle-clean.1
+${GEM_LIBDIR}/man/bundle-clean.1.txt
+${GEM_LIBDIR}/man/bundle-clean.ronn
 ${GEM_LIBDIR}/man/bundle-config.1
 ${GEM_LIBDIR}/man/bundle-config.1.txt
 ${GEM_LIBDIR}/man/bundle-config.ronn
@@ -239,12 +267,24 @@ ${GEM_LIBDIR}/man/bundle-exec.ronn
 ${GEM_LIBDIR}/man/bundle-gem.1
 ${GEM_LIBDIR}/man/bundle-gem.1.txt
 ${GEM_LIBDIR}/man/bundle-gem.ronn
+${GEM_LIBDIR}/man/bundle-info.1
+${GEM_LIBDIR}/man/bundle-info.1.txt
+${GEM_LIBDIR}/man/bundle-info.ronn
+${GEM_LIBDIR}/man/bundle-init.1
+${GEM_LIBDIR}/man/bundle-init.1.txt
+${GEM_LIBDIR}/man/bundle-init.ronn
+${GEM_LIBDIR}/man/bundle-inject.1
+${GEM_LIBDIR}/man/bundle-inject.1.txt
+${GEM_LIBDIR}/man/bundle-inject.ronn
 ${GEM_LIBDIR}/man/bundle-install.1
 ${GEM_LIBDIR}/man/bundle-install.1.txt
 ${GEM_LIBDIR}/man/bundle-install.ronn
 ${GEM_LIBDIR}/man/bundle-lock.1
 ${GEM_LIBDIR}/man/bundle-lock.1.txt
 ${GEM_LIBDIR}/man/bundle-lock.ronn
+${GEM_LIBDIR}/man/bundle-open.1
+${GEM_LIBDIR}/man/bundle-open.1.txt
+${GEM_LIBDIR}/man/bundle-open.ronn
 ${GEM_LIBDIR}/man/bundle-outdated.1
 ${GEM_LIBDIR}/man/bundle-outdated.1.txt
 ${GEM_LIBDIR}/man/bundle-outdated.ronn
@@ -254,9 +294,18 @@ ${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
+${GEM_LIBDIR}/man/bundle-pristine.1
+${GEM_LIBDIR}/man/bundle-pristine.1.txt
+${GEM_LIBDIR}/man/bundle-pristine.ronn
+${GEM_LIBDIR}/man/bundle-show.1
+${GEM_LIBDIR}/man/bundle-show.1.txt
+${GEM_LIBDIR}/man/bundle-show.ronn
 ${GEM_LIBDIR}/man/bundle-update.1
 ${GEM_LIBDIR}/man/bundle-update.1.txt
 ${GEM_LIBDIR}/man/bundle-update.ronn
+${GEM_LIBDIR}/man/bundle-viz.1
+${GEM_LIBDIR}/man/bundle-viz.1.txt
+${GEM_LIBDIR}/man/bundle-viz.ronn
 ${GEM_LIBDIR}/man/bundle.1
 ${GEM_LIBDIR}/man/bundle.1.txt
 ${GEM_LIBDIR}/man/bundle.ronn
@@ -264,4 +313,5 @@ ${GEM_LIBDIR}/man/gemfile.5
 ${GEM_LIBDIR}/man/gemfile.5.ronn
 ${GEM_LIBDIR}/man/gemfile.5.txt
 ${GEM_LIBDIR}/man/index.txt
+${GEM_LIBDIR}/task/release.rake
 ${GEM_HOME}/specifications/${GEM_NAME}.gemspec

Index: pkgsrc/misc/ruby-bundler/distinfo
diff -u pkgsrc/misc/ruby-bundler/distinfo:1.25 pkgsrc/misc/ruby-bundler/distinfo:1.26
--- pkgsrc/misc/ruby-bundler/distinfo:1.25      Sat Apr 22 16:37:59 2017
+++ pkgsrc/misc/ruby-bundler/distinfo   Mon Jun  5 14:32:24 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.25 2017/04/22 16:37:59 taca Exp $
+$NetBSD: distinfo,v 1.26 2017/06/05 14:32:24 taca Exp $
 
-SHA1 (bundler-1.14.6.gem) = 3e84d3a4dd43bfaec988b029f45c0d7ffa205ab8
-RMD160 (bundler-1.14.6.gem) = 700b440c93a048bdb9a76da3373b582a3bdf5b84
-SHA512 (bundler-1.14.6.gem) = cf333e266db0690582252a9248f3579a5be9e753c92c0b92e25d4542ddbbc15bfb7e1571fe9886264c0eba22c4510d118192e8f5f50f647b27eea83d68585238
-Size (bundler-1.14.6.gem) = 319488 bytes
+SHA1 (bundler-1.15.1.gem) = d3e95482b0ba4370cbd27cc455f9b364acfe81ff
+RMD160 (bundler-1.15.1.gem) = 295338413bf15e8464a1b025ed9d48b3c1a77a46
+SHA512 (bundler-1.15.1.gem) = c4d2b7f9483ce6fef090f4114d740bd95e92cd619625477d9efed4e56decddfff4f0490368bc509f4f1a1b888476ed4ef8ff99f2bf49d73a8fc12cbd259cfda9
+Size (bundler-1.15.1.gem) = 338432 bytes



Home | Main Index | Thread Index | Old Index