[Pkg-debile-commits] [debile-slave] branch master updated (afad2ea -> 6f5813b)

Léo Cavaillé leo.cavaille-guest at alioth.debian.org
Thu Aug 22 22:21:11 UTC 2013


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

leo.cavaille-guest pushed a change to branch master
in repository debile-slave.

      from  afad2ea   New function names in proxy for URL retrieving
       new  1e37b26   Big renaming from ethel to debile-slave
       new  a95e609   Remove dead code
       new  6f5813b   pep8 everything

The 3 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:
 bin/create-schroot-file                            |    6 +-
 {ethel/runners => debile}/__init__.py              |    0
 debile/slave/__init__.py                           |    4 ++
 {ethel => debile/slave}/client.py                  |    4 +-
 debile/slave/commands/__init__.py                  |   25 +++++++++
 {ethel => debile/slave}/commands/adequate.py       |    6 +-
 {ethel => debile/slave}/commands/build.py          |    6 +-
 {ethel => debile/slave}/commands/clanganalyzer.py  |    6 +-
 {ethel => debile/slave}/commands/coccinelle.py     |    4 +-
 {ethel => debile/slave}/commands/cppcheck.py       |    4 +-
 .../slave}/commands/desktop_file_validate.py       |    6 +-
 {ethel => debile/slave}/commands/lintian.py        |    5 +-
 {ethel => debile/slave}/commands/lintian4py.py     |    3 +-
 {ethel => debile/slave}/commands/pep8.py           |    3 +-
 {ethel => debile/slave}/commands/perlcritic.py     |    3 +-
 {ethel => debile/slave}/commands/piuparts.py       |    5 +-
 {ethel => debile/slave}/config.py                  |    5 +-
 {ethel => debile/slave}/daemon.py                  |   58 +++++++++++---------
 {ethel => debile/slave}/error.py                   |    0
 .../wrappers => debile/slave/runners}/__init__.py  |    0
 {ethel => debile/slave}/runners/adequate.py        |    3 +-
 {ethel => debile/slave}/runners/clanganalyzer.py   |   14 +++--
 {ethel => debile/slave}/runners/coccinelle.py      |   36 ++++++------
 {ethel => debile/slave}/runners/cppcheck.py        |    5 +-
 .../slave}/runners/desktop_file_validate.py        |    6 +-
 {ethel => debile/slave}/runners/lintian.py         |    4 +-
 {ethel => debile/slave}/runners/pep8.py            |    5 +-
 {ethel => debile/slave}/runners/perlcritic.py      |    7 ++-
 {ethel => debile/slave}/runners/piuparts.py        |   13 +++--
 {ethel => debile/slave}/runners/sbuild.py          |   12 +++-
 {ethel => debile/slave}/utils.py                   |   11 ++--
 .../runners => debile/slave/wrappers}/__init__.py  |    0
 {ethel => debile/slave}/wrappers/adequate.py       |    0
 {ethel => debile/slave}/wrappers/clanganalyzer.py  |   13 +++--
 {ethel => debile/slave}/wrappers/coccinelle.py     |    4 +-
 {ethel => debile/slave}/wrappers/cppcheck.py       |    0
 .../slave}/wrappers/desktop_file_validate.py       |    0
 {ethel => debile/slave}/wrappers/lintian.py        |    1 +
 {ethel => debile/slave}/wrappers/pep8.py           |    1 +
 {ethel => debile/slave}/wrappers/perlcritic.py     |    0
 {ethel => debile/slave}/wrappers/piuparts.py       |    2 +-
 ethel/__init__.py                                  |    4 --
 ethel/cli.py                                       |   23 --------
 ethel/commands/__init__.py                         |   25 ---------
 setup.py                                           |   15 ++---
 skel/{ethel.ini => debile-slave.ini}               |    2 +-
 tests/wrappers/test_adequate.py                    |    2 +-
 tests/wrappers/test_cppcheck.py                    |    2 +-
 tests/wrappers/test_desktop_file_validate.py       |    2 +-
 tests/wrappers/test_lintian.py                     |    2 +-
 tests/wrappers/test_pep8.py                        |    2 +-
 tests/wrappers/test_perlcritic.py                  |    2 +-
 tests/wrappers/test_piuparts.py                    |    2 +-
 53 files changed, 200 insertions(+), 173 deletions(-)
 copy {ethel/runners => debile}/__init__.py (100%)
 create mode 100644 debile/slave/__init__.py
 rename {ethel => debile/slave}/client.py (91%)
 create mode 100644 debile/slave/commands/__init__.py
 rename {ethel => debile/slave}/commands/adequate.py (82%)
 rename {ethel => debile/slave}/commands/build.py (85%)
 rename {ethel => debile/slave}/commands/clanganalyzer.py (70%)
 rename {ethel => debile/slave}/commands/coccinelle.py (63%)
 rename {ethel => debile/slave}/commands/cppcheck.py (64%)
 rename {ethel => debile/slave}/commands/desktop_file_validate.py (60%)
 rename {ethel => debile/slave}/commands/lintian.py (77%)
 rename {ethel => debile/slave}/commands/lintian4py.py (80%)
 rename {ethel => debile/slave}/commands/pep8.py (67%)
 rename {ethel => debile/slave}/commands/perlcritic.py (64%)
 rename {ethel => debile/slave}/commands/piuparts.py (81%)
 rename {ethel => debile/slave}/config.py (88%)
 rename {ethel => debile/slave}/daemon.py (65%)
 rename {ethel => debile/slave}/error.py (100%)
 rename {ethel/wrappers => debile/slave/runners}/__init__.py (100%)
 rename {ethel => debile/slave}/runners/adequate.py (93%)
 rename {ethel => debile/slave}/runners/clanganalyzer.py (88%)
 rename {ethel => debile/slave}/runners/coccinelle.py (60%)
 rename {ethel => debile/slave}/runners/cppcheck.py (88%)
 rename {ethel => debile/slave}/runners/desktop_file_validate.py (80%)
 rename {ethel => debile/slave}/runners/lintian.py (87%)
 rename {ethel => debile/slave}/runners/pep8.py (83%)
 rename {ethel => debile/slave}/runners/perlcritic.py (78%)
 rename {ethel => debile/slave}/runners/piuparts.py (84%)
 rename {ethel => debile/slave}/runners/sbuild.py (93%)
 rename {ethel => debile/slave}/utils.py (93%)
 rename {ethel/runners => debile/slave/wrappers}/__init__.py (100%)
 rename {ethel => debile/slave}/wrappers/adequate.py (100%)
 rename {ethel => debile/slave}/wrappers/clanganalyzer.py (97%)
 rename {ethel => debile/slave}/wrappers/coccinelle.py (98%)
 rename {ethel => debile/slave}/wrappers/cppcheck.py (100%)
 rename {ethel => debile/slave}/wrappers/desktop_file_validate.py (100%)
 rename {ethel => debile/slave}/wrappers/lintian.py (99%)
 rename {ethel => debile/slave}/wrappers/pep8.py (99%)
 rename {ethel => debile/slave}/wrappers/perlcritic.py (100%)
 rename {ethel => debile/slave}/wrappers/piuparts.py (99%)
 delete mode 100644 ethel/__init__.py
 delete mode 100644 ethel/cli.py
 delete mode 100644 ethel/commands/__init__.py
 rename skel/{ethel.ini => debile-slave.ini} (94%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-debile/debile-slave.git



More information about the Pkg-debile-commits mailing list