From: <tho...@us...> - 2011-02-24 11:53:28
|
Revision: 8134 http://octave.svn.sourceforge.net/octave/?rev=8134&view=rev Author: thomas-weber Date: 2011-02-24 11:53:21 +0000 (Thu, 24 Feb 2011) Log Message: ----------- Remove obsoleted mark_as_command from all packages. Bump dependency on Octave to 3.2, where mark_as_command was used. Modified Paths: -------------- trunk/octave-forge/extra/graceplot/DESCRIPTION trunk/octave-forge/extra/graceplot/inst/alternatives/hold.m trunk/octave-forge/extra/graceplot/inst/alternatives/legend.m trunk/octave-forge/extra/graceplot/inst/alternatives/print.m trunk/octave-forge/extra/jhandles/DESCRIPTION trunk/octave-forge/extra/jhandles/PKG_ADD trunk/octave-forge/extra/triangular/DESCRIPTION trunk/octave-forge/extra/triangular/inst/triangular.m trunk/octave-forge/main/INDEX trunk/octave-forge/main/comm/DESCRIPTION trunk/octave-forge/main/comm/inst/comms.m trunk/octave-forge/main/fixed/DESCRIPTION trunk/octave-forge/main/fixed/inst/fixedpoint.m trunk/octave-forge/main/plot/DESCRIPTION trunk/octave-forge/main/plot/inst/zoom.m Modified: trunk/octave-forge/extra/graceplot/DESCRIPTION =================================================================== --- trunk/octave-forge/extra/graceplot/DESCRIPTION 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/extra/graceplot/DESCRIPTION 2011-02-24 11:53:21 UTC (rev 8134) @@ -6,7 +6,7 @@ Title: Graceplot Description: Graceplot bindings for octave. Categories: graphics -Depends: octave (>= 2.9.7), io (>= 1.0.0), general +Depends: octave (>= 3.2), io (>= 1.0.0), general BuildRequires: grace-devel License: GPL version 2 or later Url: http://octave.sf.net Modified: trunk/octave-forge/extra/graceplot/inst/alternatives/hold.m =================================================================== --- trunk/octave-forge/extra/graceplot/inst/alternatives/hold.m 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/extra/graceplot/inst/alternatives/hold.m 2011-02-24 11:53:21 UTC (rev 8134) @@ -31,8 +31,6 @@ ## off, and @code{hold} with no arguments toggles the current hold state. ## @end deftypefn -## PKG_ADD: mark_as_command hold - ## Author: Teemu Ikonen <tpi...@pc...> ## Created: 25.7.2003 @@ -40,4 +38,4 @@ __grhold__(varargin{:}); -endfunction \ No newline at end of file +endfunction Modified: trunk/octave-forge/extra/graceplot/inst/alternatives/legend.m =================================================================== --- trunk/octave-forge/extra/graceplot/inst/alternatives/legend.m 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/extra/graceplot/inst/alternatives/legend.m 2011-02-24 11:53:21 UTC (rev 8134) @@ -83,7 +83,6 @@ ## 2005-01-11 Teemu Ikonen ## * modify to support Grace -## PKG_ADD mark_as_command legend function legend (varargin) args = nargin(); Modified: trunk/octave-forge/extra/graceplot/inst/alternatives/print.m =================================================================== --- trunk/octave-forge/extra/graceplot/inst/alternatives/print.m 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/extra/graceplot/inst/alternatives/print.m 2011-02-24 11:53:21 UTC (rev 8134) @@ -54,16 +54,8 @@ ## ## The filename and options can be given in any order. ## -## If you are using Octave 2.1.x or above, mark_as_command("print") -## will change print from a function to a command, so instead of typing -## print("-depsc", "out.ps") -## you can type -## print -depsc out.ps -## -## See also: orient, mark_as_command +## See also: orient -## PKG_ADD: mark_as_command print - ## -solid | -dashed ## Solid or dashed lines. Modified: trunk/octave-forge/extra/jhandles/DESCRIPTION =================================================================== --- trunk/octave-forge/extra/jhandles/DESCRIPTION 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/extra/jhandles/DESCRIPTION 2011-02-24 11:53:21 UTC (rev 8134) @@ -7,6 +7,6 @@ Description: JHandles is a java- and openGL-based alternative graphics package for octave, providing a handle-based mechanism similar to Matlab. Categories: Graphics -Depends: octave (>= 2.9.12), java +Depends: octave (>= 3.2), java License: GPL version 2 or later / LGPL SystemRequirements: jre, jogl Modified: trunk/octave-forge/extra/jhandles/PKG_ADD =================================================================== --- trunk/octave-forge/extra/jhandles/PKG_ADD 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/extra/jhandles/PKG_ADD 2011-02-24 11:53:21 UTC (rev 8134) @@ -21,11 +21,6 @@ atexit ("__jhandles_exit"); - mark_as_command shading; - mark_as_command legend; - mark_as_command hidden; - mark_as_command colorbar; - java_invoke ("java.lang.System", "setProperty", "octave.jhandles.path", ... fileparts (mfilename ("fullpath"))); else Modified: trunk/octave-forge/extra/triangular/DESCRIPTION =================================================================== --- trunk/octave-forge/extra/triangular/DESCRIPTION 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/extra/triangular/DESCRIPTION 2011-02-24 11:53:21 UTC (rev 8134) @@ -5,7 +5,7 @@ Maintainer: David Bateman Title: Triangular. Description: Simple example of a user type implementing a simple matrix type for triangular matrices. -Depends: octave (> 3.1.54) +Depends: octave (>= 3.2) Autoload: no License: GPL version 2 or later Url: http://octave.sf.net Modified: trunk/octave-forge/extra/triangular/inst/triangular.m =================================================================== --- trunk/octave-forge/extra/triangular/inst/triangular.m 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/extra/triangular/inst/triangular.m 2011-02-24 11:53:21 UTC (rev 8134) @@ -19,7 +19,6 @@ ## Manual for test triangular matrix user type. ## @end deftypefn -## PKG_ADD: mark_as_command triangular function retval = triangular () doc ("triangular"); endfunction Modified: trunk/octave-forge/main/INDEX =================================================================== --- trunk/octave-forge/main/INDEX 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/main/INDEX 2011-02-24 11:53:21 UTC (rev 8134) @@ -108,8 +108,6 @@ mex mexext source - mark_as_command unmark_command - mark_as_rawcommand unmark_rawcommand iscommand israwcommand Load path path Modified: trunk/octave-forge/main/comm/DESCRIPTION =================================================================== --- trunk/octave-forge/main/comm/DESCRIPTION 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/main/comm/DESCRIPTION 2011-02-24 11:53:21 UTC (rev 8134) @@ -5,7 +5,7 @@ Maintainer: David Bateman Title: Communications. Description: Digital Communications, Error Correcting Codes (Channel Code), Source Code functions, Modulation and Galois Fields -Depends: octave (> 3.1.54), signal (>= 1.0.0), image +Depends: octave (>= 3.2), signal (>= 1.0.0), image Autoload: yes License: GPL version 2 or later Url: http://octave.sf.net Modified: trunk/octave-forge/main/comm/inst/comms.m =================================================================== --- trunk/octave-forge/main/comm/inst/comms.m 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/main/comm/inst/comms.m 2011-02-24 11:53:21 UTC (rev 8134) @@ -64,7 +64,6 @@ ## use of this toolbox. ## @end deftypefn -## PKG_ADD: mark_as_command comms function retval = comms(typ, tests) if (nargin < 1) Modified: trunk/octave-forge/main/fixed/DESCRIPTION =================================================================== --- trunk/octave-forge/main/fixed/DESCRIPTION 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/main/fixed/DESCRIPTION 2011-02-24 11:53:21 UTC (rev 8134) @@ -5,7 +5,7 @@ Maintainer: David Bateman Title: Fixed Point Computations Description: Fixed point real and complex matrix toolbox -Depends: octave (> 3.1.54) +Depends: octave (>= 3.2) Autoload: yes License: GPL version 2 or later Url: http://octave.sf.net Modified: trunk/octave-forge/main/fixed/inst/fixedpoint.m =================================================================== --- trunk/octave-forge/main/fixed/inst/fixedpoint.m 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/main/fixed/inst/fixedpoint.m 2011-02-24 11:53:21 UTC (rev 8134) @@ -57,8 +57,6 @@ ## use of this toolbox. ## @end deftypefn -## PKG_ADD: mark_as_command fixedpoint - function retval = fixedpoint(typ, tests) if (nargin < 1) Modified: trunk/octave-forge/main/plot/DESCRIPTION =================================================================== --- trunk/octave-forge/main/plot/DESCRIPTION 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/main/plot/DESCRIPTION 2011-02-24 11:53:21 UTC (rev 8134) @@ -6,7 +6,7 @@ Title: Plotting. Description: Additional ploting tools for Octave. Categories: Plotting -Depends: octave (>= 2.9.7) +Depends: octave (>= 3.2) Autoload: yes License: GPL version 2 or later Url: http://octave.sf.net Modified: trunk/octave-forge/main/plot/inst/zoom.m =================================================================== --- trunk/octave-forge/main/plot/inst/zoom.m 2011-02-23 23:03:33 UTC (rev 8133) +++ trunk/octave-forge/main/plot/inst/zoom.m 2011-02-24 11:53:21 UTC (rev 8134) @@ -1,5 +1,4 @@ ## zoom ... ## Compatibility function; does nothing -## PKG_ADD mark_as_command zoom function zoom This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |