Changeset 1367 in tailor


Ignore:
Timestamp:
04/28/07 16:37:47 (6 years ago)
Author:
Wouter van Heyst <larstiq@…>
Hash name:
20070428143747-143c3-63debe9f6f89a781c9c93b078efb73722bfefcf3
Message:

bazaar-ng-renaming
What was formerly know as Bazaar-NG is no longer the next generation, but the current one.
See  http://bazaar-vcs.org/Baz1x and  http://bazaar-vcs.org/Branding.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • README

    r1365 r1367  
    1111===== 
    1212 
    13 Tailor is a tool to migrate changesets between ArX_, Bazaar_, 
    14 `Bazaar-NG`_, CVS_, Codeville_, Darcs_, Git_, Mercurial_, Monotone_, 
     13Tailor is a tool to migrate changesets between ArX_, Baz_, 
     14`Bazaar`_, CVS_, Codeville_, Darcs_, Git_, Mercurial_, Monotone_, 
    1515Perforce_, Subversion_ and Tla_ [#]_ repositories. 
    1616 
     
    5353       get pending changes and build tailor ChangeSets out of them. 
    5454 
    55        To the opposite, Bazaar (1.0, not Bazaar-NG), Perforce and Tla 
     55       To the opposite, Baz (1.0, not Bazaar), Perforce and Tla 
    5656       are supported only as source systems. 
    5757 
    5858.. _arx: http://www.nongnu.org/arx/ 
    59 .. _bazaar: http://bazaar.canonical.com/ 
    60 .. _bazaar-ng: http://www.bazaar-ng.org/ 
     59.. _baz: http://bazaar-vcs.org/Baz1x 
     60.. _bazaar: http://bazaar-vcs.org/ 
    6161.. _codeville: http://www.codeville.org/ 
    6262.. _cvs: http://www.nongnu.org/cvs/ 
     
    274274 
    275275c) ArX and Codeville are (currently) only supported as *target*; 
    276    Bazaar and Tla only as *source*. 
     276   Baz and Tla only as *source*. 
    277277 
    278278d) Specifying ``--subdir .`` may not work, in particular when dealing 
     
    381381and create a new Mercurial repository in ``~/mypxlib/migrated``. 
    382382 
    383 On final example to show the syntax of Bazaar sources:: 
     383On final example to show the syntax of Baz sources:: 
    384384 
    385385    [project] 
     
    952952    $ ./tester 
    953953 
    954 will migrate the history from a darcs repository to a bazaar-ng one, 
     954will migrate the history from a darcs repository to a Bazaar one, 
    955955forcing the author to a well-known name :-) 
    956956 
     
    11101110ArX_ support was contributed by `Walter Landry <wlandry@ucsd.edu>`_. 
    11111111 
    1112 Bazaar-NG support 
     1112Bazaar support 
    11131113----------------- 
    11141114 
    1115 `Bazaar-NG`_ support was contributed by `Johan Rydberg 
     1115`Bazaar`_ support was contributed by `Johan Rydberg 
    11161116<jrydberg@gnu.org>`_.  Nowadays it's being maintained by `Lalo Martins 
    11171117<lalo.martins@gmail.com>`_. 
  • setup.py

    r1355 r1367  
    2222a own branch of a product. 
    2323 
    24 Tailor is able to fetch the history from Arch, Bazaar-NG, CVS, Darcs 
    25 Monotone or Subversion and rewrite it over Bazaar-NG, CVS, Darcs, Git, 
     24Tailor is able to fetch the history from Arch, Bazaar, CVS, Darcs 
     25Monotone or Subversion and rewrite it over Bazaar, CVS, Darcs, Git, 
    2626Mercurial, Monotone and Subversion. 
    2727""", 
  • vcpx/tests/tailor.py

    r1272 r1367  
    202202 
    203203 
    204 [bazaarng2darcs] 
     204[bazaar2darcs] 
    205205source = bzr:oodoctest 
    206206target = darcs:oodoctest 
    207 root-directory = %(testdir)s/bazaarng2darcs 
     207root-directory = %(testdir)s/bazaar2darcs 
    208208start-revision = INITIAL 
    209209 
     
    393393        self.assertEqual(tailorizer.source.subdir, 'pxlib') 
    394394 
    395     def testDarcsAndBazaarng(self): 
    396         "Test darcs to bazaar-ng and the other way around" 
     395    def testDarcsAndBazaar(self): 
     396        "Test darcs to Bazaar and the other way around" 
    397397 
    398398        self.tailorize('darcs2bzr') 
     
    422422 
    423423 
    424 class Bazaarng(OperationalTest): 
    425     "Test the BazaarNG source backend" 
    426  
    427     def testBazaarngAndPython23(self): 
     424class Bazaar(OperationalTest): 
     425    "Test the Bazaar source backend" 
     426 
     427    def testBazaarAndPython23(self): 
    428428        "Test we detect early when running under Python < 2.4" 
    429429 
     
    432432        if version_info < (2,4): 
    433433            try: 
    434                 self.tailorize('bazaarng2darcs') 
     434                self.tailorize('bazaar2darcs') 
    435435            except TailorException, e: 
    436                 self.assert_("Bazaar-NG backend requires Python 2.4" 
     436                self.assert_("Bazaar backend requires Python 2.4" 
    437437                             in str(e)) 
    438438            else: 
    439439                self.fail("Expected a specific TailorException") 
    440440 
    441     def testBazaarngToDarcs(self): 
    442         "Test bazaar-ng to darcs" 
     441    def testBazaarToDarcs(self): 
     442        "Test bazaar to darcs" 
    443443 
    444444        try: 
    445             self.tailorize('bazaarng2darcs') 
     445            self.tailorize('bazaar2darcs') 
    446446        except TailorException, e: 
    447447            from sys import version_info 
     
    482482        self.tailorize('cvs2hg') 
    483483 
    484     def testCvsToBazaarng(self): 
    485         "Test CVS to bazaar-ng" 
     484    def testCvsToBazaar(self): 
     485        "Test CVS to Bazaar" 
    486486 
    487487        self.tailorize('cvs2bzr') 
     
    614614            self.failIf(cvs.exit_status, "%r failed" % cvs._last_command) 
    615615 
    616     def testCvsConvertDirectoryAddToBazaarng(self): 
     616    def testCvsConvertDirectoryAddToBazaar(self): 
    617617        """Test that we can handle directory adds in the cvs module to bzr.""" 
    618618 
     
    620620        t() 
    621621 
    622     def testCvspsConvertDirectoryAddToBazaarng(self): 
     622    def testCvspsConvertDirectoryAddToBazaar(self): 
    623623        """Test that we can handle directory adds in the cvsps module to bzr.""" 
    624624 
  • vcpx/repository/bzr.py

    r1329 r1367  
    11# -*- mode: python; coding: utf-8 -*- 
    2 # :Progetto: vcpx -- bazaar-ng support using the bzrlib instead of the frontend 
     2# :Progetto: vcpx -- Bazaar support using the bzrlib instead of the frontend 
    33# :Creato:   Fri Aug 19 01:06:08 CEST 2005 
    44# :Autore:   Johan Rydberg <jrydberg@gnu.org> 
     
    1010 
    1111""" 
    12 This module implements the backends for Bazaar-NG. 
     12This module implements the backends for Bazaar. 
    1313""" 
    1414 
     
    1717 
    1818from sys import version_info 
    19 assert version_info >= (2,4), "Bazaar-NG backend requires Python 2.4" 
     19assert version_info >= (2,4), "Bazaar backend requires Python 2.4" 
    2020del version_info 
    2121 
     
    4848        """ 
    4949        Create a branch with a working tree at the base directory. If the base 
    50         directory is inside a Bazaar-NG style "shared repository", it will use 
     50        directory is inside a Bazaar style "shared repository", it will use 
    5151        that to create a branch and working tree (make sure it allows working 
    5252        trees). 
Note: See TracChangeset for help on using the changeset viewer.