[DRE-commits] [asciidoctor] branch master updated (e041b90 -> 4cce958)

Antonio Terceiro terceiro at moszumanska.debian.org
Tue Nov 17 16:38:34 UTC 2015


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

terceiro pushed a change to branch master
in repository asciidoctor.

      from  e041b90   update date of last changelog entry; wrap lines
      adds  8b2b507   Imported Upstream version 1.5.3
       new  e2e546a   Merge tag 'upstream/1.5.3'
       new  fccc1be   New upstream release
       new  c579213   drop/refresh patches
       new  46fa0bb   skip test that depends on a library not yet in Debian
       new  1bff04a   fix code logic to not depend on when the slim library has been loaded.
       new  a905027   release to unstable
       new  fbe1952   Refresh packaging
       new  e81eb0a   Added ruby-thread-safe to Build-Depends:
       new  8e1e383   package-version.patch: allow loading version without lib/ available
       new  4cce958   Switch running tests to using debian/ruby-tests.rake

The 10 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                                       |   6 +-
 CHANGELOG.adoc                                    | 108 +++-
 CONTRIBUTING.adoc                                 |  99 +++-
 LICENSE.adoc                                      |   2 +-
 README.adoc                                       | 385 +++++--------
 Rakefile                                          |   3 +-
 appveyor.yml                                      |  31 +
 asciidoctor.gemspec                               |   5 +-
 benchmark/benchmark.rb                            |   4 +-
 bin/asciidoctor                                   |   6 +-
 data/stylesheets/asciidoctor-default.css          |  66 ++-
 data/stylesheets/coderay-asciidoctor.css          |   6 +-
 debian/changelog                                  |  27 +
 debian/compat                                     |   2 +-
 debian/control                                    |  40 +-
 debian/patches/data_path.patch                    |   8 +-
 debian/patches/lib_directory_in_tests.patch       |  20 +-
 debian/patches/package-version.patch              |  27 +
 debian/patches/require-asciidoctor.patch          |  20 -
 debian/patches/series                             |   5 +-
 debian/patches/skip-asciimath-test.patch          |  17 +
 debian/patches/slim-test.patch                    |  25 +
 debian/patches/update-asciidoctor.1-manpage.patch |  29 -
 debian/ruby-tests.rake                            |   1 +
 debian/ruby-tests.rb                              |   1 -
 debian/rules                                      |  13 +-
 features/text_formatting.feature                  |   2 +
 lib/asciidoctor.rb                                |  67 ++-
 lib/asciidoctor/abstract_block.rb                 |  22 +-
 lib/asciidoctor/abstract_node.rb                  | 101 +++-
 lib/asciidoctor/attribute_list.rb                 |   2 +-
 lib/asciidoctor/block.rb                          |   5 +-
 lib/asciidoctor/cli/options.rb                    |  29 +-
 lib/asciidoctor/converter/docbook45.rb            |  16 +-
 lib/asciidoctor/converter/docbook5.rb             |  42 +-
 lib/asciidoctor/converter/factory.rb              |   7 +-
 lib/asciidoctor/converter/html5.rb                | 276 +++++----
 lib/asciidoctor/converter/manpage.rb              | 671 ++++++++++++++++++++++
 lib/asciidoctor/converter/template.rb             |  41 +-
 lib/asciidoctor/document.rb                       | 136 +++--
 lib/asciidoctor/extensions.rb                     |  43 +-
 lib/asciidoctor/helpers.rb                        |  89 ++-
 lib/asciidoctor/list.rb                           |  31 +-
 lib/asciidoctor/opal_ext.rb                       |  26 -
 lib/asciidoctor/opal_ext/comparable.rb            |  38 --
 lib/asciidoctor/opal_ext/dir.rb                   |  13 -
 lib/asciidoctor/opal_ext/error.rb                 |   2 -
 lib/asciidoctor/opal_ext/file.rb                  | 145 -----
 lib/asciidoctor/parser.rb                         | 301 ++++++----
 lib/asciidoctor/path_resolver.rb                  |  16 +-
 lib/asciidoctor/reader.rb                         |  71 +--
 lib/asciidoctor/stylesheets.rb                    |  26 +-
 lib/asciidoctor/substitutors.rb                   | 119 +++-
 lib/asciidoctor/table.rb                          |  38 +-
 lib/asciidoctor/timings.rb                        |   6 +-
 lib/asciidoctor/version.rb                        |   2 +-
 man/asciidoctor.1                                 | 244 +++++---
 man/asciidoctor.adoc                              |  30 +-
 test/attributes_test.rb                           |  86 +++
 test/blocks_test.rb                               | 218 ++++++-
 test/converter_test.rb                            |  17 +-
 test/document_test.rb                             | 326 +++++++++--
 test/extensions_test.rb                           |  25 +-
 test/fixtures/circle.svg                          |   8 +
 test/fixtures/subs-docinfo.html                   |   2 +
 test/fixtures/{basic.asciidoc => subs.adoc}       |   2 +
 test/invoker_test.rb                              |  25 +
 test/links_test.rb                                |  17 +
 test/lists_test.rb                                | 173 ++++++
 test/options_test.rb                              |   4 +-
 test/paragraphs_test.rb                           |   4 +-
 test/parser_test.rb                               |  69 ++-
 test/reader_test.rb                               |  38 +-
 test/sections_test.rb                             |  59 ++
 test/substitutions_test.rb                        |  67 ++-
 test/tables_test.rb                               | 160 +++++-
 test/test_helper.rb                               |   9 +-
 77 files changed, 3567 insertions(+), 1355 deletions(-)
 create mode 100644 appveyor.yml
 create mode 100644 debian/patches/package-version.patch
 delete mode 100644 debian/patches/require-asciidoctor.patch
 create mode 100644 debian/patches/skip-asciimath-test.patch
 create mode 100644 debian/patches/slim-test.patch
 delete mode 100644 debian/patches/update-asciidoctor.1-manpage.patch
 create mode 120000 debian/ruby-tests.rake
 delete mode 100644 debian/ruby-tests.rb
 create mode 100644 lib/asciidoctor/converter/manpage.rb
 delete mode 100644 lib/asciidoctor/opal_ext.rb
 delete mode 100644 lib/asciidoctor/opal_ext/comparable.rb
 delete mode 100644 lib/asciidoctor/opal_ext/dir.rb
 delete mode 100644 lib/asciidoctor/opal_ext/error.rb
 delete mode 100644 lib/asciidoctor/opal_ext/file.rb
 create mode 100644 test/fixtures/circle.svg
 create mode 100644 test/fixtures/subs-docinfo.html
 copy test/fixtures/{basic.asciidoc => subs.adoc} (76%)

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



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