/usr/share/doc/phatch/html/release.html is in phatch-doc 0.2.7.1-3.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Release Manager — Phatch 0.2 documentation</title>
<link rel="stylesheet" href="_static/default.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="top" title="Phatch 0.2 documentation" href="index.html" />
<link rel="next" title="actions" href="actions.html" />
<link rel="prev" title="Testing" href="testing.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="actions.html" title="actions"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="testing.html" title="Testing"
accesskey="P">previous</a> |</li>
<li><a href="index.html">Phatch 0.2 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="release-manager">
<h1>Release Manager<a class="headerlink" href="#release-manager" title="Permalink to this headline">ΒΆ</a></h1>
<p>For every release we chose a release manager. If you want to volunteer please let us know.</p>
<p>These are the steps a release manager has to do:</p>
<ol class="arabic">
<li><p class="first">Check the code with these tools:</p>
<div class="highlight-python"><div class="highlight"><pre>pyflakes ../phatch/ | grep -v "undefined name '_'" | grep -v 'but unused'| grep -v redefinition > pyflakes.txt
pylint --errors-only ../phatch/ | grep -v "Undefined variable '_'" | grep -v "already defined" > pylint.txt
</pre></div>
</div>
<p>Do not fix any code in <tt class="docutils literal"><span class="pre">phatch/other</span></tt>. Be carefull to fix errors to prevent breaking. For example if you remove an unused imported function <tt class="docutils literal"><span class="pre">bar</span></tt> in the module <tt class="docutils literal"><span class="pre">foo</span></tt>, be sure to check it is nowhere used as <tt class="docutils literal"><span class="pre">foo.bar</span></tt>. So ignore unused items unless you are 100% sure what you are doing.</p>
</li>
<li><p class="first">License and Copyrights</p>
<p>Check license and copyrights of any new files:</p>
<div class="highlight-python"><div class="highlight"><pre>python license_test.py
</pre></div>
</div>
<p>The above command will only check source code on Debian/Ubuntu, so please check other files manually (such as artwork, ...). Update the copyright file both in trunk as in the PAPT svn.</p>
<p>Check if in the <tt class="docutils literal"><span class="pre">Help>About</span></tt> dialog box everyone with substantial contributions is listed. Otherwise add it to <tt class="docutils literal"><span class="pre">phatch/data/info.py</span></tt>.</p>
</li>
<li><p class="first">Developer Documentation</p>
<p>Update developer documentation, by running this command in the <tt class="docutils literal"><span class="pre">docs</span></tt> folder:</p>
<div class="highlight-python"><div class="highlight"><pre>python update.py
</pre></div>
</div>
</li>
<li><p class="first">Translations</p>
<p>Download the latest <tt class="docutils literal"><span class="pre">po</span></tt> translations. Test them with <a class="reference external" href="https://launchpad.net/potest">potest</a> and fix any errors immediately in launchpad. When all errors are fixed download the latest <tt class="docutils literal"><span class="pre">po</span></tt> and <tt class="docutils literal"><span class="pre">mo</span></tt> translations to trunk.</p>
</li>
<li><p class="first"><a class="reference external" href="https://help.launchpad.net/Packaging/PPA">PPA</a> (Personal Package Archive)</p>
<p>Build and upload to the Phatch PPA to check if no errors are thrown by the build systems and if Phatch can be correctly installed. Invite users to test the PPA and look for any user interface errors. Do not release a version in the PPA with the new version number yet.</p>
</li>
<li><p class="first">Version number</p>
<p>Bump up the version number after PPA testing. In the file <tt class="docutils literal"><span class="pre">phatch/data/version.py</span></tt> the variables <tt class="docutils literal"><span class="pre">BASE</span></tt> and <tt class="docutils literal"><span class="pre">VERSION</span></tt> should be identical:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="n">BASE</span> <span class="o">=</span> <span class="s">"0.2.8"</span>
<span class="n">VERSION</span> <span class="o">=</span> <span class="s">"0.2.8"</span>
<span class="n">DATE</span> <span class="o">=</span> <span class="s">"Tue, 09 Mar 2010 21:01:25"</span>
</pre></div>
</div>
<p>Check in the <tt class="docutils literal"><span class="pre">Help>About</span></tt> dialog box if the version number is displayed correctly.</p>
</li>
<li><p class="first">Commit last changes if necessary. Tag the release, for example:</p>
<div class="highlight-python"><div class="highlight"><pre>bzr tag 0.2.8
</pre></div>
</div>
</li>
<li><p class="first">Export as zip:</p>
<div class="highlight-python"><div class="highlight"><pre>bzr export ../phatch-0.2.8.zip
</pre></div>
</div>
</li>
<li><p class="first"><a class="reference external" href="http://wiki.debian.org/Teams/PythonAppsPackagingTeam">PAPT</a> (Debian Python Application Package Team)</p>
<p>Be sure you have an <a class="reference external" href="https://alioth.debian.org/account/register.php">alioth account</a>. Update the Phatch files from the <a class="reference external" href="http://svn.debian.org/wsvn/python-apps/packages/phatch/trunk/debian/#_packages_phatch_trunk_debian_">PAPT svn</a> as far as you can:</p>
<ul>
<li><p class="first">copyright</p>
<ul class="simple">
<li>check differences and sync both from the same file in trunk</li>
</ul>
</li>
<li><p class="first">changelog</p>
<ul>
<li><p class="first">create a new entry with the command:</p>
<div class="highlight-python"><div class="highlight"><pre>dch -v 0.2.8-1
</pre></div>
</div>
</li>
<li><p class="first">change the entry in:</p>
<div class="highlight-python"><div class="highlight"><pre>phatch (0.2.8-1) UNRELEASED; urgency=low
</pre></div>
</div>
</li>
<li><p class="first">mention all bug fixes</p>
</li>
<li><p class="first">list new or removed dependencies</p>
</li>
<li><p class="first">send a mail to POX with the subject “RFS: phatch 0.2.8-1” and mention the download url in the message</p>
</li>
</ul>
</li>
</ul>
</li>
<li><p class="first">If the package has been accepted by Debian, release with the new version number in the Phatch PPA.</p>
</li>
<li><p class="first">Ensure the Phatch website gets updated.</p>
</li>
<li><p class="first">Spread the word and announce the Phatch release on (ask help of others if needed):</p>
<ul class="simple">
<li><a class="reference external" href="http://freshmeat.net/">http://freshmeat.net/</a></li>
<li><a class="reference external" href="http://groups.google.com/group/comp.lang.python">http://groups.google.com/group/comp.lang.python</a></li>
<li><a class="reference external" href="http://groups.google.com/group/comp.lang.python.announce">http://groups.google.com/group/comp.lang.python.announce</a></li>
<li><a class="reference external" href="http://pypi.python.org">http://pypi.python.org</a></li>
<li><a class="reference external" href="http://groups.google.com/group/wxpython-users">http://groups.google.com/group/wxpython-users</a></li>
<li><a class="reference external" href="http://ubuntuforums.org/forumdisplay.php?f=16">http://ubuntuforums.org/forumdisplay.php?f=16</a></li>
<li><a class="reference external" href="http://mail.python.org/mailman/listinfo/image-sig">http://mail.python.org/mailman/listinfo/image-sig</a> (PIL)</li>
<li><a class="reference external" href="http://blenderartists.org/forum/forumdisplay.php?f=11">http://blenderartists.org/forum/forumdisplay.php?f=11</a></li>
</ul>
<p>If you have a blog, announce it there too.</p>
<p>Specific annoucements by people:</p>
<ul class="simple">
<li>Stani:<ul>
<li>python-nl mailing list</li>
</ul>
</li>
</ul>
</li>
<li><p class="first">Give your feedback on this release documentation, so it can be improved.</p>
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="testing.html"
title="previous chapter">Testing</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="actions.html"
title="next chapter">actions</a></p>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="actions.html" title="actions"
>next</a> |</li>
<li class="right" >
<a href="testing.html" title="Testing"
>previous</a> |</li>
<li><a href="index.html">Phatch 0.2 documentation</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2009, www.stani.be.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
</html>
|