Changeset 261 in tailor
- Timestamp:
- 04/19/05 01:38:02 (8 years ago)
- Hash name:
- 20050418233802-97f81-804b674618cc29d90cedb4e4ca8fa81959ba125d
- Files:
-
- 1 added
- 3 edited
-
vcpx/dualwd.py (modified) (1 diff)
-
README (modified) (5 diffs)
-
setup.py (modified) (1 diff)
-
vcpx/monotone.py (added)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/dualwd.py
r242 r261 24 24 from cvsps import CvspsWorkingDir 25 25 from darcs import DarcsWorkingDir 26 from monotone import MonotoneWorkingDir 26 27 27 28 class DualWorkingDir(UpdatableSourceWorkingDir, SyncronizableTargetWorkingDir): -
README
r249 r261 2 2 ===== 3 3 4 tailor.py is a tool to migrate changesets between CVS, Subversion, and5 darcs repositories.4 tailor.py is a tool to migrate changesets between CVS, Subversion, 5 darcs and monotone repositories. 6 6 7 7 This script makes it easier to keep the upstream changes merged in … … 34 34 35 35 Since it relays on external tools to do the real work such as `cvs`, 36 `darcs` and `svn`, they need to be installed as well. 36 `darcs` and `svn`, they need to be installed as well, although only 37 those you will actually use. 37 38 38 39 Make tailor.py executable:: … … 42 43 You can either run tailor.py where it is currently located, or move it 43 44 along with the vcpx directory to a location in your PATH. 45 46 There's even a standard setup.py that you may use to install the 47 script using Python conventional distutils. 44 48 45 49 … … 174 178 175 179 .. _wiki page: 176 http://www.scannedinavian.org/DarcsWiki/ ConvertingFromSubversion180 http://www.scannedinavian.org/DarcsWiki/Tailor 177 181 178 182 I will be more than happy to answer any doubt, question or suggestion … … 188 192 189 193 194 Monotone support 195 ---------------- 196 197 Monotone_ support was kindly contributed by `Markus Schiltknecht 198 <markus@bluegap.ch>`. Since I'm not currently using monotone (so 199 little time, so many VCSs...) I'm not in position to test it out 200 properly, but I'll do my best to keep it in sync, maybe with your 201 support :-) 202 203 .. _monotone: http://www.venge.net/monotone/ 204 205 190 206 About this document 191 207 =================== -
setup.py
r256 r261 4 4 5 5 setup(name='tailor', 6 version='devel-2005-0 2-10',6 version='devel-2005-04-19', 7 7 author='Lele Gaifax', 8 8 author_email='lele@nautilus.homeip.net', 9 9 packages=['vcpx'], 10 10 scripts=['tailor.py'], 11 description=' a tool to migrate changesets between CVS, Subversion, and darcsrepositories.',11 description='A tool to migrate changesets between CVS, Subversion, darcs and monotone repositories.', 12 12 long_description="""\ 13 13 This script makes it easier to keep the upstream changes merged in
Note: See TracChangeset
for help on using the changeset viewer.
