]> git.ipfire.org Git - thirdparty/git.git/commit - Makefile
Add Python support library for remote helpers
authorSverre Rabbelier <srabbelier@gmail.com>
Wed, 18 Nov 2009 01:42:32 +0000 (02:42 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 24 Nov 2009 23:50:20 +0000 (15:50 -0800)
commit2fe40b63001844f9a884ac9cb49cabd5e183b62f
tree6667747ef0e2b659339fa867cf960d64fe643ee5
parentd4e1b47a922576e6af98cd84913471a6d3096ac0
Add Python support library for remote helpers

This patch introduces parts of a Python package called
"git_remote_helpers" containing the building blocks for
remote helpers written in Python.

No actual remote helpers are part of this patch, this patch only
includes the common basics needed to start writing such helpers.

The patch includes the necessary Makefile additions to build and
install the git_remote_helpers Python package along with the rest of
Git.

This patch is based on Johan Herland's git_remote_cvs patch and
has been improved by the following contributions:
- David Aguilar: Lots of Python coding style fixes
- David Aguilar: DESTDIR support in Makefile

Cc: David Aguilar <davvid@gmail.com>
Cc: Johan Herland <johan@herland.net>
Signed-off-by: Sverre Rabbelier <srabbelier@gmail.com>
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile
git_remote_helpers/.gitignore [new file with mode: 0644]
git_remote_helpers/Makefile [new file with mode: 0644]
git_remote_helpers/__init__.py [new file with mode: 0644]
git_remote_helpers/git/__init__.py [new file with mode: 0644]
git_remote_helpers/git/git.py [new file with mode: 0644]
git_remote_helpers/setup.py [new file with mode: 0644]
git_remote_helpers/util.py [new file with mode: 0644]
t/test-lib.sh