[PATCH] extensions: properly mark progress as part of core

Augie Fackler raf at durin42.com
Tue Nov 24 23:42:07 UTC 2015


# HG changeset patch
# User Augie Fackler <augie at google.com>
# Date 1448408416 18000
#      Tue Nov 24 18:40:16 2015 -0500
# Node ID 88112357a3d43a3b51b67e3e1f69839ac13197b8
# Parent  f10ccb9b2651a484d5d8b65b35160617c35b27d1
extensions: properly mark progress as part of core

This should have been done as part of or as an immediate follow-up to
f5c906878a47, but presumably this feature of extensions.py was
forgotten at that time.

diff --git a/hgext/progress.py b/hgext/progress.py
deleted file mode 100644
--- a/hgext/progress.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# progress.py show progress bars for some actions
-#
-# Copyright (C) 2010 Augie Fackler <durin42 at gmail.com>
-#
-# This software may be used and distributed according to the terms of the
-# GNU General Public License version 2 or any later version.
-
-"""show progress bars for some actions (DEPRECATED)
-
-This extension has been merged into core, you can remove it from your config.
-See hg help config.progress for configuration options.
-"""
-# Note for extension authors: ONLY specify testedwith = 'internal' for
-# extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
-# be specifying the version(s) of Mercurial they are tested with, or
-# leave the attribute unspecified.
-testedwith = 'internal'
diff --git a/mercurial/extensions.py b/mercurial/extensions.py
--- a/mercurial/extensions.py
+++ b/mercurial/extensions.py
@@ -24,7 +24,8 @@ from . import (
 _extensions = {}
 _aftercallbacks = {}
 _order = []
-_ignore = ['hbisect', 'bookmarks', 'parentrevspec', 'interhg', 'inotify']
+_ignore = ['hbisect', 'bookmarks', 'parentrevspec', 'progress', 'interhg',
+           'inotify']
 
 def extensions(ui=None):
     if ui:


More information about the Mercurial-devel mailing list