view admin/template.ndev @ 12665:393b940d7ee2 octave-forge

pq_connection.h: Call register_type() only once.
author i7tiol
date Wed, 08 Jul 2015 13:54:27 +0000
parents c8936b617669
children
line wrap: on
line source

->  Note:  this file is a template used by the Perl script 'get_contents'.
->         get_contents reads this file and the CONTENTS files in each 
->         subdirectory then creates the new_developer.html file by
->         populating the "Where does your code belong" section.
->         Albert Danial Jan 2 2002

__HEADER__([[[Developer Notes]]])

<h2>Contributing Code to the Gnu Octave Repository</h2>


<h3>Requirements</h3>
<p>To contribute your .m files, C++, C, or Fortran code to the GNU Octave
Repository (octave-forge) you need to</p>
<ul>
    <li>have an account on SourceForge,</li>
    <li>be registered as an octave-forge developer,</li>
    <li>have <a href="http://subversion.tigris.org/">SVN</a>
        installed on the computer from which you
        will submit contributions, and</li>
    <li>have the secure shell,
        <a href="http://www.openssh.com/"><tt>ssh</tt></a>, installed
        on your computer.</li>
</ul>
<p>The first two requirements are easy but may take a few days.  
If you don't already have one, request a SourceForge (SF) account
<a href="http://sourceforge.net/account/register.php"> here</a>.
To register as a developer send a request 
to the octave-forge mailing list 
<a href="mailto:octave-dev@lists.sourceforge.net">octave-dev@lists.sourceforge.net</a>.
Include your SourceForge username. Include a bit of information about the code
you plan to submit and also a first code contribution under the form of a patch.
Use
<pre>
   $ svn diff
</pre>
to create this patch if you are using the SVN tree, or just
<pre>
   $ diff -u original_file.m updated_file.m
</pre>
with a local of the original function if you aren't.
Finally, if your computer runs linux or
FreeBSD, chances are good that both <tt>ssh</tt> and SVN are already 
installed on your system. 
If they aren't, 
you will need to find prebuilt packages for them or download their
source codes and build them.</p>

<h3>Download the latest octave-forge distribution</h3>
<p>It is expected that the 
code you plan to submit to reside in a directory within the existing
octave-forge directory structure.
You will therefore need to download a copy of the latest octave-forge
distribution to work in.  Change directories to a place you want
to put the code, then issue the SVN <i>checkout</i>
(abreviated as 'co') command:</p>
<pre>
   $ cd <span style="color: #800000;"><i>working_directory</i></span>
   $ svn co https://octave.svn.sourceforge.net/svnroot/octave/trunk/octave-forge
</pre>

<h3>Where does your code belong?</h3>
<p>Put your file(s) in a subdirectory under the <tt>octave-forge/</tt>
directory.  Here are some guidelines to help you decide where your
code belongs:</p>
<ul>
>>>INSERT CONTENTS HERE<<<
</ul>

<h3>Add a copyright notice</h3>
<p>Each file in octave-forge must contain a copyright notice.  
If you wish to release your
code under the 
GNU <a href="http://www.gnu.org/licenses/gpl.html">GPL</a>
, insert the following text at the top of your file:</p>
<pre>
## Copyright (C) <span style="color: #800000;"><i>year</i></span>   <span style="color: #800000;"><i>Your Name</i></span>   &lt;<span style="color: #800000;"><i>your@preferred.email</i></span>&gt;
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, see <http://www.gnu.org/licenses/>.
</pre>

<p>Here are other popular open source licenses:</p>
<ul>
    <li><a href="http://www.gnu.org/licenses/lgpl.html">GNU Lesser GPL</a></li>
    <li><a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License</a></li>
    <li><a href="http://www.opensource.org/licenses/artistic-license.html">Artistic License</a></li>
    <li><a href="http://www.opensource.org/licenses/bsd-license.html">BSD License</a></li>
</ul>
<p>Consult 
<a href="http://www.opensource.org/licenses/index.html">opensource.org</a>.
for a comprehensive list of Open Source licenses.</p>

<h3>Package structure</h3>
<p>
Octave Forge has evolved into a source repository of Octave packages rather
than a package in itself. Each sub-directory is considered to be a
package and should respect Octave's package managers file layout.</p>
<dl>
<dt>package/NOINSTALL</dt>
<dd>	This is an optional file, whose presence tells octave-forge
	that this package should be ignored. This is typically for
	packages that are kept for historical reasons.
</dd>
<dt>package/DESCRIPTION</dt>
<dd>	This is a required file containing information about the
	package. It must contain the following fields
    <table border="1">
      <tr><td>Name:</td>
          <td>Name of the package</td></tr>
      <tr><td>Version:</td>
          <td>Version of the package</td></tr>
      <tr><td>Date:</td>

          <td>Date of last update</td></tr>
      <tr><td>Author:</td>
          <td>Original author of the package</td></tr>
      <tr><td>Maintainer:</td>
          <td>Maintainer of the package</td></tr>
      <tr><td>Title:</td>

          <td>A one line description of the package</td></tr>
      <tr><td>Description:</td>
          <td>A one paragraph description of the package</td></tr>
      <tr><td>Categories:</td>
           <td>Optional keyword describing the package
            (if no INDEX file is given this is mandatory)</td></tr>
      <tr><td>Problems:</td>
          <td>Optional list of known problems</td></tr>
      <tr><td>Url:</td>
          <td>Optional list of homepages related to the package</td></tr>
      <tr><td>Autoload:</td>
          <td>Optional field that sets the default loading behavior
	      for the package. If set to 'yes', 'true' or 'on', then
	      Octave will automatically load the package when
              starting. Otherwise the package must be manually loaded
	      with the <i>pkg load</i> command. This default behavior
	      can be overridden when the package is installed.</td></tr>
      <tr><td>Depends:</td>
          <td>A list of other octave packages that this package
	      depends on. This can include dependencies on particular
	      versions, with a format.
<pre>
	Depends: package (>= 1.0.0)
</pre>
	      Possible operators are &lt;, &lt;=, ==, &gt;= or &gt;. If
	      the part of the dependency in () is missing, any version
	      of the package is acceptable. Multiple dependencies can be
	      defined either as a comma separated list or on separate
	      Depends lines.</td></tr>
      <tr><td>License:</td>
          <td>An optional short description of the used license 
              (e.g. GPL version 2 or newer). This is optional
              since the file COPYING is mandatory.</td></tr>
      <tr><td>SystemRequirements:</td>
          <td>These are the external install dependencies of the package
	      and are not checked by the package manager. This is here as a
              hint to the distribution packager. They follows the same
	      conventions as the Depends keyword.</td></tr>
      <tr><td>BuildRequires:</td>
      	  <td>These are the external build dependencies of the package
	      and are not checked by the package manager. This is here as
	      a hint to the distribution packager. They follows the same
	      conventions as the Depends keyword. Note that in
	      general, packaging systems such as rpm or deb and
	      autoprobe the install dependencies from the build
	      dependencies, and therefore the often a BuildRequires
	      dependency removes the need for a SystemRequirements
	      dependency.</td></tr>
    </table>
    <p>The file format should be something like this:</p>
    <ul>
      <li>Lines starting with # are comments</li>

      <li>Lines starting with a blank character are continuations
        from the previous line.</li>
      <li>Everything else is of the form NameOfOption: ValueOfOption</li>
    </ul>
	The developer is free to add additional arguments to the
        DESCRIPTION file for their own purposes. Note that
        octave-forge contains an automatic build process of RPMs and
        DEBs from the octave packages, and this relies on the
        DESCRIPTION files being correctly formatted. One further
        detail to aid the packager is that the SystemRequirments and
        BuildRequires keywords can have distribution dependent
        section, and the automatic build process will use these. An
        example of the format of this is
<pre>
	BuildRequires: libtermcap-devel [Mandriva] libtermcap2-devel
</pre>
	where the first package name will be used as a default and if
        the RPMs are built on a Mandriva distribution, then the second
        package name will be used instead.
</dd>
<dt>package/COPYING</dt>
<dd>	This is a required file containing the license of the package.</dd>
<dt>package/INDEX</dt>
<dd>	This is an optional file describing the functions provided by
	the package. If this file is not given then one with be
	created automatically from the functions in the package and
	the Categories keyword.
</dd>
<dt>package/PKG_ADD</dt>
<dd>	An optional file that includes commands that are run when the
        package is added to the users path. Note that PKG_ADD
        directives in the source code of the package will also be
        added to this file by the octave package manager. Note that
        symbolic links are to be avoided in packages, as symbolic
        links do not exist on some file systems, and so a typical use
        for this file is the replacement of the symbolic link
<pre><i>
ln -s foo.oct bar.oct
</i></pre>
	with an autoload directive like
<pre><i>
autoload ('bar', which ('foo'));
</i></pre>
</dd>
<dt>package/PKG_DEL</dt>
<dd>	An optional file that includes commands that are run when the
        package is removed from the users path. Note that PKG_DEL
        directives in the source code of the package will also be
        added to this file by the octave package manager.
</dd>
<dt>package/Makefile</dt>
<dd>	This is an optional file that is for the use of Octave-Forge
        only. It allows the developer to have fine control over
        exactly what is included in the package and anything that
        needs to be done before or after the package is built. The
        default Makefile is
<pre>
<i>
include ../../Makeconf

PKG_FILES = COPYING DESCRIPTION $(wildcard INDEX) $(wildcard PKG_ADD) \
	$(wildcard PKG_DEL) $(wildcard post_install.m) \
	$(wildcard pre_install.m)  $(wildcard on_uninstall.m) \
	$(wildcard inst/*) $(wildcard src/*) $(wildcard doc/*) \
	$(wildcard bin/*)

pre-pkg/%::
	# Do nothing prior to packaging

post-pkg/%::
	# Do nothing post packaging
</i>
</pre>
	which packages all of the required and existing optional files
	and directories discussed here. 
</dd>
<dt>package/pre_install.m</dt>
<dd>	This is an optional script that is run prior to the
        installation of a package.
</dd>
<dt>package/post_install.m</dt>
<dd>	This is an optional script that is run after the
        installation of a package.
</dd>
<dt>package/on_uninstall.m</dt>
<dd>	This is an optional script that is run prior to the
        de-installation of a package.
</dd>
<dt>package/doc</dt>
<dd>	An optional directory containing documentation for the
	package. The files in this directory will be directly
	installed in a sub-directory of the installed package for
	future reference. Note that any html files included in this
	directory will be included in the octave-forge package
	webpages. To include images or arbitrary files use a
	sub-directory html/ in this directory.
</dd>
<dt>package/inst</dt>
<dd>	An optional directory containing any files that are directly
	installed by package. Typically this will include any m-files.
</dd>
<dt>package/bin</dt>
<dd>	An optional directory containing files that will be added to
	the Octave EXEC_PATH when the package is loaded. This might
	contain external scripts, etc, called by functions within the
	package.
</dd>
<dt>package/src</dt>
<dd>	An optional directory containing code that must be 'built' prior
	to the packages installation. If this directory contains a
	file autogen.sh, and package/Makefile does not exist, this
	script will be called prior to the packaging. The Octave
	package manager will execute "./configure" in this directory
	is this script exists, and will then call "make" if a file
	"Makefile" exists in this directory. "make install" will
	however not be called. If a file called "FILES" exist all
	files listed there will be copied to the "inst" directory, so
	they also will be installed. If the "src/FILES" file doesn't
	exist "src/*.m" and "src/*.oct" will be copied to
	"inst". There are two reasons for doing this rather than "make
	install":
    <ul>
      <li>At some point, it would be good to have a 'build' command
      that creates a binary version of a package. I don't mean a .dep
      or a .rpm, but an octave package, in which everything has been
      compiled.</li> 
      <li>At some point in the future, somebody clever might tell us
      that the package system should run in a sandboxed environment
      for security reasons.</li>
    </ul>
</dd>
</dl>

<h3>Submit your code!</h3>
<p>You are now ready to upload your code to the Gnu Octave Repository.
Do this with two SVN commands--one to add a new
entry for your file in the octave-forge catalog, and a second command
to actually upload the file:</p>
<pre>
   $ svn add <span style="color: #800000;"><i>files</i></span>
   $ svn commit <span style="color: #800000;"><i>files</i></span>
</pre>
<p>The first time you run the above during a session, you will be
requested to type your octave-forge username and password.</p>
<p>After hitting the carriage return at the end of the commit command,
SVN will open your default editor so that you can enter comments about
the commit. The first time you commit a file the comment might be
something as simple as `Initial commit into SVN.' However, for all
subsequent commits please add meaningful comments that explain why
changes were made to the file since all comments will appear in the
changelog.  Try to gather related changes into one commit command.</p>

<p>Aside:  the default editor can be defined like so:</p>
<pre>
   $ export EDITOR=<span style="color: #800000;">vim</span>
</pre>

<p>If you are uploading an entire package, then put your directory into the
octave-forge tree and do the following:</p>
<pre>
   $ cd octave-forge/main
   $ svn add <span style="color: #800000;"><i>package</i></span>
   $ svn commit <span style="color: #800000;"><i>package</i></span>
   $ cd <span style="color: #800000;"><i>package</i></span>
   $ svn add *
   $ svn commit *
</pre>

<p>You may find it easier to use the import command, especially if your
package contains subdirectories.  In this case, you should not put
your directory into the octave-forge tree.  Instead, change to the
root of your package tree and enter the following:</p>
<pre>
   $ cd <span style="color: #800000;"><i>path/below/package</i></span>
   $ svn import <span style="color: #800000;"><i>package</i></span> \
     https://octave.svn.sourceforge.net/svnroot/octave/trunk/octave-forge/main/package
</pre>

<p>You can then fetch the new package from octave-forge as follows:</p>
<pre>
   $ cd octave-forge
   $ svn status -u
</pre>

<p>From time to time, you will need to synchronize with SVN:</p>
<pre>
   $ cd octave-forge
   $ svn status -u
</pre>
<p>Each file will be listed with one of the following codes:</p>
<ul>
<li> `?' for files you created didn't add and commit.</li>
<li> `M' for files you modified but didn't commit.</li>
<li> `C' for files which have unresolvable conflicts.  Look inside the file to
see what it was that couldn't be resolved.  It will be clearly marked, or you
can do a svn diff on the file to highlight the conflict.</li>
<li> `U' for files you haven't touched but are modified on the server.</li>
<li> `P' for files you have modified in a way consistent with the modifications
on the server (?), e.g., because you submitted a patch for someone else to apply.</li>
</ul>

<h3>Learn more about SVN</h3>
<p>The few SVN commands shown here just scratch the surface of this
powerful versioning package.  If you become an active contributor
you will benefit from learning more SVN commands and understanding 
how SVN works.
The
<a href="http://svnbook.org/">
SVN Book</a> is a great place to begin your exploration.</p>

<h3>Join the developers' mailing list</h3>
<p>Finally, consider joining the octave-forge developer's 
<a href="http://lists.sourceforge.net/lists/listinfo/octave-dev">
mailing list</a>.  It is very low traffic.  It is used to announce
pending releases of octave-forge and discuss issues related to
working with octave-forge.  Discussion of the functions in
octave-forge mostly occurs on the primary octave mailing lists.</p>

__TRAILER__