[DRE-commits] [bundler] branch master updated (c05999d -> dede244)

Samuel Henrique samueloph-guest at moszumanska.debian.org
Fri Dec 29 01:36:15 UTC 2017


This is an automated email from the git hooks/post-receive script.

samueloph-guest pushed a change to branch master
in repository bundler.

      from  c05999d   Remove '/spec' filter that does not work anyway
      adds  bb97696   New upstream version 1.16.1
       new  a7f4465   Update upstream source from tag 'upstream/1.16.1'
       new  14adae3   Bump changelog
       new  1fd8b71   d/patches:no-git: refresh patch
       new  d7105a2   d/patches:unvendorize: refresh patch
       new  daba661   d/patches:do-not-add-system-path: refresh patch
       new  b907f69   d/install: update travis.yml location
       new  19f7e42   Bump DH to 10
       new  fd62dd4   Bump Standards-Version to 4.1.3
       new  8e626d7   d/control: remove unnecessary testsuite header
       new  5fe4eb2   d/watch: use https
       new  5004384   d/patches: manpage-typo: new patch
       new  f4bcf84   d/patches/dont-check-if-latest: block network check (closes: #882361)
       new  7b83a90   d/lintian-overrides: add template file overrides
       new  dede244   Update changelog

The 14 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .codeclimate.yml                                   |   25 -
 .gitignore                                         |   18 -
 .rspec                                             |    3 -
 .rubocop.yml                                       |  131 --
 .rubocop_todo.yml                                  |  418 -----
 .travis.yml                                        |  122 --
 CHANGELOG.md                                       |  125 ++
 CODE_OF_CONDUCT.md                                 |   42 -
 CONTRIBUTING.md                                    |   17 -
 README.md                                          |   19 +-
 Rakefile                                           |  346 -----
 bin/rake                                           |   19 -
 bin/rspec                                          |   15 -
 bin/rubocop                                        |   17 -
 bin/with_rubygems                                  |   39 -
 bundler.gemspec                                    |   25 +-
 debian/changelog                                   |   21 +
 debian/compat                                      |    2 +-
 debian/control                                     |    5 +-
 debian/install                                     |    2 +-
 debian/patches/do-not-add-system-path-to-RUBYLIB   |   18 +-
 debian/patches/dont-check-if-latest-version        |   70 +
 debian/patches/manpage-typo                        |   16 +
 debian/patches/no-git-in-gemspec                   |   18 +-
 debian/patches/series                              |    2 +
 debian/patches/unvendorize                         |   50 +-
 debian/ruby-bundler.lintian-overrides              |    2 +
 debian/watch                                       |    2 +-
 doc/README.md                                      |   30 -
 doc/TROUBLESHOOTING.md                             |   64 -
 doc/contributing/BUG_TRIAGE.md                     |   36 -
 doc/contributing/COMMUNITY.md                      |   13 -
 doc/contributing/GETTING_HELP.md                   |   11 -
 doc/contributing/HOW_YOU_CAN_HELP.md               |   27 -
 doc/contributing/ISSUES.md                         |   51 -
 doc/contributing/README.md                         |   38 -
 doc/development/NEW_FEATURES.md                    |   10 -
 doc/development/PULL_REQUESTS.md                   |   40 -
 doc/development/README.md                          |   19 -
 doc/development/RELEASING.md                       |    9 -
 doc/development/SETUP.md                           |   29 -
 doc/documentation/README.md                        |   29 -
 doc/documentation/VISION.md                        |   26 -
 doc/documentation/WRITING.md                       |   54 -
 exe/bundle                                         |    7 +-
 exe/bundle_ruby                                    |    7 +-
 lib/bundler.rb                                     |   86 +-
 lib/bundler/build_metadata.rb                      |   38 +
 lib/bundler/capistrano.rb                          |    5 +
 lib/bundler/cli.rb                                 |  244 ++-
 lib/bundler/cli/add.rb                             |    1 -
 lib/bundler/cli/binstubs.rb                        |   16 +-
 lib/bundler/cli/cache.rb                           |    9 +-
 lib/bundler/cli/check.rb                           |    8 +-
 lib/bundler/cli/clean.rb                           |   11 +-
 lib/bundler/cli/common.rb                          |   13 +-
 lib/bundler/cli/config.rb                          |    3 +-
 lib/bundler/cli/console.rb                         |    3 +-
 lib/bundler/cli/doctor.rb                          |    1 +
 lib/bundler/cli/exec.rb                            |    5 +-
 lib/bundler/cli/gem.rb                             |   14 +-
 lib/bundler/cli/info.rb                            |    1 -
 lib/bundler/cli/init.rb                            |   19 +-
 lib/bundler/cli/inject.rb                          |    1 +
 lib/bundler/cli/install.rb                         |  138 +-
 lib/bundler/cli/issue.rb                           |    2 +-
 lib/bundler/cli/list.rb                            |   22 +
 lib/bundler/cli/lock.rb                            |    1 -
 lib/bundler/cli/open.rb                            |    4 +-
 lib/bundler/cli/outdated.rb                        |   21 +-
 lib/bundler/cli/package.rb                         |   15 +-
 lib/bundler/cli/platform.rb                        |    1 +
 lib/bundler/cli/plugin.rb                          |    1 +
 lib/bundler/cli/pristine.rb                        |   22 +-
 lib/bundler/cli/show.rb                            |    1 -
 lib/bundler/cli/update.rb                          |   38 +-
 lib/bundler/cli/viz.rb                             |    4 +
 lib/bundler/compact_index_client.rb                |    1 +
 lib/bundler/compact_index_client/cache.rb          |    3 +-
 lib/bundler/compact_index_client/updater.rb        |   31 +-
 lib/bundler/compatibility_guard.rb                 |   14 +
 lib/bundler/constants.rb                           |    1 +
 lib/bundler/current_ruby.rb                        |    9 +-
 lib/bundler/definition.rb                          |  266 ++--
 lib/bundler/dep_proxy.rb                           |    2 +
 lib/bundler/dependency.rb                          |   13 +-
 lib/bundler/deployment.rb                          |    2 +-
 lib/bundler/deprecate.rb                           |   17 +-
 lib/bundler/dsl.rb                                 |  159 +-
 lib/bundler/endpoint_specification.rb              |    9 +
 lib/bundler/env.rb                                 |  113 +-
 lib/bundler/environment_preserver.rb               |   33 +-
 lib/bundler/errors.rb                              |    1 +
 lib/bundler/feature_flag.rb                        |   43 +-
 lib/bundler/fetcher.rb                             |   23 +-
 lib/bundler/fetcher/base.rb                        |    1 +
 lib/bundler/fetcher/compact_index.rb               |   13 +-
 lib/bundler/fetcher/dependency.rb                  |    3 +-
 lib/bundler/fetcher/downloader.rb                  |    1 +
 lib/bundler/fetcher/index.rb                       |    1 +
 lib/bundler/friendly_errors.rb                     |    5 +-
 lib/bundler/gem_helper.rb                          |   27 +-
 lib/bundler/gem_helpers.rb                         |    1 +
 lib/bundler/gem_remote_fetcher.rb                  |    1 +
 lib/bundler/gem_tasks.rb                           |    1 +
 lib/bundler/gem_version_promoter.rb                |    1 +
 lib/bundler/gemdeps.rb                             |    1 +
 lib/bundler/graph.rb                               |    1 +
 lib/bundler/index.rb                               |   16 +-
 lib/bundler/injector.rb                            |   47 +-
 lib/bundler/inline.rb                              |   20 +-
 lib/bundler/installer.rb                           |  154 +-
 lib/bundler/installer/gem_installer.rb             |    3 +
 lib/bundler/installer/parallel_installer.rb        |  115 +-
 lib/bundler/installer/standalone.rb                |    1 +
 lib/bundler/lazy_specification.rb                  |    3 +-
 lib/bundler/lockfile_generator.rb                  |   95 ++
 lib/bundler/lockfile_parser.rb                     |   14 +-
 lib/bundler/match_platform.rb                      |    1 +
 lib/bundler/mirror.rb                              |    9 +-
 lib/bundler/plugin.rb                              |    1 +
 lib/bundler/plugin/api/source.rb                   |   11 +-
 lib/bundler/plugin/installer.rb                    |   13 +-
 lib/bundler/plugin/source_list.rb                  |   15 +-
 lib/bundler/postit_trampoline.rb                   |   73 -
 lib/bundler/process_lock.rb                        |   24 +
 lib/bundler/psyched_yaml.rb                        |   10 +
 lib/bundler/remote_specification.rb                |   11 +-
 lib/bundler/resolver.rb                            |  350 ++---
 lib/bundler/resolver/spec_group.rb                 |  111 ++
 lib/bundler/retry.rb                               |    1 +
 lib/bundler/ruby_dsl.rb                            |    1 +
 lib/bundler/ruby_version.rb                        |    1 +
 lib/bundler/rubygems_ext.rb                        |    9 +-
 lib/bundler/rubygems_gem_installer.rb              |   25 +-
 lib/bundler/rubygems_integration.rb                |   91 +-
 lib/bundler/runtime.rb                             |    8 +-
 lib/bundler/settings.rb                            |  276 +++-
 lib/bundler/settings/validator.rb                  |   79 +
 lib/bundler/setup.rb                               |   11 +-
 lib/bundler/shared_helpers.rb                      |  123 +-
 lib/bundler/similarity_detector.rb                 |    1 +
 lib/bundler/source.rb                              |   36 +
 lib/bundler/source/gemspec.rb                      |    1 +
 lib/bundler/source/git.rb                          |   40 +-
 lib/bundler/source/git/git_proxy.rb                |   25 +-
 lib/bundler/source/metadata.rb                     |   63 +
 lib/bundler/source/path.rb                         |   18 +-
 lib/bundler/source/path/installer.rb               |    2 +
 lib/bundler/source/rubygems.rb                     |  236 ++-
 lib/bundler/source/rubygems/remote.rb              |    5 +-
 lib/bundler/source_list.rb                         |   90 +-
 lib/bundler/spec_set.rb                            |   13 +-
 lib/bundler/ssl_certs/certificate_manager.rb       |    3 +-
 lib/bundler/stub_specification.rb                  |    1 +
 lib/bundler/{ssl_certs => templates}/.document     |    0
 lib/bundler/templates/Executable                   |   12 +
 lib/bundler/templates/Executable.bundler           |  105 ++
 lib/bundler/templates/Gemfile                      |    3 +
 lib/bundler/templates/gems.rb                      |    8 +
 lib/bundler/templates/newgem/Gemfile.tt            |    2 +
 lib/bundler/templates/newgem/README.md.tt          |    2 +-
 lib/bundler/templates/newgem/gitignore.tt          |    1 -
 lib/bundler/templates/newgem/newgem.gemspec.tt     |    5 +-
 lib/bundler/templates/newgem/rspec.tt              |    1 +
 .../templates/newgem/spec/newgem_spec.rb.tt        |    2 -
 .../newgem/{.travis.yml.tt => travis.yml.tt}       |    0
 lib/bundler/ui.rb                                  |    1 +
 lib/bundler/ui/rg_proxy.rb                         |    1 +
 lib/bundler/ui/shell.rb                            |   19 +-
 lib/bundler/ui/silent.rb                           |    1 +
 lib/bundler/uri_credentials_filter.rb              |    1 +
 lib/bundler/vendor/fileutils/lib/fileutils.rb      | 1638 ++++++++++++++++++++
 .../net-http-persistent/lib/net/http/persistent.rb |    4 +-
 lib/bundler/vendor/postit/lib/postit.rb            |   15 -
 .../vendor/postit/lib/postit/environment.rb        |   44 -
 lib/bundler/vendor/postit/lib/postit/installer.rb  |   28 -
 lib/bundler/vendor/postit/lib/postit/parser.rb     |   21 -
 lib/bundler/vendor/postit/lib/postit/setup.rb      |   12 -
 lib/bundler/vendor/postit/lib/postit/version.rb    |    3 -
 lib/bundler/vendored_fileutils.rb                  |    9 +
 lib/bundler/vendored_molinillo.rb                  |    1 +
 lib/bundler/vendored_persistent.rb                 |   35 +
 lib/bundler/vendored_thor.rb                       |    1 +
 lib/bundler/version.rb                             |    8 +-
 lib/bundler/version_ranges.rb                      |    1 +
 lib/bundler/vlad.rb                                |    5 +
 lib/bundler/worker.rb                              |    1 +
 lib/bundler/yaml_serializer.rb                     |    6 +-
 man/bundle-add.1                                   |    2 +-
 man/bundle-add.1.txt                               |   22 +-
 man/bundle-binstubs.1                              |   14 +-
 man/bundle-binstubs.1.txt                          |   51 +-
 man/bundle-binstubs.ronn                           |   14 +
 man/bundle-check.1                                 |    2 +-
 man/bundle-check.1.txt                             |   30 +-
 man/bundle-clean.1                                 |    2 +-
 man/bundle-clean.1.txt                             |   20 +-
 man/bundle-config.1                                |  120 +-
 man/bundle-config.1.txt                            |  421 ++---
 man/bundle-config.ronn                             |  212 ++-
 man/bundle-exec.1                                  |    9 +-
 man/bundle-exec.1.txt                              |  151 +-
 man/bundle-exec.ronn                               |    7 +
 man/bundle-gem.1                                   |    8 +-
 man/bundle-gem.1.txt                               |   81 +-
 man/bundle-gem.ronn                                |    5 +-
 man/bundle-info.1                                  |    2 +-
 man/bundle-info.1.txt                              |   16 +-
 man/bundle-init.1                                  |    2 +-
 man/bundle-init.1.txt                              |   24 +-
 man/bundle-inject.1                                |    2 +-
 man/bundle-inject.1.txt                            |   18 +-
 man/bundle-install.1                               |   56 +-
 man/bundle-install.1.txt                           |  384 ++---
 man/bundle-install.ronn                            |   64 +-
 man/bundle-list.1                                  |   20 +
 man/bundle-list.1.txt                              |   21 +
 man/bundle-list.ronn                               |   15 +
 man/bundle-lock.1                                  |    4 +-
 man/bundle-lock.1.txt                              |   94 +-
 man/bundle-open.1                                  |    2 +-
 man/bundle-open.1.txt                              |   14 +-
 man/bundle-outdated.1                              |    6 +-
 man/bundle-outdated.1.txt                          |   68 +-
 man/bundle-outdated.ronn                           |    2 +-
 man/bundle-package.1                               |    9 +-
 man/bundle-package.1.txt                           |   83 +-
 man/bundle-package.ronn                            |    5 +
 man/bundle-platform.1                              |    2 +-
 man/bundle-platform.1.txt                          |   26 +-
 man/bundle-pristine.1                              |   24 +-
 man/bundle-pristine.1.txt                          |   43 +-
 man/bundle-pristine.ronn                           |   27 +-
 man/bundle-show.1                                  |    2 +-
 man/bundle-show.1.txt                              |   22 +-
 man/bundle-update.1                                |   20 +-
 man/bundle-update.1.txt                            |  246 ++-
 man/bundle-update.ronn                             |    4 +-
 man/bundle-viz.1                                   |   12 +-
 man/bundle-viz.1.txt                               |   31 +-
 man/bundle-viz.ronn                                |   10 +-
 man/bundle.1                                       |   33 +-
 man/bundle.1.txt                                   |  119 +-
 man/bundle.ronn                                    |   25 +-
 man/gemfile.5                                      |   32 +-
 man/gemfile.5.ronn                                 |   31 +
 man/gemfile.5.txt                                  |  420 ++---
 man/index.txt                                      |   38 +-
 task/release.rake                                  |  116 --
 250 files changed, 6578 insertions(+), 4673 deletions(-)
 delete mode 100644 .codeclimate.yml
 delete mode 100644 .gitignore
 delete mode 100644 .rspec
 delete mode 100644 .rubocop.yml
 delete mode 100644 .rubocop_todo.yml
 delete mode 100644 .travis.yml
 delete mode 100644 CODE_OF_CONDUCT.md
 delete mode 100644 CONTRIBUTING.md
 delete mode 100644 Rakefile
 delete mode 100755 bin/rake
 delete mode 100755 bin/rspec
 delete mode 100755 bin/rubocop
 delete mode 100755 bin/with_rubygems
 create mode 100644 debian/patches/dont-check-if-latest-version
 create mode 100644 debian/patches/manpage-typo
 delete mode 100644 doc/README.md
 delete mode 100644 doc/TROUBLESHOOTING.md
 delete mode 100644 doc/contributing/BUG_TRIAGE.md
 delete mode 100644 doc/contributing/COMMUNITY.md
 delete mode 100644 doc/contributing/GETTING_HELP.md
 delete mode 100644 doc/contributing/HOW_YOU_CAN_HELP.md
 delete mode 100644 doc/contributing/ISSUES.md
 delete mode 100644 doc/contributing/README.md
 delete mode 100644 doc/development/NEW_FEATURES.md
 delete mode 100644 doc/development/PULL_REQUESTS.md
 delete mode 100644 doc/development/README.md
 delete mode 100644 doc/development/RELEASING.md
 delete mode 100644 doc/development/SETUP.md
 delete mode 100644 doc/documentation/README.md
 delete mode 100644 doc/documentation/VISION.md
 delete mode 100644 doc/documentation/WRITING.md
 create mode 100644 lib/bundler/build_metadata.rb
 create mode 100644 lib/bundler/cli/list.rb
 create mode 100644 lib/bundler/compatibility_guard.rb
 create mode 100644 lib/bundler/lockfile_generator.rb
 delete mode 100644 lib/bundler/postit_trampoline.rb
 create mode 100644 lib/bundler/process_lock.rb
 create mode 100644 lib/bundler/resolver/spec_group.rb
 create mode 100644 lib/bundler/settings/validator.rb
 create mode 100644 lib/bundler/source/metadata.rb
 copy lib/bundler/{ssl_certs => templates}/.document (100%)
 create mode 100644 lib/bundler/templates/Executable.bundler
 create mode 100644 lib/bundler/templates/gems.rb
 rename lib/bundler/templates/newgem/{.travis.yml.tt => travis.yml.tt} (100%)
 create mode 100644 lib/bundler/vendor/fileutils/lib/fileutils.rb
 delete mode 100644 lib/bundler/vendor/postit/lib/postit.rb
 delete mode 100644 lib/bundler/vendor/postit/lib/postit/environment.rb
 delete mode 100644 lib/bundler/vendor/postit/lib/postit/installer.rb
 delete mode 100644 lib/bundler/vendor/postit/lib/postit/parser.rb
 delete mode 100644 lib/bundler/vendor/postit/lib/postit/setup.rb
 delete mode 100644 lib/bundler/vendor/postit/lib/postit/version.rb
 create mode 100644 lib/bundler/vendored_fileutils.rb
 create mode 100644 man/bundle-list.1
 create mode 100644 man/bundle-list.1.txt
 create mode 100644 man/bundle-list.ronn
 delete mode 100644 task/release.rake

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/bundler.git



More information about the Pkg-ruby-extras-commits mailing list