pdl 1:2.007-2 source package in Ubuntu

Changelog

pdl (1:2.007-2) unstable; urgency=low


  * successfully built with gcc 4.8 (closes: #701335, #713346)
  * add build log evalution helpers to source package: extract
    test suite output from buildlog, cross-refernce test/subtest
    failures between architectures
  * use shell to join stderr into stdout while running test suite
  * fix Dumper.pm on kfreebsd: 'gnukfreebsd' was assumed as a bsd
    userland, which disabled/broke calls to 'uuencode' and 'uudecode'
  * fix debian/filter-test.pl, which cut the test log too early
    due to a too-unspecific regex
  * prefer F77Conf over ExtUtils::F77 in t/flexraw_fortran.t in order
    to prevent test failures on kfreebsd* and hurd*

 -- Henning Glawe <email address hidden>  Mon, 11 Nov 2013 13:34:09 +0100

Upload details

Uploaded by:
Henning Glawe
Uploaded to:
Sid
Original maintainer:
Henning Glawe
Architectures:
any
Section:
math
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
pdl_2.007-2.dsc 1.4 KiB e66a426861c01647516d0b07741f46b8766295be75188a1ed7604bc248c06f36
pdl_2.007.orig.tar.gz 2.8 MiB 609f6661061e444f2b5de845b2ab927adb9007b6511cf2f08aa0d6df0c62500c
pdl_2.007-2.debian.tar.gz 25.8 KiB b4f3df942114bce92ec5e7db8d5bbf22f19c2e2d417d06420fd0f25bdca93778

No changes file available.

Binary packages built by this source

pdl: perl data language: Perl extensions for numerics

 PDL gives standard perl the ability to COMPACTLY
 store and SPEEDILY manipulate the large N-dimensional data arrays
 which are the bread and butter of scientific computing. The idea
 is to turn perl in to a free, array-oriented, numerical language
 in the same sense as commercial packages like IDL and MatLab. One
 can write simple perl expressions to manipulate entire numerical arrays
 all at once. For example, using PDL the perl variable $a can hold a
 1024x1024 floating point image, it only takes 4Mb of memory to store
 it and expressions like $a=sqrt($a)+2 would manipulate the whole image
 in a few seconds.
 .
 A simple interactive shell (perldl) is provided for command line use
 together with a module (PDL) for use in perl scripts.