[DRE-commits] [adlint] branch master updated (35c1afc -> fff3fa9)

Takaki Taniguchi takaki at alioth.debian.org
Sat Sep 28 03:03:20 UTC 2013


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

takaki pushed a change to branch master
in repository adlint.

      from  35c1afc   use canonical URI in Vcs-* fields
      adds  34f9d17   Imported Upstream version 3.0.8
       new  3d105b9   Merge tag 'upstream/3.0.8'
       new  2e4d459   new upstream
       new  d481502   prepare release
      adds  96cc56f   Imported Upstream version 3.0.10
       new  40beec4   Merge tag 'upstream/3.0.10'
       new  7f3b2a5   new upstream
       new  fff3fa9   debian/control: Bump Standards-Version to 3.9.4 (with no changes).

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:
 ChangeLog                                    |  682 ++++++++-
 INSTALL                                      |    4 +-
 MANIFEST                                     |   21 +
 NEWS                                         |   55 +-
 README                                       |    4 -
 TODO                                         |    3 +-
 debian/changelog                             |   19 +
 debian/control                               |    2 +-
 etc/mesg.d/c_builtin/en_US/messages.yml      |    4 +-
 etc/mesg.d/c_builtin/ja_JP/messages.yml      |    4 +-
 etc/mesg.d/core/en_US/messages.yml           |    6 +-
 etc/mesg.d/core/ja_JP/messages.yml           |    6 +-
 features/code_check/E0008.feature            |   20 +
 features/code_check/W0093.feature            |    2 +-
 features/code_check/W0097.feature            |   30 +
 features/code_check/W0100.feature            |   66 +
 features/code_check/W0422.feature            |  285 ++++
 features/code_check/W0459.feature            |  118 ++
 features/code_check/W0461.feature            |  115 ++
 features/code_check/W0491.feature            |   57 +
 features/code_check/W0492.feature            |   80 ++
 features/code_check/W0542.feature            |   20 +
 features/code_check/W0580.feature            |   25 +
 features/code_check/W0610.feature            |   95 ++
 features/code_check/W0612.feature            |   29 +
 features/code_check/W0613.feature            |   33 +
 features/code_check/W0642.feature            |   67 +
 features/code_check/W0704.feature            |   25 +
 features/code_check/W0705.feature            |   33 +
 features/code_check/W0786.feature            |   39 +
 features/code_check/W0830.feature            |   27 +
 features/code_check/W1047.feature            |   72 +
 features/code_check/W1050.feature            |   43 +
 features/code_check/W1071.feature            |   30 +
 features/code_check/W9001.feature            |   24 +
 features/code_check/W9003.feature            |   22 +
 features/code_extraction/TODO                |    1 +
 features/metric_measurement/TODO             |    1 +
 lib/adlint/analyzer.rb                       |    4 +-
 lib/adlint/cc1/branch.rb                     |   41 +-
 lib/adlint/cc1/builtin.rb                    |    4 +-
 lib/adlint/cc1/conv.rb                       |   66 +-
 lib/adlint/cc1/ctrlexpr.rb                   |   87 +-
 lib/adlint/cc1/domain.rb                     |  100 +-
 lib/adlint/cc1/enum.rb                       |    4 +
 lib/adlint/cc1/environ.rb                    |    3 +-
 lib/adlint/cc1/expr.rb                       |  320 +++--
 lib/adlint/cc1/format.rb                     |    6 +-
 lib/adlint/cc1/interp.rb                     |  303 ++--
 lib/adlint/cc1/lexer.rb                      |  111 +-
 lib/adlint/cc1/mediator.rb                   |   45 +-
 lib/adlint/cc1/object.rb                     |  238 ++-
 lib/adlint/cc1/option.rb                     |    1 +
 lib/adlint/cc1/parser.rb                     | 1987 +++++++++++++-------------
 lib/adlint/cc1/parser.y                      |  112 +-
 lib/adlint/cc1/phase.rb                      |   14 +-
 lib/adlint/cc1/syntax.rb                     |  142 +-
 lib/adlint/cc1/type.rb                       |    6 +-
 lib/adlint/cc1/util.rb                       |    8 +-
 lib/adlint/cc1/value.rb                      |  108 +-
 lib/adlint/code.rb                           |   22 +-
 lib/adlint/cpp/eval.rb                       |   56 +-
 lib/adlint/cpp/lexer.rb                      |   22 +-
 lib/adlint/cpp/macro.rb                      |  101 +-
 lib/adlint/cpp/phase.rb                      |   16 +-
 lib/adlint/cpp/subst.rb                      |    8 +-
 lib/adlint/error.rb                          |    6 +
 lib/adlint/exam/c_builtin.rb                 |   12 +-
 lib/adlint/exam/c_builtin/cc1_check.rb       | 1495 ++++++++++---------
 lib/adlint/exam/c_builtin/cc1_check_shima.rb |  166 +--
 lib/adlint/exam/c_builtin/cc1_code.rb        |  124 +-
 lib/adlint/exam/c_builtin/cc1_metric.rb      |  262 ++--
 lib/adlint/exam/c_builtin/cpp_check.rb       |  100 +-
 lib/adlint/exam/c_builtin/cpp_check_shima.rb |    4 +-
 lib/adlint/exam/c_builtin/cpp_code.rb        |   42 +-
 lib/adlint/exam/c_builtin/ld_check.rb        |  175 +--
 lib/adlint/exam/c_builtin/ld_metric.rb       |    9 +-
 lib/adlint/ld/object.rb                      |  455 +++---
 lib/adlint/ld/phase.rb                       |   38 +-
 lib/adlint/ld/typedef.rb                     |   14 +-
 lib/adlint/ld/util.rb                        |   42 +-
 lib/adlint/location.rb                       |    7 +-
 lib/adlint/memo.rb                           |   95 +-
 lib/adlint/report.rb                         |   27 +-
 lib/adlint/util.rb                           |    2 +-
 lib/adlint/version.rb                        |    4 +-
 metadata.yml                                 |   25 +-
 share/doc/Makefile                           |    8 +-
 share/doc/c99gram.dot                        |  502 +++++++
 share/doc/c99gram.pdf                        |  Bin 0 -> 90145 bytes
 share/doc/developers_guide_ja.html           |   13 +-
 share/doc/developers_guide_ja.texi           |    9 +-
 share/doc/users_guide_en.html                |   18 +-
 share/doc/users_guide_en.texi                |   14 +-
 share/doc/users_guide_ja.html                |   18 +-
 share/doc/users_guide_ja.texi                |   14 +-
 96 files changed, 6573 insertions(+), 3231 deletions(-)
 create mode 100644 features/code_check/E0008.feature
 create mode 100644 features/code_check/W0097.feature
 create mode 100644 features/code_check/W0100.feature
 create mode 100644 features/code_check/W0422.feature
 create mode 100644 features/code_check/W0459.feature
 create mode 100644 features/code_check/W0461.feature
 create mode 100644 features/code_check/W0491.feature
 create mode 100644 features/code_check/W0492.feature
 create mode 100644 features/code_check/W0542.feature
 create mode 100644 features/code_check/W0580.feature
 create mode 100644 features/code_check/W0610.feature
 create mode 100644 features/code_check/W0612.feature
 create mode 100644 features/code_check/W0613.feature
 create mode 100644 features/code_check/W0642.feature
 create mode 100644 features/code_check/W0704.feature
 create mode 100644 features/code_check/W0786.feature
 create mode 100644 features/code_check/W1050.feature
 create mode 100644 features/code_extraction/TODO
 create mode 100644 features/metric_measurement/TODO
 create mode 100644 share/doc/c99gram.dot
 create mode 100644 share/doc/c99gram.pdf

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



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