/usr/share/doc/lire/dev-manual/ch19s07.html is in lire-devel-doc 2:2.1.1-2.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 | <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Uploading The Release</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="Lire Developer's Manual"><link rel="up" href="ch19.html" title="Chapter 19. Making a Release"><link rel="prev" href="ch19s06.html" title="Making sure the FreeBSD port gets updated"><link rel="next" href="ch19s08.html" title="Advertising The Release"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Uploading The Release</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch19s06.html">Prev</a> </td><th width="60%" align="center">Chapter 19. Making a Release</th><td width="20%" align="right"> <a accesskey="n" href="ch19s08.html">Next</a></td></tr></table><hr></div><div class="section" title="Uploading The Release"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="sect:uploading-release"></a>Uploading The Release</h2></div></div></div><p>To release a new distribution, publish the tarball on
various places and send an announcement to the
<code class="email"><<a class="email" href="mailto:announcement@lists.logreport.org">announcement@lists.logreport.org</a>></code> mailinglist, stating the
most interesting new features. Furthermore, add a newsitem to the
news list of the website. We'll describe how to upload
the tarball to various places.
</p><div class="section" title="The LogReport Webserver"><div class="titlepage"><div><div><h3 class="title"><a name="id419052"></a>The LogReport Webserver</h3></div></div></div><p>Upload the tarball to the pub area on the LogReport server.
The area is mirrored automagically by the download.logreport.org servers;
updates are done every 6 hours. Upload like this:
</p><pre class="programlisting">
<code class="prompt">$ </code>scp lire-20001211.tar.gz hibou.logreport.org:/var/www/logreport.org/pub/
</pre><p>
On hibou, do:
</p><pre class="programlisting">
<code class="prompt">$ </code>cd /var/www/logreport.org/pub
<code class="prompt">$ </code>chown .www lire-20010525.tar.gz
<code class="prompt">$ </code>chmod g+w lire-20010525.tar.gz
<code class="prompt">$ </code>tar zxf lire-20001211.tar.gz
<code class="prompt">$ </code>rm current && ln -s lire-20001211 current
<code class="prompt">$ </code>rm current.tar.gz && ln -s lire-20001211.tar.gz current.tar.gz
<code class="prompt">$ </code>rm -rf lire-20001205
<code class="prompt">$ </code>mv lire-20001205.tar.gz archive
</pre><p>
Update the <code class="filename">README.txt</code> file: Run
</p><pre class="programlisting">
<code class="prompt">$ </code>cd /var/www/logreport.org/pub
<code class="prompt">$ </code>( echo \
'current is the latest official release'; echo; ls -lF c* ) > README.txt
</pre><p>
Check the symlink to the documentation stuff in the tarball.
</p><p>
Check if the stuff in <a class="ulink" href="http://logreport.org/pub/docs" target="_top">http://logreport.org/pub/docs</a>
is still up to date.
</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch19s06.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch19.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch19s08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Making sure the FreeBSD port gets updated </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Advertising The Release</td></tr></table></div></body></html>
|