summaryrefslogtreecommitdiff
path: root/source4/scripting/python/samba_external
AgeCommit message (Collapse)AuthorFilesLines
2011-02-02s4-python Remove unused missing.py (used by old build system)Andrew Bartlett1-17/+0
2010-06-24s4-python: python is not always in /usr/binAndrew Tridgell1-1/+1
Using "#!/usr/bin/env python" is more portable. It still isn't ideal though, as we should really use the python path found at configure time. We do that in many places already, but some don't. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2010-04-06s4-waf: updates for the new python installer from jelmerAndrew Tridgell1-11/+0
2010-04-06s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵Andrew Tridgell1-0/+2
them
2010-04-06s4-waf: install the rest of our python filesAndrew Tridgell1-0/+9
2010-03-31s4-python: Install external included packages only if they're not present on ↵Jelmer Vernooij1-4/+3
the system.
2010-03-31samba_external: Simplify script to find missing external packages; include ↵Jelmer Vernooij1-4/+10
subunit and testtools as well.
2010-03-29s4-python: Move dnspython to lib/, like the other Python modulesJelmer Vernooij113-16825/+0
This also avoids it from being installed if it's already present on the system.
2010-03-05s4-python: only install external python libs that are missingAndrew Tridgell1-0/+12
2010-03-05s4-python: import a copy of the python dns libraryAndrew Tridgell114-0/+16829
This library is not installed on enough systems for us to rely on it being available. We use the system copy if possible, and fallback to this local copy Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>