[Pkg-octave-commit] [octave-symbolic] branch master updated (d33b622 -> 102fd16)

Sébastien Villemot sebastien at debian.org
Wed Aug 9 08:52:13 UTC 2017


This is an automated email from the git hooks/post-receive script.

sebastien pushed a change to branch master
in repository octave-symbolic.

      from  d33b622   Changelog entry for release 2.5.0-2.
      adds  6d0bb3c   New upstream version 2.6.0
       new  588ab62   Updated version 2.6.0 from 'upstream/2.6.0'
       new  102fa19   d/copyright: reflect upstream changes.
       new  102fd16   d/control: bump Standards-Version to 4.0.1.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |  10 -
 DESCRIPTION                                        |   4 +-
 INDEX                                              | 345 ++++++++++++++++++
 Makefile                                           |  33 +-
 NEWS                                               |  54 +++
 README.md                                          |  78 ++---
 bin/winwrapy.bat                                   |   7 +
 debian/control                                     |  20 +-
 debian/copyright                                   |  16 +-
 inst/@double/coshint.m                             |  10 +-
 inst/@double/cosint.m                              |  10 +-
 inst/@double/fresnelc.m                            |  10 +-
 inst/@double/fresnels.m                            |  10 +-
 inst/@double/{zeta.m => harmonic.m}                |  48 +--
 inst/@double/logint.m                              |  10 +-
 inst/@double/sinhint.m                             |  10 +-
 inst/@double/sinint.m                              |  10 +-
 inst/@double/zeta.m                                |  10 +-
 inst/@sym/angle.m                                  |   2 +-
 inst/@sym/double.m                                 |  23 +-
 inst/@sym/dsolve.m                                 |   4 +-
 inst/@sym/{isscalar.m => ellipke.m}                |  42 +--
 inst/@sym/ellipticCE.m                             |  67 ++++
 inst/@sym/{unique.m => ellipticCK.m}               |  53 ++-
 inst/@sym/ellipticCPi.m                            |  71 ++++
 inst/@sym/ellipticE.m                              | 128 +++++++
 inst/@sym/ellipticF.m                              | 118 +++++++
 inst/@sym/ellipticK.m                              | 118 +++++++
 inst/@sym/ellipticPi.m                             | 134 +++++++
 inst/@sym/equationsToMatrix.m                      |   4 +-
 inst/@sym/fortran.m                                |  17 +-
 inst/@sym/harmonic.m                               | 129 +++++++
 inst/@sym/jordan.m                                 |  71 ++--
 inst/@sym/{imag.m => kroneckerDelta.m}             |  66 ++--
 inst/@sym/mpower.m                                 |  13 +-
 inst/@sym/not.m                                    |   2 +-
 inst/@sym/{igamma.m => pochhammer.m}               |  53 +--
 inst/@sym/private/cell_array_to_sym.m              |  36 --
 inst/@sym/private/const_to_python_str.m            | 101 ------
 inst/@sym/private/detect_special_str.m             |  60 ++++
 .../private/double_to_sym_exact.m}                 |  33 +-
 inst/@sym/private/double_to_sym_heuristic.m        |  69 ++++
 inst/@sym/private/mat_access.m                     |   5 -
 inst/@sym/private/mat_rclist_asgn.m                |   6 +-
 inst/@sym/private/mat_replace.m                    |   4 -
 inst/@sym/repmat.m                                 |   4 +-
 inst/@sym/simplify.m                               |   4 +
 inst/@sym/solve.m                                  | 134 ++++---
 inst/@sym/subs.m                                   |  43 ++-
 inst/@sym/subsasgn.m                               |  30 +-
 inst/@sym/subsref.m                                |  34 --
 inst/@sym/sym.m                                    | 388 +++++++++++++++------
 inst/@sym/sympy.m                                  |   4 +
 inst/@sym/taylor.m                                 |  18 +-
 inst/@symfun/int.m                                 |   2 +-
 inst/@symfun/isequal.m                             |  97 ++++++
 inst/@symfun/isequaln.m                            | 114 ++++++
 inst/@symfun/private/mystrsplit.m                  |  19 -
 inst/@symfun/symfun.m                              |  23 +-
 inst/assumptions.m                                 |   8 +-
 inst/misc.tst                                      |  19 +
 inst/private/check_and_convert.m                   |  12 +-
 inst/private/const_to_python_str.m                 | 101 ------
 inst/private/do_highbyte_escapes.m                 |   8 +
 inst/private/extractblock.m                        |   8 +-
 inst/private/mystrsplit.m                          |  19 -
 inst/private/octave_array_to_python.m              |  12 +-
 inst/private/python_copy_vars_to.m                 |   2 +
 inst/private/python_header.py                      |   6 +-
 inst/private/python_ipc_driver.m                   |   8 +-
 inst/private/python_ipc_sysoneline.m               |   3 +-
 inst/private/undo_highbyte_escapes.m               |   7 +
 inst/python_cmd.m                                  |  28 +-
 inst/sympref.m                                     |  17 +-
 inst/test_bugs.tst                                 |  24 +-
 inst/vpa.m                                         |  60 +++-
 inst/vpasolve.m                                    | 130 ++++++-
 77 files changed, 2601 insertions(+), 909 deletions(-)
 delete mode 100644 .gitignore
 create mode 100644 INDEX
 copy inst/@double/{zeta.m => harmonic.m} (58%)
 copy inst/@sym/{isscalar.m => ellipke.m} (55%)
 create mode 100644 inst/@sym/ellipticCE.m
 copy inst/@sym/{unique.m => ellipticCK.m} (50%)
 create mode 100644 inst/@sym/ellipticCPi.m
 create mode 100644 inst/@sym/ellipticE.m
 create mode 100644 inst/@sym/ellipticF.m
 create mode 100644 inst/@sym/ellipticK.m
 create mode 100644 inst/@sym/ellipticPi.m
 create mode 100644 inst/@sym/harmonic.m
 copy inst/@sym/{imag.m => kroneckerDelta.m} (51%)
 copy inst/@sym/{igamma.m => pochhammer.m} (50%)
 delete mode 100644 inst/@sym/private/cell_array_to_sym.m
 delete mode 100644 inst/@sym/private/const_to_python_str.m
 create mode 100644 inst/@sym/private/detect_special_str.m
 rename inst/{private/magic_str_str.m => @sym/private/double_to_sym_exact.m} (60%)
 create mode 100644 inst/@sym/private/double_to_sym_heuristic.m
 create mode 100644 inst/@symfun/isequal.m
 create mode 100644 inst/@symfun/isequaln.m
 delete mode 100644 inst/@symfun/private/mystrsplit.m
 delete mode 100644 inst/private/const_to_python_str.m
 delete mode 100644 inst/private/mystrsplit.m

-- 
Alioth's /home/groups/pkg-octave/bin/git-commit-notice on /srv/git.debian.org/git/pkg-octave/octave-symbolic.git



More information about the Pkg-octave-commit mailing list