r35975 - in /packages/scilab-toolboxes/ann: ./ trunk/ trunk/debian/ trunk/debian/patches/

sylvestre-guest at users.alioth.debian.org sylvestre-guest at users.alioth.debian.org
Fri Nov 13 22:24:54 UTC 2009


Author: sylvestre-guest
Date: Fri Nov 13 22:24:54 2009
New Revision: 35975

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=35975
Log:
initial import of scilab-ann

Added:
    packages/scilab-toolboxes/ann/
    packages/scilab-toolboxes/ann/trunk/
    packages/scilab-toolboxes/ann/trunk/debian/
    packages/scilab-toolboxes/ann/trunk/debian/changelog
    packages/scilab-toolboxes/ann/trunk/debian/compat
    packages/scilab-toolboxes/ann/trunk/debian/control
    packages/scilab-toolboxes/ann/trunk/debian/copyright
    packages/scilab-toolboxes/ann/trunk/debian/docs
    packages/scilab-toolboxes/ann/trunk/debian/orig-tar.sh   (with props)
    packages/scilab-toolboxes/ann/trunk/debian/patches/
    packages/scilab-toolboxes/ann/trunk/debian/patches/exitAtBuilderEnd.diff
    packages/scilab-toolboxes/ann/trunk/debian/rules   (with props)
    packages/scilab-toolboxes/ann/trunk/debian/scilab-ann.install
    packages/scilab-toolboxes/ann/trunk/debian/watch

Added: packages/scilab-toolboxes/ann/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/changelog?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/changelog (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/changelog Fri Nov 13 22:24:54 2009
@@ -1,0 +1,6 @@
+scilab-ann (0.4.2.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #xxx)
+
+ -- Sylvestre Ledru <sylvestre at debian.org>  Fri, 13 Nov 2009 22:30:22 +0100
+

Added: packages/scilab-toolboxes/ann/trunk/debian/compat
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/compat?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/compat (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/compat Fri Nov 13 22:24:54 2009
@@ -1,0 +1,1 @@
+5

Added: packages/scilab-toolboxes/ann/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/control?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/control (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/control Fri Nov 13 22:24:54 2009
@@ -1,0 +1,32 @@
+Source: scilab-ann
+Section: math
+Priority: optional
+Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Sylvestre Ledru <sylvestre at debian.org>
+Build-Depends: debhelper (>= 7), cdbs, scilab (>= 5.1.1),
+ scilab-doc (>= 5.1.1)
+Standards-Version: 3.8.3
+Vcs-Svn: svn://svn.debian.org/svn/debian-science/packages/scilab-toolboxes/ann/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/debian-science/packages/scilab-toolboxes/ann/trunk
+Homepage: http://atoms.scilab.org/toolboxes/ANN_Toolbox/
+
+Package: scilab-ann
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, scilab (>= 5.1.1)
+Description: Scilab toolbox for artificial neural networks
+ Current features
+  - Only layered feedforward networks are supported *directly* at the moment
+    (for others use the "hooks" provided)
+  - Unlimited number of layers
+  - Unlimited number of neurons per each layer separately
+  - User defined activation function (defaults to logistic)
+  - User defined error function (defaults to SSE)
+  - Algorithms implemented so far:
+    * standard (vanilla) with or without bias, on-line or batch
+    * momentum with or without bias, on-line or batch
+    * SuperSAB with or without bias, on-line or batch
+    * Conjugate gradients
+    * Jacobian computation
+    * Computation of result of multiplication between "vector" and Hessian
+  - Some helper functions provided
+

Added: packages/scilab-toolboxes/ann/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/copyright?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/copyright (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/copyright Fri Nov 13 22:24:54 2009
@@ -1,0 +1,49 @@
+This package was debianized by Sylvestre Ledru <sylvestre at debian.org> on
+Fri, 13 Nov 2009 22:47:10 +0100
+
+It was downloaded from <http://atoms.scilab.org/toolboxes/ANN_Toolbox/>
+
+Upstream Author: 
+
+    Ryurick M. Hristev
+	Allan Cornet
+
+Copyright: 
+
+    Copyright 1998, 2001 (C) Ryurick M. Hristev
+	Copyright 2008 (C) Allan Cornet
+
+License:
+
+    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 2 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/>.
+
+The full text of the GPL can be found in `/usr/share/common-licenses/GPL-2'.
+
+
+Files: help/builder_help.sce help/en_US/build_help.sce help/en_US/addchapter.sce
+
+Copyright:
+Copyright (C) 2009 - DIGITEO
+
+License:
+CeCILL
+
+
+File: demos/ANN.dem.gateway.sce
+
+Copyright:
+Allan CORNET - INRIA 2008
+
+License: 
+CeCILL

Added: packages/scilab-toolboxes/ann/trunk/debian/docs
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/docs?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/docs (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/docs Fri Nov 13 22:24:54 2009
@@ -1,0 +1,2 @@
+changelog.txt
+readme.txt

Added: packages/scilab-toolboxes/ann/trunk/debian/orig-tar.sh
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/orig-tar.sh?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/orig-tar.sh (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/orig-tar.sh Fri Nov 13 22:24:54 2009
@@ -1,0 +1,21 @@
+#!/bin/sh -e
+
+# called by uscan with '--upstream-version' <version> <file>
+DIR=ANN_Toolbox_$2
+DIR_TARGET=scilab-ann-$2
+TAR=../scilab-ann_$2.orig.tar.gz
+
+# clean up the upstream tarball
+unzip $3
+mv $DIR $DIR_TARGET
+tar -c -z -f $TAR $DIR_TARGET
+rm -rf $DIR $3 $DIR_TARGET
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+    . .svn/deb-layout
+    mv $TAR $origDir
+    echo "moved $TAR to $origDir"
+fi
+
+exit 0

Propchange: packages/scilab-toolboxes/ann/trunk/debian/orig-tar.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/scilab-toolboxes/ann/trunk/debian/patches/exitAtBuilderEnd.diff
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/patches/exitAtBuilderEnd.diff?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/patches/exitAtBuilderEnd.diff (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/patches/exitAtBuilderEnd.diff Fri Nov 13 22:24:54 2009
@@ -1,0 +1,8 @@
+--- ANN_Toolbox_0.4.2.3.orig/builder.sce	2009-11-13 22:44:47.000000000 +0100
++++ ANN_Toolbox_0.4.2.3/builder.sce	2009-11-13 22:44:54.000000000 +0100
+@@ -18,3 +18,5 @@
+ tbx_builder_macros(toolbox_dir);
+ tbx_builder_help(toolbox_dir);
+ tbx_build_loader(TOOLBOX_NAME,toolbox_dir);
++exit();
++

Added: packages/scilab-toolboxes/ann/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/rules?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/rules (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/rules Fri Nov 13 22:24:54 2009
@@ -1,0 +1,22 @@
+#!/usr/bin/make -f
+# Copyright 2008 Sylvestre Ledru <sylvestre.ledru at inria.fr>
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+build/scilab-ann:: 
+		/usr/bin/scilab -nw -f builder.sce	
+
+clean:: 
+		rm -fr build-stamp help/*/scilab_*_help/ jar/
+
+install/scilab-ann::
+		mkdir -p $(CURDIR)/debian/scilab-ann/usr/lib/scilab-ann/
+
+		mkdir -p $(CURDIR)/debian/scilab-ann/usr/share/scilab/contrib/
+		cd $(CURDIR)/debian/scilab-ann/usr/share/scilab/contrib/; \
+		rm -f scilab-ann; \
+		ln -s ../../../lib/scilab-ann/ ann
+
+get-orig-source:
+	-uscan --upstream-version 0

Propchange: packages/scilab-toolboxes/ann/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/scilab-toolboxes/ann/trunk/debian/scilab-ann.install
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/scilab-ann.install?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/scilab-ann.install (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/scilab-ann.install Fri Nov 13 22:24:54 2009
@@ -1,0 +1,5 @@
+jar/ usr/lib/scilab-ann/
+etc/ usr/lib/scilab-ann/
+demos/ usr/lib/scilab-ann/
+macros/ usr/lib/scilab-ann/
+loader.sce usr/lib/scilab-ann/

Added: packages/scilab-toolboxes/ann/trunk/debian/watch
URL: http://svn.debian.org/wsvn/debian-science/packages/scilab-toolboxes/ann/trunk/debian/watch?rev=35975&op=file
==============================================================================
--- packages/scilab-toolboxes/ann/trunk/debian/watch (added)
+++ packages/scilab-toolboxes/ann/trunk/debian/watch Fri Nov 13 22:24:54 2009
@@ -1,0 +1,3 @@
+version=3
+http://atoms.scilab.org/toolboxes/ANN_Toolbox/ .*ANN_Toolbox_([0-9\.]+).zip \
+  debian debian/orig-tar.sh




More information about the debian-science-commits mailing list