#!/bin/bash
set -o errexit
-# Uncomment to have verboswe debug output
-#debug=1
-
# for use with git-remote-hg:
# http://felipec.wordpress.com/2012/11/13/git-remote-hg-bzr-2/
-LSI_SRV=/mnt/server/research/Projects/HG_Repo
+# Uncomment to have verbose debug output
+#debug=1
print_usage()
{
echo "Usage: $(basename $0) [OPTIONS...]"
}
+# git-remote-hg doesn't work with Mercurial subpaths extension,
+# so use it manually
+hg_subpaths_config() {
+ subpaths=$(hg showconfig | grep "subpaths")
+
+ if [ -n ${subpaths} ]; then
+ sp_src=${subpaths//subpaths./}
+ sp_src=${sp_src//=*/}
+ sp_src=${sp_src//\\/} # Remove windows separator (LSI)
+ sp_dst=${subpaths//*=/}
+
+ echo "sp_src = $sp_src"
+ echo "sp_dst = $sp_dst"
+ fi
+}
+
# Map a revision to a branch name in HG subrepository
# Use hg log (in original repo) to get branch name corresponding to that
# revision.
local id="${2}"
local rev="${3}"
- pushd "${LSI_SRV}/${src}"
+ pushd "${src}"
branch=$(hg log -r ${rev} | grep "branch:" | sed "s/branch:\ *//")
echo ".gitignore" > .gitignore
fi
+hg_subpaths_config
+
# Read lines from .hgsub
while read sub; do
# Remove CR (DOS)
if [ "${sub}" != "" ]; then
# Get subrepository URL
- src="${sub//*\/HG_REPO/}"
+ src="${sub//*= /}"
+
+ # Replace using subpaths extension content
+ src=${src/${sp_src}/${sp_dst}}
# Get subrepository local alias or label
dest="${sub// =*}"
# Get project ID (example: S0289)
- id=$(echo ${sub} | sed "s/.*HG_REPO\(S[0-9][0-9][0-9][0-9]\).*/\1/")
+ id=$(echo ${sub} | sed "s/.*\(S[0-9][0-9][0-9][0-9]\).*/\1/")
# Get revision of subrepository (remove CR from .hgsubstate)
rev=$(cat .hgsubstate | tr -d '\r' | grep "${id}" | sed "s/ .*//")
echo "repo: ${src}"
echo " id: ${id}"
echo " rev: ${rev}"
+ echo " src: ${src}"
echo " dest: ${dest}"
fi
# "BRANCH___-___NAME"
branch="${branch// /___}"
- git clone "hg::${LSI_SRV}/${src}" "${dest}"
+ git clone "hg::${src}" "${dest}"
if [ "x${branch}" != "xdefault" ]; then
cd "${dest}"
git checkout "branches/${branch}"
+
+ # This does not work: the SHA from hg and git
+ # are not the same...
+ #git reset --hard ${rev}
+
cd ..
fi