diff --git a/devel/Makefile b/devel/Makefile index d23559dad04e..0fa85c6d856f 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3476,6 +3476,7 @@ SUBDIR += toh SUBDIR += tokamak SUBDIR += tortoisehg1 + SUBDIR += tortoisehg2 SUBDIR += tpasm SUBDIR += tpg SUBDIR += trio diff --git a/devel/tortoisehg2/Makefile b/devel/tortoisehg2/Makefile new file mode 100644 index 000000000000..e2217a07e7c5 --- /dev/null +++ b/devel/tortoisehg2/Makefile @@ -0,0 +1,76 @@ +# New ports collection makefile for: tortoisehg2 +# Date created: 7 May 2011 +# Whom: arrowdodger <6yearold@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= tortoisehg +PORTVERSION= 2.0.5 +CATEGORIES= devel +MASTER_SITES= http://cdn.bitbucket.org/tortoisehg/targz/downloads/ + +MAINTAINER= 6yearold@gmail.com +COMMENT= thg script from TortoiseHG + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4-core>=4.8.3:${PORTSDIR}/devel/py-qt4-core \ + ${PYTHON_PKGNAMEPREFIX}qt4-qscintilla2>=4.8.3:${PORTSDIR}/devel/py-qt4-qscintilla2 \ + ${PYTHON_PKGNAMEPREFIX}qt4-network>=4.8.3:${PORTSDIR}/net/py-qt4-network \ + ${PYTHON_PKGNAMEPREFIX}qt4-gui>=4.8.3:${PORTSDIR}/x11-toolkits/py-qt4-gui \ + ${PYTHON_PKGNAMEPREFIX}qt4-xml>=4.8.3:${PORTSDIR}/textproc/py-qt4-xml +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4-core>=4.8.3:${PORTSDIR}/devel/py-qt4-core \ + ${PYTHON_PKGNAMEPREFIX}qt4-qscintilla2>=4.8.3:${PORTSDIR}/devel/py-qt4-qscintilla2 \ + ${PYTHON_PKGNAMEPREFIX}qt4-network>=4.8.3:${PORTSDIR}/net/py-qt4-network \ + ${PYTHON_PKGNAMEPREFIX}qt4-gui>=4.8.3:${PORTSDIR}/x11-toolkits/py-qt4-gui \ + hg:${PORTSDIR}/devel/mercurial \ + ${PYTHON_SITELIBDIR}/iniparse/ini.py:${PORTSDIR}/devel/py-iniparse \ + pygmentize:${PORTSDIR}/textproc/py-pygments + +OPTIONS= NAUTILUS "Install TortoiseHG Nautilus extension" off + +CONFLICTS= tortoisehg-1* + +INSTALLS_ICONS= yes + +USE_PYTHON= yes +USE_PYDISTUTILS=yes +INSTALLS_EGGINFO=yes + +.include + +.if defined(WITHOUT_NLS) +PLIST_SUB+= NLS="@comment " +.else +PLIST_SUB+= NLS="" +USE_GETTEXT= yes +.endif + +.if defined(WITHOUT_NAUTILUS) +PLIST_SUB+= NAUTILUS="@comment " +.else +PLIST_SUB+= NAUTILUS="" +.endif + +post-patch: + @${REINPLACE_CMD} -e '/_path/ s|/usr|${PREFIX}|' ${WRKSRC}/${PYSETUP} + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/thg +.if defined(WITHOUT_NLS) + @${REINPLACE_CMD} -e 's/^%%NLS%%/# /' ${WRKSRC}/${PYSETUP} +.else + @${REINPLACE_CMD} -e 's/^%%NLS%%//' ${WRKSRC}/${PYSETUP} +.endif +.if defined(WITHOUT_NAUTILUS) + @${REINPLACE_CMD} -e 's/^%%NAUTILUS%%/# /' ${WRKSRC}/${PYSETUP} +.else + @${REINPLACE_CMD} -e 's/^%%NAUTILUS%%//' ${WRKSRC}/${PYSETUP} +.endif + +post-install: + ${MKDIR} ${PREFIX}/share/tortoisehg + ${INSTALL_DATA} ${WRKSRC}/contrib/mergetools.rc ${PREFIX}/share/tortoisehg/ + + @${ECHO_MSG} + @${CAT} pkg-message + @${ECHO_MSG} + +.include diff --git a/devel/tortoisehg2/distinfo b/devel/tortoisehg2/distinfo new file mode 100644 index 000000000000..fc8f6bca0946 --- /dev/null +++ b/devel/tortoisehg2/distinfo @@ -0,0 +1,2 @@ +SHA256 (tortoisehg-2.0.5.tar.gz) = 758bf7fbe77075fb85b90d1803530d3bb215fcc07f8ce23a1dcbffed87cfd878 +SIZE (tortoisehg-2.0.5.tar.gz) = 8850336 diff --git a/devel/tortoisehg2/files/patch-setup.py b/devel/tortoisehg2/files/patch-setup.py new file mode 100644 index 000000000000..ac0c6df5f82b --- /dev/null +++ b/devel/tortoisehg2/files/patch-setup.py @@ -0,0 +1,19 @@ +--- setup.py_ 2011-05-02 07:06:56.000000000 +0400 ++++ setup.py 2011-05-25 15:54:34.833312978 +0400 +@@ -407,11 +407,11 @@ + _data_files = [(os.path.join('share/pixmaps/tortoisehg', root), + [os.path.join(root, file_) for file_ in files]) + for root, dirs, files in os.walk('icons')] +- _data_files += [(os.path.join('share', root), +- [os.path.join(root, file_) for file_ in files]) +- for root, dirs, files in os.walk('locale')] +- _data_files += [('lib/nautilus/extensions-2.0/python', +- ['contrib/nautilus-thg.py'])] ++%%NLS%% _data_files += [(os.path.join('share', root), ++%%NLS%% [os.path.join(root, file_) for file_ in files]) ++%%NLS%% for root, dirs, files in os.walk('locale')] ++%%NAUTILUS%% _data_files += [('lib/nautilus/extensions-2.0/python', ++%%NAUTILUS%% ['contrib/nautilus-thg.py'])] + + # Create a config.py. Distributions will need to supply their own + cfgfile = os.path.join('tortoisehg', 'util', 'config.py') diff --git a/devel/tortoisehg2/files/patch-thg b/devel/tortoisehg2/files/patch-thg new file mode 100644 index 000000000000..7fa3b4644559 --- /dev/null +++ b/devel/tortoisehg2/files/patch-thg @@ -0,0 +1,11 @@ +--- thg_ 2011-05-02 01:39:58.000000000 +0400 ++++ thg 2011-05-25 15:51:43.418176138 +0400 +@@ -10,7 +10,7 @@ + + import os + import sys +- ++os.environ["PATH"] += ":%%LOCALBASE%%/kde4/bin" + if hasattr(sys, "frozen"): + if sys.frozen == 'windows_exe' and 'THGDEBUG' in os.environ: + import win32traceutil diff --git a/devel/tortoisehg2/pkg-descr b/devel/tortoisehg2/pkg-descr new file mode 100644 index 000000000000..9f47dc8f2190 --- /dev/null +++ b/devel/tortoisehg2/pkg-descr @@ -0,0 +1,7 @@ +TortoiseHg is a Windows shell extension and a series of +applications for the Mercurial distributed revision control +system. It also includes a Gnome/Nautilus extension and +a CLI wrapper application so the TortoiseHg tools can be +used on non-Windows platforms. + +WWW: http://tortoisehg.bitbucket.org/ diff --git a/devel/tortoisehg2/pkg-message b/devel/tortoisehg2/pkg-message new file mode 100644 index 000000000000..3466b64d7d34 --- /dev/null +++ b/devel/tortoisehg2/pkg-message @@ -0,0 +1,4 @@ +It is recommended to %include TortoiseHG's mergetools.rc into your ~/.hgrc file, +especially if you use textproc/kdiff3 as your merge tool. + +%include /usr/local/share/tortoisehg/mergetools.rc diff --git a/devel/tortoisehg2/pkg-plist b/devel/tortoisehg2/pkg-plist new file mode 100644 index 000000000000..db4d928f8922 --- /dev/null +++ b/devel/tortoisehg2/pkg-plist @@ -0,0 +1,562 @@ +bin/thg +%%NAUTILUS%%lib/nautilus/extensions-2.0/python/nautilus-thg.py +%%PYTHON_SITELIBDIR%%/tortoisehg/__init__.py +%%PYTHON_SITELIBDIR%%/tortoisehg/__init__.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/__init__.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/__init__.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/__init__.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/__init__.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/about.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/about.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/about.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/annotate.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/annotate.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/annotate.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/archive.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/archive.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/archive.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/backout.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/backout.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/backout.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bisect.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bisect.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bisect.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/blockmatcher.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/blockmatcher.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/blockmatcher.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bookmark.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bookmark.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bookmark.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/branchop.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/branchop.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/branchop.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bugreport.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bugreport.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/bugreport.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/chunks.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/chunks.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/chunks.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/clone.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/clone.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/clone.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/cmdui.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/cmdui.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/cmdui.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/commit.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/commit.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/commit.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/compress.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/compress.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/compress.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/csinfo.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/csinfo.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/csinfo.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/cslist.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/cslist.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/cslist.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/decorators.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/decorators.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/decorators.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/dnd.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/dnd.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/dnd.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/docklog.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/docklog.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/docklog.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filedialogs.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filedialogs.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filedialogs.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filelistmodel.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filelistmodel.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filelistmodel.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filelistview.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filelistview.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filelistview.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filerevmodel.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filerevmodel.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/filerevmodel.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/fileview.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/fileview.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/fileview.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/graph.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/graph.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/graph.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/grep.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/grep.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/grep.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/guess.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/guess.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/guess.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgemail.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgemail.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgemail.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgemail_ui.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgemail_ui.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgemail_ui.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgignore.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgignore.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hgignore.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hginit.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hginit.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/hginit.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/htmldelegate.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/htmldelegate.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/htmldelegate.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/htmlui.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/htmlui.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/htmlui.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/i18n.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/i18n.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/i18n.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/icons_rc.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/icons_rc.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/icons_rc.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/lexers.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/lexers.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/lexers.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/license.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/license.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/license.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/logcolumns.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/logcolumns.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/logcolumns.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/manifestdialog.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/manifestdialog.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/manifestdialog.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/manifestmodel.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/manifestmodel.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/manifestmodel.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/merge.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/merge.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/merge.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/modeltest.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/modeltest.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/modeltest.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/mq.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/mq.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/mq.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/p4pending.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/p4pending.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/p4pending.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/pathedit.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/pathedit.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/pathedit.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/pbranch.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/pbranch.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/pbranch.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/postreview.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/postreview.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/postreview.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/postreview_ui.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/postreview_ui.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/postreview_ui.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/purge.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/purge.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/purge.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qdelete.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qdelete.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qdelete.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qfold.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qfold.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qfold.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qqueue.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qqueue.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qqueue.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qrename.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qrename.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qrename.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qreorder.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qreorder.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qreorder.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qscilib.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qscilib.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qscilib.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qtlib.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qtlib.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/qtlib.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/quickbar.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/quickbar.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/quickbar.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/quickop.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/quickop.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/quickop.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rebase.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rebase.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rebase.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rejects.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rejects.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rejects.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rename.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rename.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/rename.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repofilter.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repofilter.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repofilter.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repomodel.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repomodel.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repomodel.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/reporegistry.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/reporegistry.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/reporegistry.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repotreeitem.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repotreeitem.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repotreeitem.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repotreemodel.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repotreemodel.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repotreemodel.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repoview.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repoview.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repoview.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repowidget.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repowidget.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/repowidget.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/resolve.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/resolve.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/resolve.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revdetails.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revdetails.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revdetails.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revert.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revert.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revert.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revpanel.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revpanel.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revpanel.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revset.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revset.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/revset.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/run.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/run.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/run.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/serve.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/serve.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/serve.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/serve_ui.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/serve_ui.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/serve_ui.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/settings.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/settings.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/settings.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/shellconf.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/shellconf.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/shellconf.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/shelve.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/shelve.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/shelve.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/status.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/status.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/status.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/sync.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/sync.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/sync.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/tag.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/tag.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/tag.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgimport.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgimport.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgimport.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgrepo.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgrepo.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgrepo.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgstrip.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgstrip.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thgstrip.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thread.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thread.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/thread.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/update.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/update.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/update.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/visdiff.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/visdiff.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/visdiff.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/wctxactions.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/wctxactions.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/wctxactions.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/webconf.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/webconf.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/webconf.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/webconf_ui.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/webconf_ui.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/webconf_ui.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/workbench.py +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/workbench.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/hgqt/workbench.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/__init__.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/__init__.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/__init__.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/__version__.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/__version__.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/__version__.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/cachethg.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/cachethg.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/cachethg.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/colormap.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/colormap.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/colormap.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/config.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/config.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/config.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/debugthg.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/debugthg.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/debugthg.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hglib.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hglib.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hglib.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hgshelve.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hgshelve.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hgshelve.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hgversion.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hgversion.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/hgversion.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/i18n.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/i18n.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/i18n.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/menuthg.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/menuthg.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/menuthg.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/patchctx.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/patchctx.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/patchctx.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/paths.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/paths.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/paths.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/prej.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/prej.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/prej.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/settings.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/settings.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/settings.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/shlib.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/shlib.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/shlib.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/thgstatus.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/thgstatus.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/thgstatus.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/thread2.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/thread2.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/thread2.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/version.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/version.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/version.pyo +%%PYTHON_SITELIBDIR%%/tortoisehg/util/wconfig.py +%%PYTHON_SITELIBDIR%%/tortoisehg/util/wconfig.pyc +%%PYTHON_SITELIBDIR%%/tortoisehg/util/wconfig.pyo +%%NLS%%share/locale/ca/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/cs/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/da/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/de/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/en_AU/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/es/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/et/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/fa/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/fr/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/he/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/hr/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/hu/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/it/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/ja/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/ko/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/nb/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/nl/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/nn/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/oc/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/pl/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/pt/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/ru/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/sr/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/sv/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/tr/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/uk/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/tortoisehg.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/tortoisehg.mo +share/pixmaps/tortoisehg/icons/16x16/apps/reviewboard.png +share/pixmaps/tortoisehg/icons/22x22/actions/window-close.png +share/pixmaps/tortoisehg/icons/24x24/actions/hg-incoming.png +share/pixmaps/tortoisehg/icons/24x24/actions/hg-outgoing.png +share/pixmaps/tortoisehg/icons/24x24/actions/hg-pull.png +share/pixmaps/tortoisehg/icons/24x24/actions/hg-push.png +share/pixmaps/tortoisehg/icons/32x32/actions/hg-bookmarks.png +share/pixmaps/tortoisehg/icons/README.txt +share/pixmaps/tortoisehg/icons/TortoiseMerge.ico +share/pixmaps/tortoisehg/icons/branch.ico +share/pixmaps/tortoisehg/icons/detect_rename.ico +share/pixmaps/tortoisehg/icons/expander-close.png +share/pixmaps/tortoisehg/icons/expander-open.png +share/pixmaps/tortoisehg/icons/fallback.svg +share/pixmaps/tortoisehg/icons/fileadd.ico +share/pixmaps/tortoisehg/icons/filedelete.ico +share/pixmaps/tortoisehg/icons/filemodify.ico +share/pixmaps/tortoisehg/icons/general.ico +share/pixmaps/tortoisehg/icons/hg.ico +share/pixmaps/tortoisehg/icons/hgB.ico +share/pixmaps/tortoisehg/icons/ignore.ico +share/pixmaps/tortoisehg/icons/menuabout.ico +share/pixmaps/tortoisehg/icons/menuadd.ico +share/pixmaps/tortoisehg/icons/menublame.ico +share/pixmaps/tortoisehg/icons/menucheckout.ico +share/pixmaps/tortoisehg/icons/menuclone.ico +share/pixmaps/tortoisehg/icons/menucommit.ico +share/pixmaps/tortoisehg/icons/menucreaterepos.ico +share/pixmaps/tortoisehg/icons/menudelete.ico +share/pixmaps/tortoisehg/icons/menudiff.ico +share/pixmaps/tortoisehg/icons/menuhelp.ico +share/pixmaps/tortoisehg/icons/menuimport.ico +share/pixmaps/tortoisehg/icons/menulog.ico +share/pixmaps/tortoisehg/icons/menumerge.ico +share/pixmaps/tortoisehg/icons/menupatch.ico +share/pixmaps/tortoisehg/icons/menurelocate.ico +share/pixmaps/tortoisehg/icons/menurepobrowse.ico +share/pixmaps/tortoisehg/icons/menurevert.ico +share/pixmaps/tortoisehg/icons/menurevisiongraph.ico +share/pixmaps/tortoisehg/icons/menusettings.ico +share/pixmaps/tortoisehg/icons/menushowchanged.ico +share/pixmaps/tortoisehg/icons/menusynch.ico +share/pixmaps/tortoisehg/icons/proxy.ico +share/pixmaps/tortoisehg/icons/refresh_overlays.ico +share/pixmaps/tortoisehg/icons/scalable/actions/application-exit.svg +share/pixmaps/tortoisehg/icons/scalable/actions/compare-files.svg +share/pixmaps/tortoisehg/icons/scalable/actions/copy-hash.svg +share/pixmaps/tortoisehg/icons/scalable/actions/copy-patch.svg +share/pixmaps/tortoisehg/icons/scalable/actions/dialog-warning.svg +share/pixmaps/tortoisehg/icons/scalable/actions/document-new.svg +share/pixmaps/tortoisehg/icons/scalable/actions/edit-copy.svg +share/pixmaps/tortoisehg/icons/scalable/actions/edit-cut.svg +share/pixmaps/tortoisehg/icons/scalable/actions/edit-file.svg +share/pixmaps/tortoisehg/icons/scalable/actions/edit-find.svg +share/pixmaps/tortoisehg/icons/scalable/actions/go-down.svg +share/pixmaps/tortoisehg/icons/scalable/actions/go-jump.svg +share/pixmaps/tortoisehg/icons/scalable/actions/go-next.svg +share/pixmaps/tortoisehg/icons/scalable/actions/go-previous.svg +share/pixmaps/tortoisehg/icons/scalable/actions/go-up.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-annotate.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-archive.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-bisect-bad-good.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-bisect-good-bad.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-bisect.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-clone.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-commit.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-compress.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-export.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-extensions.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-grep.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-import.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-incoming.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-init.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-log.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-merge.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-outgoing.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-pull-to-here.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-pull.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-purge.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-push.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qdelete.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qfold.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qgoto.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qguard.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qpop-all.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qpop.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qpush-all.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qpush.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-qreorder.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-rebase.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-recover.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-remove.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-rename.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-revert.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-status.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-tag.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-transplant.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-undo.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-update.svg +share/pixmaps/tortoisehg/icons/scalable/actions/hg-verify.svg +share/pixmaps/tortoisehg/icons/scalable/actions/ldiff.svg +share/pixmaps/tortoisehg/icons/scalable/actions/mail-forward.svg +share/pixmaps/tortoisehg/icons/scalable/actions/new-group.svg +share/pixmaps/tortoisehg/icons/scalable/actions/process-stop.svg +share/pixmaps/tortoisehg/icons/scalable/actions/qfinish.svg +share/pixmaps/tortoisehg/icons/scalable/actions/qimport.svg +share/pixmaps/tortoisehg/icons/scalable/actions/tasktab-refresh.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-console.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-log-load-all.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-mq.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-password.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-qreorder.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-reporegistry.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-repository-open.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-shelve-delete-left.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-shelve-delete-right.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-shelve-move-left-all.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-shelve-move-left-chunks.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-shelve-move-left-file.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-shelve-move-right-all.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-shelve-move-right-chunks.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-shelve-move-right-file.svg +share/pixmaps/tortoisehg/icons/scalable/actions/thg-sync.svg +share/pixmaps/tortoisehg/icons/scalable/actions/view-annotate.svg +share/pixmaps/tortoisehg/icons/scalable/actions/view-at-revision.svg +share/pixmaps/tortoisehg/icons/scalable/actions/view-diff.svg +share/pixmaps/tortoisehg/icons/scalable/actions/view-file.svg +share/pixmaps/tortoisehg/icons/scalable/actions/view-filter.svg +share/pixmaps/tortoisehg/icons/scalable/actions/view-refresh.svg +share/pixmaps/tortoisehg/icons/scalable/actions/visualdiff.svg +share/pixmaps/tortoisehg/icons/scalable/apps/help-browser.svg +share/pixmaps/tortoisehg/icons/scalable/apps/preferences-desktop-font.svg +share/pixmaps/tortoisehg/icons/scalable/apps/system-file-manager.svg +share/pixmaps/tortoisehg/icons/scalable/apps/thg-logo.svg +share/pixmaps/tortoisehg/icons/scalable/apps/utilities-terminal.svg +share/pixmaps/tortoisehg/icons/scalable/status/thg-error.svg +share/pixmaps/tortoisehg/icons/scalable/status/thg-file-merged.svg +share/pixmaps/tortoisehg/icons/scalable/status/thg-file-p0.svg +share/pixmaps/tortoisehg/icons/scalable/status/thg-file-p1.svg +share/pixmaps/tortoisehg/icons/scalable/status/thg-success.svg +share/pixmaps/tortoisehg/icons/scalable/status/thg-warning.svg +share/pixmaps/tortoisehg/icons/settings_repo.ico +share/pixmaps/tortoisehg/icons/settings_user.ico +share/pixmaps/tortoisehg/icons/shelve.ico +share/pixmaps/tortoisehg/icons/svg/add.svg +share/pixmaps/tortoisehg/icons/svg/checkout.svg +share/pixmaps/tortoisehg/icons/svg/clone.svg +share/pixmaps/tortoisehg/icons/svg/commit.svg +share/pixmaps/tortoisehg/icons/svg/detect_rename.svg +share/pixmaps/tortoisehg/icons/svg/ignore.svg +share/pixmaps/tortoisehg/icons/svg/init.svg +share/pixmaps/tortoisehg/icons/svg/log.svg +share/pixmaps/tortoisehg/icons/svg/merge.svg +share/pixmaps/tortoisehg/icons/svg/proxy.svg +share/pixmaps/tortoisehg/icons/svg/recovery.svg +share/pixmaps/tortoisehg/icons/svg/refresh_overlays.svg +share/pixmaps/tortoisehg/icons/svg/remove.svg +share/pixmaps/tortoisehg/icons/svg/repobrowse.svg +share/pixmaps/tortoisehg/icons/svg/shelve.svg +share/pixmaps/tortoisehg/icons/svg/sync.svg +share/pixmaps/tortoisehg/icons/svg/thg_logo.svg +share/pixmaps/tortoisehg/icons/thg_logo.ico +share/pixmaps/tortoisehg/icons/thg_logo_92x50.png +%%DATADIR%%/mergetools.rc +@dirrm share/pixmaps/tortoisehg/icons/16x16/apps +@dirrm share/pixmaps/tortoisehg/icons/16x16 +@dirrm share/pixmaps/tortoisehg/icons/22x22/actions +@dirrm share/pixmaps/tortoisehg/icons/22x22 +@dirrm share/pixmaps/tortoisehg/icons/24x24/actions +@dirrm share/pixmaps/tortoisehg/icons/24x24 +@dirrm share/pixmaps/tortoisehg/icons/32x32/actions +@dirrm share/pixmaps/tortoisehg/icons/32x32 +@dirrm share/pixmaps/tortoisehg/icons/scalable/apps +@dirrm share/pixmaps/tortoisehg/icons/scalable/actions +@dirrm share/pixmaps/tortoisehg/icons/scalable/status +@dirrm share/pixmaps/tortoisehg/icons/scalable +@dirrm share/pixmaps/tortoisehg/icons/svg +@dirrm share/pixmaps/tortoisehg/icons +@dirrm share/pixmaps/tortoisehg +@dirrm %%DATADIR%% +%%NLS%%@dirrmtry share/locale/oc/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/oc +@dirrm %%PYTHON_SITELIBDIR%%/tortoisehg/util +@dirrm %%PYTHON_SITELIBDIR%%/tortoisehg/hgqt +@dirrm %%PYTHON_SITELIBDIR%%/tortoisehg +%%NAUTILUS%%@dirrmtry lib/nautilus/extensions-2.0/python +%%NAUTILUS%%@dirrmtry lib/nautilus/extensions-2.0 +%%NAUTILUS%%@dirrmtry lib/nautilus