[Python-apps-commits] r10750 - in packages/mercurial/trunk/debian (2 files)

vicho at users.alioth.debian.org vicho at users.alioth.debian.org
Mon Apr 7 22:11:56 UTC 2014


    Date: Monday, April 7, 2014 @ 22:11:55
  Author: vicho
Revision: 10750

Fix "fatal: empty ident name (for <babar at jungle.org>) not allowed"
error in the mercurial-git autopkgtest

Modified:
  packages/mercurial/trunk/debian/changelog
  packages/mercurial/trunk/debian/tests/mercurial-git

Modified: packages/mercurial/trunk/debian/changelog
===================================================================
--- packages/mercurial/trunk/debian/changelog	2014-04-07 22:07:18 UTC (rev 10749)
+++ packages/mercurial/trunk/debian/changelog	2014-04-07 22:11:55 UTC (rev 10750)
@@ -4,6 +4,8 @@
     already handled by dh_python2
   * Drop patch deb_specific__fix_hg-ssh_interpreter.patch as dh_python2
     fixes the interpreter for us
+  * Fix "fatal: empty ident name (for <babar at jungle.org>) not allowed"
+    error in the mercurial-git autopkgtest
 
  -- Javi Merino <vicho at debian.org>  Sun, 06 Apr 2014 13:18:06 +0100
 

Modified: packages/mercurial/trunk/debian/tests/mercurial-git
===================================================================
--- packages/mercurial/trunk/debian/tests/mercurial-git	2014-04-07 22:07:18 UTC (rev 10749)
+++ packages/mercurial/trunk/debian/tests/mercurial-git	2014-04-07 22:11:55 UTC (rev 10750)
@@ -1,10 +1,16 @@
 #!/bin/sh
 
+# Configure git
+git config user.name Babar
+git config user.email babar at jungle.org
+
+# Setup a git repository with some content
 git init try
 cd try
-git config user.email babar at jungle.org
 echo a >a
 git add a
 git commit -m a
 cd ..
+
+# Now try to clone it with mercurial-git
 exec hg --config extensions.git= clone try try2




More information about the Python-apps-commits mailing list