changeset 9394:99c84b77abf3 octave-forge

Package restructuring
author mmarzolla
date Fri, 03 Feb 2012 22:34:20 +0000
parents d030fa9c975e
children dc6942faefe4
files main/queueing/INSTALL main/queueing/Makefile main/queueing/devel/README main/queueing/doc/README main/queueing/doc/installation.txi main/queueing/doc/queueing.html main/queueing/doc/queueing.pdf main/queueing/inst/ctmc_fpt.m
diffstat 8 files changed, 11 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/main/queueing/INSTALL	Fri Feb 03 22:15:32 2012 +0000
+++ b/main/queueing/INSTALL	Fri Feb 03 22:34:20 2012 +0000
@@ -106,7 +106,7 @@
      This directory contains examples which are automatically extracted
      from the `demo' blocks of the function files.
 
-`broken/'
+`devel/'
      This directory contains function files which are either not working
      properly, or need additional testing before they can be moved to
      the `inst/' directory.
--- a/main/queueing/Makefile	Fri Feb 03 22:15:32 2012 +0000
+++ b/main/queueing/Makefile	Fri Feb 03 22:34:20 2012 +0000
@@ -3,7 +3,7 @@
 PROGNAME=queueing
 
 DISTNAME=$(PROGNAME)-$(VERSIONNUM)
-SUBDIRS=inst scripts examples doc test broken
+SUBDIRS=inst scripts examples doc test devel
 DISTFILES=COPYING NEWS Makefile DESCRIPTION INSTALL
 DISTSUBDIRS=inst doc
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main/queueing/devel/README	Fri Feb 03 22:34:20 2012 +0000
@@ -0,0 +1,3 @@
+This directory contains scripts which are currently under development;
+therefore they may not work correctly, or could be not fully
+tested. The content of this directory is ignored by pkg install.
--- a/main/queueing/doc/README	Fri Feb 03 22:15:32 2012 +0000
+++ b/main/queueing/doc/README	Fri Feb 03 22:34:20 2012 +0000
@@ -42,7 +42,7 @@
         This directory contains the script used to execute all
         tests embedded within functions in the inst/ directory.
 
-broken/
+devel/
 	This directory contains scripts which are currently known
 	not to work correctly, or which are work-in-progress.
 
--- a/main/queueing/doc/installation.txi	Fri Feb 03 22:15:32 2012 +0000
+++ b/main/queueing/doc/installation.txi	Fri Feb 03 22:34:20 2012 +0000
@@ -168,7 +168,7 @@
 This directory contains examples which are automatically extracted
 from the @samp{demo} blocks of the function files.
 
-@item broken/
+@item devel/
 This directory contains function files which are either not working
 properly, or need additional testing before they can be moved to the
 @file{inst/} directory.
--- a/main/queueing/doc/queueing.html	Fri Feb 03 22:15:32 2012 +0000
+++ b/main/queueing/doc/queueing.html	Fri Feb 03 22:34:20 2012 +0000
@@ -416,7 +416,7 @@
      <br><dt><samp><span class="file">examples/</span></samp><dd>This directory contains examples which are automatically extracted
 from the &lsquo;<samp><span class="samp">demo</span></samp>&rsquo; blocks of the function files.
 
-     <br><dt><samp><span class="file">broken/</span></samp><dd>This directory contains function files which are either not working
+     <br><dt><samp><span class="file">devel/</span></samp><dd>This directory contains function files which are either not working
 properly, or need additional testing before they can be moved to the
 <samp><span class="file">inst/</span></samp> directory.
 
Binary file main/queueing/doc/queueing.pdf has changed
--- a/main/queueing/inst/ctmc_fpt.m	Fri Feb 03 22:15:32 2012 +0000
+++ b/main/queueing/inst/ctmc_fpt.m	Fri Feb 03 22:34:20 2012 +0000
@@ -112,17 +112,17 @@
 %! M = ctmc_fpt(Q)
 %! m = ctmc_fpt(Q,1,3)
 
-%!test
+%!xtest
 %! Q = unifrnd(0.1,0.9,10,10);
 %! Q -= diag(sum(Q,2));
 %! M = ctmc_fpt(Q);
 
-%!test
+%!xtest
 %! Q = unifrnd(0.1,0.9,10,10);
 %! Q -= diag(sum(Q,2));
 %! m = ctmc_fpt(Q,1,3);
 
-%!test
+%!xtest
 %! Q = unifrnd(0.1,0.9,10,10);
 %! Q -= diag(sum(Q,2));
 %! m = ctmc_fpt(Q,1,[3 5 6]);