1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
WINDOWS INSTALLER FOR SUBVERSION PYTHON BINDINGS
================================================
To build a Windows installer for the Subversion Python bindings:
1. Build the Subversion Python bindings for Windows using Visual C++ 6.0.
2. Update the version in setup.py to match your version of Subversion.
3. Create "libsvn" and "svn" directories. Copy the necessary Python (*.py)
and DLL files (*.dll) into these directories.
4. Run python setup.py bdist_wininst --target-version=2.4 to build an
installer for Python 2.4. If you built your bindings for a different
version of Python, adjust that command-line appropriately.
That's it! Python will put the installer in the 'dist' directory.
List of required files (as of Subversion 1.4.0)
-----------------------------------------------
libsvn:
__init__.py
_client.dll
_core.dll
_delta.dll
_fs.dll
_ra.dll
_repos.dll
_wc.dll
client.py
core.py
delta.py
fs.py
libapr.dll
libapriconv.dll
libaprutil.dll
libdb44.dll
libeay32.dll
libsvn_swig_py-1.dll
ra.py
repos.py
ssleay32.dll
wc.py
svn:
client.py
core.py
delta.py
fs.py
ra.py
repos.py
wc.py
__init__.py
|