[PATCH 3 of 4] setup: sort gearbox.commands

Thomas De Schampheleire thomas.de_schampheleire at nokia.com
Thu Aug 30 20:42:07 UTC 2018


# HG changeset patch
# User Thomas De Schampheleire <thomas.de_schampheleire at nokia.com>
# Date 1535655505 -7200
#      Thu Aug 30 20:58:25 2018 +0200
# Node ID fe061085789cd4a342891e990023cffcf9ef1ff2
# Parent  7e34fff5282e2157743491558a37b5f8d32203d7
setup: sort gearbox.commands

There did not seem to be any particular order, so alphabetical sorting seems
most appropriate.

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -156,17 +156,17 @@ setuptools.setup(
     main = kallithea.config.middleware:make_app
 
     [gearbox.commands]
+    cache-keys=kallithea.lib.paster_commands.cache_keys:Command
+    celeryd=kallithea.lib.paster_commands.celeryd:Command
+    cleanup-repos=kallithea.lib.paster_commands.cleanup:Command
+    install-iis=kallithea.lib.paster_commands.install_iis:Command
+    ishell=kallithea.lib.paster_commands.ishell:Command
     make-config=kallithea.lib.paster_commands.make_config:Command
-    setup-db=kallithea.lib.paster_commands.setup_db:Command
-    cleanup-repos=kallithea.lib.paster_commands.cleanup:Command
-    update-repoinfo=kallithea.lib.paster_commands.update_repoinfo:Command
+    make-index=kallithea.lib.paster_commands.make_index:Command
     make-rcext=kallithea.lib.paster_commands.make_rcextensions:Command
     repo-scan=kallithea.lib.paster_commands.repo_scan:Command
-    cache-keys=kallithea.lib.paster_commands.cache_keys:Command
-    ishell=kallithea.lib.paster_commands.ishell:Command
-    make-index=kallithea.lib.paster_commands.make_index:Command
+    setup-db=kallithea.lib.paster_commands.setup_db:Command
+    update-repoinfo=kallithea.lib.paster_commands.update_repoinfo:Command
     upgrade-db=kallithea.lib.dbmigrate:UpgradeDb
-    celeryd=kallithea.lib.paster_commands.celeryd:Command
-    install-iis=kallithea.lib.paster_commands.install_iis:Command
     """,
 )


More information about the kallithea-general mailing list