[Git-commits] core configuration files of grml branch, master, updated. v0.3.83-50-gbd535eb

git repository hosting gitosis at grml.org
Mon Nov 8 11:55:21 CET 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "core configuration files of grml".

The branch, master has been updated
       via  bd535eb3664a795345faa0dcd8bf73caa1a8f83a (commit)
       via  7b61b6a6d96cdcbaac60256928ad5c75d72d575a (commit)
       via  79739635ca661a019aa8e3cb7c295d371f2c29b8 (commit)
       via  a7dcbdf193a125ae357fb8c4647bcdbca1aa1c6c (commit)
       via  a17c869edadb5ab3dc6c0f5e453a4fb77eace866 (commit)
       via  1ee27bd79f2b8eae519f6890bc43f5feca13a261 (commit)
      from  9ae0b0c0858f15dc7ec46fbd86660dafc3946695 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit bd535eb3664a795345faa0dcd8bf73caa1a8f83a
Author: Michael Prokop <mika at grml.org>
Date:   Mon Nov 8 11:54:52 2010 +0100

    Update changelog regarding /etc/skel/.gitconfig and Standards-Version update.

commit 7b61b6a6d96cdcbaac60256928ad5c75d72d575a
Author: Michael Prokop <mika at grml.org>
Date:   Mon Nov 8 11:30:09 2010 +0100

    Bump Standards-Version to 3.9.1.

commit 79739635ca661a019aa8e3cb7c295d371f2c29b8
Author: Frank Terbeck <ft at grml.org>
Date:   Fri Nov 5 09:34:16 2010 +0100

    Sync zsh-lookup with upstream
    
    ...adding grml_bts backend.

commit a7dcbdf193a125ae357fb8c4647bcdbca1aa1c6c
Author: Frank Terbeck <ft at grml.org>
Date:   Fri Nov 5 09:33:38 2010 +0100

    Updated debian/changelog

commit a17c869edadb5ab3dc6c0f5e453a4fb77eace866
Author: Frank Terbeck <ft at grml.org>
Date:   Fri Nov 5 09:33:00 2010 +0100

    debian/copyright update, due to zsh-lookup inclusion

commit 1ee27bd79f2b8eae519f6890bc43f5feca13a261
Author: Frank Terbeck <ft at grml.org>
Date:   Thu Nov 4 13:48:18 2010 +0100

    Add zsh-lookup sub-system
    
    In the grml-etc-core package. Not in the grmlzshrc file. Not going to happen. :)

-----------------------------------------------------------------------

Summary of changes:
 debian/changelog                                   |    8 +-
 debian/control                                     |    2 +-
 debian/copyright                                   |   27 ++
 etc/zsh/zshrc                                      |    1 +
 usr_share_grml/zsh/completion/unix/_lookup         |   91 +++++++
 .../zsh/functions/Lookup/Backends/LOOKUP_be_cpan   |   34 +++
 .../functions/Lookup/Backends/LOOKUP_be_deb_bts    |   65 +++++
 .../functions/Lookup/Backends/LOOKUP_be_deb_msgid  |   61 +++++
 .../Lookup/Backends/LOOKUP_be_deb_patchtrack       |   42 +++
 .../functions/Lookup/Backends/LOOKUP_be_deb_pts    |   43 +++
 .../zsh/functions/Lookup/Backends/LOOKUP_be_dsc    |   34 +++
 .../Lookup/Backends/LOOKUP_be_filewatcher          |   39 +++
 .../functions/Lookup/Backends/LOOKUP_be_freshmeat  |   39 +++
 .../zsh/functions/Lookup/Backends/LOOKUP_be_gmane  |  271 ++++++++++++++++++++
 .../zsh/functions/Lookup/Backends/LOOKUP_be_google |   62 +++++
 .../functions/Lookup/Backends/LOOKUP_be_grml_bts   |   46 ++++
 .../zsh/functions/Lookup/Backends/LOOKUP_be_koders |  189 ++++++++++++++
 .../zsh/functions/Lookup/Backends/LOOKUP_be_leo    |  190 ++++++++++++++
 .../functions/Lookup/Backends/LOOKUP_be_letssingit |   89 +++++++
 .../zsh/functions/Lookup/Backends/LOOKUP_be_rfc    |  138 ++++++++++
 .../Lookup/Backends/LOOKUP_be_sourceforge          |   39 +++
 .../zsh/functions/Lookup/Backends/LOOKUP_be_usenet |  100 +++++++
 .../functions/Lookup/Backends/LOOKUP_be_wikipedia  |  115 +++++++++
 .../functions/Lookup/Backends/LOOKUP_be_zsh_mla    |  101 ++++++++
 usr_share_grml/zsh/functions/Lookup/LOOKUP_browser |   46 ++++
 usr_share_grml/zsh/functions/Lookup/LOOKUP_context |   22 ++
 usr_share_grml/zsh/functions/Lookup/LOOKUP_encode  |   36 +++
 usr_share_grml/zsh/functions/Lookup/LOOKUP_guard   |   52 ++++
 usr_share_grml/zsh/functions/Lookup/LOOKUP_help    |   48 ++++
 usr_share_grml/zsh/functions/Lookup/LOOKUP_hook    |   37 +++
 .../zsh/functions/Lookup/LOOKUP_parseopts          |  101 ++++++++
 .../zsh/functions/Lookup/LOOKUP_query_handler      |   52 ++++
 usr_share_grml/zsh/functions/Lookup/lookupinit     |  181 +++++++++++++
 33 files changed, 2399 insertions(+), 2 deletions(-)
 create mode 100644 usr_share_grml/zsh/completion/unix/_lookup
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_cpan
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_bts
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_msgid
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_patchtrack
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_pts
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_dsc
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_filewatcher
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_freshmeat
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_gmane
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_google
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_grml_bts
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_koders
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_leo
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_letssingit
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_rfc
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_sourceforge
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_usenet
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_wikipedia
 create mode 100644 usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_zsh_mla
 create mode 100644 usr_share_grml/zsh/functions/Lookup/LOOKUP_browser
 create mode 100644 usr_share_grml/zsh/functions/Lookup/LOOKUP_context
 create mode 100644 usr_share_grml/zsh/functions/Lookup/LOOKUP_encode
 create mode 100644 usr_share_grml/zsh/functions/Lookup/LOOKUP_guard
 create mode 100644 usr_share_grml/zsh/functions/Lookup/LOOKUP_help
 create mode 100644 usr_share_grml/zsh/functions/Lookup/LOOKUP_hook
 create mode 100644 usr_share_grml/zsh/functions/Lookup/LOOKUP_parseopts
 create mode 100644 usr_share_grml/zsh/functions/Lookup/LOOKUP_query_handler
 create mode 100644 usr_share_grml/zsh/functions/Lookup/lookupinit


hooks/post-receive
-- 
core configuration files of grml


More information about the Git-commits mailing list