[Python-apps-commits] r902 - in packages/mercurial/trunk/debian (changelog control hgext.rc)

gerardo-guest at users.alioth.debian.org gerardo-guest at users.alioth.debian.org
Wed Apr 2 20:06:18 UTC 2008


    Date: Wednesday, April 2, 2008 @ 20:06:16
  Author: gerardo-guest
Revision: 902

* Added python-pygments as a dependency (needed for hgext/highlight.py)
* Removed hgext.hbisect from hgext.rc, bisect is now a built-in command
* hgext.highlight is now enabled by default(for hg serve/hgweb use)

Modified:
  packages/mercurial/trunk/debian/changelog
  packages/mercurial/trunk/debian/control
  packages/mercurial/trunk/debian/hgext.rc

Modified: packages/mercurial/trunk/debian/changelog
===================================================================
--- packages/mercurial/trunk/debian/changelog	2008-04-01 22:00:29 UTC (rev 901)
+++ packages/mercurial/trunk/debian/changelog	2008-04-02 20:06:16 UTC (rev 902)
@@ -69,14 +69,23 @@
        patches/proposed_upstream__check_hgmerge_args.patch
        patches/proposed_upstream__type_is_not_posix.patch
      * patches/deb_specific__use_sensible-editor.patch:
-       Rediff against 1.0 branch
+       Rediff against mercurial 1.0 
      * Added patch:
        patches/proposed_upstream__fix_man_warnings.patch
-     * The hgmerge manpage doesn't exist anymore
-     * contrib/favicon.ico doesn't exist anymore
-     * Delete obsolete link_hgit target from the debian/rules file
-     * Add logo-droplets.svg and mergetools.hgrc to the examples
+     * hgmerge shell script is not provided anymore
+     * contrib/favicon.ico is not provided anymore
+     * Deleted obsolete link_hgit target from debian/rules
+     * Added logo-droplets.svg and mergetools.hgrc to the examples
        directory
+     * Added new extensions to the hgext.rc file
+       + hgext.color (not enabled by default)
+       + hgext.highlight (enabled)
+       + hgext.inotify (enabled)
+       + hgext.keyword (not enabled by default)
+     * Removed extensions from the hgext.rc file
+       + hgext.hbisect (now provided as a built-in command)
+     * Added new dependency :
+       + python-pygments (needed for hgext/highlight.py)
 
      [Vincent Danjean ]
      * import mercurial in the Python Application Packaging Team project

Modified: packages/mercurial/trunk/debian/control
===================================================================
--- packages/mercurial/trunk/debian/control	2008-04-01 22:00:29 UTC (rev 901)
+++ packages/mercurial/trunk/debian/control	2008-04-02 20:06:16 UTC (rev 902)
@@ -12,7 +12,7 @@
 
 Package: mercurial
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-pygments
 Provides: ${python:Provides}
 Recommends: rcs | kdiff3 | tkdiff | meld, python-mysqldb, python-openssl
 Suggests: qct, python-elementtree, tk8.4 | wish, python-flup

Modified: packages/mercurial/trunk/debian/hgext.rc
===================================================================
--- packages/mercurial/trunk/debian/hgext.rc	2008-04-01 22:00:29 UTC (rev 901)
+++ packages/mercurial/trunk/debian/hgext.rc	2008-04-02 20:06:16 UTC (rev 902)
@@ -3,6 +3,18 @@
 
 [extensions]
 
+# add color output to the status and qseries commands
+# hgext.color =
+
+# syntax highlighting in hgweb file view (requires pygments)
+  hgext.highlight =
+
+# inotify-based status acceleration for Linux systems
+hgext.inotify =
+
+# CVS/RCS-like Keyword Substitution
+# hgext.keyword =
+
 # changeset access control for mercurial
 # hgext.acl=
 
@@ -39,10 +51,6 @@
 # add the 'glog' command
 hgext.graphlog=
 
-# Dichotomic search in the DAG of changesets
-# add the 'bisect' command
-hgext.hbisect=
-
 # allows browsing the history of a repository in a graphical way
 # add the 'view' command
 hgext.hgk=




More information about the Python-apps-commits mailing list