[Python-checkins] release: don't produce archive meta data

benjamin.peterson python-checkins at python.org
Tue May 1 19:44:28 CEST 2012


http://hg.python.org/release/rev/2a005c3e8fb9
changeset:   61:2a005c3e8fb9
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue May 01 13:44:24 2012 -0400
summary:
  don't produce archive meta data

files:
  release.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/release.py b/release.py
--- a/release.py
+++ b/release.py
@@ -261,7 +261,8 @@
     with changed_dir(tag.text):
         print('Exporting tag:', tag.text)
         archivename = 'Python-%s' % tag.text
-        run_cmd(['hg', 'archive', '-r', tag.hgname, archivename])
+        run_cmd(['hg', 'archive', '--config', 'ui.archivemeta=off',
+                 '-r', tag.hgname, archivename])
         with changed_dir(archivename):
             print('Removing VCS .*ignore and .hg*')
             for name in ('.hgignore', '.hgeol', '.hgtags', '.hgtouch',

-- 
Repository URL: http://hg.python.org/release


More information about the Python-checkins mailing list