Changeset 261 in tailor


Ignore:
Timestamp:
04/19/05 01:38:02 (8 years ago)
Author:
lele@…
Hash name:
20050418233802-97f81-804b674618cc29d90cedb4e4ca8fa81959ba125d
Message:

Integrated monotone support, as contributed by Markus Schiltknecht
Tailor is now able to use monotone as a target repository, but not
yet as a source one.

Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • vcpx/dualwd.py

    r242 r261  
    2424from cvsps import CvspsWorkingDir 
    2525from darcs import DarcsWorkingDir 
     26from monotone import MonotoneWorkingDir 
    2627 
    2728class DualWorkingDir(UpdatableSourceWorkingDir, SyncronizableTargetWorkingDir): 
  • README

    r249 r261  
    22===== 
    33 
    4 tailor.py is a tool to migrate changesets between CVS, Subversion, and 
    5 darcs repositories. 
     4tailor.py is a tool to migrate changesets between CVS, Subversion,  
     5darcs and monotone repositories. 
    66 
    77This script makes it easier to keep the upstream changes merged in 
     
    3434 
    3535Since 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 
     37those you will actually use. 
    3738 
    3839Make tailor.py executable:: 
     
    4243You can either run tailor.py where it is currently located, or move it 
    4344along with the vcpx directory to a location in your PATH. 
     45 
     46There's even a standard setup.py that you may use to install the 
     47script using Python conventional distutils. 
    4448 
    4549 
     
    174178 
    175179.. _wiki page: 
    176    http://www.scannedinavian.org/DarcsWiki/ConvertingFromSubversion 
     180   http://www.scannedinavian.org/DarcsWiki/Tailor 
    177181 
    178182I will be more than happy to answer any doubt, question or suggestion 
     
    188192 
    189193 
     194Monotone support 
     195---------------- 
     196 
     197Monotone_ support was kindly contributed by `Markus Schiltknecht 
     198<markus@bluegap.ch>`.  Since I'm not currently using monotone (so 
     199little time, so many VCSs...) I'm not in position to test it out 
     200properly, but I'll do my best to keep it in sync, maybe with your 
     201support :-) 
     202 
     203.. _monotone: http://www.venge.net/monotone/ 
     204 
     205 
    190206About this document 
    191207=================== 
  • setup.py

    r256 r261  
    44 
    55setup(name='tailor', 
    6     version='devel-2005-02-10', 
     6    version='devel-2005-04-19', 
    77    author='Lele Gaifax', 
    88    author_email='lele@nautilus.homeip.net', 
    99    packages=['vcpx'], 
    1010    scripts=['tailor.py'], 
    11     description='a tool to migrate changesets between CVS, Subversion, and darcs repositories.', 
     11    description='A tool to migrate changesets between CVS, Subversion, darcs and monotone repositories.', 
    1212    long_description="""\ 
    1313This script makes it easier to keep the upstream changes merged in 
Note: See TracChangeset for help on using the changeset viewer.