[DRE-commits] [ruby-librarian] branch master updated (9e8a5a5 -> d5b5964)

Stig Sandbeck Mathisen ssm at debian.org
Tue Mar 11 12:16:02 UTC 2014


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

ssm pushed a change to branch master
in repository ruby-librarian.

      from  9e8a5a5   target unstable
      adds  f263ccf   Customize some #inspect methods.
      adds  baa1516   Style.
      adds  112e3ce   A good opportunity for a one-liner.
      adds  e698bb8   Mark the license in the gemspec.
      adds  f47d61d   Improve caching: same git repo/ref and different path = single cached copy.
      adds  be49718   Update rspec to use expect syntax.  Also change == to eq and =~ to match or match_array
      adds  6c22a36   Merge branch 'rspec_expect_syntax' of https://github.com/durrantm/librarian
      adds  a414c09   Prefer return-early style to nested code.
      adds  745d345   Bring a critical method to the top of the list.
      adds  23d7731   A slightly stricter regex for finding the git version.
      adds  387eea2   Add missing require.
      adds  3230c7e   Refactor simplify the resolver implementation.
      adds  3318177   Set the homepage
      adds  65416c9   Merge pull request #165 from anatol/patch-1
      adds  8928ba9   Graph algorithms: cyclic?, tsort_cyclic.
      adds  28bc7bb   Opt-in support for cyclic resolutions.
      adds  639b703   Fix ruby-1.8.7 breakage.
      adds  7751048   Style. Parentheses are not required here.
      adds  0d4657e   Style. Remove unnecessary whitespace.
      adds  2a62f1b   Fix JRuby exception in posix run! method.
      adds  76dc26e   Include RubySL for Rubinius.
      adds  bf94f49   Upgrade Travis config for Rubinius.
      adds  701e532   Fix ruby-1.8.7 breakage.
      adds  6f5d47f   Introduce a runtime cache into the environment.
      adds  c45eee5   Add missing require.
      adds  1c55269   Refactor: avoid stubs in tests.
      adds  eccc242   Some introductory functional tests on the git source.
      adds  046fbe0   Fix ruby-1.8.7 breakage.
      adds  a140e6b   Librarian::Source::Git::Repository#has_commit?.
      adds  82fe341   Refactor extract method.
      adds  acd8051   Some more tests describing the git-source's behavior.
      adds  4010033   Some runtime-cache helpers.
      adds  4e83498   A keyspace-scoped runtime-cache helper.
      adds  097541c   Some specs for the keyspaced-scoped runtime-cache.
      adds  1d251d3   Fix for ruby-1.8.7.
      adds  068b39f   Fix keyspaceCache-classname in runtime_cache
      adds  3c4bcd2   Cache repo-shas in runtime_cache for git source
      adds  94b76cb   Add "backports" for "public_send" in ruby < 1.9.1
      adds  7025ef8   Merge branch 'issue-163' of https://github.com/njam/librarian into njam-issue-163
      adds  31e9072   Revert "Add "backports" for "public_send" in ruby < 1.9.1"
      adds  c7e3e91   Reduce the number of git ops by caching more.
      adds  f429f1a   Merge branch 'njam-issue-163-revise'
      adds  cd602c1   Some notes for the future.
      adds  98a64a7   Pathname golf.
      adds  7485522   Avoid traversing the filesystem so much.
      adds  a8f2fee   Pull the version into its own top-level file.
      adds  6ddc1c8   Avoid stubs.
      adds  e756e2c   Note recent changes in the change-log.
      adds  30d4ca3   Explicitly avoid multiline gem versions.
      adds  3ef7002   Bump the version to 0.1.2.
      adds  d06d635   Imported Upstream version 0.1.2
       new  e776bba   Merge tag 'upstream/0.1.2'
       new  bb2adc3   Update changelog after new release 0.1.2
       new  db122c7   Install VERSION file in the library namespace
       new  4b9aa39   Add patch: Read VERSION from the library namespace
       new  d5b5964   releasing package ruby-librarian version 0.1.2-1

The 5 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:
 .travis.yml                                        |   3 +-
 CHANGELOG.md                                       |  15 ++
 Gemfile                                            |   2 +
 VERSION                                            |   1 +
 checksums.yaml.gz                                  | Bin 271 -> 270 bytes
 debian/changelog                                   |   7 +
 ...-to-keep-VERSION-in-the-library-namespace.patch |  22 +++
 debian/patches/series                              |   1 +
 debian/ruby-librarian.install                      |   1 +
 lib/librarian/algorithms.rb                        | 133 +++++++++++++++++
 lib/librarian/cli/manifest_presenter.rb            |   6 +-
 lib/librarian/dependency.rb                        |   8 +-
 lib/librarian/environment.rb                       |  22 ++-
 lib/librarian/environment/runtime_cache.rb         | 101 +++++++++++++
 lib/librarian/manifest.rb                          |   8 +-
 lib/librarian/manifest_set.rb                      |  23 ++-
 lib/librarian/posix.rb                             |  19 ++-
 lib/librarian/resolver.rb                          |  31 ++--
 lib/librarian/resolver/implementation.rb           | 113 ++++++++-------
 lib/librarian/source/git.rb                        |  58 ++++++--
 lib/librarian/source/git/repository.rb             |  36 ++++-
 lib/librarian/version.rb                           |   2 +-
 librarian.gemspec                                  |  14 +-
 metadata.yml                                       |  24 +++-
 spec/functional/cli_spec.rb                        |   2 +-
 spec/functional/posix_spec.rb                      |  14 +-
 spec/functional/source/git/repository_spec.rb      |  82 +++++++----
 spec/functional/source/git_spec.rb                 | 160 +++++++++++++++++++--
 spec/support/project_path_macro.rb                 |  14 ++
 spec/unit/action/base_spec.rb                      |   2 +-
 spec/unit/action/clean_spec.rb                     |  12 +-
 spec/unit/action/install_spec.rb                   |  10 +-
 spec/unit/algorithms_spec.rb                       | 131 +++++++++++++++++
 spec/unit/config/database_spec.rb                  |  76 +++++-----
 spec/unit/dependency/requirement_spec.rb           |  12 ++
 spec/unit/dsl_spec.rb                              |  98 ++++++-------
 spec/unit/environment/runtime_cache_spec.rb        |  73 ++++++++++
 spec/unit/environment_spec.rb                      |  56 ++++----
 spec/unit/lockfile/parser_spec.rb                  |  36 ++---
 spec/unit/lockfile_spec.rb                         |   6 +-
 spec/unit/manifest/version_spec.rb                 |  11 ++
 spec/unit/manifest_set_spec.rb                     |  40 +++---
 spec/unit/mock/environment_spec.rb                 |   8 +-
 spec/unit/resolver_spec.rb                         |  81 ++++++++---
 spec/unit/spec_change_set_spec.rb                  |  38 ++---
 45 files changed, 1245 insertions(+), 367 deletions(-)
 create mode 100644 VERSION
 create mode 100644 debian/patches/0001-Add-patch-to-keep-VERSION-in-the-library-namespace.patch
 create mode 100644 debian/patches/series
 create mode 100644 debian/ruby-librarian.install
 create mode 100644 lib/librarian/algorithms.rb
 create mode 100644 lib/librarian/environment/runtime_cache.rb
 create mode 100644 spec/support/project_path_macro.rb
 create mode 100644 spec/unit/algorithms_spec.rb
 create mode 100644 spec/unit/dependency/requirement_spec.rb
 create mode 100644 spec/unit/environment/runtime_cache_spec.rb
 create mode 100644 spec/unit/manifest/version_spec.rb

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



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