From sebastien at moszumanska.debian.org Wed Oct 22 16:55:04 2014 From: sebastien at moszumanska.debian.org (=?UTF-8?Q?S=C3=A9bastien_Villemot?=) Date: Wed, 22 Oct 2014 16:55:04 +0000 Subject: [Pkg-julia-devel] [SCM] Julia branch master updated. debian/0.3.1-1-6-geca1d77 Message-ID: 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, master has been updated via eca1d77b55165dc141496773fc12690a96ac2929 (commit) via cdba17c118a1b87b33ab6909b807ea2db898e9c3 (commit) via 7aae2c5beb0a1e3b9e96db7cf9e76a067c0d6c86 (commit) via abb00392042808f8bc3781545bc195b20cac09be (commit) via f009a14ef566bbaafbc573a7e6133457b6d9920f (commit) via 25062481e89992f9e6859d2ac103d6b0a01c5cd4 (commit) from 2c8f4fa53a0cc07b6117031097cc70076dbb3d5c (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 ----------------------------------------------------------------- commit eca1d77b55165dc141496773fc12690a96ac2929 Author: S?bastien Villemot Date: Wed Oct 22 18:42:20 2014 +0200 Changelog entry for 0.3.2-1. commit cdba17c118a1b87b33ab6909b807ea2db898e9c3 Author: S?bastien Villemot Date: Wed Oct 22 18:41:46 2014 +0200 Ship new desktop file, SVG icon and appdata file. commit 7aae2c5beb0a1e3b9e96db7cf9e76a067c0d6c86 Author: S?bastien Villemot Date: Wed Oct 22 18:41:25 2014 +0200 Factorize more Makefile flags. Git-Dch: Ignore commit abb00392042808f8bc3781545bc195b20cac09be Author: S?bastien Villemot Date: Wed Oct 22 18:12:37 2014 +0200 Refresh patches. Git-Dch: Ignore commit f009a14ef566bbaafbc573a7e6133457b6d9920f Merge: 2c8f4fa 2506248 Author: S?bastien Villemot Date: Wed Oct 22 18:07:35 2014 +0200 Merge tag 'upstream/0.3.2' Upstream version 0.3.2 ----------------------------------------------------------------------- Summary of changes: .travis.yml | 4 +- Make.inc | 16 +- Makefile | 28 +- VERSION | 2 +- base/Makefile | 3 +- base/abstractarray.jl | 2 +- base/c.jl | 2 - base/client.jl | 4 +- base/complex.jl | 2 +- base/dict.jl | 6 +- base/exports.jl | 2 - base/fs.jl | 8 +- base/gmp.jl | 59 +- base/hashing2.jl | 4 +- base/inference.jl | 2 +- base/interactiveutil.jl | 13 +- base/iobuffer.jl | 6 +- base/linalg/arpack.jl | 8 +- base/linalg/blas.jl | 14 +- base/linalg/cholmod.jl | 4 +- base/linalg/dense.jl | 2 +- base/linalg/factorization.jl | 18 +- base/linalg/generic.jl | 1 + base/linalg/ldlt.jl | 72 +- base/linalg/matmul.jl | 4 +- base/linalg/triangular.jl | 5 +- base/loading.jl | 2 +- base/mpfr.jl | 314 +++---- base/number.jl | 7 +- base/pkg.jl | 4 +- base/pkg/cache.jl | 6 +- base/printf.jl | 2 +- base/reduce.jl | 14 +- base/show.jl | 44 +- base/socket.jl | 2 +- base/sparse/sparsematrix.jl | 9 +- contrib/fixup-libgfortran.sh | 81 ++ contrib/julia.appdata.xml | 28 + contrib/julia.desktop | 8 + .../static/julia-logo.svg => contrib/julia.svg | 0 contrib/mac/fixup-libgfortran.sh | 46 - debian/changelog | 7 + debian/julia.install | 3 + debian/patches/disable-parallel-test.patch | 4 +- debian/patches/do-not-download-utf8proc.patch | 4 +- debian/patches/dpkg-multiarch.patch | 2 +- debian/patches/inject-ldflags.patch | 4 +- debian/patches/no-debug-version.patch | 4 +- debian/patches/require-sse2-on-i386.patch | 2 +- debian/patches/support-noopt.patch | 6 +- debian/rules | 4 +- deps/Makefile | 11 +- deps/arpack.xlahqr2.patch | 994 +++++++++++++++++++++ deps/checksums/arpack-ng-3.1.5.tar.gz/md5 | 1 + deps/checksums/arpack-ng-3.1.5.tar.gz/sha512 | 1 + deps/checksums/arpack-ng_3.1.5.tar.gz/md5 | 1 - deps/checksums/arpack-ng_3.1.5.tar.gz/sha512 | 1 - doc/conf.py | 2 + doc/helpdb.jl | 14 +- doc/manual/arrays.rst | 254 +++--- doc/manual/calling-c-and-fortran-code.rst | 4 - doc/manual/parallel-computing.rst | 2 +- doc/stdlib/base.rst | 21 +- doc/stdlib/linalg.rst | 12 +- doc/stdlib/pkg.rst | 6 +- src/alloc.c | 26 +- src/builtins.c | 5 - src/cgutils.cpp | 19 +- src/codegen.cpp | 30 +- src/intrinsics.cpp | 9 +- src/jltypes.c | 2 +- src/julia-parser.scm | 5 +- src/julia-syntax.scm | 35 +- src/support/bitvector.c | 2 +- test/arpack.jl | 7 + test/arrayops.jl | 1 + test/collections.jl | 4 + test/core.jl | 19 + test/file.jl | 10 + test/linalg3.jl | 20 +- test/linalg4.jl | 1 + test/reduce.jl | 1 + test/runtests.jl | 6 +- test/show.jl | 13 + 84 files changed, 1822 insertions(+), 615 deletions(-) create mode 100755 contrib/fixup-libgfortran.sh create mode 100644 contrib/julia.appdata.xml create mode 100644 contrib/julia.desktop copy doc/juliadoc/juliadoc/theme/julia/static/julia-logo.svg => contrib/julia.svg (100%) delete mode 100755 contrib/mac/fixup-libgfortran.sh create mode 100644 deps/arpack.xlahqr2.patch create mode 100644 deps/checksums/arpack-ng-3.1.5.tar.gz/md5 create mode 100644 deps/checksums/arpack-ng-3.1.5.tar.gz/sha512 delete mode 100644 deps/checksums/arpack-ng_3.1.5.tar.gz/md5 delete mode 100644 deps/checksums/arpack-ng_3.1.5.tar.gz/sha512 hooks/post-receive -- Julia From sebastien at moszumanska.debian.org Wed Oct 22 16:55:05 2014 From: sebastien at moszumanska.debian.org (=?UTF-8?Q?S=C3=A9bastien_Villemot?=) Date: Wed, 22 Oct 2014 16:55:05 +0000 Subject: [Pkg-julia-devel] [SCM] Julia branch pristine-tar updated. 9b581add841e0a52dd60dc39b0c80e22cd1033c2 Message-ID: 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, pristine-tar has been updated via 9b581add841e0a52dd60dc39b0c80e22cd1033c2 (commit) from 1a73556dc3cc8acdcea50bd6602ea7794ad60c70 (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 ----------------------------------------------------------------- commit 9b581add841e0a52dd60dc39b0c80e22cd1033c2 Author: S?bastien Villemot Date: Wed Oct 22 18:07:35 2014 +0200 pristine-tar data for julia_0.3.2.orig.tar.xz ----------------------------------------------------------------------- Summary of changes: julia_0.3.2.orig.tar.xz.delta | Bin 0 -> 34820 bytes julia_0.3.2.orig.tar.xz.id | 1 + 2 files changed, 1 insertion(+) create mode 100644 julia_0.3.2.orig.tar.xz.delta create mode 100644 julia_0.3.2.orig.tar.xz.id hooks/post-receive -- Julia From sebastien at moszumanska.debian.org Wed Oct 22 16:55:05 2014 From: sebastien at moszumanska.debian.org (=?UTF-8?Q?S=C3=A9bastien_Villemot?=) Date: Wed, 22 Oct 2014 16:55:05 +0000 Subject: [Pkg-julia-devel] [SCM] Julia branch upstream updated. upstream/0.3.1-1-g2506248 Message-ID: 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 25062481e89992f9e6859d2ac103d6b0a01c5cd4 (commit) from 259ef134a3f1f0df5ed657779c78df91e7bdd4e6 (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 | 4 +- Make.inc | 16 +- Makefile | 28 +- VERSION | 2 +- base/Makefile | 3 +- base/abstractarray.jl | 2 +- base/c.jl | 2 - base/client.jl | 4 +- base/complex.jl | 2 +- base/dict.jl | 6 +- base/exports.jl | 2 - base/fs.jl | 8 +- base/gmp.jl | 59 +- base/hashing2.jl | 4 +- base/inference.jl | 2 +- base/interactiveutil.jl | 13 +- base/iobuffer.jl | 6 +- base/linalg/arpack.jl | 8 +- base/linalg/blas.jl | 14 +- base/linalg/cholmod.jl | 4 +- base/linalg/dense.jl | 2 +- base/linalg/factorization.jl | 18 +- base/linalg/generic.jl | 1 + base/linalg/ldlt.jl | 72 +- base/linalg/matmul.jl | 4 +- base/linalg/triangular.jl | 5 +- base/loading.jl | 2 +- base/mpfr.jl | 314 +++---- base/number.jl | 7 +- base/pkg.jl | 4 +- base/pkg/cache.jl | 6 +- base/printf.jl | 2 +- base/reduce.jl | 14 +- base/show.jl | 44 +- base/socket.jl | 2 +- base/sparse/sparsematrix.jl | 9 +- contrib/fixup-libgfortran.sh | 81 ++ contrib/julia.appdata.xml | 28 + contrib/julia.desktop | 8 + .../static/julia-logo.svg => contrib/julia.svg | 0 contrib/mac/fixup-libgfortran.sh | 46 - deps/Makefile | 11 +- deps/arpack.xlahqr2.patch | 994 +++++++++++++++++++++ deps/checksums/arpack-ng-3.1.5.tar.gz/md5 | 1 + deps/checksums/arpack-ng-3.1.5.tar.gz/sha512 | 1 + deps/checksums/arpack-ng_3.1.5.tar.gz/md5 | 1 - deps/checksums/arpack-ng_3.1.5.tar.gz/sha512 | 1 - doc/conf.py | 2 + doc/helpdb.jl | 14 +- doc/manual/arrays.rst | 254 +++--- doc/manual/calling-c-and-fortran-code.rst | 4 - doc/manual/parallel-computing.rst | 2 +- doc/stdlib/base.rst | 21 +- doc/stdlib/linalg.rst | 12 +- doc/stdlib/pkg.rst | 6 +- src/alloc.c | 26 +- src/builtins.c | 5 - src/cgutils.cpp | 19 +- src/codegen.cpp | 30 +- src/intrinsics.cpp | 9 +- src/jltypes.c | 2 +- src/julia-parser.scm | 5 +- src/julia-syntax.scm | 35 +- src/support/bitvector.c | 2 +- test/arpack.jl | 7 + test/arrayops.jl | 1 + test/collections.jl | 4 + test/core.jl | 19 + test/file.jl | 10 + test/linalg3.jl | 20 +- test/linalg4.jl | 1 + test/reduce.jl | 1 + test/runtests.jl | 6 +- test/show.jl | 13 + 74 files changed, 1797 insertions(+), 600 deletions(-) create mode 100755 contrib/fixup-libgfortran.sh create mode 100644 contrib/julia.appdata.xml create mode 100644 contrib/julia.desktop copy doc/juliadoc/juliadoc/theme/julia/static/julia-logo.svg => contrib/julia.svg (100%) delete mode 100755 contrib/mac/fixup-libgfortran.sh create mode 100644 deps/arpack.xlahqr2.patch create mode 100644 deps/checksums/arpack-ng-3.1.5.tar.gz/md5 create mode 100644 deps/checksums/arpack-ng-3.1.5.tar.gz/sha512 delete mode 100644 deps/checksums/arpack-ng_3.1.5.tar.gz/md5 delete mode 100644 deps/checksums/arpack-ng_3.1.5.tar.gz/sha512 hooks/post-receive -- Julia From sebastien at moszumanska.debian.org Wed Oct 22 16:55:07 2014 From: sebastien at moszumanska.debian.org (=?UTF-8?Q?S=C3=A9bastien_Villemot?=) Date: Wed, 22 Oct 2014 16:55:07 +0000 Subject: [Pkg-julia-devel] [SCM] Julia annotated tag debian/0.3.2-1 created. debian/0.3.2-1 Message-ID: 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 annotated tag, debian/0.3.2-1 has been created at d0ddac7f63701698653f20134fda1b50b73c6e9b (tag) tagging eca1d77b55165dc141496773fc12690a96ac2929 (commit) replaces debian/0.3.1-1 tagged by S?bastien Villemot on Wed Oct 22 18:48:55 2014 +0200 - Log ----------------------------------------------------------------- julia Debian release 0.3.2-1 S?bastien Villemot (6): Imported Upstream version 0.3.2 Merge tag 'upstream/0.3.2' Refresh patches. Factorize more Makefile flags. Ship new desktop file, SVG icon and appdata file. Changelog entry for 0.3.2-1. ----------------------------------------------------------------------- hooks/post-receive -- Julia From sebastien at moszumanska.debian.org Wed Oct 22 16:55:07 2014 From: sebastien at moszumanska.debian.org (=?UTF-8?Q?S=C3=A9bastien_Villemot?=) Date: Wed, 22 Oct 2014 16:55:07 +0000 Subject: [Pkg-julia-devel] [SCM] Julia annotated tag upstream/0.3.2 created. upstream/0.3.2 Message-ID: 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 annotated tag, upstream/0.3.2 has been created at 199b05f2cad48334325bd7815613724e3c9dd216 (tag) tagging 25062481e89992f9e6859d2ac103d6b0a01c5cd4 (commit) replaces upstream/0.3.1 tagged by S?bastien Villemot on Wed Oct 22 18:07:35 2014 +0200 - Log ----------------------------------------------------------------- Upstream version 0.3.2 S?bastien Villemot (1): Imported Upstream version 0.3.2 ----------------------------------------------------------------------- hooks/post-receive -- Julia From ftpmaster at ftp-master.debian.org Wed Oct 22 17:01:38 2014 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 22 Oct 2014 17:01:38 +0000 Subject: [Pkg-julia-devel] Processing of julia_0.3.2-1_amd64.changes Message-ID: julia_0.3.2-1_amd64.changes uploaded successfully to localhost along with the files: julia_0.3.2-1.dsc julia_0.3.2.orig.tar.xz julia_0.3.2-1.debian.tar.xz julia_0.3.2-1_amd64.deb julia-doc_0.3.2-1_all.deb julia-dbg_0.3.2-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Wed Oct 22 17:04:59 2014 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 22 Oct 2014 17:04:59 +0000 Subject: [Pkg-julia-devel] julia_0.3.2-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Wed, 22 Oct 2014 18:42:04 +0200 Source: julia Binary: julia julia-doc julia-dbg Architecture: source amd64 all Version: 0.3.2-1 Distribution: unstable Urgency: medium Maintainer: Debian Julia Team Changed-By: S?bastien Villemot Description: julia - high-performance programming language for technical computing julia-dbg - high-performance programming language for technical computing julia-doc - high-performance programming language for technical computing (do Changes: julia (0.3.2-1) unstable; urgency=medium . * Imported Upstream version 0.3.2 * Ship new desktop file, SVG icon and appdata file. Checksums-Sha1: 58fbe479a989cdf628103943a28b01a910af6cea 2343 julia_0.3.2-1.dsc 53a6c47b3532bba6dcd77ff175cca028eb39d393 2665480 julia_0.3.2.orig.tar.xz d09e4c27abda2a1b6a74dc2c4f0d57d3080b83bf 15160 julia_0.3.2-1.debian.tar.xz 8236da4e6f90580b404fcbdbf7a6a51b6b41bdae 3653440 julia_0.3.2-1_amd64.deb 6826bff7998c76169faca9289717e4d9e205ecd0 478442 julia-doc_0.3.2-1_all.deb 60bf803ed8e373e9b7f52786b56fcf49ed604586 2715096 julia-dbg_0.3.2-1_amd64.deb Checksums-Sha256: 3e16f14e230ea7b3a2ac4b5eaa89aaf0abd9d80deb5adac4a126d6d9301593cb 2343 julia_0.3.2-1.dsc eb93c1c9448da073e7fdd6eb91e438e372a0bbea36fc12ef6f34b9945852328a 2665480 julia_0.3.2.orig.tar.xz 7a56aa66842df1f6e36a0b7bb2174ba3adbda39dc249f8f952f0b54706253ae7 15160 julia_0.3.2-1.debian.tar.xz fece7f0d678a65746f5519e494e731d2fb76789e8b516d655a9d098731b0bd0e 3653440 julia_0.3.2-1_amd64.deb eb90185613226997b58010486ac13576d22b0228b0a53f1c328abd35d391c0a4 478442 julia-doc_0.3.2-1_all.deb 484ed25488d5444bc5417c1ce5860272dedd4d2839713126ecd81c108a1fdc93 2715096 julia-dbg_0.3.2-1_amd64.deb Files: 8c8e66e4149f892a2df4d0802b184760 2343 science extra julia_0.3.2-1.dsc 5b01bd3a83d961fd6ed75e72f900a7bb 2665480 science extra julia_0.3.2.orig.tar.xz 80d6dae847b6be0c0a103949aaae1528 15160 science extra julia_0.3.2-1.debian.tar.xz 908a663d736f35eba25ff5825fb978be 3653440 science extra julia_0.3.2-1_amd64.deb d6387630ee3b14650ed1ed31c50e4a24 478442 doc extra julia-doc_0.3.2-1_all.deb 5b964b27c90be875dda69a6a2229a245 2715096 debug extra julia-dbg_0.3.2-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBCAAGBQJUR9/0AAoJECzs6TUOzr5KBNEP/A0fD3D02EmtdQW0SgxCSqXA BC3BI6ez269Nzo60VYQNQMxlTjqtDWR7LpT+6Esgczj5W8bOBeobPuap2ORPFx9S YmeVVxU4eiIUdJhMSMw3i6+IS8GbCNwwzEH62CCRxCTOE+lQTqzlWvRi2SqvAeec XkF46rI91pEnx/Fa2kM4lClsvp+eJIhC4yFD24vsfBrJCpxJtXel8H6II7i/wQFf hC8oKrWJfHgFqsf9r9zx3TG70gw35QlrXf8V84Cbbdo+2Q0NBCyqFpCF4qkXsgU3 geEInnisVkEM9ya8UsVFBPmXl6gLzGA1Kbm6tT44WRrwHh3OQEB19Dz7GneR5e+M hwW3lJm9NOn6RfS82a2BaugckM/oMxMfyFWdAbW6EFlZ/nNbl6xRHOHVIKH9Djlq K9m4H+2gulxIUG2Lv2THhmMFwUrYEB6QYwhxXKaDo+/KD6ruWHyBwpcmVJuADT2o /z7bC7CYPqgfImT6xbgGB3Yz12UK7AIlzDuQjEQ9aC1CUupEPX3I6q4pY/y3uXDW novo+MuZ02lvp/ETdpEmhlHgNgAWJWBdVF1YXVuMRep5BhvVwBgVUQWyiVsk/zWL 2Ay0Rzg1Bo4SpVE0x5nU9Bh+HTCnQiBwG12hA2UHZ6pNiy8ExN8J7IbT05aj/zhF tHGzzD++F5xkOd4NJOqH =xGht -----END PGP SIGNATURE----- Thank you for your contribution to Debian.