Changes between Version 49 and Version 50 of ReleaseGuidelines


Ignore:
Timestamp:
05/02/17 19:11:24 (7 years ago)
Author:
zaytsev
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseGuidelines

    v49 v50  
    1818Search previously created ticket with task about next version release (create if ticket not found) and follow by steps while preparing for the release: 
    1919 
     20  * prepare repository for release 
     21{{{ 
     22git fetch 
     23git checkout master 
     24git reset --hard origin/master 
     25git clean -dfx 
     26./autogen.sh 
     27mkdir dist; cd dist; ../configure; cd .. 
     28}}} 
    2029 * download PO-translations from Transifex.net by command {{{MC_SOURCE_ROOT_DIR=$(pwd) maint/utils/sync-transifex/po-fromTransifex.sh}}} (see before: [wiki:TxRepoSetup how to set up local tx-repository])  
    2130 * store translations in git repo by following commands: 
    2231{{{ 
    23 git add po/*.po  
     32git add po/*.po 
     33make -C dist/po update-po 
    2434git commit -s -m 'Update translations from Transifex' 
    2535git push origin master 
     
    4959 * create tar.(bz2|xz) package files 
    5060{{{ 
    51 ./autogen.sh 
    52 mkdir dist; cd dist; ../configure 
    5361fakeroot make dist-bzip2 && fakeroot make dist-xz 
    5462}}}