[DRE-commits] [nanoc] branch master updated (c4bd50a -> 384797c)
Cédric Boutillier
boutil at moszumanska.debian.org
Mon Jun 6 15:53:43 UTC 2016
This is an automated email from the git hooks/post-receive script.
boutil pushed a change to branch master
in repository nanoc.
from c4bd50a Update changelog for 4.1.4-2 release
adds bf59f05 Imported Upstream version 4.2.0
new e849f38 Merge tag 'upstream/4.2.0'
new bdafa2e Depend on ruby-adsf (Closes: #819357)
new 68c4d74 bump standards version to 3.9.8
new 6f53090 Refresh deactivate_test_huge_site.patch
new e159ef6 add skip_tests_autopkgtest.patch to improve autopkgtest results
new 384797c prepare changelog
The 6 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:
Gemfile | 5 +-
Gemfile.lock | 140 +++--
NEWS.md | 40 ++
README.md | 2 +-
debian/changelog | 10 +
debian/control | 4 +-
debian/patches/deactivate_test_huge_site.patch | 6 +-
debian/patches/series | 1 +
debian/patches/skip_tests_autopkgtest.patch | 42 ++
lib/nanoc/base/checksummer.rb | 181 ++++--
lib/nanoc/base/compilation/compiler.rb | 55 +-
lib/nanoc/base/compilation/dependency_tracker.rb | 54 +-
lib/nanoc/base/compilation/filter.rb | 6 +-
lib/nanoc/base/compilation/outdatedness_reasons.rb | 21 +-
lib/nanoc/base/entities.rb | 1 +
lib/nanoc/base/entities/content.rb | 17 +-
lib/nanoc/base/entities/document.rb | 20 +-
lib/nanoc/base/entities/item.rb | 31 -
lib/nanoc/base/entities/item_rep.rb | 2 +-
lib/nanoc/base/entities/lazy_value.rb | 36 ++
lib/nanoc/base/entities/pattern.rb | 5 +-
lib/nanoc/base/entities/site.rb | 2 +
lib/nanoc/base/memoization.rb | 27 +-
lib/nanoc/base/repos/compiled_content_cache.rb | 2 +-
lib/nanoc/base/repos/config_loader.rb | 3 +-
lib/nanoc/base/repos/data_source.rb | 16 +-
lib/nanoc/base/services/executor.rb | 44 +-
lib/nanoc/base/services/item_rep_router.rb | 9 +-
lib/nanoc/base/services/item_rep_writer.rb | 6 +-
lib/nanoc/base/views.rb | 1 -
lib/nanoc/base/views/item_rep_view.rb | 12 +-
lib/nanoc/base/views/mixins/document_view_mixin.rb | 15 +-
lib/nanoc/base/views/site_view.rb | 14 -
lib/nanoc/base/views/view.rb | 1 +
lib/nanoc/base/views/view_context.rb | 6 +-
lib/nanoc/cli/commands/check.rb | 1 +
lib/nanoc/cli/commands/compile.rb | 16 +-
lib/nanoc/cli/commands/deploy.rb | 118 ++--
lib/nanoc/cli/commands/show-data.rb | 2 +-
lib/nanoc/data_sources.rb | 10 +-
lib/nanoc/data_sources/filesystem.rb | 317 +++++++---
lib/nanoc/data_sources/filesystem_unified.rb | 101 ---
lib/nanoc/extra/checking/check.rb | 3 +-
lib/nanoc/extra/checking/checks.rb | 2 +
lib/nanoc/extra/checking/checks/css.rb | 20 +-
lib/nanoc/extra/checking/checks/external_links.rb | 3 +-
lib/nanoc/extra/checking/checks/html.rb | 20 +-
lib/nanoc/extra/checking/checks/internal_links.rb | 20 +-
lib/nanoc/extra/checking/checks/mixed_content.rb | 3 +-
lib/nanoc/extra/checking/checks/stale.rb | 6 +-
.../checking/checks/{css.rb => w3c_validator.rb} | 16 +-
lib/nanoc/extra/deployers/fog.rb | 212 ++++---
lib/nanoc/extra/link_collector.rb | 32 +-
lib/nanoc/filters/relativize_paths.rb | 5 +-
lib/nanoc/filters/sass.rb | 6 +-
lib/nanoc/helpers.rb | 1 +
lib/nanoc/helpers/capturing.rb | 74 +--
lib/nanoc/helpers/child_parent.rb | 51 ++
lib/nanoc/helpers/filtering.rb | 1 -
lib/nanoc/helpers/html_escape.rb | 5 +
lib/nanoc/helpers/link_to.rb | 2 +
lib/nanoc/helpers/rendering.rb | 7 +-
lib/nanoc/helpers/xml_sitemap.rb | 2 +-
lib/nanoc/rule_dsl/action_provider.rb | 27 +-
lib/nanoc/rule_dsl/recording_executor.rb | 4 +-
lib/nanoc/rule_dsl/rule.rb | 3 +-
lib/nanoc/rule_dsl/rule_context.rb | 1 -
lib/nanoc/rule_dsl/rule_memory_calculator.rb | 5 +-
lib/nanoc/spec.rb | 217 +++++++
lib/nanoc/version.rb | 2 +-
metadata.yml | 386 ------------
nanoc.gemspec | 6 +-
test/base/test_compiler.rb | 3 +-
test/base/test_data_source.rb | 6 +-
test/base/test_dependency_tracker.rb | 16 +-
test/cli/commands/test_create_site.rb | 2 +-
test/cli/commands/test_deploy.rb | 191 ------
test/data_sources/test_filesystem.rb | 674 ++++++++++++++++++---
test/data_sources/test_filesystem_unified.rb | 559 -----------------
test/extra/checking/checks/test_internal_links.rb | 25 +
test/extra/deployers/test_fog.rb | 201 +-----
test/extra/deployers/test_rsync.rb | 12 +-
test/filters/test_colorize_syntax.rb | 3 +-
test/filters/test_handlebars.rb | 9 +-
test/filters/test_less.rb | 13 +-
test/filters/test_mustache.rb | 3 +-
test/filters/test_rdiscount.rb | 25 +-
test/filters/test_relativize_paths.rb | 162 +++--
test/helpers/test_breadcrumbs.rb | 60 --
test/helpers/test_capturing.rb | 250 ++------
test/helpers/test_filtering.rb | 112 ----
test/helpers/test_html_escape.rb | 26 -
test/helpers/test_link_to.rb | 205 -------
test/helpers/test_rendering.rb | 147 -----
test/helpers/test_tagging.rb | 92 ---
test/helpers/test_text.rb | 18 -
test/helpers/test_xml_sitemap.rb | 3 +-
test/rule_dsl/test_action_provider.rb | 18 +-
test/rule_dsl/test_compiler_dsl.rb | 6 +-
99 files changed, 2221 insertions(+), 3164 deletions(-)
create mode 100644 debian/patches/skip_tests_autopkgtest.patch
create mode 100644 lib/nanoc/base/entities/lazy_value.rb
delete mode 100644 lib/nanoc/base/views/site_view.rb
delete mode 100644 lib/nanoc/data_sources/filesystem_unified.rb
copy lib/nanoc/extra/checking/checks/{css.rb => w3c_validator.rb} (59%)
create mode 100644 lib/nanoc/helpers/child_parent.rb
create mode 100644 lib/nanoc/spec.rb
delete mode 100644 metadata.yml
delete mode 100644 test/cli/commands/test_deploy.rb
delete mode 100644 test/data_sources/test_filesystem_unified.rb
delete mode 100644 test/helpers/test_breadcrumbs.rb
delete mode 100644 test/helpers/test_filtering.rb
delete mode 100644 test/helpers/test_html_escape.rb
delete mode 100644 test/helpers/test_rendering.rb
delete mode 100644 test/helpers/test_tagging.rb
delete mode 100644 test/helpers/test_text.rb
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/nanoc.git
More information about the Pkg-ruby-extras-commits
mailing list