[Pkg-octave-commit] r1204 - in octave-forge-pkgs: octave-parallel/trunk/debian octave-physicalconstants/trunk/debian octave-plot/trunk/debian

Ólafur Jens Sigurðsson ojs-guest at alioth.debian.org
Sun Feb 17 22:28:56 UTC 2008


Author: ojs-guest
Date: 2008-02-17 22:28:56 +0000 (Sun, 17 Feb 2008)
New Revision: 1204

Added:
   octave-forge-pkgs/octave-parallel/trunk/debian/changelog
   octave-forge-pkgs/octave-parallel/trunk/debian/compat
   octave-forge-pkgs/octave-parallel/trunk/debian/control
   octave-forge-pkgs/octave-parallel/trunk/debian/copyright
   octave-forge-pkgs/octave-parallel/trunk/debian/postinst
   octave-forge-pkgs/octave-parallel/trunk/debian/postrm
   octave-forge-pkgs/octave-parallel/trunk/debian/rules
   octave-forge-pkgs/octave-physicalconstants/trunk/debian/changelog
   octave-forge-pkgs/octave-physicalconstants/trunk/debian/compat
   octave-forge-pkgs/octave-physicalconstants/trunk/debian/control
   octave-forge-pkgs/octave-physicalconstants/trunk/debian/copyright
   octave-forge-pkgs/octave-physicalconstants/trunk/debian/postinst
   octave-forge-pkgs/octave-physicalconstants/trunk/debian/postrm
   octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules
   octave-forge-pkgs/octave-plot/trunk/debian/changelog
   octave-forge-pkgs/octave-plot/trunk/debian/compat
   octave-forge-pkgs/octave-plot/trunk/debian/control
   octave-forge-pkgs/octave-plot/trunk/debian/copyright
   octave-forge-pkgs/octave-plot/trunk/debian/postinst
   octave-forge-pkgs/octave-plot/trunk/debian/postrm
   octave-forge-pkgs/octave-plot/trunk/debian/rules
Log:
committing physicalconstants and plot packages from forge

Added: octave-forge-pkgs/octave-parallel/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-parallel/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-parallel/trunk/debian/changelog	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,6 @@
+octave-parallel (1.0.3) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Sun, 17 Feb 2008 22:37:20 +0100
+

Added: octave-forge-pkgs/octave-parallel/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-parallel/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-parallel/trunk/debian/compat	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-parallel/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-parallel/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-parallel/trunk/debian/control	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,13 @@
+Source: octave-parallel
+Section: math
+Priority: optional
+Maintainer: Olafur Jens Sigurðsson <ojsbug at gmail.com>
+Build-Depends: debhelper (>= 5), octave2.9 (>= 2.9.16), make
+Standards-Version: 3.7.2
+
+Package: octave-parallel
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, octave2.9 (>= 2.9.16)
+Description: The parallel package from octave-forge
+ This package provides capabilities to do parallel execution on octave
+ for cluster computers.
\ No newline at end of file

Added: octave-forge-pkgs/octave-parallel/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-parallel/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-parallel/trunk/debian/copyright	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,28 @@
+This package was debianized by Olafur Jens Sigurdsson <ojsbug at gmail.com> on
+Sun, 17 Feb 2008 22:37:20 +0100
+
+It was downloaded from http://octave.sf.net
+
+Upstream Author: 
+
+	Hayato Fujiwara
+
+Copyright: 
+
+    Copyright (C) 2002 by Hayato Fujiwara
+
+License: GPL-2+
+ This package 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.
+    
+On Debian systems, the complete text of the GNU General Public License
+can be found in file "/usr/share/common-licenses/GPL".
+
+
+The Debian packaging is (C) 2007, Olafur Jens Sigurdsson <ojsbug at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: octave-forge-pkgs/octave-parallel/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-parallel/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-parallel/trunk/debian/postinst	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postinst file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    configure)
+    	octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+        ;;
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-parallel/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-parallel/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-parallel/trunk/debian/postrm	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postrm file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    upgrade|remove|purge)
+        octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-parallel/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-parallel/trunk/debian/rules	                        (rev 0)
+++ octave-forge-pkgs/octave-parallel/trunk/debian/rules	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+#export DH_OPTIONS
+
+filename = $(wildcard *.gz)
+package = $(shell awk '/^Package:/ {print tolower($$2)}' debian/control)
+mpath = usr/share/octave/packages
+bpath = usr/lib/octave/packages
+pkgname = $(filename:.tar.gz=)
+
+clean:
+
+build:
+	mkdir -p $(CURDIR)/debian/$(package)/$(mpath)
+	mkdir -p $(CURDIR)/debian/$(package)/$(bpath)
+	octave -H -q --no-site-file --eval \
+	"pkg('prefix',[pwd(),'/debian/$(package)/$(mpath)'], \
+	 [pwd(),'/debian/$(package)/$(bpath)']); \
+	 pkg('local_list',[pwd(),'.']); \
+	 pkg('global_list',[pwd(),'.']); \
+	 pkg install $(filename)"
+	rm $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING
+
+binary:
+	dh_strip
+	dh_installdocs
+	dh_installchangelogs
+	dh_gencontrol
+	dh_compress
+	dh_installdeb
+	dh_builddeb


Property changes on: octave-forge-pkgs/octave-parallel/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: octave-forge-pkgs/octave-physicalconstants/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-physicalconstants/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-physicalconstants/trunk/debian/changelog	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,6 @@
+octave-physicalconstants (0.1.2) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Sun, 17 Feb 2008 22:55:25 +0100
+

Added: octave-forge-pkgs/octave-physicalconstants/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-physicalconstants/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-physicalconstants/trunk/debian/compat	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-physicalconstants/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-physicalconstants/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-physicalconstants/trunk/debian/control	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,13 @@
+Source: octave-physicalconstants
+Section: math
+Priority: optional
+Maintainer: Olafur Jens Sigurðsson <ojsbug at gmail.com>
+Build-Depends: debhelper (>= 5), octave2.9 (>= 2.9.16), make
+Standards-Version: 3.7.2
+
+Package: octave-physicalconstants
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, octave2.9 (>= 2.9.16)
+Description: The physicalconstants package from octave-forge
+ This package provides physical constants for atomic & molecular
+ physics, taken from the NIST database, for octave.
\ No newline at end of file

Added: octave-forge-pkgs/octave-physicalconstants/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-physicalconstants/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-physicalconstants/trunk/debian/copyright	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,28 @@
+This package was debianized by Olafur Jens Sigurdsson <ojsbug at gmail.com> on
+Sun, 17 Feb 2008 22:55:25 +0100
+
+It was downloaded from http://octave.sf.net
+
+Upstream Author: 
+
+	Muthiah Annamalai
+
+Copyright: 
+
+    Copyright (C) 2007 Muthiah Annamalai
+
+License: GPL-2+
+ This package 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.
+    
+On Debian systems, the complete text of the GNU General Public License
+can be found in file "/usr/share/common-licenses/GPL".
+
+
+The Debian packaging is (C) 2007, Olafur Jens Sigurdsson <ojsbug at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: octave-forge-pkgs/octave-physicalconstants/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-physicalconstants/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-physicalconstants/trunk/debian/postinst	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postinst file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    configure)
+    	octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+        ;;
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-physicalconstants/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-physicalconstants/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-physicalconstants/trunk/debian/postrm	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postrm file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    upgrade|remove|purge)
+        octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules	                        (rev 0)
+++ octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+#export DH_OPTIONS
+
+filename = $(wildcard *.gz)
+package = $(shell awk '/^Package:/ {print tolower($$2)}' debian/control)
+mpath = usr/share/octave/packages
+bpath = usr/lib/octave/packages
+pkgname = $(filename:.tar.gz=)
+
+clean:
+
+build:
+	mkdir -p $(CURDIR)/debian/$(package)/$(mpath)
+	mkdir -p $(CURDIR)/debian/$(package)/$(bpath)
+	octave -H -q --no-site-file --eval \
+	"pkg('prefix',[pwd(),'/debian/$(package)/$(mpath)'], \
+	 [pwd(),'/debian/$(package)/$(bpath)']); \
+	 pkg('local_list',[pwd(),'.']); \
+	 pkg('global_list',[pwd(),'.']); \
+	 pkg install $(filename)"
+	rm $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING
+
+binary:
+	dh_strip
+	dh_installdocs
+	dh_installchangelogs
+	dh_gencontrol
+	dh_compress
+	dh_installdeb
+	dh_builddeb


Property changes on: octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: octave-forge-pkgs/octave-plot/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-plot/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-plot/trunk/debian/changelog	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,6 @@
+octave-plot (1.0.2) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Sun, 17 Feb 2008 23:11:14 +0100
+

Added: octave-forge-pkgs/octave-plot/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-plot/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-plot/trunk/debian/compat	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-plot/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-plot/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-plot/trunk/debian/control	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,12 @@
+Source: octave-plot
+Section: math
+Priority: optional
+Maintainer: Olafur Jens Sigurðsson <ojsbug at gmail.com>
+Build-Depends: debhelper (>= 5), octave2.9 (>= 2.9.16), make
+Standards-Version: 3.7.2
+
+Package: octave-plot
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, octave2.9 (>= 2.9.16)
+Description: The plot package from octave-forge
+ This package provides additional plotting tools for octave.
\ No newline at end of file

Added: octave-forge-pkgs/octave-plot/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-plot/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-plot/trunk/debian/copyright	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,37 @@
+This package was debianized by Olafur Jens Sigurdsson <ojsbug at gmail.com> on
+Sun, 17 Feb 2008 23:11:14 +0100
+
+It was downloaded from http://octave.sf.net
+
+Upstream Author: 
+
+	 Paul Kienzle <pkienzle at users.sf.net>
+	 Daniel Heiserer <Daniel.heiserer at physik.tu-muenchen.de>
+	 Andy Adler <adler at ncf.ca>
+	 Roberto A. F. Almeida <roberto at calvin.ocfis.furg.br>
+	 Laurent Mazet <mazet at crm.mot.com>
+
+Copyright: 
+
+    Copyright (C) 1999 Daniel Heiserer
+    Copyright (C) 2004 Patrick Labbe
+    Copyright (C) 2004 Laurent Mazet
+    Copyright (C) 2002 Andy Adler
+    Copyright (C) 2000 John W. Eaton
+    Copyright (C) 2000 Paul Kienzle
+
+License: GPL-2+
+ This package 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.
+    
+On Debian systems, the complete text of the GNU General Public License
+can be found in file "/usr/share/common-licenses/GPL".
+
+
+The Debian packaging is (C) 2007, Olafur Jens Sigurdsson <ojsbug at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: octave-forge-pkgs/octave-plot/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-plot/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-plot/trunk/debian/postinst	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postinst file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    configure)
+    	octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+        ;;
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-plot/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-plot/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-plot/trunk/debian/postrm	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postrm file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    upgrade|remove|purge)
+        octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-plot/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-plot/trunk/debian/rules	                        (rev 0)
+++ octave-forge-pkgs/octave-plot/trunk/debian/rules	2008-02-17 22:28:56 UTC (rev 1204)
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+#export DH_OPTIONS
+
+filename = $(wildcard *.gz)
+package = $(shell awk '/^Package:/ {print tolower($$2)}' debian/control)
+mpath = usr/share/octave/packages
+bpath = usr/lib/octave/packages
+pkgname = $(filename:.tar.gz=)
+
+clean:
+
+build:
+	mkdir -p $(CURDIR)/debian/$(package)/$(mpath)
+	mkdir -p $(CURDIR)/debian/$(package)/$(bpath)
+	octave -H -q --no-site-file --eval \
+	"pkg('prefix',[pwd(),'/debian/$(package)/$(mpath)'], \
+	 [pwd(),'/debian/$(package)/$(bpath)']); \
+	 pkg('local_list',[pwd(),'.']); \
+	 pkg('global_list',[pwd(),'.']); \
+	 pkg install $(filename)"
+	rm $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING
+
+binary:
+	dh_strip
+	dh_installdocs
+	dh_installchangelogs
+	dh_gencontrol
+	dh_compress
+	dh_installdeb
+	dh_builddeb


Property changes on: octave-forge-pkgs/octave-plot/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-octave-commit mailing list