Edgewall Software

Changes between Version 15 and Version 16 of TracDev/ReleaseChecklist


Ignore:
Timestamp:
Nov 28, 2009, 9:45:00 PM (14 years ago)
Author:
Christian Boos
Comment:

found out the reason of #8847, egg_info needs to be called before sdist on Windows, when using python f2.6

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/ReleaseChecklist

    v15 v16  
    1313 * Create dist packages
    1414   * Check out trunk (or the release branch) to a '''clean''' sandbox
    15    * Build source tarballs:
    16      - ''python setup.py sdist'' on Unix, in order to get the files in the `.tar.gz` with the proper LF line endings
    17      - ''python setup.py sdist'' on Windows, in order to get the files in the `.zip` with the proper CRLF line endings; [[br]]
     15   * Build source tarballs:
     16     - On Unix: ''python setup.py sdist'' in order to get the files in the `.tar.gz` with the proper LF line endings
     17     - On Windows:
     18       - '''python setup.py egg_info''', otherwise data files will be missing;
     19         whether this is really needed or not seems to be highly depending on the version of Python.
     20         With 2.4.4 it's not needed, with 2.5.4 `sdist` won't work even with this step (!),
     21         with 2.6.1 it is needed.
     22       - ''python setup.py sdist'', in order to get the files in the `.zip` with the proper CRLF line endings; [[br]]
    1823       verify with zipinfo that the content is OK (once the templates were missing!)
    1924   * Build RPMs: ''python setup.py bdist_rpm''