[DRE-commits] [ruby-slim] 01/03: Merge tag 'debian/2.0.1-1' into wheezy-backports

Jérémy Bobbio lunar at alioth.debian.org
Fri Oct 25 16:50:03 UTC 2013


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

lunar pushed a commit to branch wheezy-backports
in repository ruby-slim.

commit ba2286653e24e4d560575c0d86c7f0184dc63a49
Merge: 2b52060 8c2c9c7
Author: Jérémy Bobbio <lunar at debian.org>
Date:   Fri Oct 4 16:12:12 2013 +0200

    Merge tag 'debian/2.0.1-1' into wheezy-backports
    
    Format: 1.8
    Date: Tue, 03 Sep 2013 11:11:32 +0200
    Source: ruby-slim
    Binary: ruby-slim
    Architecture: source all
    Version: 2.0.1-1
    Distribution: unstable
    Urgency: low
    Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
    Changed-By: Jérémy Bobbio <lunar at debian.org>
    Description:
     ruby-slim  - powerful (X)HTML templating engine with an elegant syntax
    Closes: 718066
    Changes:
     ruby-slim (2.0.1-1) unstable; urgency=low
     .
       [ Jérémy Bobbio ]
       * New upstream version. (Closes: #718066)
       * Update Depends and Build-Depends.
       * Drop obsolete patch.
       * Drop support for Ruby 1.8.
     .
       [ Cédric Boutillier ]
       * Use canonical URI in Vcs-* fields.
    Checksums-Sha1:
     dcb83f385a14cb3376c6ebdf8e6dfdc2b7c128ba 1347 ruby-slim_2.0.1-1.dsc
     b231aeee4bad1e2c12a79d67499138fef0a65eea 63723 ruby-slim_2.0.1.orig.tar.gz
     56f45e8be8b4c45a13d1574b51074b5590edc22d 2908 ruby-slim_2.0.1-1.debian.tar.gz
     8f98adaca68c347260e528ad8f6b38d875b7e31c 34424 ruby-slim_2.0.1-1_all.deb
    Checksums-Sha256:
     08a90eeee1e829b60da5707283c3996dd04893eb02e72574d5b86695b00c7bbf 1347 ruby-slim_2.0.1-1.dsc
     a8529378129d679e266eeb1837515b4d574a5bf70e86619962b17f47a7662afe 63723 ruby-slim_2.0.1.orig.tar.gz
     fdba00d424b63880ee560bf92d5720b08fc2d467fd91bebbad83d6a1f6085057 2908 ruby-slim_2.0.1-1.debian.tar.gz
     42ec677bdceb4665f59a7e9cbac8ef4c572059bb42653700b04a1ce89ff1f41d 34424 ruby-slim_2.0.1-1_all.deb
    Files:
     ad2a0193d774880c644c1f51943356ac 1347 ruby optional ruby-slim_2.0.1-1.dsc
     65ea0196ef2901e927247d483b03b2fd 63723 ruby optional ruby-slim_2.0.1.orig.tar.gz
     24fc0bfbe344e41c75b5ec39a78338e6 2908 ruby optional ruby-slim_2.0.1-1.debian.tar.gz
     034e240086df8478928946a969fb6da7 34424 ruby optional ruby-slim_2.0.1-1_all.deb

 .gitignore                                         |   10 +-
 .travis.yml                                        |   26 +-
 .yardopts                                          |    3 +-
 CHANGES                                            |   72 +++-
 Gemfile                                            |   22 +-
 README.md                                          |  365 ++++++++------------
 Rakefile                                           |   22 +-
 benchmarks/run-benchmarks.rb                       |   46 +--
 checksums.yaml.gz                                  |  Bin 0 -> 270 bytes
 debian/changelog                                   |   13 +
 debian/control                                     |   10 +-
 ...0001-Explicitly-load-rubygems-in-Rakefile.patch |   21 --
 debian/patches/series                              |    1 -
 doc/logic_less.md                                  |  137 ++++++++
 doc/translator.md                                  |   28 ++
 lib/slim.rb                                        |    1 +
 lib/slim/code_attributes.rb                        |    6 +-
 lib/slim/command.rb                                |   35 +-
 lib/slim/do_inserter.rb                            |   33 ++
 lib/slim/embedded.rb                               |    2 +
 lib/slim/end_inserter.rb                           |    4 +-
 lib/slim/engine.rb                                 |    5 +-
 lib/slim/erb_converter.rb                          |   14 +
 lib/slim/filter.rb                                 |    4 +-
 lib/slim/logic_less/context.rb                     |    8 +
 lib/slim/logic_less/filter.rb                      |    9 +-
 lib/slim/parser.rb                                 |   87 ++---
 lib/slim/splat/builder.rb                          |    2 +-
 lib/slim/splat/filter.rb                           |   13 +-
 lib/slim/template.rb                               |    4 +-
 lib/slim/translator.rb                             |    6 +-
 lib/slim/version.rb                                |    2 +-
 metadata.yml                                       |   58 ++--
 slim.gemspec                                       |   11 +-
 test/core/helper.rb                                |   41 ++-
 test/core/test_code_blocks.rb                      |   51 +++
 test/core/test_code_escaping.rb                    |   95 ++++-
 test/core/test_code_structure.rb                   |   65 +++-
 test/core/test_embedded_engines.rb                 |   51 ++-
 test/core/test_encoding.rb                         |    9 +-
 test/core/test_erb_converter.rb                    |   67 ++++
 test/core/test_html_attributes.rb                  |   15 +-
 test/core/test_parser_errors.rb                    |   14 +
 test/core/test_ruby_errors.rb                      |    4 +-
 test/literate/TESTS.md                             |  221 +++++++++++-
 test/logic_less/test_logic_less.rb                 |   19 +-
 .../app/controllers/application_controller.rb      |    1 -
 test/rails/app/controllers/entries_controller.rb   |    5 +
 test/rails/app/controllers/parents_controller.rb   |   85 -----
 test/rails/app/controllers/slim_controller.rb      |    3 +
 test/rails/app/models/child.rb                     |    3 -
 test/rails/app/models/entry.rb                     |   16 +
 test/rails/app/models/parent.rb                    |    4 -
 test/rails/app/views/entries/edit.html.slim        |    3 +
 test/rails/app/views/parents/_form.html.slim       |    8 -
 test/rails/app/views/parents/edit.html.slim        |    2 -
 test/rails/app/views/parents/new.html.slim         |    2 -
 test/rails/app/views/parents/show.html.slim        |    5 -
 test/rails/app/views/slim/form_for.html.slim       |    2 +
 test/rails/app/views/slim/xml.slim                 |    1 +
 test/rails/config/application.rb                   |    4 +-
 test/rails/config/database.yml                     |    4 -
 test/rails/config/environments/test.rb             |    2 +-
 test/rails/config/routes.rb                        |    2 +-
 .../migrate/20101220223037_parents_and_children.rb |   17 -
 test/rails/test/helper.rb                          |    3 -
 test/rails/test/test_slim.rb                       |   21 +-
 test/translator/test_translator.rb                 |   15 +-
 68 files changed, 1281 insertions(+), 659 deletions(-)

diff --cc debian/changelog
index d5ec4ce,9058bd6..b766671
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,9 -1,16 +1,22 @@@
+ ruby-slim (2.0.1-1) unstable; urgency=low
+ 
+   [ Jérémy Bobbio ]
+   * New upstream version. (Closes: #718066)
+   * Update Depends and Build-Depends.
+   * Drop obsolete patch.
+   * Drop support for Ruby 1.8.
+ 
+   [ Cédric Boutillier ]
+   * Use canonical URI in Vcs-* fields.
+ 
+  -- Jérémy Bobbio <lunar at debian.org>  Tue, 03 Sep 2013 11:11:32 +0200
+ 
 +ruby-slim (2.0.0~pre6-1~bpo70+1) wheezy-backports; urgency=low
 +
 +  * Rebuild for wheezy-backports.
 +
 + -- Jérémy Bobbio <lunar at debian.org>  Tue, 11 Jun 2013 15:37:17 +0200
 +
  ruby-slim (2.0.0~pre6-1) unstable; urgency=low
  
    * Initial release (Closes: #703182)

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



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