Get rid of LS (livesupport) naming

This commit is contained in:
paul 2006-12-05 16:39:49 +00:00
parent 76e9f100f4
commit a5ea42a1b7
1 changed files with 18 additions and 18 deletions

View File

@ -86,7 +86,7 @@ Curently, only the debian changelog keeps track of the changes and the
version of Campcaster. To update the changelog, edit <code>etc/debian/changelog</code>, version of Campcaster. To update the changelog, edit <code>etc/debian/changelog</code>,
by inserting a section onto the top of the file:<br> by inserting a section onto the top of the file:<br>
<br> <br>
<pre>campcaster (&lt;ls-version&gt;-1) unstable; urgency=low<br><br> * Changes listed here<br><br> -- <code>Package Maintainer &lt;maintainer@foo.bar&gt;</code> &lt;timestamp&gt;<br><br></pre> <pre>campcaster (&lt;version&gt;-1) unstable; urgency=low<br><br> * Changes listed here<br><br> -- <code>Package Maintainer &lt;maintainer@foo.bar&gt;</code> &lt;timestamp&gt;<br><br></pre>
The timestamp above must be preceeded by two spaces, and must be an RFC The timestamp above must be preceeded by two spaces, and must be an RFC
2822 compliant date string, which is most easily produced by issuing 2822 compliant date string, which is most easily produced by issuing
the <code>date -R</code> command. Please note that the debian package the <code>date -R</code> command. Please note that the debian package
@ -103,12 +103,12 @@ before proceeding.<br>
To create the release tarballs, invoke the distribution script <code>bin/dist.sh</code>, To create the release tarballs, invoke the distribution script <code>bin/dist.sh</code>,
with the release version as its single parameter:<br> with the release version as its single parameter:<br>
<br> <br>
<pre><code>./bin/dist.sh --version &lt;ls-version&gt;<br></code></pre> <pre><code>./bin/dist.sh --version &lt;version&gt;<br></code></pre>
<br> <br>
This will create two tarballs in the parent of the current directory:<br> This will create two tarballs in the parent of the current directory:<br>
<ul> <ul>
<li><code>campcaster-&lt;ls-version&gt;.tar.bz2</code></li> <li><code>campcaster-&lt;version&gt;.tar.bz2</code></li>
<li><code>campcaster-libraries-&lt;ls-version&gt;.tar.bz2</code></li> <li><code>campcaster-libraries-&lt;version&gt;.tar.bz2</code></li>
</ul> </ul>
@ -129,10 +129,10 @@ Debian system, install the packages needed to install Campcaster,
plus two more needed for the build process: <code>debhelper</code> and plus two more needed for the build process: <code>debhelper</code> and
<code>fakeroot</code>. Then do the following:<br> <code>fakeroot</code>. Then do the following:<br>
<br> <br>
<pre>tar xfj campcaster-&lt;ls-version&gt;.tar.bz2 <pre>tar xfj campcaster-&lt;version&gt;.tar.bz2
tar xfj campcaster-libraries-&lt;ls-version&gt;.tar.bz2 tar xfj campcaster-libraries-&lt;version&gt;.tar.bz2
cd campcaster-&lt;ls-version&gt; cd campcaster-&lt;version&gt;
./bin/createDebianPackages.sh -d .. -v &lt;ls-version&gt; -o .. \ ./bin/createDebianPackages.sh -d .. -v &lt;version&gt; -o .. \
-m "Package Maintainer &lt;maintainer@foo.bar&gt;" -m "Package Maintainer &lt;maintainer@foo.bar&gt;"
cd .. cd ..
</pre> </pre>
@ -141,9 +141,9 @@ The above command will create the Debain source package files next to
the original source tarballs. The script will generate the following the original source tarballs. The script will generate the following
files, making up the Debian source package:<br> files, making up the Debian source package:<br>
<br> <br>
<pre>campcaster_&lt;ls-version&gt;-1.dsc <pre>campcaster_&lt;version&gt;-1.dsc
campcaster_&lt;ls-version&gt;-1.diff.gz campcaster_&lt;version&gt;-1.diff.gz
campcaster_&lt;ls-version&gt;.orig.tar.gz campcaster_&lt;version&gt;.orig.tar.gz
</pre> </pre>
Based on the source packages, the Debian package management system can Based on the source packages, the Debian package management system can
build the binaries for the current target platform, provided all the build the binaries for the current target platform, provided all the
@ -158,7 +158,7 @@ rm -rf debian_build
mkdir debian_build mkdir debian_build
cd debian_build cd debian_build
dpkg-source -x ../campcaster_&lt;ls_version&gt;-1.dsc dpkg-source -x ../campcaster_&lt;ls_version&gt;-1.dsc
cd campcaster-&lt;ls-version&gt; cd campcaster-&lt;version&gt;
sudo dpkg-buildpackage sudo dpkg-buildpackage
cd ../.. cd ../..
</pre> </pre>
@ -167,9 +167,9 @@ cd ../..
-libraries package --> -libraries package -->
The above commands will result in the following debian packages: The above commands will result in the following debian packages:
<br> <br>
<pre>campcaster-libs_&lt;ls-version&gt;-1_&lt;arch&gt;.deb <pre>campcaster-libs_&lt;version&gt;-1_&lt;arch&gt;.deb
campcaster-station_&lt;ls-version&gt;-1_&lt;arch&gt;.deb campcaster-station_&lt;version&gt;-1_&lt;arch&gt;.deb
campcaster-studio_&lt;ls-version&gt;-1_&lt;arch&gt;.deb campcaster-studio_&lt;version&gt;-1_&lt;arch&gt;.deb
</pre> </pre>
@ -198,17 +198,17 @@ release can be retrieved at any later date. To tag the repository,
issue the following command:<br> issue the following command:<br>
<br> <br>
<pre><code>svn copy svn://code.campware.org/campcaster/trunk \ <pre><code>svn copy svn://code.campware.org/campcaster/trunk \
svn://code.campware.org/campcaster/tags/campcaster-&lt;ls-version&gt; svn://code.campware.org/campcaster/tags/campcaster-&lt;version&gt;
</code></pre> </code></pre>
<br> <br>
This will tag the current state of the repository with the tag <code>campcaster-&lt;ls-version&gt;</code>, This will tag the current state of the repository with the tag <code>campcaster-&lt;version&gt;</code>,
enabling later retrieval of this specific state.<br> enabling later retrieval of this specific state.<br>
<h1>Updating Trac</h1> <h1>Updating Trac</h1>
Add the new version number to the Version pull-down menu in Trac by Add the new version number to the Version pull-down menu in Trac by
executing executing
<pre><code>trac-admin /usr/local/trac-projects/campcaster version add &lt;ls-version&gt;</code></pre> <pre><code>trac-admin /usr/local/trac-projects/campcaster version add &lt;version&gt;</code></pre>
on <code>code.campware.org</code>. on <code>code.campware.org</code>.