[Pkg-octave-commit] [SCM] Debian packaging for octave-io branch, master, updated. debian/1.2.1-2-6-g3c89930

Sébastien Villemot sebastien at debian.org
Sun May 26 09:49:12 UTC 2013


The following commit has been merged in the master branch:
commit cbcd5992b9bfb19b954fbf768c4d52adcc64eae5
Author: Sébastien Villemot <sebastien at debian.org>
Date:   Sun May 26 10:07:34 2013 +0200

    private-testsuite.patch: remove (upstream disabled tests in private functions)

diff --git a/debian/patches/private-testsuite.patch b/debian/patches/private-testsuite.patch
deleted file mode 100644
index 355d26d..0000000
--- a/debian/patches/private-testsuite.patch
+++ /dev/null
@@ -1,141 +0,0 @@
-Description: Moves tests in private/ subdir at the upper level
- Tests located in functions under private/ are fundamentally a design flaw,
- since they cannot be run with the test() command. Moreover, they are not dealt
- with by octave-pkg-dev.
- .
- Note that the patch manually adds the private/ subdirectory to the path during
- the tests.
-Author: Sébastien Villemot <sebastien at debian.org>
-Forwarded: https://savannah.gnu.org/bugs/index.php?38755
-Last-Update: 2013-04-17
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/inst/chk_spreadsheet_support.m
-+++ b/inst/chk_spreadsheet_support.m
-@@ -508,4 +508,25 @@
-     end %try_catch
-   end %if
- 
--end %function
-\ No newline at end of file
-+end %function
-+
-+%!shared privpath
-+%! privpath = [fileparts(which('chk_spreadsheet_support')) filesep() 'private'];
-+
-+%!test
-+%! addpath (privpath,'-end')
-+%! entries = {"abc", {"def", "ghi"}, "jkl"};
-+%! jcp1 = {"/usr/lib/java/abcx.jar", "/usr/lib/java/defz.jar", "/usr/lib/java/jkl3.jar"};
-+%! jcp1 = strrep (jcp1, "/", filesep);
-+%! assert (chk_jar_entries (jcp1, entries), 3);
-+
-+%!test
-+%! addpath (privpath,'-end')
-+%! entries = {"abc", {"def", "ghi"}, "xyz"};
-+%! jcp2 = {"/usr/lib/java/abcy.jar", "/usr/lib/java/ghiw.jar", "/usr/lib/java/jkl6.jar"};
-+%! jcp2 = strrep (jcp2, "/", filesep);
-+%! [aaa, bbb] = chk_jar_entries (jcp2, entries);
-+%! assert (aaa, 2);
-+%! assert (bbb, [0 0 1]);
-+
-+
---- a/inst/oct2ods.m
-+++ b/inst/oct2ods.m
-@@ -213,3 +213,38 @@
-   if (rstatus), ods.limits = []; endif
- 
- endfunction
-+
-+%!shared privpath
-+%! privpath = [fileparts(which('oct2ods')) filesep() 'private'];
-+
-+%!test
-+%! addpath (privpath,'-end')
-+%! tstobj = {1.5, true, []; 'Text1', '=A1+B1', '=SQRT(A1)'; NaN, {}, 0};
-+%! typarr = spsh_prstype (tstobj, 3, 3, [1 2 3 4 5], struct ("formulas_as_text", 0));
-+%! assert (typarr, [1 2 5; 3 4 4; 5 5 1]);
-+
-+%!test
-+%! addpath (privpath,'-end')
-+%! tstobj = {1.5, true, []; 'Text1', '=A1+B1', '=SQRT(A1)'; NaN, {}, 0};
-+%! typarr = spsh_prstype (tstobj, 3, 3, [1 2 3 4 5], struct ("formulas_as_text", 1));
-+%! assert (typarr, [1 2 5; 3 3 3; 5 5 1]);
-+
-+%!test
-+%! addpath (privpath,'-end')
-+%! [a b c d e] = parse_sp_range ('A1:B2');
-+%! assert ([a b c d e], ['A1', 2, 2, 1, 1]);
-+
-+%!test
-+%! addpath (privpath,'-end')
-+%! [a b c d e] = parse_sp_range ('A1:AB200');
-+%! assert ([a b c d e], ['A1', 200, 28, 1, 1]);
-+
-+%!test
-+%! addpath (privpath,'-end')
-+%! [a b c d e] = parse_sp_range ('cd230:iY65536');
-+%! assert ([a b c d e], ['CD230', 65307, 178, 230, 82]);
-+
-+%!test
-+%! addpath (privpath,'-end')
-+%! [a b c d e] = parse_sp_range ('BvV12798 : xFd1054786');
-+%! assert ([b c d e], [1041989, 14439, 12798, 1946]);
---- a/inst/private/chk_jar_entries.m
-+++ b/inst/private/chk_jar_entries.m
-@@ -57,19 +57,3 @@
-   endfor
- 
- endfunction
--
--%!test
--%! entries = {"abc", {"def", "ghi"}, "jkl"};
--%! jcp1 = {"/usr/lib/java/abcx.jar", "/usr/lib/java/defz.jar", "/usr/lib/java/jkl3.jar"};
--%! jcp1 = strrep (jcp1, "/", filesep);
--%! assert (chk_jar_entries (jcp1, entries), 3);
--
--%!test
--%! entries = {"abc", {"def", "ghi"}, "xyz"};
--%! jcp2 = {"/usr/lib/java/abcy.jar", "/usr/lib/java/ghiw.jar", "/usr/lib/java/jkl6.jar"};
--%! jcp2 = strrep (jcp2, "/", filesep);
--%! [aaa, bbb] = chk_jar_entries (jcp2, entries);
--%! assert (aaa, 2);
--%! assert (bbb, [0 0 1]);
--
--
---- a/inst/private/parse_sp_range.m
-+++ b/inst/private/parse_sp_range.m
-@@ -99,18 +99,3 @@
-   
- endfunction
- 
--%!test
--%! [a b c d e] = parse_sp_range ('A1:B2');
--%! assert ([a b c d e], ['A1', 2, 2, 1, 1]);
--
--%!test
--%! [a b c d e] = parse_sp_range ('A1:AB200');
--%! assert ([a b c d e], ['A1', 200, 28, 1, 1]);
--
--%!test
--%! [a b c d e] = parse_sp_range ('cd230:iY65536');
--%! assert ([a b c d e], ['CD230', 65307, 178, 230, 82]);
--
--%!test
--%! [a b c d e] = parse_sp_range ('BvV12798 : xFd1054786');
--%! assert ([b c d e], [1041989, 14439, 12798, 1946]);
---- a/inst/private/spsh_prstype.m
-+++ b/inst/private/spsh_prstype.m
-@@ -81,12 +81,3 @@
- 
- endfunction
- 
--%!test
--%! tstobj = {1.5, true, []; 'Text1', '=A1+B1', '=SQRT(A1)'; NaN, {}, 0};
--%! typarr = spsh_prstype (tstobj, 3, 3, [1 2 3 4 5], struct ("formulas_as_text", 0));
--%! assert (typarr, [1 2 5; 3 4 4; 5 5 1]);
--
--%!test
--%! tstobj = {1.5, true, []; 'Text1', '=A1+B1', '=SQRT(A1)'; NaN, {}, 0};
--%! typarr = spsh_prstype (tstobj, 3, 3, [1 2 3 4 5], struct ("formulas_as_text", 1));
--%! assert (typarr, [1 2 5; 3 3 3; 5 5 1]);
diff --git a/debian/patches/series b/debian/patches/series
index 8fd1480..4ebefa1 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
 configure-java-classpath.patch
 no-flexml.patch
 autoload-yes.patch
-private-testsuite.patch

-- 
Debian packaging for octave-io



More information about the Pkg-octave-commit mailing list