[Pkg-julia-devel] [SCM] Julia branch upstream updated. upstream/0.4.2

Peter Colberg pc-guest at moszumanska.debian.org
Mon Dec 7 16:59:16 UTC 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Julia".

The branch, upstream has been updated
       via  8d425af5f99822d4076d720f9ab76eb382548d76 (commit)
      from  d320b99510defa8142ded18cdd902c2cc6eb824e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 .travis.yml                                        |  67 ++-
 Make.inc                                           |   2 +-
 README.arm.md                                      |   2 +-
 VERSION                                            |   2 +-
 appveyor.yml                                       |   9 +-
 base/REPLCompletions.jl                            | 121 ++++-
 base/abstractarray.jl                              |   3 -
 base/array.jl                                      |  36 +-
 base/bitarray.jl                                   |  25 +-
 base/broadcast.jl                                  |  28 +-
 base/channels.jl                                   |  56 +--
 base/deepcopy.jl                                   |  15 +-
 base/deprecated.jl                                 |   2 +-
 base/docs/basedocs.jl                              |   4 +-
 base/docs/helpdb.jl                                |   6 +-
 base/docs/utils.jl                                 |   2 +-
 base/fs.jl                                         |   2 +-
 base/hashing2.jl                                   |   4 +-
 base/interactiveutil.jl                            |   2 -
 base/iterator.jl                                   |  14 +-
 base/methodshow.jl                                 |   7 +-
 base/multi.jl                                      |  66 ++-
 base/multidimensional.jl                           |   4 +-
 base/operators.jl                                  |   2 +-
 base/pkg/cache.jl                                  |   8 +-
 base/pkg/dir.jl                                    |   2 +-
 base/pkg/entry.jl                                  |   2 +-
 base/pkg/generate.jl                               |   2 +-
 base/pkg/resolve/maxsum.jl                         |   2 +-
 base/pkg/write.jl                                  |   3 +-
 base/process.jl                                    |   4 +-
 base/random.jl                                     |   2 +-
 base/replutil.jl                                   |   6 +-
 base/sparse/cholmod.jl                             |  14 +-
 base/sysinfo.jl                                    |   2 +
 base/version_git.jl                                |  10 +-
 contrib/add_license_to_files.jl                    |  39 +-
 contrib/build_sysimg.jl                            |  41 +-
 contrib/prepare_release.sh                         |  62 +++
 contrib/travis_fastfail.sh                         |   9 +-
 contrib/windows/juliarc.jl                         |   6 +-
 contrib/windows/msys_build.sh                      |  27 +-
 deps/Makefile                                      |   3 +
 .../md5                                            |   1 -
 .../sha512                                         |   1 -
 .../md5                                            |   1 +
 .../sha512                                         |   1 +
 deps/libuv.version                                 |   4 +-
 deps/libuv/src/unix/stream.c                       |   4 +-
 deps/libuv/src/win/error.c                         |   1 +
 deps/libuv/src/win/pipe.c                          |   2 +-
 deps/libuv/src/win/process.c                       |   3 +-
 deps/openblas-win64.patch                          |  75 +++
 doc/genstdlib.jl                                   |  34 +-
 doc/manual/calling-c-and-fortran-code.rst          |  27 +-
 doc/manual/conversion-and-promotion.rst            |   2 +
 doc/manual/documentation.rst                       |   2 +-
 doc/manual/faq.rst                                 |  18 +-
 doc/manual/mathematical-operations.rst             |  65 +++
 doc/manual/metaprogramming.rst                     |  12 +-
 doc/manual/methods.rst                             |   2 +-
 doc/manual/packages.rst                            |  30 +-
 doc/manual/strings.rst                             |  14 +-
 doc/manual/types.rst                               |  12 +-
 doc/stdlib/arrays.rst                              |   4 +-
 doc/stdlib/base.rst                                |   2 +-
 doc/stdlib/dates.rst                               |   4 +-
 doc/stdlib/io-network.rst                          |   2 +-
 src/ccall.cpp                                      |   9 +-
 src/cgutils.cpp                                    |   4 +-
 src/codegen.cpp                                    |  33 +-
 src/disasm.cpp                                     |   4 +
 src/gc.c                                           |  27 +-
 src/jltypes.c                                      |   4 +-
 src/julia-parser.scm                               |   8 +
 src/sys.c                                          |  45 +-
 src/task.c                                         |  36 +-
 test/arrayops.jl                                   |  12 +-
 test/backtrace.jl                                  |   4 +-
 test/choosetests.jl                                |   5 +-
 test/cmdlineargs.jl                                |  11 +-
 test/copy.jl                                       |   3 +
 test/core.jl                                       |  26 +
 test/examples.jl                                   |   9 +-
 test/file.jl                                       |  81 +++
 test/float16.jl                                    |  10 +
 test/functional.jl                                 |  16 +
 test/gitutils.jl                                   |  18 +-
 test/iobuffer.jl                                   |  21 +
 test/math.jl                                       |  32 +-
 test/misc.jl                                       |  16 +-
 test/mmap.jl                                       |  11 +-
 test/numbers.jl                                    | 132 +++++
 test/operators.jl                                  |   1 +
 test/parallel.jl                                   | 548 +--------------------
 test/{parallel.jl => parallel_exec.jl}             |  42 +-
 test/parse.jl                                      |   4 +
 test/pkg.jl                                        |   6 +-
 test/pollfd.jl                                     |   9 +-
 test/random.jl                                     |   5 +
 test/ranges.jl                                     |  12 +
 test/replcompletions.jl                            | 106 +++-
 test/runtests.jl                                   |  44 +-
 test/show.jl                                       |  20 +
 test/socket.jl                                     |  30 +-
 test/sparsedir/cholmod.jl                          |   4 +
 test/sparsedir/sparse.jl                           |   4 +
 test/spawn.jl                                      |   8 +-
 test/strings/io.jl                                 |   3 +
 test/testdefs.jl                                   |  15 +-
 110 files changed, 1449 insertions(+), 1037 deletions(-)
 create mode 100755 contrib/prepare_release.sh
 delete mode 100644 deps/checksums/libuv-28f5f06b5ff6f010d666ec26552e0badaca5cdcd.tar.gz/md5
 delete mode 100644 deps/checksums/libuv-28f5f06b5ff6f010d666ec26552e0badaca5cdcd.tar.gz/sha512
 create mode 100644 deps/checksums/libuv-9ab431a88fe255dd21e19a11f7fa2dd95774abf4.tar.gz/md5
 create mode 100644 deps/checksums/libuv-9ab431a88fe255dd21e19a11f7fa2dd95774abf4.tar.gz/sha512
 create mode 100644 deps/openblas-win64.patch
 copy test/{parallel.jl => parallel_exec.jl} (97%)


hooks/post-receive
-- 
Julia



More information about the Pkg-julia-devel mailing list