Changes between Version 23 and Version 24 of ReleaseProcedure


Ignore:
Timestamp:
Mar 4, 2008, 1:09:31 PM (16 years ago)
Author:
Nicklas Nordborg
Comment:

Change links to subversion repository

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseProcedure

    v23 v24  
    5858 1. Create the new minor
    5959{{{
    60 svn copy http://lev.thep.lu.se/repository/base/trunk \
    61     http://lev.thep.lu.se/repository/base/branches/A.B-stable \
     60svn copy http://base.thep.lu.se/svn/trunk \
     61    http://base.thep.lu.se/svn/branches/A.B-stable \
    6262    -m "Forking new minor version A.B branch"
    6363}}}
     
    124124 1. Create a tag using a one liner like
    125125{{{
    126 svn copy http://lev.thep.lu.se/repository/base/branches/A.B-stable \
    127     http://lev.thep.lu.se/repository/base/tags/A.B \
     126svn copy http://base.thep.lu.se/svn/branches/A.B-stable \
     127    http://base.thep.lu.se/svn/tags/A.B \
    128128    -m "Tagging version A.B"
    129129}}}
     
    133133 1. Create a distribution package, and example packages:
    134134{{{
    135 svn co http://lev.thep.lu.se/repository/base/tags/A.B A.B_dist
     135svn co http://base.thep.lu.se/svn/tags/A.B A.B_dist
    136136cd A.B_dist
    137137ant package
     
    142142  i. Check out the new minor branch
    143143{{{
    144 svn co http://lev.thep.lu.se/repository/base/branches/A.B-stable A.B
     144svn co http://base.thep.lu.se/svn/branches/A.B-stable A.B
    145145}}}
    146146  i. Update version number in `build.xml`. Locate and change the
     
    158158  i. In section '''BASE ''latest release'' ''' modify the svn command to
    159159{{{
    160 svn checkout http://lev.thep.lu.se/repository/base/tags/A.B base-A.B
     160svn checkout http://base.thep.lu.se/svn/tags/A.B base-A.B
    161161}}}
    162162  i. In section '''BASE ''stable'' ''' update link to
    163163     `[milestone:A.B.1 A.B.1]` and modify the svn command to
    164164{{{
    165 svn checkout http://lev.thep.lu.se/repository/base/branches/A.B-stable base-A.B
     165svn checkout http://base.thep.lu.se/svn/branches/A.B-stable base-A.B
    166166}}}
    167167  i. In section '''BASE ''devel'' ''' update link to `[milestone:A.B+1 A.B+1]`.[[br]][[br]]
     
    183183  i. Checkout a pristine version of the trunk.
    184184{{{
    185 svn checkout http://lev.thep.lu.se/repository/base/trunk trunk_merge
     185svn checkout http://base.thep.lu.se/svn/trunk trunk_merge
    186186}}}
    187187  i. Merge changes into trunk. In this example the difference between
     
    190190{{{
    191191cd trunk_merge
    192 svn merge http://lev.thep.lu.se/repository/base/branches/A.B-stable@fork_revision \
    193           http://lev.thep.lu.se/repository/base/tags/A.B
     192svn merge http://base.thep.lu.se/svn/branches/A.B-stable@fork_revision \
     193          http://base.thep.lu.se/svn/tags/A.B
    194194}}}
    195195  i. Resolve all conflicts. Run tests and perform all other
     
    257257 1. Create a tag using a one liner like
    258258{{{
    259 svn copy http://lev.thep.lu.se/repository/base/branches/A.B-stable \
    260     http://lev.thep.lu.se/repository/base/tags/A.B.C \
     259svn copy http://base.thep.lu.se/svn/branches/A.B-stable \
     260    http://base.thep.lu.se/svn/tags/A.B.C \
    261261    -m "Tagging version A.B.C"
    262262}}}
     
    266266 1. Create a distribution package, and example packages:
    267267{{{
    268 svn co http://lev.thep.lu.se/repository/base/tags/A.B.C A.B.C_dist
     268svn co http://base.thep.lu.se/svn/tags/A.B.C A.B.C_dist
    269269cd A.B.C_dist
    270270ant package
     
    287287  i. In section '''base ''latest release'' ''' modify the svn command to
    288288{{{
    289 svn checkout http://lev.thep.lu.se/repository/base/tags/A.B.C base-A.B.C
     289svn checkout http://base.thep.lu.se/svn/tags/A.B.C base-A.B.C
    290290}}}
    291291  i. In section '''base ''stable'' ''' update link to
     
    298298  i. Checkout a pristine version of the trunk.
    299299{{{
    300 svn checkout http://lev.thep.lu.se/repository/base/trunk trunk_merge
     300svn checkout http://base.thep.lu.se/svn/trunk trunk_merge
    301301}}}
    302302  i. Merge changes into trunk. In this example the difference between a
     
    305305{{{
    306306cd trunk_merge
    307 svn merge http://lev.thep.lu.se/repository/base/tags/A.B \
    308           http://lev.thep.lu.se/repository/base/tags/A.B.1
     307svn merge http://base.thep.lu.se/svn/tags/A.B \
     308          http://base.thep.lu.se/svn/tags/A.B.1
    309309}}}
    310310  i. Resolve all conflicts. Run tests and perform all other