Code

- fix case where action isn't present in form, e.g., for xmlrpc
[roundup.git] / BUILD.txt
1 Building Releases
2 =================
4 Roundup is currently a source-only release - it has no binary components. I
5 want it to stay that way, too. This document describes how to build a
6 source release. Users of Roundup should read the doc/installation.txt file
7 to find out how to install this software.
9 Building and distributing a release of Roundup is done by running:
11 1.  Make sure the unit tests run! "./run_tests.py"
12 2.  Edit roundup/__init__.py and doc/announcement.txt to reflect the new
13     version and appropriate announcements. Add truncated announcement to
14     setup.py description field.
15 3.  Note the SVN revision in the CHANGES.txt file.
16 4.  Clean out all *.orig, *.rej, .#* files from the source.
17 5.  python setup.py clean --all
18 6.  Edit setup.py to ensure that all information therein (version, contact
19     information etc) is correct.
20 7.  python setup.py sdist --manifest-only
21 8.  Check the MANIFEST to make sure that any new files are included. If
22     they are not, edit MANIFEST.in to include them. "Documentation" for
23     MANIFEST.in may be found in disutils.filelist._parse_template_line.
24 9.  python setup.py sdist
25     (if you find sdist a little verbose, add "--quiet" to the end of the
26      command)
27 10. Unpack the new dist file in /tmp then a) run_test.py and b) demo.py
28     with all available Python versions.
29 11. Assuming all is well tag the release in SVN::
31       svn cp https://roundup.svn.sourceforge.net/svnroot/roundup/roundup/trunk \
32       https://roundup.svn.sourceforge.net/svnroot/roundup/roundup/tags/release-1.4.12
34 11. python setup.py bdist_rpm
35 12. python setup.py bdist_wininst
36 13. Send doc/announcement.txt to python-announce@python.org and
37     roundup-users@lists.sourceforge.net and
38     roundup-devel@lists.sourceforge.net
40 So, those commands in a nice, cut'n'pasteable form::
42  find . -name '*.orig' -exec rm {} \;
43  find . -name '*.rej' -exec rm {} \;
44  find . -name '.#*' -exec rm {} \;
45  python setup.py clean --all
46  python setup.py sdist --manifest-only
47  python setup.py sdist --quiet
48  python setup.py bdist_rpm
49  python setup.py bdist_wininst
50  python setup.py register
51  python setup.py sdist upload --sign
52  python setup.py bdist_wininst upload --sign
54 (if the last two fail make sure you're using python2.5+)