Commit graph

3372 commits

Author SHA1 Message Date
joerg
2b253a665a Don't put extern "C" around headers that themselve include C++ headers. 2013-06-13 14:27:21 +00:00
dholland
e4ab372b11 Needs bison, lost during update 2013-06-11 23:34:48 +00:00
ryoon
fe39499e7f Add eukleides10.
Rename xeukleides to xeukleides10.
2013-06-10 12:31:25 +00:00
ryoon
1c1b8733ee Fix DEPENDS. 2013-06-10 12:29:39 +00:00
ryoon
021762f7c1 Remove xeukleides, remaned to xeukleides10. 2013-06-10 12:28:18 +00:00
ryoon
a56faa7ef3 Import xeukleides-1.0.1nb1 as math/xeukleides10.
This is a graphical frontend for eukleides legacy version.
2013-06-10 12:27:05 +00:00
ryoon
1775763d67 Re-import eukleides-1.0.3 as math/eukleides10.
A Euclidean drawing language compiler which allows one to typeset
geometry figures within a (La)TeX document. This program is also useful
to convert such figures into EPS format or into various other vector
graphic formats.
This package is legacy version.
2013-06-10 12:25:59 +00:00
ryoon
8c643e6623 Update to 1.5.4
* Change to 1.5 branch. New implementation.
2013-06-10 12:24:29 +00:00
gdt
240be403c0 Cosmetic change to make it easier to disable fortran.
This commit makes no semantic change; it merely splits
  USE_LANGUAGES=c fortran77
into two lines, reorders, and adds comments.

However, one can then easily turn off
  USE_LANGUAGES+= fortran77
and turn on
  CONFIGURE_ARGS+= --disable-fortran
and build, without a fortran dependency, and observe that there are no
PLIST problems.
2013-06-07 13:28:56 +00:00
wiz
e0b49a2fed Bump PKGREVISION for libXft changes for NetBSD native X support on
NetBSD 6, requested by tron.
2013-06-06 12:53:40 +00:00
tron
a36fb86593 Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:
Recursively bump package revisions again after the "freetype2" and
"fontconfig" handling was fixed.
2013-06-04 22:15:37 +00:00
wiz
53745b22ea Bump freetype2 and fontconfig dependencies to current pkgsrc versions,
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.

While doing that, also bump freetype2 dependency to current pkgsrc
version.

Suggested by tron in PR 47882
2013-06-03 10:05:17 +00:00
tron
112aeeced8 This packages needs a Fortran 95 compiler to build, Fortran 77 is not
good enough.
2013-06-03 08:22:59 +00:00
tron
a3a8a39c45 This packages needs a Fortran 95 compiler to build, Fortran 77 is not
good enough.
2013-06-03 08:04:56 +00:00
wiz
d2ca14a3f1 Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
2013-05-31 12:39:57 +00:00
wiz
7b32066d91 DragonFly needs GNU readline here as well. PR pkg/47870 by David Shao. 2013-05-30 16:58:01 +00:00
wiz
228529fd72 Update to 3.1.3. Add comment to patch.
Changes since 3.1.2:

    Bug 526 - Fix linear vectorized transversal in linspace.
    Bug 551 - Fix compilation issue when using EIGEN_DEFAULT_DENSE_INDEX_TYPE.
    Bug 533 - Fix some missing const qualifiers in Transpose
    Fix a compilation with CGAL::Gmpq by adding explicit internal:: namespace when calling abs().
    Fix computation of outer-stride when calling .real() or .imag().
    Fix handmade_aligned_realloc (affected conservativeResize()).
    Fix sparse vector assignment from a sparse matrix.
    Fix log(0) with SSE.
    Fix bug in aligned_free with windows CE.
    Fix traits of Map<Quaternion.
    Fix a few warnings (507, 535, 581).
    Enable SSE with ICC even when it mimics a gcc version lower than 4.2
    Workaround gcc-4.7 bug #53900 (too aggressive optimization in our alignment check)
2013-05-29 22:58:25 +00:00
adam
872bf83603 Changes 4.50:
A new version of LU-factorization routines were added.
Currently this version provides the same functionality as the
old one, however, the new version allows further improving.

Old routines for FHV-factorization used to update the basis
factorization were replaced by a new version conforming to the
new version of LU-factorization.

Some clarifications about using the name index routines were
added.

Some typos were corrected in the MathProg language reference.

A serious bug (out-of-range indexing error) was *tentatively*
fixed in the routine glp_relax4. Unfortunatly, this bug is
inherited from the original Fortran version of the RELAX-IV
code (for details please see ChangeLog), and since the code is
very intricate, the bug is still under investigation.
2013-05-29 20:08:08 +00:00
wiz
b0eec5a1b6 Does not need GNU readline on 6.99.21+. 2013-05-29 09:06:02 +00:00
wiz
c86f638e43 Update to 2.77:
Update to version 2.77

    Fix RPM spec file to not install tutorial twice

    By default, the tutorial gets stuck in /usr/share/doc/nickle, while
    rpm wants it in /usr/shar/doc/nickle-<version>. Ignore the one in /usr/share/doc/nickle.

    doc: Expand tabs to spaces in .sgml files
    Makes code examples readable.

    Build tutorial when docbook2pdf is available
    And build it on debian

    tutorial: Use sgml entities instead of < and >

    Tutorial: twixt doesn't have an optional 'else' block
    This was a proposed feature that was removed

    Rename nickle tutorial to nickle-tutorial
    Makes any built files include 'nickle' by default

    corrected some Nickle Tour nits

    Handle OpFarJump in CompileReachable
    A FarJump within a catch block references instructions one or more
    frames outside of the instruction context. When checking for reachable
    code, look down inside the catch blocks to see if any of the FarJumps
    within them touch the target instruction.
    Fixes this example:
    void foo() {
    	for (;;)
    		try {
    		} catch uninitialized_value(string x) {
    			break;
    		}
    }
    Without this fix, the 'break' will not get noticed and no ReturnVoid
    will be appended to the object code for 'foo', leaving the break
    dangling in space.

    New instructions IsType and HasMember need entries in OpNames
    Otherwise, the array no longer matches the enum

    Fix VALIDATE_EXECUTION test code
    Needed ObjType defined.

    Update to 2.76

    Don't erase twixt pointer during JumpContinue until after stack copy
    Otherwise, if MemCollect occurs during the stack copy, the twixt's
    stack copy can get collected.

    Check for lost stack chunks
    If a stack chunk gets collected, the 'type' field will get
    cleared. Check to see if this has happened and abort.

    Add debug code to check thread validity during execution
    If something gets corrupted, it's useful to have this code to help
    track it down.

    Handle initializers with undefined types.
    Emit an error instead of crashing.

    Handle systems which don't define PATH_MAX (Hurd)
    This is a hack; a correct fix would involve actually allocating the
    correct length object.

    Version 2.75

    Delete ancient .cvsignore files
    Not exactly useful anymore

    Examples shouldn't be executable

    Fix Source URL in nickle.spec file
    Point at nickle.org, as appropriate.

    Make 'G' format limit array and struct recursion
    This makes stack traces tractable.

    Switch to dh for debian builds
    Vastly simplifies debian/rules...

    Stop printing recursive structs with 'g' format.
    This gets annoying really quickly, so just terminate the recursive
    struct printing right away.

    Handle ref types in &foo->bar operations
    For some reason, this case was left out of the usual ref type hacks

    Version 2.74

    Switch from debuild to pdebuild
    Catch more package building problems by using pbuilder.

    Fix Semaphore::wait logic (again) - partial means we've woken up
    The only way to run do_Semaphore::wait with 'partial' set to true is
    if the thread is waking up; in this case, the semaphore count may well
    be negative if other threads are also waiting. Ignore the count in
    this case and just complete the operation.

    Add explicit debian source format 3.0 (native)
    Keep lintian happy

    Clean up some debian lintian warnings

    Fix new FileVPrintf 'G' format comparison
    Was comparing the pointer to the representation enum. oops.

    Update debian/changelog for eventual 2.73 release

    git-log has become git log
    Needed to build ChangeLog

    Back autoconf requirement to 2.64 so debian stable can run it

    Shorten backtrace display
    Don't display composite values in backtraces so that the
    backtrace doesn't get flooded with giant values.

    Typecheck switch expressions
    Make sure switch expression and case expresssions are all type compatible.

    Add is_type and has_member built-ins
    These provide the ability to do run-time type comparisons without
    needing full introspection in the language.

    Add list.5c
    A useful data type

    add 'millis' function to return a clock in milliseconds.
    Useful when doing things with sleep

    Add Semaphore::count
    Useful for checking current semaphore value without
    modifying it.

    Clean up do_Semaphore_wait
    Make it clear that the semaphore count gets bumped down the first time
    into this function.

    Check for thread switch even if current thread is last
    Threads can switch due to semaphores or other signals; that can leave
    the current thread last in the run queue. Check for any case where
    running changes instead of only when the current thread isn't last.

    Make scanf not report valid conversion on blank input.
    scanf was incorrectly accepting " " as a valid number, returning a
    conversion of 0. Fix this by checking for empty strings in any numeric
    conversion.

    Add tests for scanf function
    Scanf incorrectly accepts blank strings for numbers; here's a pile
    of tests to validate various numeric input.

    Add sort and skiplist to standard nickle library
    These are too useful to just be examples

    Add gamma function

    Printing rational 0 in 'e' format doesn't need an exponent
    Computing a negative exponent requires a non-zero value, so just skip
    that if the value is zero

    NaturalGcd must return a Natural* when aborting
    It was returning One (an Integer) instead of one_natural;

    floor() and ceil() should work on imprecise floats
    They should return an approximate integer value instead of raising an exception.

    Set version to 2.73 in prepartion for eventually release

    Only call readline tty cleanup on signal readline is active
    If readline isn't active, the cleanup functions tend to make a mess of
    the tty state, so don't call them. This really only matters when
    handling SIGTSTP.

    Update to version 2.72

    Keep readline from catching signals
    This stops readline from catching signals, letting nickle handle them
    all by itself.

    Block in select instead of sigsuspend when waiting for I/O
    The kernel doesn't appear to reliably deliver SIGIO while the
    application is blocked, so sit in select instead of sigsuspend to make
    sure we hear about pending I/O.

    rename configure.in to configure.ac

    Switch version to 2.72 in preparation for an eventual release

    wait3 returns 0 when there's nothing left to do
    Don't keep looping when wait3 is done

    Update to version 2.71

    Clean up a pile of build warnings
    Signal return types, unused return values and stepping off the end of
    the typePrim array (the value of which was unused anyways).

    Catch attempts to use uninitialized pointer contents
    Dereferencing a pointer to uninitialized storage is an error, instead
    of passing this value along to callers, catch it immediately and raise
    an exception. Check for this case in the ++ and -- operators to
    generate a better error message (otherwise, we'll pass Void along and
    generate an error much later).

    Exit after two consecutive interrupts
    If the first interrupt isn't received by the nickle code,
    when the second one comes in, just exit

    Cleanup struct type changes

    Replace most parameterized macros with static inline functions
    Typechecking, decent compiler warnings and smaller code.

    Replace macros with static inline functions in value.h
    Actual type checking, and smaller compiler output to boot.

    Get rid of old-school variable length struct allocations
    This confuses the new _FORTIFY_SOURCE bits in GCC, so use the
    'sanctioned' form of placing a zero-length array at the end of the
    struct.
2013-05-26 20:14:48 +00:00
joerg
2023769892 Fix reference type to match argument from flex. Add missing include. 2013-05-23 18:41:21 +00:00
markd
597b18e07e Update to KDE SC 4.10.3
bugfixes.
2013-05-21 12:49:28 +00:00
adam
5d458ce4fe Changes 1.7.1:
gh-2973   Fix `1` is printed during numpy.test()
gh-2983   BUG: gh-2969: Backport memory leak fix 80b3a34.
gh-3007   Backport gh-3006
gh-2984   Backport fix complex polynomial fit
gh-2982   BUG: Make nansum work with booleans.
gh-2985   Backport large sort fixes
gh-3039   Backport object take
gh-3105   Backport nditer fix op axes initialization
gh-3108   BUG: npy-pkg-config ini files were missing after Bento build.
gh-3124   BUG: PyArray_LexSort allocates too much temporary memory.
gh-3131   BUG: Exported f2py_size symbol prevents linking multiple f2py
modules.
gh-3117   Backport gh-2992
gh-3135   DOC: Add mention of PyArray_SetBaseObject stealing a reference
gh-3134   DOC: Fix typo in fft docs (the indexing variable is 'm', not 'n').
gh-3136   Backport 3128
2013-05-20 05:59:58 +00:00
asau
8aaf243cf2 Update to FriCAS 1.2.0
Notable changes (compared to version 1.1.8):

- New MatrixManipulation package.

- New ParallelIntegrationTools package.

- Gruntz algorithm in now used also for finite one-sided limits.

- FriCAS has now true 2-dimensional arrays (previously they were
  emulated using vectors of vectors).

- Speedups in some matrix operations and in arithmetic with
  algebraic expressions.

- FreeModule is now more general, it allows Comparable as second
  argument.

- Changed Spad parser, it now uses common scanner with interpreter.
  Spad language is now closer to interpreter language and Aldor.
  'leave' is removed,  'free', 'generate' and 'goto' are now keywords.
  Pile rules changed slightly, they should be more intuitve now.
  Error messages from Spad parser should be slightly better.

Bug fixes, in particular:

- Fixed a few build problems.

- Eliminated division by 0 during 'normalize'.

- 'nthRootIfCan' removes leading zeros from generalized series
   (this avoids problems with power series expanders).

- Fixed corruption of formal derivatives.

- Fixed two problems with fortan output.

- Fixed ')untrace' and ')undo'.  Fixed ')trace' with ECL.

- Fixed problem with calling efricas if user default shell is (t)csh.
2013-05-19 10:01:00 +00:00
prlw1
fd0c317944 Update gcalctool-gtk3 to 6.6.2
* Updated translations
2013-05-18 23:12:39 +00:00
agc
18df049659 Update math/ntl to version 6.0.0
Differences from previous version (5.5.2):

	2013.02.15: Changes between NTL 5.5.2 and 6.0

	Replaced the old template-like macros for vectors, matrices, and pairs
	with true template classes:  Vec<T>, Mat<T>, and Pair<S,T>.  For
	backwards compatibilty, all the names that were used in previous
	versions (e.g., vec_ZZ_p, mat_ZZ_p) have been replaced with
	appropriate typedefs.

	For many years, I resisted the temptation of using templates, because
	compiler support was very inconsistent.  But that no longer seems to
	be the case.

	This change, while rather sweeping, should create very few, if any,
	incompatibilities with existing software.  The biggest issue would be
	for software that uses the old template-like macros:  such macro
	invocations can simply be replaced with appropriate typedefs.

	Made the conversion interface more complete and uniform.  Also, using
	template notation, one can and should now write conv<ZZ>(a) instead of
	to_ZZ(a) (for backward compatibility, all the old names to_XXX are
	still there, but many new conversions are not available under these
	old names).  There are many new conversions provided.  Moreover,
	whenever there is a conversion from a ring R to a ring S, there is a
	corresponding, coefficiet-wise conversion from the polynomial ring
	R[X] to the polynomial ring R[X].

	In addition, using the template mechanism, there are generic
	conversions for vectors and matrices.  For example, if there is a
	conversion from S to T, then there is automatically a corresponding
	component-wise conversion from Vec<S> to Vec<T>.

	Introduced a more general mechanism for accessing GF2's in packed
	structures via indexing (see the class ref_GF2 in the GF2 module).
	Employed ideas from David Harvey to make the single-precision FFT
	faster (about twice as fast in many cases).  This speeds up many
	higher-level operations.

	Fixed all known bugs.
2013-05-18 18:32:19 +00:00
bad
b03523e7e9 Update py-pandas to 0.11.0.
Summary of changes since 0.10.1:

This is a major release from 0.10.1 and includes many new features and
enhancements along with a large number of bug fixes. The methods of
Selecting Data have had quite a number of additions, and Dtype support
is now full-fledged. There are also a number of important API changes
that long-time pandas users should pay close attention to.

* New precision indexing fields loc, iloc, at, and iat, to reduce
  occasional ambiguity in the catch-all hitherto ix method.

* Expanded support for NumPy data types in DataFrame.

* NumExpr integration to accelerate various operator evaluation.

* Improved DataFrame to CSV exporting performance.

For a full list refer to the "what's new" page.

Also fixes PLIST errors introduced in last update.
2013-05-16 23:10:16 +00:00
obache
598be3bb97 Update metis to 4.0.3.
PR pkg/47783 by Litvinov Sergey.

METIS 4.0.3, 3/19/11
------------------------------------------------------------------------------
r9587 | karypis | 2011-03-19 12:22:36 -0500 (Sat, 19 Mar 2011) | 1 line

- Renamed log2() to ilog2() to remove conflicts with C99 log2() function
- Fixed I/O routines to eliminate compilation warnings
- Fixed error reporting routines to eliminate compilation warnings


METIS 4.0.2, 3/10/04
------------------------------------------------------------------------------
- Fixed a problem with weighted graphs and ometis.c


METIS 4.0.1, 11/29/98
------------------------------------------------------------------------------
This is mostly a bug-fix release

  - Fixed some bugs in the multi-constraint partitioning routines
  - Fixed some bugs in the volume-minimization routines
2013-05-16 12:37:35 +00:00
fhajny
26ca11ce10 Update py-pytables to 2.4.0.
Major changes in 2.4:
- Improved HDF5 error logging management.
- Added support for the float16 data type.
- Leaf nodes now have attributes for retrieving the size of data in memory
  and on disk.
- Configurable maximum number of threads for Blosc and Numexpr.
- ndim (read-only) attribute added to Leaf, Atom and Col objects.
- Added read support for variable length string attributes.

Full changelog for 2.4.0, see:

  http://pytables.github.io/release-notes/RELEASE_NOTES_v2.4.x.html

Major changes in 2.3:

- Integrated functionality from PyTablesPro (re-licensed under a BSD license).
- OPSI is a powerful and innovative indexing engine allowing PyTables
  to perform fast queries on arbitrarily large tables.
- A fine-tuned LRU cache for both metadata (nodes) and regular data.

Full changelog for 2.3.x, see:

  http://pytables.github.io/release-notes/RELEASE_NOTES_v2.3.x.html
2013-05-14 09:57:58 +00:00
joerg
573f5e48db Add const for the compare operator. 2013-05-12 19:16:01 +00:00
adam
1ab43a036f Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu. 2013-05-09 07:39:04 +00:00
joerg
29304156ef Prefer C++11 interfaces over tr1. 2013-05-06 14:52:54 +00:00
wiz
cc83fb6242 Remove deprecated MIME type from .desktop file.
Bump PKGREVISION.
2013-05-06 11:06:34 +00:00
joerg
3c8481bc7d Use -Wl,-export-dynamic, not plain -export-dynamic. Fix powl and related
autoconf test.
2013-05-05 14:57:27 +00:00
joerg
6637ef4270 Add a bunch of missing includes hidden by libstdc++ namespace pollution. 2013-05-04 12:59:45 +00:00
drochner
d814cbdfc8 update to 2.1.2
changes:
-GTK3 support (not used in pkgsrc yet)
-moves the configuration file to a XDG conforming location
-bugfixes
-translated to Lithuanian
2013-05-03 16:40:02 +00:00
drochner
1724a30a46 update to 1.12.2
changes:
-Update documentation
-Improve ODF support
-minor UI tweaks
-Embed more artwork
-New functions: OWENT, POCHHAMMER, NT_OMEGA
-bugfixes
2013-05-03 15:54:46 +00:00
joerg
5d4c49e51e Use <memory> for libc++. 2013-04-30 22:26:29 +00:00
joerg
fc867da415 Avoid conflict with std::is_function. Add some missing const and
a missing include.
2013-04-30 22:25:39 +00:00
obache
2eb4cbc76c Update ruby-spreadsheet to 0.8.5.
=== 0.8.5 / 24.04.2013

* Applied Patch by Joao Almeida: When editing an existing sheet, cells merge was not working.
* https://github.com/voraz/spreadsheet/pull/14.patch
2013-04-25 11:07:56 +00:00
sbd
0da22b5ac9 For all packages include ghostscript.buildlink3.mk:
s/ghostscript.buildlink3.mk/buildlink3.mk/

Bump PKGREVISIONs
2013-04-25 03:53:11 +00:00
obache
fffe326c37 Update ruby-spreadsheet to 0.8.4.
=== 0.8.4 / 20.04.2013

* Applied Patch by boss@airbladesoftware.com
* https://groups.google.com/d/msg/rubyspreadsheet/73IoEwSx69w/barE7uVnIzwJ
  fix a problem where a cell whose format is set to datetime actually contains
  a string.
2013-04-21 04:09:33 +00:00
adam
c0aa7c2858 GLPK 4.49 (release date: Apr 16, 2013)
The new API routine glp_mincost_relax4, which is a driver to
        relaxation method of Bertsekas and Tseng (RELAX-IV), was added
        to the package. RELAX-IV is a code for solving minimum cost
        flow problems. On large instances it is 100-1000 times faster
        than the standard primal simplex method. Prof. Bertsekas, the
        author of the original RELAX-IV Fortran code, kindly permitted
        to include a C translation of his code in GLPK under GPLv3.

        A bug (wrong dual feasibility test) was fixed in API routine
        glp_warm_up. Thanks to David T. Price <dtprice@speakeasy.net>
        for bug report.

        Obsolete API routine lpx_check_kkt was replaced by new routine
        glp_check_kkt.

        IMPORTANT: All old API routines whose names begin with 'lpx_'
        were removed from API level and NO MORE AVAILABLE.
2013-04-16 14:15:14 +00:00
adam
e09a215d06 Changes 0.11.2:
* make code generation output the same on Solaris
* fix some hard to trigger bugs
2013-04-16 06:47:15 +00:00
markd
f0160843ca Update to 0.12.0
Changes many - see doc/release/ in the source tarball for details
2013-04-14 00:28:53 +00:00
asau
6929b96ca2 Revert pkglint-induced nonsense. 2013-04-08 18:29:37 +00:00
rodent
b65af7be2b Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
rodent
6b46c62d2e Edited DESCR in the case of:
File too long (should be no more than 24 lines).
 Line too long (should be no more than 80 characters).
 Trailing empty lines.
 Trailing white-space.
Trucated the long files as best as possible while preserving the most info
contained in them.
2013-04-07 20:49:31 +00:00
asau
9bd2fa62dc Revert. "GBS" is not acceptable abbreviation here. 2013-04-07 20:38:36 +00:00
rodent
9e8537cdd2 "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
rodent
942aad2e6a Resolves:
"INFO_FILES should be set to YES or yes."
"Packages that install info files should set INFO_FILES."
Makefile and PLIST warning, respectively.
2013-04-06 20:27:16 +00:00
rodent
cdadf8804e 'You can use "foo" instead of "${WRKSRC}/foo".' 2013-04-06 15:46:33 +00:00
rodent
e5b2fdbc78 'Please use ${ECHO} instead of "echo".'
'Please use ${ECHO_N} instead of "echo -n".'
2013-04-06 14:58:18 +00:00
rodent
315c4801a4 "Packages that install libtool libraries should define USE_LIBTOOL." 2013-04-06 14:22:39 +00:00
rodent
76e83cbf5c Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
rodent
aa1275dbab "This line belongs inside the .ifdef block." 2013-04-06 13:46:33 +00:00
rodent
7009872d91 "Please write NetBSD.org instead of netbsd.org" 2013-04-06 13:09:24 +00:00
rodent
28c976145a "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable
$$extract_file instead."
2013-04-06 12:03:59 +00:00
rodent
94fbe74e04 '"@comment $NetBSD$" expected.' 2013-04-06 04:03:36 +00:00
rodent
170121df49 "Definition of USE_DIRS is deprecated. You can just remove it." 2013-04-06 03:54:38 +00:00
rodent
a0a1f2e57c Fixes:
COMMENT should not be longer than 70 characters.
 COMMENT should not begin with 'A'.
 COMMENT should not begin with 'An'.
 COMMENT should not begin with 'a'.
 COMMENT should not end with a period.
 COMMENT should start with a capital letter.

pkglint warnings. Some files also got minor formatting, spelling, and style
corrections.
2013-04-06 03:45:05 +00:00
markd
2a42c60e9c Install info files. Bump PKGREVISION.
Fixes PR pkg/47391
2013-04-06 03:16:50 +00:00
markd
ea97be746d Update to KDE SC 4.10.2
bugfixes, other quality improvements, new and improved KDE Applications
2013-04-03 10:51:43 +00:00
joerg
424291cbdb Don't try to detect the pkgconfig directory, hard-wire the one used in
pkgsrc. It seems like the detection sometimes picked up the wrong value.
Adjust PLIST and bump revision.
2013-04-01 12:14:33 +00:00
joerg
79d52570fe Don't use VLAs of non-POD types. 2013-03-24 16:52:35 +00:00
markd
1b2ef620aa Add eigen3 2013-03-17 19:38:36 +00:00
markd
7967f3a1ef Add eigen3 version 3.1.2
Eigen 3 is a C++ template library for linear algebra: vectors, matrices, and
related algorithms.
2013-03-17 19:37:19 +00:00
dholland
4e3e0038c1 Update ghostscript depends. PKGREVISION -> 6 2013-03-16 22:54:29 +00:00
taca
d8715bee6f Add and enable pear-Math_BigInteger. 2013-03-16 04:05:40 +00:00
taca
9e11c5e6b5 Add pear-Math_BigInteger version 1.0.0.
Math_BigInteger provices support of base-2, base-10, base-16, and base-256
numbers.  Uses the GMP or BCMath extensions, if available, and an internal
implementation, otherwise.
2013-03-16 04:04:30 +00:00
drochner
10e7cab446 update to 1.0.16
changes:
-Plotting improvements, new functions
-lots of fixes
-translation updates
2013-03-15 19:10:39 +00:00
drochner
4ed54577af update to 3.1.2
changes:
-bugfixes (were patched in 3.1.1plX)
-updated examples
2013-03-15 19:09:06 +00:00
drochner
116de7d77a add gnumeric112 for the latest (gtk3 based) stable gnumeric version 2013-03-14 19:00:44 +00:00
obache
bd4139b5d5 Update ruby-spreadsheet to 0.8.3.
=== 0.8.3 / 12.03.2013

uthor: Keith Walsh <keith.walsh@adtegrity.com>
Date:   Mon Mar 11 16:48:25 2013 -0400

* Typo correction in guide example.
2013-03-14 11:59:45 +00:00
taca
263262d459 Remove ruby-rb-gsl; it has renamed to ruby-gsl after all. 2013-03-11 12:33:23 +00:00
taca
8ef1a28882 Add and enable ruby-gsl.
Remove ruby-rb-gsl.
2013-03-11 12:29:47 +00:00
taca
5e6d87c881 Add ruby-gsl 1.15.3 which is latest version on rubygems.org.
It depends on math/ruby-narray, replacing ruby-rb-gsl.

Changes from ruby-rb-gsl 1.14.7 isn't available.
2013-03-11 12:28:46 +00:00
taca
d0b30ee23f Add and enable ruby-narray. 2013-03-11 09:28:16 +00:00
taca
743d830548 Add ruby-narray package version 0.6.0.8.
* NArray properties:

  + Fast and easy calculation for large numerical array.
  + Accepting Elements:
    8,16,32 bit integer, single/double float/complex, Ruby Object.
  + Easy extraction/substitution of array subset,
    using assignment with number, range, array index.
  + Operator: +,-,*,/,%,**, etc.
  + FFTW version 2 or 3 is separately supported.
  + NImage: Image viewer class.
  + Ruby/PGPLOT: Graphics library interface (separately distributed)
     X-Y Graph, Histogram, Contour map, Image map, etc.

* NArray is similar to:

  + Python/NumPy, Perl/PDL, Yorick, IDL
2013-03-11 09:27:27 +00:00
asau
7d962df278 + libint 2013-03-08 15:21:54 +00:00
asau
ffacd923e9 Import libint-2.0.0 as math/libint
Libint is two things:
1. a library of C/C++ functions for efficient evaluation of
several kinds of two-body molecular integrals over Gaussian
functions;
2. the optimizing compiler that generates a Libint library.

In molecular electronic structure theory Gaussian basis sets are
standard because they allow efficient evaluation of matrix
elements of operators (molecular integrals). Modern electronic
structure programs spend considerable portion of their runtime
computing the Coulomb two-electron integrals. While anyone can
compute Gaussian integrals using simple formulas, the efficient
evaluation of many-body can be (relatively) complicated.
Libint is an open library that anyone can use to compute a
variety of two-electron integrals, most importantly the Coulomb
two-electron integrals and their arbitrary-order geometric
derivatives, over Gaussians of arbitrary angular momentum.
Among other notable features is the support for the nonstandard
two-electron integrals that appear in explicitly correlated R12
methods.
2013-03-08 07:09:04 +00:00
joerg
6f5172913a Fix inline use. 2013-03-02 18:02:11 +00:00
obache
6ffe32f172 Update ruby-spreadsheet to 0.8.2.
=== 0.8.2 / 28.02.2013

Author: Roque Pinel <roque.pinel@infotechfl.com>
Date:   Wed Feb 27 12:10:29 2013 -0500

* Requiring BigDecimal for checking.
* Made API friendly to BigDecimal precision.
* Changes introduced by the user 'valeriusjames'.
2013-03-02 02:33:35 +00:00
jperkin
87f98ebd97 Work around broken perror() configure test on SunOS. 2013-02-27 16:09:27 +00:00
asau
fd3519b81c Update to Octave 3.6.4
This version is a minor bug fixing release.
2013-02-23 13:11:06 +00:00
obache
33b4752839 Update ruby-spreadsheet to 0.8.1.
=== 0.8.1 / 18.02.2013

* Updated Manifest.txt to include lib/spreadsheet/excel/rgb.rb

=== 0.8.0 / 18.02.2013

* Adding support for converting color palette values to RGB values (not vice-versa..yet)
* by https://github.com/dancaugherty/spreadsheet/compare/master...rgb

=== 0.7.9 / 06.02.2013

Author: Eugeniy Belyaev (zhekanax)

* You can merge if you are interested in perl-like Workbook.set_custom_color
  implementation. I know it is not really a proper way to deal with custom colors, but
  nevertheless it makes it possible.
* https://github.com/zdavatz/spreadsheet/pull/27

=== 0.7.8 / 06.02.2013

Author: Kenichi Kamiya <kachick1@gmail.com>
Date:   Wed Feb 6 11:23:35 2013 +0900

* Link to Travis CI on README
* Remove warnings "assigned but unused variable" in test
* Remove warnings "assigned but unused variable"
* Enable $VERBOSE flag when running test
2013-02-21 13:23:12 +00:00
jperkin
e17509e3e6 Ensure the correct compiler ABI flag is used when this package does
its own builds for dependencies.  Fixes issue on SunOS 32-bit when
the native gfortran produces 64-bit by default.

Bump PKGREVISION.
2013-02-21 10:59:38 +00:00
wiz
d1dda1a64e Fix cut(1) arguments so that all tests work fine. From Kai-Uwe Eckhardt. 2013-02-20 21:37:13 +00:00
wiz
5f1c392f23 Does not really use c++, remove it from languages. 2013-02-20 21:36:52 +00:00
wiz
069fbbd090 Add TEST_TARGET. 2013-02-19 19:45:44 +00:00
wiz
89b397e226 Correct dependencies. No users yet, so no bumps needed. 2013-02-17 22:20:44 +00:00
wiz
8f08240471 Use math/isl instead of builtin copy of the same.
Add TEST_TARGET. Use gmp.
Bump PKGREVISION.

From Kai-Uwe Eckhardt.
2013-02-17 22:17:41 +00:00
wiz
f35ed340ad + isl 2013-02-17 22:11:31 +00:00
wiz
57933fd710 Import isl-0.11.1 as math/isl, packaged for wip by Kai-Uwe Eckhardt.
isl is a library for manipulating sets and relations of integer
points bounded by linear constraints. Supported operations on sets
include intersection, union, set difference, emptiness check, convex
hull, (integer) affine hull, integer projection, and computing the
lexicographic minimum using parametric integer programming. It also
includes an ILP solver based on generalized basis reduction.
2013-02-17 22:10:47 +00:00
dholland
384132a8a7 Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
wiz
d1b820f37b Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
bad
5838b9613f Update pandas to 0.10.1.
Release date: 2013-01-22

New features:

        Add data inferface to World Bank WDI pandas.io.wb (GH2592)

API Changes:

        Restored inplace=True behavior returning self (same object) with
	  deprecation warning until 0.11 (GH1893)
        HDFStore
            refactored HFDStore to deal with non-table stores as objects, will
	      allow future enhancements
            removed keyword compression from put (replaced by keyword complib
	      to be consistent across library)
            warn PerformanceWarning if you are attempting to store types that
	      will be pickled by PyTables

Improvements to existing features:

        HDFStore
            enables storing of multi-index dataframes (closes GH1277)
            support data column indexing and selection, via data_columns
	      keyword in append
            support write chunking to reduce memory footprint, via chunksize
	      keyword to append
            support automagic indexing via index keyword to append
            support expectedrows keyword in append to inform PyTables about
	      the expected tablesize
            support start and stop keywords in select to limit the row
	      selection space
            added get_store context manager to automatically import with pandas
            added column filtering via columns keyword in select
            added methods append_to_multiple/select_as_multiple/
	      select_as_coordinates to do multiple-table append/selection
            added support for datetime64 in columns
            added method unique to select the unique values in an indexable
	      or data column
            added method copy to copy an existing store (and possibly upgrade)
            show the shape of the data on disk for non-table stores when
	      printing the store
            added ability to read PyTables flavor tables (allows compatiblity
	      to other HDF5 systems)
        Add logx option to DataFrame/Series.plot (GH2327, GH2565)
        Support reading gzipped data from file-like object
        pivot_table aggfunc can be anything used in GroupBy.aggregate (GH2643)
        Implement DataFrame merges in case where set cardinalities might
	  overflow 64-bit integer (GH2690)
        Raise exception in C file parser if integer dtype specified and have
	  NA values. (GH2631)
        Attempt to parse ISO8601 format dates when parse_dates=True in read_csv
	  for major performance boost in such cases (GH2698)
        Add methods neg and inv to Series
        Implement kind option in ExcelFile to indicate whether it's an XLS
	  or XLSX file (GH2613)

Bug fixes:

        Fix read_csv/read_table multithreading issues (GH2608)
        HDFStore
            correctly handle nan elements in string columns; serialize via the
	      nan_rep keyword to append
            raise correctly on non-implemented column types (unicode/date)
            handle correctly Term passed types (e.g. index<1000, when index is
	      Int64), (closes GH512)
            handle Timestamp correctly in data_columns (closes GH2637)
            contains correctly matches on non-natural names
            correctly store float32 dtypes in tables (if not other float types
	      in the same table)
        Fix DataFrame.info bug with UTF8-encoded columns. (GH2576)
        Fix DatetimeIndex handling of FixedOffset tz (GH2604)
        More robust detection of being in IPython session for wide DataFrame
	  console formatting (GH2585)
        Fix platform issues with file:/// in unit test (GH2564)
        Fix bug and possible segfault when grouping by hierarchical level that
	  contains NA values (GH2616)
        Ensure that MultiIndex tuples can be constructed with NAs (GH2616)
        Fix int64 overflow issue when unstacking MultiIndex with many levels
	  (GH2616)
        Exclude non-numeric data from DataFrame.quantile by default (GH2625)
        Fix a Cython C int64 boxing issue causing read_csv to return incorrect
	  results (GH2599)
        Fix groupby summing performance issue on boolean data (GH2692)
        Don't bork Series containing datetime64 values with to_datetime (GH2699)
        Fix DataFrame.from_records corner case when passed columns, index
	  column, but empty record list (GH2633)
        Fix C parser-tokenizer bug with trailing fields. (GH2668)
        Don't exclude non-numeric data from GroupBy.max/min (GH2700)
        Don't lose time zone when calling DatetimeIndex.drop (GH2621)
        Fix setitem on a Series with a boolean key and a non-scalar as value
	  (GH2686)
        Box datetime64 values in Series.apply/map (GH2627, GH2689)
        Upconvert datetime + datetime64 values when concatenating frames
	  (GH2624)
        Raise a more helpful error message in merge operations when one
	  DataFrame has duplicate columns (GH2649)
        Fix partial date parsing issue occuring only when code is run at EOM
	  (GH2618)
        Prevent MemoryError when using counting sort in sortlevel with
	  high-cardinality MultiIndex objects (GH2684)
        Fix Period resampling bug when all values fall into a single bin
	  (GH2070)
        Fix buggy interaction with usecols argument in read_csv when there is
	  an implicit first index column (GH2654)
2013-02-16 00:02:19 +00:00
obache
07659b9b8d recursive bump from boost-lib shlib update. 2013-02-15 11:53:59 +00:00
ryoon
9bef86f5fd Bump PKGREVISION from audio/jack. 2013-02-09 22:11:28 +00:00
wiz
5cc5e53f08 Update to 0.18.0:
version: 0.18.0
date: Thu Dec 20 17:50:41 CET 2012
changes:
	- Update to isl 0.11.1
	- clast annotations for openmp and vectorization
	- statement-wise loop separation
	- clast traversal and node filtering support
	- Do not call some deprecated isl functions
	- Support for OpenSCoP coordinates extension

version: 0.17.0
date: Mon Dec 12 00:51:44 CET 2011
changes:
	- Support openscop as input format
	- update isl backend to changes in isl 0.08
	- Add CLOOG_ prefix to LANGUAGE defines in public header files
	- Replace cloog_union_domain_from_isl_union_set() with
	  cloog_union_domain_from_isl_set()
	- Allow to build CLooG from gmp build directory
	- Smaller improvements

version: 0.16.3
date: Wed Jul 13 18:18:19 CEST 2011
changes:
	- update isl backend to recent changes in isl
	- add support for unrolling
2013-02-09 21:36:02 +00:00
wiz
c82c2f3bf2 Fix build with gmp-5.1.0.
From
http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git
via
https://raw.github.com/niXman/mingw-builds/master/patches/ppl/ppl-resolve-conflicts-with-gmp-5.1.0.patch
2013-02-09 21:29:24 +00:00
jperkin
becd113253 PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
adam
0b71de0796 Changes 4.48:
This is a maintainer release.
Some minor changes in API (glpk.h) were made. For details please see ChangeLog.
Some bugs/typos were fixed.
2013-01-31 20:31:28 +00:00
adam
f4c3b89da7 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
obache
31b1e080e5 Update ruby-spreadsheet to 0.7.7.
=== 0.7.7 / 22.01.2013

Author: DeTeam <timur.deteam@gmail.com>
Date:   Tue Jan 22 19:11:52 2013 +0400

* Make tests pass
* Readme updated
* RuntimeError when file is empty
* Hoe in dev deps
* Finish with bundler
* Add a Gemfile

also see: https://github.com/zdavatz/spreadsheet/pull/24
2013-01-24 10:50:35 +00:00
wen
ca55ccfa01 Update to 1.3.8
Update LICENSE

Upstream changes:
genetics 1.3.8 - 2012-12-14
---------------------------

Bug fixes:

- Regenerate broken PDF files in inst/doc.


genetics 1.3.7 - 2012-09-14
---------------------------

Enhancements:

- Improve descripiton of last examples in manual page for HWE.test().

Other Changes:

- Correct warnings issued by recent versions of R CMD CHECK.
2013-01-24 02:24:15 +00:00
wen
a14064fccf Update to 0.9.3
No upstream changelog.
2013-01-24 01:59:44 +00:00
wen
e8d7dde558 Update to 1.0.15
Upstream changes:
2012-12-14 10:03  BenediktGraeler

	* pkg/demo/stkrige.R: - updated demo stkrige.R

2012-12-10 17:36  EdzerPebesma

	* pkg/tests/Examples/gstat-Ex.Rout.save: examples check

2012-12-10 17:30  EdzerPebesma

	* pkg/R/gstat.formula.R, pkg/R/gstat.formula.predict.R,
	  pkg/R/predict.gstat.R: added checking of factor levels, as lm()
	  does it.

2012-12-03 14:11  EdzerPebesma

	* pkg/DESCRIPTION: date

2012-11-28 20:04  BenediktGraeler

	* gstat_1.0-15.zip, pkg/R/stVariogramModels.R, pkg/demo/stkrige.R,
	  pkg/inst/doc/st.Rnw, pkg/man/fit.StVariogram.Rd,
	  pkg/man/variogramSurface.Rd: - updated the vignette "st" to meet
	  the new implementations

2012-11-22 14:41  BenediktGraeler

	* gstat_1.0-15.zip, pkg/R/stVariogramModels.R, pkg/demo/stkrige.R,
	  pkg/man/fit.StVariogram.Rd, pkg/man/variogramSurface.Rd: - added
	  a simplified sumMetric model having only a joint nugget
	  - added the metric model including a spatio-temporal anisotropy

2012-11-21 17:01  BenediktGraeler

	* ., gstat_1.0-15.zip, pkg/man/variogramSurface.Rd: - added
	  compiled windows version gstat_1.0-15.zip
	  - fixed example in variogramSurface.Rd

2012-11-21 16:14  BenediktGraeler

	* pkg/R/krige0.R, pkg/R/stVariogramModels.R, pkg/demo/stkrige.R,
	  pkg/man/variogramSurface.Rd: - added man/variogramSurface.Rd
	  - fixed prodSum model in R/krige0.R and R/stVariogramModels.R
	  - updated demo/stkrige.R

2012-11-20 20:02  EdzerPebesma

	* pkg/NAMESPACE, pkg/R/krige.R, pkg/R/krige0.R, pkg/demo/00Index,
	  pkg/demo/stkrige.R, pkg/tests/Examples/gstat-Ex.Rout.save: added
	  stkrige demo; polished krige for ST method.

2012-11-20 17:53  EdzerPebesma

	* pkg/DESCRIPTION: update

2012-11-20 14:27  BenediktGraeler

	* pkg/man/fit.StVariogram.Rd: - fixed versioning issues

2012-11-20 14:26  BenediktGraeler

	* pkg/man/krige.Rd:

2012-11-20 11:07  BenediktGraeler

	* pkg/NAMESPACE, pkg/R/krige0.R, pkg/R/stVariogramModels.R,
	  pkg/man/fit.StVariogram.Rd, pkg/man/krige.Rd: - added functio
	  fit.StVariogram
	  - added sumMetric covariance model handling as well STSDF

2012-11-19 10:22  EdzerPebesma

	* pkg/NAMESPACE, pkg/R/krige0.R, pkg/R/variogramST.R,
	  pkg/man/krige.Rd: added krige method;
	  cleaned up NAMESPACE, changed call to zoo into as.zoo

2012-11-16 14:11  BenediktGraeler

	* pkg/R/krige0.R, pkg/R/stVariogramModels.R: - added automated
	  fitting of some StVariograms (separable, productSum, sumMetric)

2012-11-13 15:40  BenediktGraeler

	* pkg/R/krige0.R: added support for the product-sum model in
	  spatio-temporal kriging

2012-11-12 18:20  EdzerPebesma

	* pkg/DESCRIPTION, pkg/NAMESPACE, pkg/tests/Examples,
	  pkg/tests/Examples/gstat-Ex.Rout.save, pkg/tests/windst.R,
	  pkg/tests/windst.Rout.save: updated imports; Imports spacetime
	  (>=1.0-0); added examples check.

2012-11-11 15:04  EdzerPebesma

	* pkg/DESCRIPTION, pkg/NAMESPACE, pkg/R/fit.variogram.R,
	  pkg/R/fit.variogram.reml.R, pkg/R/gstat.debug.R,
	  pkg/R/load.variogram.model.R, pkg/R/predict.gstat.R, pkg/R/set.R,
	  pkg/R/variogram.default.R, pkg/R/variogramLine.R, pkg/R/vgm.R,
	  pkg/R/zzz.R, pkg/tests/blockkr.Rout.save,
	  pkg/tests/covtable.Rout.save, pkg/tests/cv.Rout.save,
	  pkg/tests/cv3d.Rout.save, pkg/tests/fit.Rout.save,
	  pkg/tests/krige0.Rout.save, pkg/tests/line.Rout.save,
	  pkg/tests/merge.Rout.save, pkg/tests/na.action.Rout.save,
	  pkg/tests/rings.Rout.save, pkg/tests/sim.Rout.save,
	  pkg/tests/unproj.Rout.save, pkg/tests/variogram.Rout.save,
	  pkg/tests/vdist.Rout.save, pkg/tests/windst.R,
	  pkg/tests/windst.Rout.save: moved zoo, xts and spacetime from
	  Depends: into Imports:
	  changed all .Call() calls to follow the new format without
	  quotes.

2012-11-10 22:56  EdzerPebesma

	* pkg/tests/unproj.Rout.save, pkg/tests/windst.Rout.save: updated
	  test outputs

2012-11-10 21:06  EdzerPebesma

	* pkg/DESCRIPTION: added rgeos in Suggests:

2012-11-10 16:13  EdzerPebesma

	* pkg/R/krige.R, pkg/man/fulmar.Rd, pkg/man/vv.Rd,
	  pkg/tests/krige0.Rout.save, pkg/tests/windst.Rout.save: updated
	  manual pages;
	  first attempts for S/T idw in krige.R (untested!)
	  updated test outputs

2012-11-08 20:42  EdzerPebesma

	* pkg/demo/fulmar.R, pkg/demo/gstat3D.R, pkg/demo/wind.R: updated /
	  corrected demos

2012-10-28 19:01  EdzerPebesma

	* pkg/src/s.c, pkg/tests/krige0.Rout.save,
	  pkg/tests/windst.Rout.save: s.c: removed #ifdef WIN32; tests:
	  update to 2.15.2

2012-10-28 18:41  EdzerPebesma

	* pkg/man/krige.Rd: added idw(formula, ST) method alias

2012-10-15 20:34  EdzerPebesma

	* pkg/data/vv.rda: new st variogram, with zero spatial lags

2012-10-15 20:01  EdzerPebesma

	* pkg/R/variogramST.R: computes pure time variogram, for zero space
	  lag.

2012-10-14 21:26  EdzerPebesma

	* pkg/R/krige.R, pkg/R/variogram.ST.R, pkg/R/variogramST.R,
	  pkg/man/variogram.Rd, pkg/src/s.c, pkg/src/sem.c: some work on
	  zero distance semivariances, variogramST still needs more work.

2012-10-06 16:09  EdzerPebesma

	* pkg/DESCRIPTION, pkg/R/fit.variogram.R, pkg/inst/ChangeLog,
	  pkg/tests/unproj.Rout.save, pkg/tests/windst.Rout.save: version
	  change; fit.variogram now fits Err models, too.

2012-09-12 14:21  EdzerPebesma

	* pkg/R/fit.variogram.R: for variogramCloud fitting, np shoud be 1

2012-09-12 14:20  EdzerPebesma

	* pkg/R/fit.variogram.R, pkg/R/fit.variogram.reml.R,
	  pkg/R/gstat.debug.R, pkg/R/krige0.R,
	  pkg/R/load.variogram.model.R, pkg/R/predict.gstat.R, pkg/R/set.R,
	  pkg/R/variogram.default.R, pkg/R/variogramLine.R, pkg/R/vgm.R,
	  pkg/R/zzz.R: added PACKAGE="gstat" argument to all .Call or .C
	  calls;
	  allow fit.variogram to fit to variogramCloud objects

2012-07-24 17:40  EdzerPebesma

	* pkg/tests/unproj.Rout.save: version update

2012-07-23 13:59  EdzerPebesma

	* pkg/demo/lhs.R: replaced non-ASCII character

2012-07-01 22:36  EdzerPebesma

	* makefile, pkg/DESCRIPTION, pkg/src/s.c: version update; #include
	  <S.h>; added -Wall to checking

2012-06-18 14:06  EdzerPebesma

	* pkg/R/show.vgms.R, pkg/src/chfactor.c, pkg/src/copy.c,
	  pkg/src/data.c, pkg/src/err.c, pkg/src/fit.c, pkg/src/getest.c,
	  pkg/src/hsehldr.c, pkg/src/init.c, pkg/src/ivecop.c,
	  pkg/src/lex.c, pkg/src/lufactor.c, pkg/src/machine.c,
	  pkg/src/mapio.c, pkg/src/matop.c, pkg/src/meminfo.c,
	  pkg/src/memory.c, pkg/src/msim.c, pkg/src/norm.c,
	  pkg/src/parse.c, pkg/src/polygon.c, pkg/src/predict.c,
	  pkg/src/pxop.c, pkg/src/qrfactor.c, pkg/src/sem.c,
	  pkg/src/solve.c, pkg/src/sparse.c, pkg/src/sprow.c,
	  pkg/src/submat.c, pkg/src/utils.c, pkg/src/vecop.c,
	  pkg/src/version.c, pkg/tests/unproj.Rout.save,
	  pkg/tests/windst.Rout.save: removed all warnings that would
	  result from using -Wall; updated two test outputs.

2012-06-16 20:52  EdzerPebesma

	* pkg/R/show.vgms.R, pkg/R/vgm.R: as.groups in show.vgms() now
	  works, too.

2012-06-16 16:38  EdzerPebesma

	* pkg/R/show.vgms.R, pkg/man/show.vgms.Rd: added as.groups
	  argument; typo

2012-06-16 15:37  EdzerPebesma

	* pkg/R/show.vgms.R, pkg/R/vgm.R, pkg/man/show.vgms.Rd: show.vgms
	  now accepts sill, range and nugget to be vectors of length > 1

2012-05-31 19:06  EdzerPebesma

	* makefile, pkg/DESCRIPTION, pkg/tests/unproj.R: version; took out
	  gstat.org

2012-05-01 17:32  EdzerPebesma

	* pkg/man/jura.Rd: url; more comments

2012-05-01 17:28  EdzerPebesma

	* pkg/man/jura.Rd: comments from David Rossiter

2012-04-30 20:33  EdzerPebesma

	* standalone/makefile, standalone/makefile.in,
	  standalone/src/version.h: removed configure target

2012-04-30 19:42  EdzerPebesma

	* pkg/man/oxford.Rd: reference to jpg corrected, noted by David
	  Rossiter

2012-04-30 12:54  EdzerPebesma

	* attic/S/makefile, makefile, pkg/DESCRIPTION, pkg/inst/ChangeLog,
	  pkg/src/block.c, pkg/src/block.h, pkg/src/chfactor.c,
	  pkg/src/config.hin, pkg/src/copy.c, pkg/src/debug.h,
	  pkg/src/defs.h, pkg/src/direct.c, pkg/src/err.c, pkg/src/fit.h,
	  pkg/src/gcdist.c, pkg/src/gcdist.h, pkg/src/getest.h,
	  pkg/src/gls.h, pkg/src/glvars.c, pkg/src/glvars.h,
	  pkg/src/hsehldr.c, pkg/src/lm.c, pkg/src/lufactor.c,
	  pkg/src/machine.c, pkg/src/machine.hin, pkg/src/mapio.c,
	  pkg/src/mapio.h, pkg/src/matop.c, pkg/src/matrix.h,
	  pkg/src/matrix2.h, pkg/src/meminfo.c, pkg/src/meminfo.h,
	  pkg/src/msim.c, pkg/src/msim.h, pkg/src/nsearch.c,
	  pkg/src/nsearch.h, pkg/src/parse.c, pkg/src/parse.h,
	  pkg/src/plot.h, pkg/src/polygon.c, pkg/src/polygon.h,
	  pkg/src/pqueue.c, pkg/src/pqueue.h, pkg/src/predict.h,
	  pkg/src/random.h, pkg/src/read.h, pkg/src/reml.c, pkg/src/reml.h,
	  pkg/src/report.h, pkg/src/sem.c, pkg/src/sim.h, pkg/src/solve.c,
	  pkg/src/sparse.h, pkg/src/stat.c, pkg/src/stat.h,
	  pkg/src/userio.c, pkg/src/userio.h, pkg/src/utils.c,
	  pkg/src/utils.h, pkg/src/vario.h, pkg/src/vario_fn.c,
	  pkg/src/vario_fn.h, pkg/src/vario_io.c, pkg/src/vario_io.h,
	  pkg/src/version.h, pkg/tests/cv.Rout.save,
	  pkg/tests/cv3d.Rout.save, standalone/meschach/machine.h,
	  standalone/src/s.h, standalone/src/version.h: added missing src
	  files; increased version number.

2012-04-30 11:46  EdzerPebesma

	* COPYING, ChangeLog, ChangeLog.cvs, README, S, TODO, aclocal.m4,
	  attic/S, attic/S/R/gstat/src/config.w32,
	  attic/S/R/gstat/src/machine.w32, attic/S/TODO, configure,
	  configure.in, install-sh, makefile, makefile.in,
	  pkg/src/config.w32, pkg/src/machine.w32, standalone/COPYING,
	  standalone/ChangeLog, standalone/ChangeLog.cvs,
	  standalone/README, standalone/aclocal.m4, standalone/configure,
	  standalone/configure.in, standalone/install-sh,
	  standalone/makefile, standalone/makefile.in: further cleanup and
	  code move

2012-04-30 11:31  EdzerPebesma

	* S/R/gstat/CHANGES, S/R/gstat/DESCRIPTION, S/R/gstat/INDEX,
	  S/R/gstat/LICENCE, S/R/gstat/NAMESPACE, S/R/gstat/aclocal.m4,
	  S/R/gstat/cleanup, S/R/gstat/configure, S/R/gstat/configure.in,
	  S/R/gstat/configure.win, S/R/gstat/inst, S/R/gstat/makefile.in,
	  S/data, S/demo, S/man, S/src, S/tests, cmd, include, lib,
	  meschach, pkg, pkg/CHANGES, pkg/DESCRIPTION, pkg/INDEX,
	  pkg/LICENCE, pkg/NAMESPACE, pkg/R, pkg/R/fit.lmc.R,
	  pkg/R/fit.lmc.q, pkg/R/fit.variogram.R,
	  pkg/R/fit.variogram.gls.R, pkg/R/fit.variogram.gls.q,
	  pkg/R/fit.variogram.q, pkg/R/fit.variogram.reml.R,
	  pkg/R/fit.variogram.reml.q, pkg/R/get.contr.R, pkg/R/get.contr.q,
	  pkg/R/gstat.R, pkg/R/gstat.cv.R, pkg/R/gstat.cv.q,
	  pkg/R/gstat.debug.R, pkg/R/gstat.debug.q, pkg/R/gstat.formula.R,
	  pkg/R/gstat.formula.predict.R, pkg/R/gstat.formula.predict.q,
	  pkg/R/gstat.formula.q, pkg/R/gstat.q, pkg/R/hscat.R,
	  pkg/R/hscat.q, pkg/R/image.data.frame.R,
	  pkg/R/image.data.frame.q, pkg/R/krige.R, pkg/R/krige.cv.R,
	  pkg/R/krige.cv.q, pkg/R/krige.q, pkg/R/krige0.R, pkg/R/krige0.q,
	  pkg/R/krigeTg.R, pkg/R/krigeTg.q, pkg/R/load.variogram.model.R,
	  pkg/R/load.variogram.model.q, pkg/R/map.to.lev.R,
	  pkg/R/map.to.lev.q, pkg/R/ossfim.R, pkg/R/ossfim.q,
	  pkg/R/panel.pointPairs.R, pkg/R/panel.pointPairs.q,
	  pkg/R/plot.gstatVariogram.R, pkg/R/plot.gstatVariogram.q,
	  pkg/R/plot.pointPairs.R, pkg/R/plot.pointPairs.q,
	  pkg/R/plot.variogramCloud.R, pkg/R/plot.variogramCloud.q,
	  pkg/R/predict.gstat.R, pkg/R/predict.gstat.q,
	  pkg/R/print.gstat.R, pkg/R/print.gstat.q,
	  pkg/R/print.variogram.R, pkg/R/print.variogram.q,
	  pkg/R/print.variogramCloud.R, pkg/R/print.variogramCloud.q,
	  pkg/R/print.variogramModel.R, pkg/R/print.variogramModel.q,
	  pkg/R/set.R, pkg/R/set.q, pkg/R/show.vgms.R, pkg/R/show.vgms.q,
	  pkg/R/smenu.R, pkg/R/spplot.R, pkg/R/spplot.q,
	  pkg/R/variogram.ST.R, pkg/R/variogram.default.R,
	  pkg/R/variogram.default.q, pkg/R/variogram.formula.R,
	  pkg/R/variogram.formula.q, pkg/R/variogram.gstat.R,
	  pkg/R/variogram.gstat.q, pkg/R/variogramLine.R,
	  pkg/R/variogramLine.q, pkg/R/variogramST.R, pkg/R/variogramST.q,
	  pkg/R/vgm.R, pkg/R/vgm.panel.R, pkg/R/vgm.panel.q, pkg/R/vgm.q,
	  pkg/R/xyz2img.R, pkg/R/xyz2img.q, pkg/R/zzz.R, pkg/R/zzz.q,
	  pkg/aclocal.m4, pkg/cleanup, pkg/configure, pkg/configure.in,
	  pkg/configure.win, pkg/data, pkg/demo, pkg/inst, pkg/makefile.in,
	  pkg/man, pkg/src, pkg/src/data.c, pkg/src/data.h,
	  pkg/src/defaults.h, pkg/src/direct.h, pkg/src/err.h,
	  pkg/src/ext_dbase.h, pkg/src/fit.c, pkg/src/getest.c,
	  pkg/src/gls.c, pkg/src/init.c, pkg/src/ivecop.c, pkg/src/lex.c,
	  pkg/src/lex.h, pkg/src/lex.l, pkg/src/lm.h, pkg/src/memory.c,
	  pkg/src/meschach, pkg/src/meschach/dmacheps.c,
	  pkg/src/meschach/fmacheps.c, pkg/src/meschach/maxint.c,
	  pkg/src/norm.c, pkg/src/predict.c, pkg/src/pxop.c,
	  pkg/src/qrfactor.c, pkg/src/random.c, pkg/src/read.c,
	  pkg/src/s.c, pkg/src/s.h, pkg/src/select.c, pkg/src/select.h,
	  pkg/src/sem.h, pkg/src/sim.c, pkg/src/sparse.c,
	  pkg/src/sparse2.h, pkg/src/sprow.c, pkg/src/submat.c,
	  pkg/src/vario.c, pkg/src/vecop.c, pkg/src/version.c,
	  pkg/src/zmatrix.h, pkg/src/zmatrix2.h, pkg/tests, src,
	  standalone, standalone/cmd, standalone/include, standalone/lib,
	  standalone/meschach, standalone/src, standalone/src/version.h:
	  code reorganization; moving R package to pkg, standalone stuff to
	  standalone

2012-04-09 17:22  EdzerPebesma

	* S/R/gstat/inst/ChangeLog, S/makefile: update

2012-03-25 14:46  EdzerPebesma

	* S/R/gstat/DESCRIPTION: added dependency to zoo and xts

2012-01-20 08:04  EdzerPebesma

	* S/src/plot.variogramCloud.q: r-sig-geo question from Tom
	  Gottfried, 11/03/2011

2012-01-19 21:12  EdzerPebesma

	* S/R/gstat/inst/ChangeLog, S/src/plot.variogramCloud.q, src/s.c:
	  minor memory leak fix.

2011-12-19 14:33  EdzerPebesma

	* S/man/variogram.Rd: added note that variogram.default may not be
	  a very good entry point
	  (likely lacking critical documentation)

2011-12-12 17:06  EdzerPebesma

	* S/src/krige0.q, S/tests/blockkr.Rout.save,
	  S/tests/covtable.Rout.save, S/tests/cv.Rout.save,
	  S/tests/cv3d.Rout.save, S/tests/fit.Rout.save,
	  S/tests/krige0.Rout.save, S/tests/line.Rout.save,
	  S/tests/merge.Rout.save, S/tests/na.action.Rout.save,
	  S/tests/rings.Rout.save, S/tests/sim.Rout.save,
	  S/tests/unproj.Rout.save, S/tests/variogram.Rout.save,
	  S/tests/vdist.Rout.save, S/tests/windst.R,
	  S/tests/windst.Rout.save: updated tests output (novel zoo
	  warning)
2013-01-24 01:51:13 +00:00
wen
48cf176483 Update to 1.0.3
Upstream changes:
2012-12-14 13:39  EdzerPebesma

        * inst/doc/jss816.Rnw, inst/doc/sto.Rnw, inst/doc/stpg.Rnw: updates

2012-11-27 16:57  EdzerPebesma

        * inst/doc/52n_logocl.pdf, inst/doc/jss816.Rnw,
          inst/doc/logo52n.pdf: logo name change

2012-11-27 16:33  EdzerPebesma

        * R/STFDF-methods.R, R/coerce.R, inst/doc/52n_logocl.pdf,
          inst/doc/jss816.Rnw, man/STFDF-class.Rd, man/na.Rd,
          tests/Examples/spacetime-Ex.Rout.save, tests/basic.R,
          tests/basic.Rout.save: as(stfdf, "xts") now exports more than one
          variable;
          added na.* docs
          added 52N logo to vignette

2012-11-24 19:03  EdzerPebesma

        * DESCRIPTION, NAMESPACE, R/Class-xts.R, R/aggregate.R, R/na.R,
          R/stplot.R, demo/gvis.R, inst/doc/sto.Rnw, man/stplot.Rd,
          man/timematch.Rd, tests/Examples/spacetime-Ex.Rout.save: added
          na.locf, na.approx and na.spline functions (na.R, na.Rd);
          added require(zoo) to aggregate method that needs aggregate.zoo,
          so that NAMESPACE is now clean; added zoo to Suggests:
          corrected key.space argument in stplot (mode = 'ts');

2012-11-17 15:54  EdzerPebesma

        * DESCRIPTION, NAMESPACE, R/ST-methods.R, R/aggregate.R,
          R/interval.R, R/over.R, R/stplot.R, R/timematch.R,
          inst/doc/sto.Rnw, man/timematch.Rd,
          tests/Examples/spacetime-Ex.Rout.save, tests/over.R,
          tests/over.Rout.save: timeMatch now is an S4 generic;
          NAMESPACE imports only what is needed, and some repairs for zoo;
          sto.Rnw restored;
          over now always uses interval:interval_overlaps for overlapping
          intervals;
          updated test outputs;
          DESCRIPTION now mentions package intervals

2012-11-13 11:20  EdzerPebesma

        * NAMESPACE: import MATCH.default, to accomodate zoo at CRAN

2012-11-12 18:34  EdzerPebesma

        * NAMESPACE, R/aggregate.R: updates;

2012-11-12 18:18  EdzerPebesma

        * NAMESPACE, R/aggregate.R, R/timematch.R, inst/doc/sto.Rnw,
          man/timematch.Rd, tests/Examples,
          tests/Examples/spacetime-Ex.Rout.save, tests/basic.Rout.save,
          tests/stconstruct.Rout.save: found the MATCH error: zoo needs to
          have S3method("MATCH", "default") in
          its NAMESPACE, along with MATCH import and export in spacetime
          NAMESPACE;
          else (e.g. with zoo 1.7-9 on CRAN) sto.Rnw (aggregate using
          aggregate.zoo)
          will not work without attaching zoo first; so, we now depend on
          zoo's
          development version...

2012-11-12 08:27  EdzerPebesma

        * NAMESPACE, R/ST-methods.R, R/aggregate.R, R/timematch.R,
          inst/doc/sto.Rnw, tests/basic.Rout.save, tests/over.R,
          tests/over.Rout.save, tests/stconstruct.Rout.save, tests/wind.R,
          tests/wind.Rout.save: further NAMESPACE import limitation;
          but aggregate still needs zoo to be attached.

2012-11-11 15:03  EdzerPebesma

        * DESCRIPTION, NAMESPACE, R/aggregate.R, data/air.rda,
          inst/doc/jss816.Rnw, inst/doc/sto.Rnw, man/STSDF-class.Rd,
          man/unstack.Rd, tests/basic.R, tests/basic.Rout.save,
          tests/over.R, tests/over.Rout.save, tests/raster.R,
          tests/raster.Rout.save, tests/stconstruct.R,
          tests/stconstruct.Rout.save, tests/traj.Rout.save, tests/wind.R,
          tests/wind.Rout.save: reorganized zoo and xts to be in Imports:
          rather than Depends:
          (one issue still hangs with zoo needing to be attached before
          sto.Rnw
          can run aggregate.zoo)
          doc files: removed xts() calls when only time steps were passed.

2012-11-10 22:57  EdzerPebesma

        * DESCRIPTION, R/Class-ST.R, R/ST-methods.R, R/STFDF-methods.R,
          R/STIDF-methods.R, R/STSDF-methods.R, R/coerce.R,
          R/stconstruct.R, R/timematch.R: syncronized tzone of endTime with
          that of time; version bump.

2012-11-10 16:12  EdzerPebesma

        * DESCRIPTION, R/STFDF-methods.R, R/STIDF-methods.R,
          R/STSDF-methods.R, data/air.rda, inst/doc/jss816.Rnw,
          man/STLDF-class.Rd, tests/raster.Rout.save, tests/wind.Rout.save:
          added time zone to rural air data;
          time zones in various ST methods (as.xts, selection) got lost,
          now retained;
          updated tests outputs;
          version bump

2012-11-05 13:22  EdzerPebesma

        * man/eof.Rd: limited time steps for example, to reduce run time

2012-11-05 11:43  EdzerPebesma

        * DESCRIPTION, demo/00Index, demo/trip.R, inst/CITATION,
          inst/doc/jss816.Rnw, inst/doc/jss816.bib, man/ST-class.Rd,
          man/STFDF-class.Rd, man/STIDF-class.Rd, man/STLDF-class.Rd,
          man/STSDF-class.Rd, man/STTDF-class.Rd, man/delta.Rd,
          man/over.Rd, man/stconstruct.Rd, man/stplot.Rd, man/timematch.Rd,
          tests/traj.R, tests/traj.Rout.save: update references to JSS
          paper; its publication corresponds to releasing 1.0-0;
          removed trip from Suggests:.

2012-10-29 13:13  BenediktGraeler

        * DESCRIPTION:

2012-10-28 20:10  EdzerPebesma

        * inst/doc/sto.Rnw: updated information on endTime and intervals.

2012-10-28 18:42  EdzerPebesma

        * R/raster.R, R/timematch.R: reverted back setClass();
          alternative way to keep tzone in augment.with.one()

2012-10-27 20:22  EdzerPebesma

        * R/STFDF-methods.R, R/STSDF-methods.R, R/raster.R, R/timematch.R,
          tests/basic.Rout.save, tests/traj.Rout.save: raster: restore
          setClass for RasterStackBrick, if not loaded before;
          ST?DF-methods: missing , in as.data.frame method
          timematch.R: augment.with.one dropped tzone;
          tests: updated for tzone; coerce
          STFDF->STSDF->STIDF->STSDF->STFDF no longer
          identical, as endTime doesn't get set back (further check
          needed?)

2012-10-26 18:46  EdzerPebesma

        * R/STFDF-methods.R, R/STSDF-methods.R, R/timematch.R: two bugs
          caught by Ben Graeler; cosmetic changes to timematch.

2012-10-25 19:41  EdzerPebesma

        * demo/00Index: added gvis to index

2012-10-24 06:50  EdzerPebesma

        * demo/gvis.R: added googleVis demos

2012-10-23 05:59  EdzerPebesma

        * R/raster.R: removed setClass.

2012-10-21 20:33  EdzerPebesma

        * inst/doc/sto.Rnw: updated references

2012-10-21 09:24  EdzerPebesma

        * R/ST-methods.R, R/STIDF-methods.R, R/STSDF-methods.R,
          R/aggregate.R, R/eof.R, R/plot.R, R/stconstruct.R, R/stplot.R:
          EOF: use prcomp.formula so that na.action gets passed;
          default xts slot gets named index column;

2012-10-18 13:15  EdzerPebesma

        * R/stplot.R, man/stplot.Rd: argument mismatch (scales =
          list(draw=FALSE))

2012-10-14 10:53  EdzerPebesma

        * NAMESPACE, R/ST-methods.R, R/coerce.R: dim methods for STT, STx
          cercion.

2012-10-03 14:56  EdzerPebesma

        * R/endtime.R, R/stplot.R, inst/doc/jss816.Rnw: added endTime;
          update to vignette; scales handling in stplot.

2012-09-28 20:48  EdzerPebesma

        * DESCRIPTION, R/stplot.R, man/stplot.Rd: stplot: correct scales
          argument if unprojected;
          DESCRIPTION: dropped removed file.

2012-09-25 21:34  EdzerPebesma

        * DESCRIPTION, R/Class-STLDF.R, R/STLDF-methods.R,
          inst/doc/jss816.Rnw, tests/basic.R, tests/over.R,
          tests/over.Rout.save, tests/traj.R, tests/traj.Rout.save: removed
          STLDF sources; version bump; tried to make tests clean wrt TZ
          differences

2012-09-25 08:20  EdzerPebesma

        * R/STTDF-methods.R: needed for CRAN submission

2012-09-24 19:42  EdzerPebesma

        * R/tgrass.R: dealt with endTime in writing tgrass files

2012-09-23 18:48  EdzerPebesma

        * DESCRIPTION, NAMESPACE, R/Class-ST.R, R/Class-STLDF.R,
          R/ST-methods.R, R/STFDF-methods.R, R/STIDF-methods.R,
          R/STLDF-methods.R, R/STSDF-methods.R, R/STTDF-methods.R,
          R/coerce.R, R/eof.R, R/interval.R, R/over.R, R/plot.R,
          R/raster.R, R/stconstruct.R, R/timematch.R, data/air.rda,
          inst/doc/cls.fig, inst/doc/cls.pdf, inst/doc/jss816.Rnw,
          inst/doc/move.fig, inst/doc/move.pdf, man/ST-class.Rd,
          man/STFDF-class.Rd, man/STIDF-class.Rd, man/STLDF-class.Rd,
          man/STSDF-class.Rd, man/delta.Rd, man/interval.Rd,
          man/stconstruct.Rd, man/timematch.Rd, tests/basic.Rout.save,
          tests/over.R, tests/over.Rout.save, tests/raster.Rout.save,
          tests/stconstruct.Rout.save, tests/traj.Rout.save, tests/wind.R,
          tests/wind.Rout.save: removed STL and STLDF class, added endTime
          as slot to ST, and
          tried to deal with all the consequences of having an endTime for
          each observation. Started integrating the more efficient
          intervals
          matching from package "intervals". Updated vignette and docs.

2012-09-12 18:23  EdzerPebesma

        * DESCRIPTION, R/raster.R, R/tgrass.R: moved tgrass stuff to new
          file

2012-09-12 15:25  EdzerPebesma

        * R/ST-methods.R, R/raster.R, man/tgrass.Rd: minor mods to pass
          check again.

2012-09-12 15:01  EdzerPebesma

        * man/tgrass.Rd: {read,write}.tgrass doc

2012-09-12 14:28  EdzerPebesma

        * R/raster.R: removed the "x" before .tif

2012-09-12 14:12  EdzerPebesma

        * NAMESPACE, R/raster.R: updated {read,write}.tgrass functions

2012-09-11 17:07  EdzerPebesma

        * R/raster.R: typo

2012-09-07 09:22  EdzerPebesma

        * DESCRIPTION, R/Class-ST.R, R/Class-STFDF.R, R/Class-STIDF.R,
          R/Class-STLDF.R, R/Class-STSDF.R, R/Class-STTDF.R,
          R/ST-methods.R, R/STLDF-methods.R, R/raster.R, tests/basic.R,
          tests/basic.Rout.save: class validity now checks that attribute
          names in attributes, space or time are not duplicated.

2012-08-29 06:26  EdzerPebesma

        * R/stconstruct.R: patch from Ben Graeler, dealing with univariate
          time-wide data

2012-08-27 07:10  EdzerPebesma

        * DESCRIPTION, R/aggregate.R, R/over.R, R/timematch.R,
          man/interval.Rd, man/over.Rd, man/timematch.Rd,
          tests/traj.Rout.save: split over.R; added links to manual pages;
          updated Suggests: packages.

2012-08-26 21:07  EdzerPebesma

        * R/over.R, man/interval.Rd, man/timematch.Rd, tests/over.R,
          tests/over.Rout.save: added timeMatch for STL objects - irregular
          time intervals

2012-08-13 15:53  EdzerPebesma

        * R/over.R: simplified (hopefully) the time over function

2012-08-10 11:41  EdzerPebesma

        * DESCRIPTION, R/raster.R, man/stplot.Rd, tests/raster.R,
          tests/raster.Rout.save, tests/traj.Rout.save: added raster
          conversion functions

2012-07-25 13:40  EdzerPebesma

        * inst/doc/jss816.Rnw, inst/doc/jss816.bib, inst/doc/spacetime.Rnw,
          inst/doc/spacetime.bib: name change of vignette.

2012-07-04 16:37  EdzerPebesma

        * inst/doc/spacetime.Rnw, tests/traj.R, tests/traj.Rout.save,
          tests/wind.Rout.save: submission of 0.7-1 to CRAN

2012-07-02 07:58  EdzerPebesma

        * NAMESPACE, R/plot.R, R/stplot.R, inst/doc/move.fig,
          inst/doc/move.pdf, inst/doc/spacetime.Rnw: new submission to JSS

2012-07-01 22:40  EdzerPebesma

        * man/STLDF-class.Rd: man page for STLDF

2012-07-01 22:40  EdzerPebesma

        * inst/doc/move.fig, inst/doc/move.pdf, inst/doc/spacetime.Rnw,
          inst/doc/spacetime.bib, man/STFDF-class.Rd, man/STIDF-class.Rd,
          man/STSDF-class.Rd, man/STTDF-class.Rd, man/stplot.Rd: class
          work; comments from second JSS review

2012-06-19 07:49  EdzerPebesma

        * R/Class-STLDF.R, R/STLDF-methods.R, R/plot.R, inst/doc/cls.fig,
          inst/doc/cls.pdf, inst/doc/spacetime.Rnw, man/STIDF-class.Rd:
          more edits to class diagram

2012-06-19 07:08  EdzerPebesma

        * DESCRIPTION, NAMESPACE, R/Class-STLDF.R, R/ST-methods.R,
          R/STLDF-methods.R, R/STTDF-methods.R, R/plot.R, R/stplot.R,
          inst/doc/cls.fig, inst/doc/cls.pdf, inst/doc/spacetime.Rnw,
          inst/doc/spacetime.bib, man/stplot.Rd, tests/traj.R: added
          STL/STLDF class, and methods; added plot methods

2012-05-31 13:33  EdzerPebesma

        * man/stplot.Rd, tests/traj.Rout.save: dependent package versions
          in test; do.repeat argument in docs

2012-05-31 12:56  EdzerPebesma

        * R/over.R, R/stplot.R: added do.repeat argument to stplot.R

2012-05-29 12:28  EdzerPebesma

        * DESCRIPTION: updated URL field

2012-05-29 10:27  EdzerPebesma

        * DESCRIPTION: version / date increase

2012-05-29 10:24  EdzerPebesma

        * R/stplot.R: cuts argument was not passed to spplot if animate > 0

2012-05-25 13:27  EdzerPebesma

        * inst/doc/spacetime.Rnw: two minor modifications in section 8.

2012-05-25 08:46  EdzerPebesma

        * inst/doc/produc.jpg, inst/doc/produc.png: size reduction of
          bitmap, needed by CRAN

2012-05-24 16:18  EdzerPebesma

        * R/over.R, inst/doc/sto.Rnw: simplifications to timeMatch; better
          explanation of interval-interval match in vignette

2012-05-24 07:17  EdzerPebesma

        * R/interval.R, R/over.R, inst/doc/move.fig, inst/doc/move.pdf,
          inst/doc/spacetime.Rnw, inst/doc/wind.pdf, inst/doc/windts.pdf,
          man/over.Rd, man/timematch.Rd, tests/over.R,
          tests/over.Rout.save: more work getting time intervals work
          properly, and document this.

2012-05-14 21:31  EdzerPebesma

        * NAMESPACE, R/Class-ST.R, R/Class-STTDF.R, R/ST-methods.R,
          R/STFDF-methods.R, R/STIDF-methods.R, R/STSDF-methods.R,
          R/interval.R, inst/doc/cls.fig, inst/doc/cls.pdf,
          inst/doc/spacetime.Rnw, man/ST-class.Rd, man/canmove.Rd,
          man/interval.Rd, tests/basic.Rout.save: got rid of canMove slot,
          and methods.

2012-05-14 19:31  EdzerPebesma

        * DESCRIPTION, NAMESPACE, R/Class-ST.R, R/STFDF-methods.R,
          R/STIDF-methods.R, R/STSDF-methods.R, R/interval.R, data/air.rda,
          inst/doc/cls.fig, inst/doc/cls.pdf, inst/doc/move.fig,
          inst/doc/move.pdf, inst/doc/spacetime.Rnw,
          inst/doc/spacetime.bib, man/ST-class.Rd, man/canmove.Rd,
          man/stplot.Rd, tests/basic.Rout.save, tests/over.Rout.save,
          tests/stconstruct.Rout.save, tests/traj.Rout.save, tests/wind.R,
          tests/wind.Rout.save: added canMove slot to ST; updated class
          figure;
          increased version; re-saved air data;
          added figure and timeIsInterval/canMove to vignette;

2012-05-13 20:49  EdzerPebesma

        * DESCRIPTION, R/Class-ST.R, R/ST-methods.R, R/STFDF-methods.R,
          R/STIDF-methods.R, R/STSDF-methods.R, R/STTDF-methods.R,
          R/coerce.R, R/stplot.R, inst/doc/spacetime.Rnw,
          inst/doc/spacetime.bib: further review from JSS; improved support
          for timeIsInterval.

2012-05-03 15:10  EdzerPebesma

        * DESCRIPTION: updated date
2012-04-23 13:44  EdzerPebesma

        * DESCRIPTION, NAMESPACE, R/Class-ST.R, R/ST-methods.R,
          R/STFDF-methods.R, R/STIDF-methods.R, R/STSDF-methods.R,
          R/coerce.R, R/interval.R, R/stconstruct.R, man/ST-class.Rd,
          man/interval.Rd, man/stconstruct.Rd: added timeIsInterval()
          generic (retrieve, set), which indicates whether time is Interval
          (TRUE) or Instant (FALSE).

2012-04-21 20:47  EdzerPebesma

        * R/over.R: got rid of some double loops.

2012-04-09 17:22  EdzerPebesma

        * DESCRIPTION: version update

2012-04-03 15:53  EdzerPebesma

        * DESCRIPTION, R/STTDF-methods.R, R/coerce.R,
          inst/doc/spacetime.Rnw: moved some ST? coercion functions;
          updated version number; diveMove example change in vignette.
2013-01-24 01:40:57 +00:00
wen
7bdfd12a56 Add R-intervals 2013-01-24 01:27:21 +00:00
wen
a1989b234c Import R-intervals version 0.13.3
Tools for working with and comparing sets of points and intervals.
2013-01-24 01:26:22 +00:00
mishka
68042ba112 Some R libraries may extensively use GNU configure, so pass
the obvious CONFIGURE_ARGS through.
2013-01-17 11:09:44 +00:00
obache
75f017ba79 Update ruby-spreadsheet to 0.7.6.
=== 0.7.6 / 15.01.2013

Author: Kenichi Kamiya <kachick1@gmail.com>
Date:   Tue Jan 15 15:52:58 2013 +0900

* Remove warnings "method redefined; discarding old default_format"
* Remove warnings "`*' interpreted as argument prefix"
* Remove warnings "instance variable @{ivar} not initialized"
* Remove warnings "assigned but unused variable"

also see: https://github.com/zdavatz/spreadsheet/pull/21
2013-01-16 12:20:21 +00:00
joerg
4d888b6258 Don't conflict with libm. 2013-01-11 13:29:34 +00:00
joerg
26f4079a64 Prefer in-tree bsdtar over gtar. Simplify. 2013-01-11 00:00:04 +00:00
bad
011b1b01b1 Update pandas to 0.10.0.
pkgsrc change: depend on math/py-pytables.

Changes since 0.9.1:

* Delimited file parsing engine rewritten to use a fraction of memory while
  being 40%+ faster.
- Much-improved Unicode handling via the encoding option.
- Column filtering (usecols)
- Dtype specification (dtype argument)
- Ability to specify strings to be recognized as True/False
- Ability to yield NumPy record arrays (as_recarray)
- High performance delim_whitespace option
- Decimal format (e.g. European format) specification
- Easier CSV dialect options: escapechar, lineterminator, quotechar, etc.
- More robust handling of many exceptional kinds of files observed in the wild

* API changes
- Deprecated DataFrame BINOP TimeSeries special case behavior
- Altered resample default behavior
- Infinity and negative infinity are no longer treated as NA by isnull and
  notnull.
- Methods with the inplace option now all return None instead of the calling
  object.
- pandas.merge no longer sorts the group keys (sort=False) by default.
- The default column names for a file with no header have been changed.
- Values like 'Yes' and 'No' are not interpreted as boolean by default.
- The file parsers will not recognize non-string values arising from a
  converter function as NA.
- Calling fillna on Series or DataFrame with no arguments is no longer valid
  code.
- Series.apply will now operate on a returned value from the applied function.
- New API functions for working with pandas options.

* New features
- Wide DataFrame Printing.
- Updated PyTables Support.

* Enhancements
- added ability to hierarchical keys.
- added mixed-dtype support!
- performance improvments on table writing.
- support for arbitrarily indexed dimensions.
- SparseSeries now has a density property.

* Bug fixes
- added Term method of specifying where conditions.
- del store['df'] now call store.remove('df') for store deletion.
- deleting of consecutive rows is much faster than before.
- in_itemsize parameter can be specified in table creation to force a minimum
  size for indexing columns.
- indexing support via create_table_index (requires PyTables >= 2.3)
- appending on a store would fail if the table was not first created via put.
- fixed issue with missing attributes after loading a pickled dataframe.
- minor change to select and remove: require a table ONLY if where is also
  provided.

* Compatibility
- 0.10 of HDFStore is backwards compatible for reading tables created
  in a prior version of pandas, however, query terms using the prior
  (undocumented) methodology are unsupported.

* N Dimensional Panels (Experimental)
2013-01-07 23:18:35 +00:00
obache
c7b3b2453a Update ruby-spreadsheet to 0.7.5.
=== 0.7.5 / 06.12.2012

* Add error tolerant values for Iconv when writing spreadsheet
* by andrea@spaghetticode.it

=== 0.7.4 / 06.10.2012

* Adds Spreadsheet::Excel::Row#to_a method to properly decode Date and DateTime data.
* patches by https://github.com/mdgreenfield/spreadsheet
2013-01-05 05:16:48 +00:00
joerg
3805364b61 To be a friend, you have to know the other function. Make sure that the
ordinal.h header is include guarded. Fix main prototype.
2012-12-20 21:47:31 +00:00
prlw1
5ee9c225a7 Fix build of octave on systems with fltk installed (PR47216)
"Native graphics" = opengl + fltk, so switching off opengl also switches
off fltk.
2012-12-20 15:11:15 +00:00
asau
85ea525b9c Update to Maxima 5.29.1
Changes are unknown, but there's a usual batch of bug fixes.
2012-12-17 21:35:11 +00:00
wen
0e1da0e23b Update to 4.6.7
No upstream changelog.
2012-12-17 15:04:19 +00:00
wen
6df1e25044 Update to 2.15.1
Approved by wiz@

Upstream changes:
CHANGES IN R VERSION 2.15.1:

  NEW FEATURES:

    o source() now uses withVisible() rather than
      .Internal(eval.with.vis).  This sometimes alters tracebacks
      slightly.

    o install.packages("pkg_version.tgz") on Mac OS X now has sanity
      checks that this is actually a binary package (as people have
      tried it with incorrectly named source packages).

    o splineDesign() and spline.des() in package splines have a new
      option sparse which can be used for efficient construction of a
      sparse B-spline design matrix (_via_ Matrix).

    o norm() now allows type = "2" (the 'spectral' or 2-norm) as well,
      mainly for didactical completeness.

    o pmin() and pmax()) now also work when one of the inputs is of
      length zero and others are not, returning a zero-length vector,
      analogously to, say, +.

    o colorRamp() (and hence colorRampPalette()) now also works for the
      boundary case of just one color when the ramp is flat.

    o qqline() has new optional arguments distribution, probs and
      qtype, following the example of lattice's panel.qqmathline().

    o .C() gains some protection against the misuse of character vector
      arguments.  (An all too common error is to pass character(N),
      which initializes the elements to "", and then attempt to edit
      the strings in-place, sometimes forgetting to terminate them.)

    o Calls to the new function globalVariables() in package utils
      declare that functions and other objects in a package should be
      treated as globally defined, so that CMD check will not note
      them.

    o print(packageDescription(*)) trims the Collate field by default.

    o The included copy of zlib has been updated to version 1.2.7.

    o A new option "show.error.locations" has been added.  When set to
      TRUE, error messages will contain the location of the most recent
      call containing source reference information. (Other values are
      supported as well; see ?options.)
   o The NA warning messages from e.g. pchisq() now report the call to
      the closure and not that of the .Internal.

    o Added Polish translations by <c5><81>ukasz Daniel.

  PERFORMANCE IMPROVEMENTS:

    o In package parallel, makeForkCluster() and the multicore-based
      functions use native byte-order for serialization (deferred from
      2.15.0).

    o lm.fit(), lm.wfit(), glm.fit() and lsfit() do less copying of
      objects, mainly by using .Call() rather than .Fortran().

    o .C() and .Fortran() do less copying: arguments which are raw,
      logical, integer, real or complex vectors and are unnamed are not
      copied before the call, and (named or not) are not copied after
      the call.  Lists are no longer copied (they are supposed to be
      used read-only in the C code).

    o tabulate() makes use of .C(DUP = FALSE) and hence does not copy
      bin.  (Suggested by Tim Hesterberg.)  It also avoids making a
      copy of a factor argument bin.

    o Other functions (often or always) doing less copying include
      cut(), dist(), the complex case of eigen(), hclust(), image(),
      kmeans(), loess(), stl() and svd(LINPACK = TRUE).

    o There is less copying when using primitive replacement functions
      such as names(), attr() and attributes().

  DEPRECATED AND DEFUNCT:

    o The converters for use with .C() (see ?getCConverterDescriptions)
      are deprecated: use the .Call() interface instead.  There are no
      known examples (they were never fully documented).

  UTILITIES:

    o For R CMD check, a few people have reported problems with
      junctions on Windows (although they were tested on Windows 7, XP
      and Server 2008 machines and it is unknown under what
      circumstances the problems occur).  Setting the environment
      variable R_WIN_NO_JUNCTIONS to a non-empty value (e.g. in
      ~/.R/check.Renviron) will force copies to be used instead.

  INSTALLATION:
    o R CMD INSTALL with _R_CHECK_INSTALL_DEPENDS_ set to a true value
      (as done by R CMD check --as-cran) now restricts the packages
      available when lazy-loading as well as when test-loading (since
      packages such as ETLUtils and agsemisc had top-level calls to
      library() for undeclared packages).

      This check is now also available on Windows.

  C-LEVEL FACILITIES:

    o C entry points mkChar and mkCharCE now check that the length of
      the string they are passed does not exceed 2^31-1 bytes: they
      used to overflow with unpredictable consequences.

    o C entry points R_GetCurrentSrcref and R_GetSrcFilename have been
      added to the API to allow debuggers access to the source
      references on the stack.

  WINDOWS-SPECIFIC CHANGES:

    o Windows-specific changes will now be announced in this file
      (NEWS).  Changes up and including R 2.15.0 remain in the CHANGES
      file.

    o There are two new environment variables which control the
      defaults for command-line options.

      If R_WIN_INTERNET2 is set to a non-empty value, it is as if
      --internet2 was used.

      If R_MAX_MEM_SIZE is set, it gives the default memory limit if
      --max-mem-size is not specified: invalid values being ignored.

  BUG FIXES:

    o lsfit() lost the names from the residuals.

    o More cases in which merge() could create a data frame with
      duplicate column names now give warnings.  Cases where names
      specified in by match multiple columns are errors.

    o Nonsense uses such as seq(1:50, by = 5) (from package plotrix)
      and seq.int(1:50, by = 5) are now errors.

    o The residuals in the 5-number summary printed by summary() on an
      "lm" object are now explicitly labelled as weighted residuals
      when non-constant weights are present.  (Wish of PR#14840.)

    o tracemem() reported that all objects were copied by .C() or
      .Fortran() whereas only some object types were ever copied.

      It also reported and marked as copies _some_ transformations such
      as rexp(n, x): it no longer does so.

    o The plot() method for class "stepfun" only used the optional xval
      argument to compute xlim and not the points at which to plot (as
      documented).  (PR#14864)

    o Names containing characters which need to be escaped were not
      deparsed properly.  (PR#14846)

    o Trying to update (recommended) packages in R_HOME/library without
      write access is now dealt with more gracefully.  Further, such
      package updates may be skipped (with a warning), when a newer
      installed version is already going to be used from .libPaths().
      (PR#14866)

    o hclust() is now fast again (as up to end of 2003), with a
      different fix for the "median"/"centroid" problem.  (PR#4195).

    o get_all_vars() failed when the data came entirely from vectors in
      the global environment. (PR#14847)

    o R CMD check with _R_CHECK_NO_RECOMMENDED_ set to a true value (as
      done by the --as-cran option) could issue false errors if there
      was an indirect dependency on a recommended package.

    o formatC() uses the C entry point str_signif which could write
      beyond the length allocated for the output string.

    o Missing default argument added to implicit S4 generic for
      backsolve(). (PR#14883)

    o Some bugs have been fixed in handling load actions that could
      fail to export assigned items or generate spurious warnings in
      CMD check on loading.

    o For tiff(type = "windows"), the numbering of per-page files
      except the last was off by one.

    o On Windows, loading package stats (which is done for a default
      session) would switch line endings on stdout and stderr from CRLF
      to LF.  This affected Rterm and R CMD BATCH.

    o On Windows, the compatibility function x11() had not kept up with
      changes to windows(), and issued warnings about bad parameters.
      (PR#14880)

    o On Windows, the Sys.glob() function did not handle UNC paths as
      it was designed to try to do. (PR#14884)

    o In package parallel, clusterApply() and similar failed to handle
      a (pretty pointless) length-1 argument. (PR#14898)

    o Quartz Cocoa display reacted asynchronously to dev.flush() which
      means that the redraw could be performed after the plot has been
      already modified by subsequent code. The redraw is now done
      synchronously in dev.flush() to allow animations without sleep
      cycles.

    o Source locations reported in traceback() were incorrect when
      byte-compiled code was on the stack.

    o plogis(x, lower = FALSE, log.p = TRUE) no longer underflows early
      for large x (e.g. 800).

    o ?Arithmetic's "1 ^ y and y ^ 0 are 1, _always_" now also applies
      for integer vectors y.

    o X11-based pixmap devices like png(type = "Xlib") were trying to
      set the cursor style, which triggered some warnings and hangs.

    o Code executed by the built-in HTTP server no longer allows other
      HTTP clients to re-enter R until the current worker evaluation
      finishes, to prevent cascades.

    o The plot() and Axis() methods for class "table" now respect
      graphical parameters such as cex.axis.  (Reported by Martin
      Becker.)

    o Under some circumstances package.skeleton() would give out
      progress reports that could not be translated and so were
      displayed by question marks.  Now they are always in English.
      (This was seen for CJK locales on Windows, but may have occurred
      elsewhere.)

    o The evaluator now keeps track of source references outside of
      functions, e.g. when source() executes a script.

    o The replacement method for window() now works correctly for
      multiple time series of class "mts".  (PR#14925)

    o is.unsorted() gave incorrect results on non-atomic objects such
      as data frames.  (Reported by Matthew Dowle.)

    o The value returned by tools::psnice() for invalid pid values was
      not always NA as documented.

    o Closing an X11() window while locator() was active could abort
      the R process.

    o getMethod(f, sig) produced an incorrect error message in some
      cases when f was not a string).

    o Using a string as a "call" in an error condition with
      options(showErrorCalls=TRUE) could cause a segfault.  (PR#14931)

    o The string "infinity" allowed by C99 was not accepted as a
      numerical string value by e.g. scan() and as.character().
      (PR#14933)

    o In legend(), setting some entries of lwd to NA was inconsistent
      (depending on the graphics device) in whether it would suppress
      those lines; now it consistently does so.  (PR#14926)

    o by() failed for a zero-row data frame.  (Reported by Weiqiang
      Qian)

    o Yates correction in chisq.test() could be bigger than the terms
      it corrected, previously leading to an infinite test statistic in
      some corner cases which are now reported as NaN.

    o xgettext() and related functions sometimes returned items that
      were not strings for translation. (PR#14935)

    o plot(<lm>, which=5) now correctly labels the factor level
      combinations for the special case where all h[i,i] are the same.
      (PR#14837)

CHANGES IN R VERSION 2.15.0:

  SIGNIFICANT USER-VISIBLE CHANGES:

    o The behaviour of unlink(recursive = TRUE) for a symbolic link to
      a directory has changed: it now removes the link rather than the
      directory contents (just as rm -r does).

      On Windows it no longer follows reparse points (including
      junctions and symbolic links).

  NEW FEATURES:

    o Environment variable RD2DVI_INPUTENC has been renamed to
      RD2PDF_INPUTENC.

    o .Deprecated() becomes a bit more flexible, getting an old
      argument.

    o Even data-only packages without R code need a namespace and so
      may need to be installed under R 2.14.0 or later.

    o assignInNamespace() has further restrictions on use apart from at
      top-level, as its help page has warned.  Expect it to be disabled
      from programmatic use in the future.

    o system() and system2() when capturing output report a non-zero
      status in the new "status" attribute.

    o kronecker() now has an S4 generic in package methods on which
      packages can set methods.  It will be invoked by X %x% Y if
      either X or Y is an S4 object.

    o pdf() accepts forms like file = "|lpr" in the same way as
      postscript().

    o pdf() accepts file = NULL.  This means that the device does NOT
      create a PDF file (but it can still be queried, e.g., for font
      metric info).

    o format() (and hence print()) on "bibentry" objects now uses
      options("width") to set the output width.

    o legend() gains a text.font argument. (Suggested by Tim Paine,
      PR#14719.)

    o nchar() and nzchar() no longer accept factors (as integer
      vectors).  (Wish of PR#6899.)

    o summary() behaves slightly differently (or more precisely, its
      print() method does).  For numeric inputs, the number of NAs is
      printed as an integer and not a real.  For dates and datetimes,
      the number of NAs is included in the printed output (the latter
      being the wish of PR#14720).

      The "data.frame" method is more consistent with the default
      method: in particular it now applies zapsmall() to
      numeric/complex summaries.

    o The number of items retained with options(warn = 0) can be set by
      options(nwarnings=).

    o There is a new function assignInMyNamespace() which uses the
      namespace of the function it is called from.

    o attach() allows the default name for an attached file to be
      overridden.

    o bxp(), the work horse of boxplot(), now uses a more sensible
      default xlim in the case where at is specified differently from
      1:n, see the discussion on R-devel, <URL:
      https://stat.ethz.ch/pipermail/r-devel/2011-November/062586.html>.

    o New function paste0(), an efficient version of paste(*, sep=""),
      to be used in many places for more concise (and slightly more
      efficient) code.

    o Function setClass() in package methods now returns, invisibly, a
      generator function for the new class, slightly preferred to
      calling new(), as explained on the setClass help page.

    o The "dendrogram" method of str() now takes its default for
      last.str from option str.dendrogram.last.

    o New simple fitted() method for "kmeans" objects.

    o The traceback() function can now be called with an integer
      argument, to display a current stack trace. (Wish of PR#14770.)

    o setGeneric() calls can be simplified when creating a new generic
      function by supplying the default method as the def argument.
      See ?setGeneric.

    o serialize() has a new option xdr = FALSE which will use the
      native byte-order for binary serializations.  In scenarios where
      only little-endian machines are involved (these days, close to
      universal) and (un)serialization takes an appreciable amount of
      time this may speed up noticeably transferring data between
      systems.

    o The internal (un)serialization code is faster for long vectors,
      particularly with XDR on some platforms.  (Based on a suggested
      patch by Michael Spiegel.)

    o For consistency, circles with zero radius are omitted by points()
      and grid.circle().  Previously this was device-dependent, but
      they were usually invisible.

    o NROW(x) and NCOL(x) now work whenever dim(x) looks appropriate,
      e.g., also for more generalized matrices.

    o PCRE has been updated to version 8.30.

    o The internal R_Srcref variable is now updated before the browser
      stops on entering a function.  (Suggestion of PR#14818.)

    o There are 'bare-bones' functions .colSums(), .rowSums(),
      .colMeans() and .rowMeans() for use in programming where ultimate
      speed is required.

    o The formerly internal function .package_dependencies() from
      package tools for calculating (recursive) (reverse) dependencies
      on package databases has been renamed to package_dependencies()
      and is now exported.

    o There is a new function optimHess() to compute the (approximate)
      Hessian for an optim() solution if hessian = TRUE was forgotten.

    o .filled.contour() is a 'bare-bones' function to add a
      filled-contour rectangular plot to an already prepared plot
      region.

    o The stepping in debugging and single-step browsing modes has
      changed slightly: now left braces at the start of the body are
      stepped over for if statements as well as for for and while
      statements.  (Wish of PR#14814.)

    o library() no longer warns about a conflict with a function from
      package:base if the function has the same code as the base one
      but with a different environment.  (An example is Matrix::det().)

    o When deparsing very large language objects, as.character() now
      inserts newlines after each line of approximately 500 bytes,
      rather than truncating to the first line.

    o New function rWishart() generates Wishart-distributed random
      matrices.

    o Packages may now specify actions to be taken when the package is
      loaded (setLoadActions()).

    o options(max.print = Inf) and similar now give an error (instead
      of warnings later).

    o The "difftime" replacement method of units tries harder to
      preserve other attributes of the argument.  (Wish of PR#14839.)

    o poly(raw = TRUE) no longer requires more unique points than the
      degree.  (Requested by John Fox.)

  PACKAGE parallel:

    o There is a new function mcmapply(), a parallel version of
      mapply(), and a wrapper mcMap(), a parallel version of Map().

    o A default cluster can be registered by the new function
      setDefaultCluster(): this will be used by default in functions
      such as parLapply().

    o clusterMap() has a new argument .scheduling to allow the use of
      load-balancing.

    o There are new load-balancing functions parLapplyLB() and
      parSapplyLB().

    o makePSOCKCluster() has a new option useXDR = FALSE which can be
      used to avoid byte-shuffling for serialization when all the nodes
      are known to be little-endian (or all big-endian).

  PACKAGE INSTALLATION:

    o Non-ASCII vignettes without a declared encoding are no longer
      accepted.

    o C/C++ code in packages is now compiled with -NDEBUG to mitigate
      against the C/C++ function assert being called in production use.
      Developers can turn this off during package development with
      PKG_CPPFLAGS = -UNDEBUG.

    o R CMD INSTALL has a new option --dsym which on Mac OS X (Darwin)
      dumps the symbols alongside the .so file: this is helpful when
      debugging with valgrind (and especially when installing packages
      into R.framework).  [This can also be enabled by setting the
      undocumented environment variable PKG_MAKE_DSYM, since R 2.12.0.]

    o R CMD INSTALL will test loading under all installed
      sub-architectures even for packages without compiled code, unless
      the flag --no-multiarch is used.  (Pure R packages can do things
      which are architecture-dependent: in the case which prompted
      this, looking for an icon in a Windows R executable.)

    o There is a new option install.packages(type = "both") which tries
      source packages if binary packages are not available, on those
      platforms where the latter is the default.

    o The meaning of install.packages(dependencies = TRUE) has changed:
      it now means to install the essential dependencies of the named
      packages plus the Suggests, but only the essential dependencies
      of dependencies.  To get the previous behaviour, specify
      dependencies as a character vector.

    o R CMD INSTALL --merge-multiarch is now supported on OS X and
      other Unix-alikes using multiple sub-architectures.

    o R CMD INSTALL --libs-only now by default does a test load on
      Unix-alikes as well as on Windows: suppress with --no-test-load.

  UTILITIES:

    o R CMD check now gives a warning rather than a note if it finds
      inefficiently compressed datasets.  With bzip2 and xz compression
      having been available since R 2.10.0, it only exceptionally makes
      sense to not use them.

      The environment variable _R_CHECK_COMPACT_DATA2_ is no longer
      consulted: the check is always done if _R_CHECK_COMPACT_DATA_ has
      a true value (its default).

    o Where multiple sub-architectures are to be tested, R CMD check
      now runs the examples and tests for all the sub-architectures
      even if one fails.

    o R CMD check can optionally report timings on various parts of the
      check: this is controlled by environment variable
      _R_CHECK_TIMINGS_ documented in 'Writing R Extensions'.  Timings
      (in the style of R CMD BATCH) are given at the foot of the output
      files from running each test and the R code in each vignette.

    o There are new options for more rigorous testing by R CMD check
      selected by environment variables - see the 'Writing R
      Extensions' manual.

    o R CMD check now warns (rather than notes) on undeclared use of
      other packages in examples and tests: increasingly people are
      using the metadata in the DESCRIPTION file to compute information
      about packages, for example reverse dependencies.

    o The defaults for some of the options in R CMD check (described in
      the 'R Internals' manual) have changed: checks for unsafe and
      .Internal() calls and for partial matching of arguments in R
      function calls are now done by default.

    o R CMD check has more comprehensive facilities for checking
      compiled code and so gives fewer reports on entry points linked
      into .so/.dll files from libraries (including C++ and Fortran
      runtimes).

      Checking compiled code is now done on FreeBSD (as well as the
      existing supported platforms of Linux, Mac OS X, Solaris and
      Windows).

    o R CMD build has more options for --compact-vignettes: see R CMD
      build --help.

    o R CMD build has a new option --md5 to add an MD5 file (as done by
      CRAN): this is used by R CMD INSTALL to check the integrity of
      the distribution.

      If this option is not specified, any existing (and probably
      stale) MD5 file is removed.

  DEPRECATED AND DEFUNCT:

    o R CMD Rd2dvi is now defunct: use R CMD Rd2pdf.

    o Options such --max-nsize, --max-vsize and the function
      mem.limits() are now defunct.  (Options --min-nsize and
      --min-vsize remain available.)

    o Use of library.dynam() without specifying all the first three
      arguments is now disallowed.

      Use of an argument chname in library.dynam() including the
      extension .so or .dll (which was never allowed according to the
      help page) is defunct.  This also applies to
      library.dynam.unload() and to useDynLib directives in NAMESPACE
      files.

    o The internal functions .readRDS() and .saveRDS() are now defunct.

    o The off-line help() types "postscript" and "ps" are defunct.

    o Sys.putenv(), replaced and deprecated in R 2.5.0, is finally
      removed.

    o Some functions/objects which have been defunct for five or more
      years have been removed completely.  These include .Alias(),
      La.chol(), La.chol2inv(), La.eigen(), Machine(), Platform(),
      Version, codes(), delay(), format.char(), getenv(), httpclient(),
      loadURL(), machine(), parse.dcf(), printNoClass(), provide(),
      read.table.url(), restart(), scan.url(), symbol.C(), symbol.For()
      and unix().

    o The ENCODING argument to .C() is deprecated.  It was intended to
      smooth the transition to multi-byte character strings, but can be
      replaced by the use of iconv() in the rare cases where it is
      still needed.

  INSTALLATION:

    o Building with a positive value of --with-valgrind-instrumentation
      now also instruments logical, complex and raw vectors.

  C-LEVEL FACILITIES:

    o Passing R objects other than atomic vectors, functions, lists and
      environments to .C() is now deprecated and will give a warning.
      Most cases (especially NULL) are actually coding errors.  NULL
      will be disallowed in future.

      .C() now passes a pairlist as a SEXP to the compiled code.  This
      is as was documented, but pairlists were in reality handled
      differently as a legacy from the early days of R.

    o call_R and call_S are deprecated.  They still exist in the
      headers and as entry points, but are no longer documented and
      should not be used for new code.

  BUG FIXES:

    o str(x, width) now obeys its width argument also for function
      headers and other objects x where deparse() is applied.

    o The convention for x %/% 0L for integer-mode x has been changed
      from 0L to NA_integer_.  (PR#14754)

    o The exportMethods directive in a NAMESPACE file now exports S4
      generics as necessary, as the extensions manual said it does.
      The manual has also been updated to be a little more informative
      on this point.

      It is now required that there is an S4 generic (imported or
      created in the package) when methods are to be exported.

    o Reference methods cannot safely use non-exported entries in the
      namespace.  We now do not do so, and warn in the documentation.

    o The namespace import code was warning when identical S4 generic
      functions were imported more than once, but should not (reported
      by Brian Ripley, then Martin Morgan).

    o merge() is no longer allowed (in some ways) to create a data
      frame with duplicate column names (which confused PR#14786).

    o Fixes for rendering raster images on X11 and Windows devices when
      the x-axis or y-axis scale is reversed.

    o getAnywhere() found S3 methods as seen from the utils namespace
      and not from the environment from which it was called.

    o selectMethod(f, sig) would not return inherited group methods
      when caching was off (as it is by default).

    o dev.copy2pdf(out.type = "cairo") gave an error.  (PR#14827)

    o Virtual classes (e.g., class unions) had a NULL prototype even if
      that was not a legal subclass.  See ?setClassUnion.

    o The C prototypes for zdotc and zdotu in R_ext/BLAS.h have been
      changed to the more modern style rather than that used by f2c.
      (Patch by Berwin Turlach.)

    o isGeneric() produced an error for primitives that can not have
      methods.

    o .C() or .Fortran() had a lack-of-protection error if the
      registration information resulted in an argument being coerced to
      another type.

    o boxplot(x=x, at=at) with non finite elements in x and non integer
      at could not generate a warning but failed.

    o heatmap(x, symm=TRUE, RowSideColors=*) no longer draws the colors
      in reversed order.

    o predict(<ar>) was incorrect in the multivariate case, for p >= 2.

    o print(x, max=m) is now consistent when x is a "Date"; also the
      "reached ... max.print .." messages are now consistently using
      single brackets.

    o Closed the <li> tag in pages generated by Rd2HTML(). (PR#14841.)

    o Axis tick marks could go out of range when a log scale was used.
      (PR#14833.)

    o Signature objects in methods were not allocated as S4 objects
      (caused a problem with trace() reported by Martin Morgan).
2012-12-17 09:08:46 +00:00
obache
64deda1dc9 recursive bump from cyrus-sasl libsasl2 shlib major bump. 2012-12-16 01:51:57 +00:00
markd
6b8aa44198 Bump PKGREVISION as fix to mk/compiler/g95.mk means that correct FC value
is now stored in R/etc/Makeconf meaning that R can now build modules
outside of pkgsrc context.
2012-12-15 21:35:54 +00:00
wiz
a25439ab83 Update to 2.2. Changes not documented.
Based on PR 38117 by Kalevi Suominen.
2012-12-12 12:45:18 +00:00
wiz
e1acde4ddb Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
wen
d1f49ba51a Update to 0.15
Upstream changes:
0.15  9 December 2012

    - Lots of internal changes to Ei, li, Zeta, and R functions:
       - Native Zeta and R have slightly more accurate results.
       - For bignums, use Math::MPFR if possible.  MUCH faster.
         Also allows extended precision while still being fast.
       - Better accuracy for standard bignums.
       - All four functions do:
          - XS if native input.
          - MPFR to whatever accuracy is desired, if Math::MPFR installed.
          - BigFloat versions if no MPFR and BigFloat input.
          - standard version if no MPFR and not a BigFloat.

    - Add tests for primorial, jordan_totient, and divisor_sum.

    - Revamp of the random_prime internals.  Also fixes some issues with
      random n-bit and maurer primes.

    - The random prime and primorial functions now will return a Math::BigInt
      object if the result is greater than the native size.  This includes
      loading up the Math::BigInt library if necessary.
2012-12-10 13:35:45 +00:00
asau
287caf68fb Update to FriCAS 1.1.8
Notable changes in FriCAS 1.1.8 (compared to version 1.1.7):

- Improvements of pattern matching integrator, it can now integrate
  in terms of Fresnel integrals and better handles integrals in terms
  of Si and Ci.
- Better integration of symbolic derivatives.
- Better normalization of Liouvillian functions.
- New package for computing limits using Gruntz algorithm.
- Faster removal of roots from denominators.
- New domains for mutivariate Ore algebras and partial differential
  operators.
- New package for noncommutative Groebner bases.
- New domain for univariate power series with arbitrary exponents.
- New special functions: Shi and Chi.
- New package for noncommutative Groebner bases.
- New domain for univariate power series with arbitrary exponents.
- New special functions: Shi and Chi.
- Several aggregates (in particular tables) allow more general
  parameter types.
- New domain for hash tables using equality from underlying
  domain.

Bug fixes, in particular:

- Fixed problem with gcd failing due to bad reduction.
- Fixed series of 'acot' and Puiseux series of several special functions.
- Fixed wrong factorization of differential operators.
- Fixed build problem on recent Mac OS X.


Notable changes in FriCAS 1.1.7 (compared to version 1.1.6):

- Improved integration in terms of special functions.
- Updated new graphics framework and graph theory package.
- Added routines for numerical evaluation of several special
  functions.
- Added modular method for computing polynomial gcd over algebraic extensions.
- Derivatives of fresnelC and fresnelS are changed to agree
  with established convention.
- When printing floats groups of digits are now separated by
  underscores (previously were separated by spaces).
- Added C code for removing directories, this speeds up full
  build and should avoid build problems on Mac OSX.

Bug fixes, in particular:

- Series expansion now handle poles of Gamma.
- Fixed derivatives of meijerG.
2012-12-08 15:26:57 +00:00
jperkin
cefff77d66 Add PKGGNUDIR support. 2012-12-06 11:38:19 +00:00
wen
c2b9662792 Update to 0.7.2
Upstream changes:
Release Notes for 0.7.2New Page Edit Page Page History
These are the release notes for SymPy 0.7.2. SymPy 0.7.2 was released on October 16, 2012.

Major Changes
Python 3 support

SymPy now supports Python 3. The officially supported versions are 3.2 and 3.3, but 3.1 should also work in a pinch. The Python 3-compatible tarballs will be provided separately, but it is also possible to download Python 2 code and convert it manually, via the bin/use2to3 utility. See the README for more

PyPy support

All SymPy tests pass in recent nightlies of PyPy, and so it should have full support as of the next version after 1.9.

Combinatorics

A new module called Combinatorics was added which is the result of a successful GSoC project. It attempts to replicate the functionality of Combinatorica and currently has full featured support for Permutations, Subsets, Gray codes and Prufer codes.

In another GSoC project, facilities from computational group theory were added to the combinatorics module, mainly following the book "Handbook of computational group theory". Currently only permutation groups are supported. The main functionalities are: basic properties (orbits, stabilizers, random elements...), the Schreier-Sims algorithm (three implementations, in increasing speed: with Jerrum's filter, incremental, and randomized (Monte Carlo)), backtrack searching for subgroups with certain properties.

Definite Integration

A new module called meijerint was added, which is also the result of a successful GSoC project. It implements a heuristic algorithm for (mainly) definite integration, similar to the one used in Mathematica. The code is automatically called by the standard integrate() function. This new algorithm allows computation of important integral transforms in many interesting cases, so helper functions for Laplace, Fourier and Mellin transforms were added as well.

Random Variables

A new module called stats was added. This introduces a RandomSymbol type which can be used to model uncertainty in expressions.

Matrix Expressions

A new matrix submodule named expressions was added. This introduces a MatrixSymbol type which can be used to describe a matrix without explicitly stating its entries. A new family of expression types were also added: Transpose, Inverse, Trace, and BlockMatrix. ImmutableMatrix was added so that explicitly defined matrices could interact with other SymPy expressions.

Sets

A number of new sets were added including atomic sets like FiniteSet, Reals, Naturals, Integers, UniversalSet as well as compound sets like ProductSet and TransformationSet. Using these building blocks it is possible to build up a great variety of interesting sets.

Classical Mechanics

A physics submodule named machanics was added which assists in formation of equations of motion for constrained multi-body systems. It is the result of 3 GSoC projects. Some nontrivial systems can be solved, and examples are provided.

Quantum Mechanics

Density operator module has been added. The operator can be initialized with generic Kets or Qubits. The Density operator can also work with TensorProducts as arguments. Global methods are also added that compute entropy and fidelity of states. Trace and partial-trace operations can also be performed on these density operators.

To enable partial trace operations a Tr module has been added to the core library. While the functionality should remain same, this module is likely to be relocated to an alternate folder in the future. One can currently also use sympy.core.Tr to work on general trace operations, but this module is what is needed to work on trace and partial-trace operations on any sympy.physics.quantum objects.

The Density operators, Tr and Partial trace functionality was implemented as part of student participation in GSoC 2012

Expanded angular momentum to include coupled-basis states and product-basis states. Operators can also be treated as acting on the coupled basis (default behavior) or on one component of the tensor product states. The methods for coupling and uncoupling these states can work on an arbitrary number of states. Representing, rewriting and applying states and operators between bases has been improved.

Commutative Algebra

A new module agca was started which seeks to support computations in commutative algebra (and eventually algebraic geometry) in the style of Macaulay2 and Singular. Currently there is support for computing Groebner bases of modules over a (generalized) polynomial ring over a field. Based on this, there are algorithms for various standard problems in commutative algebra, e.g., computing intersections of submodules, equality tests in quotient rings, etc....

Plotting Module

A new plotting module has been added which uses Matplotlib as its back-end. The plotting module has functions to plot the following:

2D line plots
2D parametric plots.
2D implicit and region plots.
3D surface plots.
3D parametric surface plots.
3D parametric line plots.
Differential Geometry

Thanks to a GSoC project the beginning of a new module covering the theory of differential geometry was started. It can be imported with sympy.diffgeom. It is based on "Functional Differential Geometry" by Sussman and Wisdom. Currently implemented are scalar, vector and form fields over manifolds as well as covariant and other derivatives.
2012-12-02 12:33:23 +00:00
wen
821677920a Update to 1.4.16 2012-11-30 13:55:48 +00:00
wen
38152384c2 Update to 0.9.7 2012-11-30 13:06:54 +00:00
wen
df602412bc Update to 0.8.8
No upstream changelog.
2012-11-30 08:34:39 +00:00
wen
b8af85d1ef Update to 0.14
Upstream changes:
0.14  29 November 2012

    - Compilation and test issues:
          Fix compilation on NetBSD
          Try to fix compilation on Win32 + MSVC
          Speed up some testing, helps a lot with Cygwin on slow machines
          Speed up a lot of slow PP areas, especially used by test suite

    - XS AKS extended from half-word to full-word.

    - Add functions:
           jordan_totient          generalization of Euler Totient
           divisor_sum             run coderef for every divisor

    - Allow environment variables MPU_NO_XS and MPU_NO_GMP to turn off XS and
      GMP support respectively if they are defined and equal to 1.

    - Lehmer prime count for Pure Perl code, including use in nth_prime.
         prime count 10^9 using sieve:
            71.9s   PP sieve
             0.47s  XS sieve
         prime count 10^9 using Lehmer:
             0.70s  PP lehmer
             0.03s  XS lehmer

    - Moved bignum Zeta and R to separate file, only loaded when needed.
      Helpful to get the big rarely-used tables out of the main loading.

    - Quote arguments to Math::Big{Int,Float} in a few places it wasn't.
      Math::Big* coerces the input to a signed value if it isn't a string,
      which causes us all sorts of grief.

0.13  19 November 2012

    - Fix an issue with prime count, and make prime count available as a
      standalone program using primesieve.

0.12  17 November 2012

    - Add bin/primes.pl and bin/factor.pl

    - Add functions:
           primorial               product of primes <= n
           pn_primorial            product of first n primes
           prime_set_config        set config options
           RiemannZeta             export and make accurate for small reals
           is_provable_prime       prove primes after BPSW
           is_aks_prime            prove prime via AKS

    - Add 'assume_rh' configuration option (default: false) which can be set
      to allow functions to assume the Riemann Hypothesis.

    - Use the Schoenfeld bound for Pi(x) (x large) if assume_rh is true.

    - valgrind testing

    - Use long doubles for math functions.

    - Some fixes and speedups for ranged primes().

    - In the PP code, use 2 MR bases for more numbers when possible.

    - Fixup of racing SQUFOF, and switch to use it in factor().

    - Complete rewrite of XS p-1 factor routine, includes second stage.

    - bug fix for prime_count on edge of cache.

    - prime_count will use Lehmer prime counting algorithm for largish
      sizes (above 4 million).  This is MUCH faster than sieving.

    - nth_prime now uses the fast Lehmer prime count below the lower limit,
      then sieves up from there.  This makes a big speed difference for inputs
      over 10^6 or so -- over 100x faster for 10^9 and up.
2012-11-30 08:24:50 +00:00
wen
8e292493c0 Update to 1.7.9
Upstream changes:
Changes in Version 1.7-9

  o Added ggplot2 interface through autplot() and fortify() methods.  Also
    support function facet_free().


Changes in Version 1.7-8

  o Added rollsum.

  o Bugfix in src/lag.c for the case of k > NROW.
2012-11-29 08:09:54 +00:00
jnemeth
3fb597e0dc add and enable py-pandas 2012-11-29 08:00:12 +00:00
adam
1e8a16a7b4 Changes 3.3.3:
* Fix deadlock bug in MPI transforms (thanks to Michael Pippig for the
  bug report and patch, and to Graham Dennis for the bug report).
* Use 128-bit ARM NEON instructions instead of 64-bits.  This change
  appears to speed up even ARM processors with a 64-bit NEON pipe.
* Speed improvements for single-precision AVX.
* Speed up planner on machines without "official" cycle counters, such as ARM.
2012-11-26 17:36:50 +00:00
joerg
5de19eef98 Can't use const with non-default constructor. 2012-11-23 12:11:00 +00:00
joerg
b9b4d0659a Don't redefine a local variable. 2012-11-23 12:10:29 +00:00
joerg
05fd37e853 Needs GNU inline semantic. 2012-11-23 12:09:58 +00:00
bad
c1b933bd7e Initial import of pandas 0.9.1.
pandas is an open source, BSD-licensed library providing
high-performance, easy-to-use data structures and data analysis tools
for the Python programming language.
2012-11-22 00:15:13 +00:00
gdt
dcb4d73306 Switch to fltk13.
This is part of deprecating fltk 1.1.  (Note that the fltk option is
off by default, so few will care.)
2012-11-21 00:47:52 +00:00
joerg
d8b50ee63a Use more void. 2012-11-19 02:56:44 +00:00
joerg
76535b3a58 Don't redeclare a local variable. 2012-11-16 01:04:43 +00:00
gdt
d634b34d00 Don't include x11 in PKG_SUGGESTED_OPTIONS.
This change makes pari, by default, not depend on fltk.  pari is an
indirect dependency of the perl module system, and thus should be
minimal.
2012-11-06 02:18:37 +00:00
joerg
7e21a144bb Fix inline misuse. 2012-11-01 19:42:01 +00:00
asau
517199494b Let users install packages from OctaveForge:
provide path to GNU make which is assumed there.
2012-10-27 13:01:35 +00:00
wen
97a16f6dde Update to 2.01
Upstream changes:
Version 2.01 - 24 October 2012 (bug fix release)

* Fixed error in electronmass
* New definition for au
* Fixed DESTDIR support for installation
* Changed configure script for success with Solaris
* Small changes to manual
2012-10-27 11:50:42 +00:00
joerg
8d882d9e73 Fix missing includes. Add missing value in return. 2012-10-26 20:39:57 +00:00
joerg
4c56394759 Add missing includes. Don't conflict with sync(2). 2012-10-26 20:39:15 +00:00
prlw1
436d0588fc Update gcalctool-gtk3 to 6.6.1
* Fix error reporting not working for certain types of error
    * Add shadow around display
    * Remove reference to removed source file
    * Replace lex/bison parser with hand-written parser
    * Use g_warning not g_error when unable to parse currency file
    * Set window icon correctly
    * Port to GtkApplication
    * Replace menubar with a GMenu
    * Only show thousands separators in decimal mode
    * Translation updates
(unimpressed by https://bugzilla.gnome.org/show_bug.cgi?id=670098)
2012-10-26 11:36:34 +00:00
asau
ae14f72876 Update to Grace 5.1.23
Changes in 5.1.23

  Bug fixes
 * [ES] removed *86 specific optimizations (rep. #2154)
 * [ES] renamed RMS per cent error -> relative error (rep. #2192)
 * [ES] a workaround for a bug in recent Xorg not releasing grab of popup menus
 * [ES] accept -graphtype chart instead of bar. List possible values in the
        help output
 * [TK] fix building against png-1.5
 * [SM] a grace_np fix
 * [ES] IsoLatin5.enc was not included in the distribution
2012-10-25 08:51:58 +00:00
wiz
d8a0a08db2 If a native pthreads implementation is available, also install
libfftw3_threads. Bump PKGREVISION.
2012-10-24 08:57:46 +00:00
sno
e44992779b Added math/p5-Math-Prime-Util version 0.11 2012-10-19 07:30:52 +00:00
sno
32f8147f61 Add new package for CPAN module Math::Prime::Util version 0.11 into
math/p5-Math-Prime-Util.

A set of utilities related to prime numbers. These include multiple sieving
methods, is_prime, prime_count, nth_prime, approximations and bounds for
the prime_count and nth prime, next_prime and prev_prime, factoring
utilities, and more.
2012-10-19 07:30:32 +00:00
wiz
1e99eec856 Use REPLACE_PYTHON extensively. Bump PKGREVISION. 2012-10-16 08:00:27 +00:00
asau
653bca9f31 + harminv 2012-10-15 18:58:16 +00:00
asau
736b8dc8d5 Import Harminv 1.3.1 as math/harminv.
Packaged for pkgsrc-WIP by Kamel Derouiche.


Harminv is a free program (and accompanying library) to solve
the problem of harmonic inversion, given a discrete-time,
finite-length signal that consists of a sum of finitely-many
sinusoids (possibly exponentially decaying) in a given bandwidth,
it determines the frequencies, decay constants, amplitudes,
and phases of those sinusoids.
2012-10-15 18:57:28 +00:00
adam
3f2cc57b2b Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
jaapb
ff1184e506 Revision bump associated with the update of lang/ocaml to version 4. 2012-10-08 15:18:20 +00:00
cheusov
4b97be0632 Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
cheusov
11c7685b77 CONFLICTS between python modules 2012-10-03 23:40:35 +00:00
wiz
79434c2ac7 Update for python25 removal. 2012-10-03 22:14:00 +00:00
wiz
8b5d49eb78 Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
2012-10-03 21:53:53 +00:00
tron
14215633d2 Mass recursive bump after the dependence fix of the "cairo" package
requested by Thomas Klausner.
2012-10-02 17:10:28 +00:00
cheusov
1ac9b2cd65 CONFLICTS += mono-[0-9]*; ++pkgrevision 2012-09-16 15:21:33 +00:00
obache
c38c120ee5 recursive bump from libffi shlib major bump
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-09-15 10:03:29 +00:00
asau
c3001443d7 Update to xylib 1.0
Changes:

* 1.0 (2012-07-25)
  - added option ``decimal-comma`` for text format
  - fixed bug in CSV format

* 0.9 (2012-05-20)
  - added CSV format, or more acurately: delimiter-separated values format.
    Supports popular delimiters (``TAB ,;|:/``), quoting (``"``)
    and escape character (``\``). Non-numeric fields are read as NaNs.
  - added Canberra CNF format
2012-09-14 00:22:11 +00:00
asau
297b3f88cc Update to Octave 3.6.3
Mostly bug and documentation fixes.
2012-09-13 23:39:14 +00:00
asau
baf2001110 Update GNU units to version 2.00
User visible changes.

Version 2.00 - 6 June 2012

General changes:
* Unit lists provide conversion to sums of units (e.g. feet and inches).
* Added --round (-r) and --show-factor (-S) options for use with unit lists.
* Added unit lists aliases (e.g. time, usvol).
* A python script, units_cur, can update currency data.
* Units now flushes its output so you can talk to it with a pipe.
* Units now works in UTF-8 if the system supports it.
* Added --locale (-l) option to set the locale.
* English units such as the gallon are defined in all locales, with US
  definitions by default except in the en_BG locale.  You can force
  the desired definition (Great Britain or US) by setting the
  environment variable UNITS_ENGLISH to GB or US.
* Revised and extended the documentation, with more examples.
* Added locale mapping to address Windows locale names.
* Updated and revised units database, including UTF-8 definitions and
  the 2010 CODATA.
* Fixed parsing bug for "1..2" or "1.2.3".  These now give an error.
* Unit names can end with a number in the form of a subscript that
  starts with a '_', as in 'X_3'.

Changes for units definition files:
* Changed location and names of unit database, splitting off currency
  Files are /usr/local/share/units/{definitions,currency}.units and
  the personal units file is $HOME/.units instead of $HOME/units.dat.
  (Under windows personal unit file is unitdef.units.)
* Personal units filename can be changed with MYUNITSFILE environment variable.
* Prefixes can be defined in any order: it is no longer necessary to
  define longer ones before shorter ones.
* New definitions replace previous ones.  Personal units file is read
  after the system file rather than before.
* Changed syntax for function definitions.  Instead of [in-unit,out-unit]
  you must now write units=[in-unit,out-unit].  Use 'units -c' to find
  places in your personal data files that need to be updated.
* Add optional domain and range to function definitions with syntax
  domain=[min,max] and range=[min,max].  Either min or max can be
  omitted to signal infinity.
* Unit list aliases can be defined with !unitlist command.
* Added !var and !varnot and !endvar to include definitions based on
  environment variable settings.
* Added !set to set environment variables (if they aren't already set).
* Added !message to display a message
* Data files are in UTF-8, with !utf8 and !endutf8 commands to mark
  definitions that require UTF-8 support.
* Improved error handling when reading units.dat.

Version 1.88 - 15 Feb 2010

* Updated units.dat
* Fixed bug involving readline version 4.2

Version 1.87 - 25 Sep 2007

* Units reads ~/.units.dat if it exists before reading the standard
  units database.
* Added support for ** as an exponent operator.
* Type 'search text' to list units that contain 'text' in their name.
* Precedence of '*' changed to match precedence of '/'.
  (Multiplication by juxtaposition retains a higher precedence than
  '/'.)  The --oldstar option selects the old precedence and --newstar
  forces the new precedence.
2012-09-13 23:27:05 +00:00
asau
cd9f87af3e Update to Teapot 2.3.0
Project moved to another developer.


The changes compared to 2.2.1 are:

o visual garbage fixed (curses version)
o made unquoted strings default, added "-q" flag to turn quotes back on
o made attributes menu more user friendly: no more question when
  changing a single cell, one menu option optimized away
o added "-H" command line flag to hide row/column headers; in FLTK,
  this means you can only change sheets via Ctrl-Shift-PgUp/PgDn
o expanded command line help

The changes compared to 2.2.0 are:

o Help system improved
o Compile fix for MacOS
o Link shared by default. Set option ENABLE_STATIC to statically link FLTK.
o Bugfixes for CSV export
o Bugfixes for console mode
o Added font styles bold and underline

The changes compared to 2.1.0 are:

o UTF-8 support for curses frontend
o various bug fixes

The changes compared to 2.0.2 are:

o switched to CMake as build system
o Win32 compatibility
o usage improvements in the GUI version
o various bug fixes

The changes compared to 2.0.1 are:

o Low-resource builds (leaving out the help system)
o various bug fixes

The changes compared to 2.0 are:

o Fix a possible crash and some minor bugs
o improve FLTK navigation and cell editing (moving around and
  selecting cells now works while editing a formula)
o automatically start a string value when typing a letter
o fix build system

The changes compared to 1.09 are:

o Several bug fixes and changes how files are handled
o FLTK user interface
o Built-in Help and About screen (currently only in FLTK)
o License changed to GPL (see mbox file in doc folder for permission)
2012-09-13 22:29:09 +00:00
asau
f4b12467b5 Update to SNNS 4.3
New Features of SNNS 4.3

Version 4.3 of SNNS features the following improvements and
extensions over the earlier version 4.2:

1. Included patches avaiable from the SNNS-development project.
2. License changed to LGPL v2.
3. Fixed some bugs in the installation configuration files.
2012-09-13 21:43:08 +00:00
asau
1fba5e7d3b Update to MTL 2.1.2-22
Add test target.

Changes in MTL 2.1.2-22

Adaptations to the stricter syntax requirements in new compilers like GCC 4.0.
2012-09-13 18:13:50 +00:00
asau
3403d7e4e1 Update to MPFR 3.1.1p2
1. The mpfr_get_decimal64 function (available only when MPFR has
   been configured with --enable-decimal-float) has several bugs,
   fixed by the get_decimal64 patch, which also provides testcases.
   It corresponds to the following changesets in the 3.1 branch:
   8373, 8378, 8380.
2. The ternary value returned by the mpfr_strtofr function can
   be wrong under particular conditions (example). This is fixed
   by the strtofr-ternary-value patch, which also provides
   testcases. It corresponds to the following changeset in the 3.1
   branch: 8399.
2012-09-13 17:51:01 +00:00
asau
0b2ee36f6d Update mpcomplex to mpc 1.0.1
Note that tests might need the package installed.


Changes in version 1.0.1:
  - Switched to automake 1.11.6, see
    https://lists.gnu.org/archive/html/automake/2012-07/msg00023.html
  - #14669: Fixed extraction of CC from gmp.h
  - Fixed case of intermediate zero real or imaginary part in mpc_fma,
    found by hydra with GMP_CHECK_RANDOMIZE=1346362345
2012-09-13 17:34:22 +00:00
drochner
3e5acdb927 add test target 2012-09-13 17:14:36 +00:00
asau
eff3b69b0b Adjust HOMEPAGE to point to package's home page directly. 2012-09-13 16:56:17 +00:00
asau
bf51f6ab85 Update to libmatheval 1.1.8
Changes:

Version 1.1.8
* Fixed bugs in the Fortran interface.
* Updated pkg-config file.

Version 1.1.7
* Fixed wrong derivative calculation for erf function.

Version 1.1.6
* Added support for erorr function (erf).

Version 1.1.5
* Re-licensed under GNU Public License version 3.
2012-09-13 15:44:04 +00:00
asau
cd3e838e50 Adjust HOMEPAGE, SourceForge stopped hosting WordPress. 2012-09-13 13:23:33 +00:00
asau
87db9cc78a CHANGES MADE TO MATHOMATIC 16.0.3 TO BRING IT UP TO THE NEXT VERSION:
09/09/12 - Allow use of editline library in Mathomatic, because somehow
           use of GPL libraries in LGPL code is not allowed, and GNU readline
           is GPL.  I am so confused about this Debian bug#687063:
           http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687063

           Based on the bug report's information sources,
           it appears he is saying the truth about this license issue,
           so I will have to upload new versions of
           Mathomatic with editline instead of readline to Debian.
           The only noticeable difference should be it doesn't save
           the history between Mathomatic sessions.
           I will comply with all that request it,
           though most distributions do not include editline,
           which has no major licensing restrictions.  Readline is still
           perfectly usable and good as before, you just have to link
           it in yourself.

09/10/12 - Going to have to make a new release already, 2 days after the last
           one, so I can upload this readline licensing fix to Debian by
           linking with editline.  There is no reason for anyone to upgrade
           to version 16.0.4, unless you wish to link with editline instead
           of readline.  The proper code has been added.  All you have to do
           is have the editline libraries loaded on your system,
           and run "make EDITLINE=1" to compile and link Mathomatic with
           editline.

Mathomatic version 16.0.4 released Monday 09/10/12.

CHANGES MADE TO MATHOMATIC 16.0.2 TO BRING IT UP TO THE NEXT VERSION:

New command "set load" loads the current set options startup file again,
displaying the startup file as it reads it in.
If the file doesn't exist, or something is wrong, then an error message is
displayed and the set command returns with failure.
Accidently putting "load" in the startup file is now handled correctly.

08/09/12 - Allow "matho-primes all" and the command "list primes all" in
           Mathomatic to continually output consecutive prime numbers.

08/12/12 - Fixed any rman errors in the makefile so they won't be ignored.

08/17/12 - rmath and matho no longer set the debug_level or modulus_mode,
           so they can be set by the startup options file.

08/19/12 - Allow the repeat prefix on the approximate command, making it
           approximate and simplify as much as the calculate command
           does.  Hopefully someday it will just give a temporary
           result, too.  Numerical input into the symbolic math library
           now uses "repeat approximate" instead of just "approximate"
           to approximate the user's input, so the result is the
           same as the Mathomatic application's result.

           Disallow the same warnings to be repeatedly displayed, if the
           current warning is the same as the previous warning.

08/20/12 - Allow directory names as read command arguments, instructing
           the read command to change the current directory to the specified
           directory.  Without any arguments, the read command now does an
           "ls" command in Unix/Linux, and "dir" under MS-Windows, listing
           the current directory contents.  Running Mathomatic with a
           directory name argument now conveniently changes directory to
           that directory, then gives you the main prompt.

08/28/12 - Made "integer" type variables much more useful.  For example,
           the following now happens generally:

1-> i^(4*integer)
#1: i^(4*integer)
1-> simplify
#1: 1
1-> i^((4*integer) + 1)
#2: i^((4*integer) + 1)
2-> simplify
#2: i
2-> i^((4*integer) + 2)
#3: i^((4*integer) + 2)
3-> simplify
#3: -1
3-> i^((4*integer) + 3)
#4: i^((4*integer) + 3)
4-> simplify
#4: -1*i

08/29/12 - Displays "Calculating..." whenever autocalc is used now.

08/30/12 - Added ability to set the normal text color.
           Still defaults to no color.  Use "set color 0" to set the normal
           text color to green, as it has been for many years in the past.

08/31/12 - Removed the "set preserve_surds" option, since the approximate
           and calculate commands all take care of undoing that.
           The code remains, however "set preserve_surds" is no longer
           advertised.  I have never used it.
           Surds are preserved, for accuracy's sake, by default.

09/05/12 - "set" as a null set option works now, so no one will have any
           trouble setting-up the set options startup file.

Mathomatic version 16.0.3 released Saturday 09/08/12.
2012-09-13 09:13:09 +00:00
asau
b63c74fdfd "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
cheusov
a4fb79d4e2 Add missing conflict with freeze-[0-9]* (bin/statist); ++pkgrevision 2012-09-08 22:44:16 +00:00
cheusov
8d84527fd7 Set LICENSE; Fix pkglint warnings 2012-09-08 22:35:13 +00:00
adam
b15c922bcc Revbump after updating graphics/cairo 2012-09-07 19:16:05 +00:00
sno
a76f11d1e6 Changing all PERL5_MODULE_TYPE from Module::Install to M::I::Bundled,
Module::Install is for Authors only.

Bumping revision
2012-09-03 11:16:19 +00:00
wen
1c72a4bca8 Update to 3.0604
Upstream changes:
3.0604      July 14, 2012
    - Correct a misspelling of "weight" in
    lib/Statistics/Descriptive/Smoother/Weightedexponential.pm
        - Thanks to Wilhelm for the report.
    - Update the scripts/tag-release.pl file for Mercurial.

3.0603      May 15, 2012
    - Use in_between to compare decimal numbers
        - Smoothing tests were failing because of rounding problems
        - Thanks to Andreas J. K.nig for reporting it and to
          Fabio Ponciroli for fixing it.

3.0602      May 12, 2012
    - Correct a typo:
        - https://rt.cpan.org/Ticket/Display.html?id=77145
        - Thanks to Salvatore Bonaccorso and the Debian Perl Group
        for the report.

3.0601      May 11, 2012
    - No longer using Test::Exception in the tests.
        - It was used by the tests and not specified in
        test_requires/build_requires.
        - Thanks to hsk@fli-leibniz.de for the report.

3.0600      May 11, 2012
    - Add the smoothing functionality.
        - Add the following public methods: add_data_with_samples(),
        set_smoother(), get_smoothed_data() to the main module.
        - Add the lib/Statistics/Descriptive/Smoother.pm and
        lib/Statistics/Descriptive/Smoother/Exponential.pm
        lib/Statistics/Descriptive/Smoother/Weightedexponential.pm
        modules.
        - Thanks to Fabio Ponciroli
    - Add the scripts/bump-version-number.pl to facilitate bumping the
    version number.

3.0500      May 03, 2012
    - Add the get_data_without_outliers() and the set_outlier_filter()
    methods.
        - See https://bitbucket.org/barbasa/perl-statistics-descriptive/overview
        - Thanks to Fabio Ponciroli

3.0400      March 01, 2012
    - Fix https://rt.cpan.org/Ticket/Display.html?id=74890
        - some function should return undef() in list context so they can
        be easily assigned to values in hash initialisations.
        - thanks to SLAFFAN for a preliminary patch which was modified
        by SHLOMIF (the current Statistics-Descriptive maintainer).

3.0300      February 11, 2012
    - Now mean() and median() and other routines return undef() if there are
    no data.
    - Somewhat incompatible change: some methods that returned undef() under
    list context now return an empty list (so it will be false).
        - it is generally not recommended to call such methods in list context
        as they should always be called in scalar context.
    - Resolves https://rt.cpan.org/Ticket/Display.html?id=74693
        - thanks to Shawn Laffan for the report and the patch.

3.0203      November 17, 2011
    - Fix https://rt.cpan.org/Ticket/Display.html?id=72495 .
        - percentile should not die and should return undef if there are
        no elements in the collection.
2012-09-02 04:42:54 +00:00
obache
fb0eef126f Recursive bump from boost-libs update. 2012-08-29 11:22:09 +00:00
wen
9e4f3bbeae Update to 0.10
Upstream changes:
0.10 2012-08-16
 - Fix SYNOPSIS (RT #78790)
2012-08-23 12:38:35 +00:00
marino
f162cdcb03 Recursive PKGREVISION bump for tcl and tk upgrade to 8.5.12 2012-08-21 23:49:18 +00:00
drochner
92cef3298c update to 2.2.2
changes:
* ternary if-then-else operator added (C++ like)
* new intrinsic binary operators: "&&", "||"
* A new bulkmode allows submitting large arrays as variables
* intrinsic "and", "or" and "xor" operators have been removed
* Implementation for complex numbers removed
* Function atan2 added
-bugfixes, cleanup, other minor improvements

pkgsrc note: shlib major changed
2012-08-15 17:38:49 +00:00
drochner
8215fc3aec make Python3 ready 2012-08-15 17:18:14 +00:00
drochner
1efeeac96a update to 1.6.2
changes: bugfixes

pkgsrc change: mark Python3 ready
2012-08-15 17:16:37 +00:00
fhajny
ee1fad7577 The previous commit actually doesn't affect the build of math/py-numpy,
but changes the py-numpy binary package in order for math/py-scipy to build
successfully (at least on SmartOS). Bump PKGREVISION.
2012-08-14 21:04:21 +00:00
fhajny
edad949860 Fortran objects need -fPIC handling (fixes at least SmartOS) 2012-08-14 20:20:55 +00:00
fhajny
cdbffd2a34 Fix build on SmartOS by making sure linker always gets -shared 2012-08-14 20:19:20 +00:00
asau
010650399c Mark packages with no staged installation support explicitly (PKG_DESTDIR_SUPPORT=none). 2012-08-14 17:07:55 +00:00
asau
7a04a92d5c Update to Mathomatic 16.0.2
CHANGES MADE TO MATHOMATIC 16.0.1 TO BRING IT UP TO THE NEXT VERSION:

A nice cleanup and documenting of everything, while my mind still works.

07/23/12 - Enabled links in "manual.pdf" (the Mathomatic User Guide
           and Command Reference), they were not working before,
           but they work great now.

07/24/12 - Allow -a option ("set alternative") with sets alternative
           color mode, useful in MS-Windows when using Cygwin with the
           MinGW compiled version.

07/27/12 - Two bug fixes today:

           Fixed using rlwrap under Cygwin and possibly other places,
           when running rmath.

           get_yes_no() question asker wasn't working in Cygwin or rmath.
           Fixed to always ask the question, even if the input is not a TTY.

07/28/12 - Reading directories and empty files gives an error now.

07/30/12 - Split off changes.txt to changes.txt and changes_series_15.txt.
           changes.txt and NEWS now contain only series 16 changes.

           Added tests/batman_gnuplot_bug.in to prove there is a plotting bug
           in gnuplot itself.

08/01/12 - Removed directive to use large font in the CSS for all Mathomatic
           documentation.  This is so it can be browsed easily with a mobile
           device.  The font size should be set by the user.

08/02/12 - A one-sided expression with an equals sign now only sets the
           expression equal to zero if autocalc didn't work on it.  In the
           Symbolic Math Library, or without autocalc enabled, all is the
           same.  This makes it more likely purely numerical input is only
           calculated, even when preceded or followed by an equals sign,
           when autocalc is enabled.  Reason for this change:
           Why would you want to set a constant equal to 0?

           Fixed a bunch more error reporting bugs coded into version 16.0.1
           of Mathomatic to apply identical operations to both sides of an
           equation.  All fixed now.  Points to the error correctly now, too.

08/04/12 - Major change to Symbolic Math Library.  It now works exactly like
           the application when it comes to purely numerical input,
           approximating and displaying the result, however sign variables
           are not expanded and the result is not 100% simplified,
           so running "simplify sign" afterwards helps with that.
           To revert to the old way, just turn off autocalc, or set
           the numerical input equal to some normal variable; then there
           will be no automatic approximation nor simplification.
           You can tell when an input has been approximated because it
           was numerical input, because it will always be preceded with
           "answer =".

08/05/12 - m4/degrees.m4 copied with m4/functions.m4, when installing with
           "make m4install", thanks to a suggestion by Reini Urban,
           maintainer of the Cygwin version.

Mathomatic version 16.0.2 released Monday 08/06/12.



CHANGES MADE TO MATHOMATIC 16.0.0 TO BRING IT UP TO THE NEXT VERSION:

07/06/12 - Confirmed successful compilation and testing with the
           Tiny C compiler (tcc).  Only needed to set the tcc linker
           library directories to the current gcc library directories
           to make it work (using the -L option).

           Searched globally for the word "simply" and fixed many outdated
           texts in the Mathomatic documentation and READMEs, deleting some
           wrongly used "simply"s, too.

07/07/12 - Allow "set modulus_mode language", where language is C, Java,
           Python, or positive.

07/08/12 - Now leaving the "UNIX" C preprocessor define alone,
           when "HANDHELD" is defined.  "UNIX" was previously
           forced undefined.

07/11/12 - "make test", "make check", and ./t now display the actual
           Mathomatic version number being tested.

           matho-primes now has a -v (display version number) option,
           like Mathomatic does.

           Mathomatic now automatically clears out all old
           numeric calculations if it runs out of equation spaces,
           requiring no action from the user.

07/12/12 - The solve command never needs the "repeat solve" prefix anymore.
           The repeat flag is always set for the solve command, so that
           it will always do full simplifies when verifying.

           Added quadratic formula derivation and proof to
           "tests/quadratic.in".

07/17/12 - I came up with a swinging new and easy way to add, subtract,
           multiply, divide, modular and integer divide,
           and raise to the power of both sides of an equation by any
           expression.  To add x+1 to both sides of the current
           equation, just type "+=x+1" at the main prompt.  To divide both
           sides by c^2, type "/=c^2".  You can add stuff to non-equations
           too, this way.  Be sure and use the simplify command after this
           if needed, because only a small amount of simplification is done
           by default, just enough so you can see what is happening.

07/20/12 - Changed floating point to rational floating point conversion
           routine (f_to_fraction()) to ignore converting anything with
           over 15 digits, for greater accuracy.
           This fixes some small accuracy bugs: "factor number 17!" now gives
           an error instead of the wrong value.

07/21/12 - Integrate, Laplace, and Numerical Integrate commands now warn
           when the current equation is not a properly solved equation.

Mathomatic version 16.0.1 released Sunday 07/22/12.
2012-08-13 15:20:19 +00:00
asau
69739acb06 Update to Maxima 5.28.0
Maxima 5.28 change log

   Backwards-incompatible changes:

 * package stats: removed function simple_linear_regression (superseded by
   linear_regression)


   New items in core:

 * new function generalized_lambert_w
 * new functions zn_mult_table, zn_power_table
 * new functions for Galois fields: gf_set, gf_char, gf_prim, etc.


   New items in share:

 * package descriptive: new function principal_components
 * package descriptive: new histogram style 'density'
 * package stats: new function linear_regression


   Other changes:

 * revise system for building Maxima on MS Windows
 * function gamma_incomplete: improve accuracy for complex bigfloats
 * function expintegral_e: improved calculation for large imaginary part


   Bug fixes:

 3539699: limit of atan2
 3538167: Wrong result for definite integral
 3534858: wrong answer: limit
 3533723: abs_integrate causes stack overflow
 3530767: integrate changes k[0] --> k(0)
 3530272: nthroot, bad error msg
 3529992: Shi (sinh integral) wrong branch, integrate inconsistent
 3529144: Error integrating exp(-x)*sinh(sqrt(x)) with domain: complex
 3526359: gamma_incomplete(1/5,-32.0) not accurate
 3526111: float erf (%i) not working
 3522750: assume & integrate
 3521596: atan2(sqrt(1-u)*(u-1),1); /* hangup */
 3517785: Wrong sign in exponential integral
 3517034: polarform error on simple case
 mailing list 2012-04-09: Loading gentran
 mailing list 2012-03-27: bug in net present value
 unnumbered: inequality facts being forgotten
 unnumbered:  limit(erfc(z), z, inf)
 unnumbered: bug in animated_gif
 unnumbered: Lisp output not readable
 unnumbered: bigfloats parsed incorrectly when ibase is not 10
2012-08-13 15:10:25 +00:00
jperkin
54d3d4d98d Pass through the correct ABI flags as this package calls compilers directly.
Fixes build on Solaris where ABI=32 with 64-bit compilers.
2012-08-09 12:42:16 +00:00
wen
64a504b923 Update to 1.16
Upstream Changes:
1.16    2012-08-06      Florent Angly <florent.angly@gmail.com>
    * Fixed issue introduced in version 1.15 where rand() took no notice of
      argument and irand() did (bug #78200, reported by David Morel)
    * Migration of test suite to Test::More and Test::Number::Delta

1.15    2012-06-04      Florent Angly <florent.angly@gmail.com>
    * Implemented irand() to draw random integers (bug #73298, feature requested
      by crew@cs.stanford.edu)
    * Fixed build failure on Hurd (bug #74165, reported and patched by Salvatore
      Bonaccorso)

1.14    2012-05-27      Florent Angly <florent.angly@gmail.com>
    * Fixed compilation problems with nmake on Windows platforms
      (Florent Angly, bug #74984)
    * Fixed issues with random seed (bug #77343, solution suggested by
      Laurent Dami, fix implemented by Florent Angly)

1.13    2012-01-20      Abhijit Menon-Sen <ams@toroid.org>
    * New seed generation and retrieval mechanism by Florent Angly (bug
      #64640 on rt.cpan.org).
2012-08-06 14:04:08 +00:00
wen
33c29df4e8 + p5-Test-Number-Delta 2012-08-06 13:47:44 +00:00
wen
76ca42be03 Import p5-Test-Number-Delta-1.03:
A perl module for compare if the difference between two numbers is within
a specified amount.
2012-08-06 13:44:39 +00:00
marino
2843cc48af math/mpcomplex: Update from version 0.9 to 1.0
Changes since version 0.9:
  - First release as a GNU package
  - License change: LGPLv3+ for code, GFDLv1.3+ (with no invariant sections)
    for documentation
  - 100% of all lines are covered by tests
  - Functions renamed:
    mpc_mul_2exp to mpc_mul_2ui, mpc_div_2exp to mpc_div_2ui
  - 0^0, which returned (NaN,NaN) previously, now returns (1,+0)
  - Removed compatibility with K&R compilers, untestable due to lack of
    such compilers
  - New functions: mpc_log10, mpc_mul_2si, mpc_div_2si
  - Speed-ups:
    - mpc_fma
  - Bug fixes:
    - mpc_div and mpc_norm now return a value indicating the effective
      rounding direction, as the other functions
    - mpc_mul, mpc_sqr and mpc_norm now return correct results even if there
      are over- or underflows during the computation
    - mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has
      infinite part and equals output variable is corrected
    - mpc_fr_sub: Wrong return value for imaginary part is corrected
2012-08-05 18:24:56 +00:00
obache
ab4e71d90b Bump PKGREVISION for change of PostgreSQL default version to 9.1. 2012-08-05 10:02:09 +00:00
mishka
a9e71afa76 The R build/install process should seize all relevant environment
variables, and customization should be done via INSTALL_ENV/MAKE_ENV
respectively. This also solves the internationalization issue fixed
in previous commit properly.

Noted by <joerg> on pkgsrc-changes@, many thanks!
2012-08-02 14:35:01 +00:00
jperkin
a4efca7b27 Use the correct linker flags on Solaris/GCC.
Fixes Solaris 64-bit build.
2012-08-02 13:52:17 +00:00
drochner
14d971563e leave DIST_SUBDIR there - as the distribution scheme worked all the time,
patches will be released rather than full new distfiles, and if they crop
up, we'd have to refetch the original distfile otherwise
2012-08-01 19:29:26 +00:00
dholland
ac6305f2db Add patch comment. 2012-07-29 22:24:32 +00:00
wiz
7fb689fc15 Update to 3.1.1:
Changes from version 3.1.0 to version 3.1.1:
- Improved MPFR manual.
- Test coverage: 96.5% lines of code.
- Bug fixes (see <http://www.mpfr.org/mpfr-3.1.0/#fixed> or ChangeLog file).
2012-07-29 20:30:15 +00:00
mishka
b5da51bfa5 On internationalized environment some locales may fail wich equals
to error during addons installation phase - force all locales to C.
2012-07-24 21:26:27 +00:00
dholland
3e0214da8e Remove stray commas. 2012-07-22 01:13:29 +00:00
wen
522bc1b543 Update to 1.7
Release Log
Networkx-1.7
Release date: 4 July 2012

Highlights
New functions for k-clique community finding, flow hierarchy, union, disjoint union, compose, and intersection operators that work on lists of graphs, and creating the biadjacency matrix of a bipartite graph.
New approximation algorithms for dominating set, edge dominating set, independent set, max clique, and min-weighted vertex cover.
Many bug fixes and other improvements.
For full details of the tickets closed for this release (added features and bug fixes) see: https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.7

API Changes
See Version 1.7 notes and API changes
2012-07-13 14:00:32 +00:00
obache
7b774a3dcc Update ruby-spreadsheet to 0.7.3.
=== 0.7.3 / 26.06.2012

* Fix Format borders
* see https://github.com/zdavatz/spreadsheet/pull/6 for full details.
* patches by uraki66@gmail.com
2012-07-13 13:20:52 +00:00
drochner
f9a2cfe024 for itstool, a BUILD_DEPENDS is sufficient 2012-07-06 14:48:35 +00:00
dholland
7054daa518 Oops, fix thinko in previous. The disturbing part is how much stuff this
baloney *didn't* break.
2012-07-06 05:04:23 +00:00
dholland
09180349ac Needs textproc/itstool to configure. 2012-07-06 04:30:49 +00:00
asau
fafce37539 Update to Octave 3.6.2
Summary of important user-visible changes for version 3.6:
---------------------------------------------------------

 ** The PCRE library is now required to build Octave.  If a pre-compiled
    package does not exist for your system, you can find PCRE sources
    at http://www.pcre.org

 ** The ARPACK library is no longer distributed with Octave.
    If you need the eigs or svds functions you must provide an
    external ARPACK through a package manager or by compiling it
    yourself.  If a pre-compiled package does not exist for your system,
    you can find the current ARPACK sources at
    http://forge.scilab.org/index.php/p/arpack-ng

 ** Many of Octave's binary operators (.*, .^, +, -, ...) now perform
    automatic broadcasting for array operations which allows you to use
    operator notation instead of calling bsxfun or expanding arrays (and
    unnecessarily wasting memory) with repmat or similar idioms.  For
    example, to scale the columns of a matrix by the elements of a row
    vector, you may now write

      rv .* M

    In this expression, the number of elements of rv must match the
    number of columns of M.  The following operators are affected:

      plus      +  .+
      minus     -  .-
      times     .*
      rdivide   ./
      ldivide   .\
      power     .^  .**
      lt        <
      le        <=
      eq        ==
      gt        >
      ge        >=
      ne        !=  ~=
      and       &
      or        |
      atan2
      hypot
      max
      min
      mod
      rem
      xor

    additionally, since the A op= B assignment operators are equivalent
    to A = A op B, the following operators are also affected:

      +=  -=  .+=  .-=  .*=  ./=  .\=  .^=  .**=  &=  |=

    See the "Broadcasting" section in the new "Vectorization and Faster
    Code Execution" chapter of the manual for more details.

 ** Octave now features a profiler, thanks to the work of Daniel Kraft
    under the Google Summer of Code mentorship program.  The manual has
    been updated to reflect this addition.  The new user-visible
    functions are profile, profshow, and profexplore.

 ** Overhaul of statistical distribution functions

    Functions now return "single" outputs for inputs of class "single".

    75% reduction in memory usage through use of logical indexing.

    Random sample functions now use the same syntax as rand and accept
    a comma separated list of dimensions or a dimension vector.

    Functions have been made Matlab-compatible with regard to special
    cases (probability on boundaries, probabilities for values outside
    distribution, etc.).  This may cause subtle changes to existing
    scripts.

    negative binomial function has been extended to real, non-integer
    inputs.  The discrete_inv function now returns v(1) for 0 instead of
    NaN.  The nbincdf function has been recoded to use a closed form
    solution with betainc.

 ** strread, textscan, and textread have been completely revamped.

    They now support nearly all Matlab functionality including:

      * Matlab-compatible whitespace and delimiter defaults

      * Matlab-compatible options: 'whitespace', treatasempty', format
        string repeat count, user-specified comment style, uneven-length
        output arrays, %n and %u conversion specifiers (provisionally)

 ** All .m string functions have been modified for better performance or
    greater Matlab compatibility.  Performance gains of 15X-30X have
    been demonstrated.  Operations on cell array of strings no longer pay
    quite as high a penalty as those on 2-D character arrays.

      deblank:  Now requires character or cellstr input.

      strtrim:  Now requires character or cellstr input.
                No longer trims nulls ("\0") from string for Matlab
                compatibility.

      strmatch: Follows documentation precisely and ignores trailing spaces
                in pattern and in string.  Note that this is documented
                Matlab behavior but the implementation apparently does
                not always follow it.

      substr:   Now possible to specify a negative LEN option which
                extracts to within LEN of the end of the string.

      strtok:   Now accepts cellstr input.

      base2dec, bin2dec, hex2dec:
                Now accept cellstr inputs.

      dec2base, dec2bin, dec2hex:
                Now accept cellstr inputs.

      index, rindex:
                Now accept 2-D character array input.

      strsplit: Now accepts 2-D character array input.

 ** Geometry functions derived from Qhull (convhull, delaunay, voronoi)
    have been revamped.  The options passed to the underlying qhull
    command have been changed for better results or for Matlab
    compatibility.

      convhull: Default options are "Qt" for 2D, 3D, 4D inputs
                Default options are "Qt Qx" for 5D and higher

      delaunay: Default options are "Qt Qbb Qc Qz" for 2D and 3D inputs
                Default options are "Qt Qbb Qc Qx" for 4D and higher

      voronoi:  No default arguments

 ** Date/Time functions updated.  Millisecond support with FFF format
    string now supported.

    datestr: Numerical formats 21, 22, 29 changed to match Matlab.
             Now accepts cellstr input.

 ** The following warning IDs have been removed:

      Octave:associativity-change
      Octave:complex-cmp-ops
      Octave:empty-list-elements
      Octave:fortran-indexing
      Octave:precedence-change

 ** The warning ID Octave:string-concat has been renamed to
    Octave:mixed-string-concat.

 ** Octave now includes the following Matlab-compatible preference
    functions:

      addpref  getpref  ispref  rmpref  setpref

 ** The following Matlab-compatible handle graphics functions have been
    added:

      guidata         uipanel        uitoolbar
      guihandles      uipushtool     uiwait
      uicontextmenu   uiresume       waitfor
      uicontrol       uitoggletool

    The uiXXX functions above are experimental.

    Except for uiwait and uiresume, the uiXXX functions are not
    supported with the FLTK+OpenGL graphics toolkit.

    The gnuplot graphics toolkit does not support any of the uiXXX
    functions nor the waitfor function.

 ** New keyword parfor (parallel for loop) is now recognized as a valid
    keyword.  Implementation, however, is still mapped to an ordinary
    for loop.

 ** Other new functions added in 3.6.0:

      bicg                       nthargout                   usejava
      is_dq_string               narginchk                   waitbar
      is_sq_string               python                      zscore
      is_function_handle         register_graphics_toolkit
      loaded_graphics_toolkits   recycle

 ** Deprecated functions.

    The following functions were deprecated in Octave 3.2 and have been
    removed from Octave 3.6.

      create_set          spcholinv    splu
      dmult               spcumprod    spmax
      iscommand           spcumsum     spmin
      israwcommand        spdet        spprod
      lchol               spdiag       spqr
      loadimage           spfind       spsum
      mark_as_command     sphcat       spsumsq
      mark_as_rawcommand  spinv        spvcat
      spatan2             spkron       str2mat
      spchol              splchol      unmark_command
      spchol2inv          split        unmark_rawcommand

    The following functions have been deprecated in Octave 3.6 and will
    be removed from Octave 3.10 (or whatever version is the second major
    release after 3.6):

      cut                is_duplicate_entry
      cor                polyderiv
      corrcoef           shell_cmd
      __error_text__     studentize
      error_text         sylvester_matrix

 ** The following functions have been modified for Matlab compatibility:

      randperm
2012-07-05 19:18:29 +00:00
drochner
712f5743e6 update to 6.4.2.1
This switches to the gnome-3.4 branch
2012-07-04 20:01:58 +00:00
joerg
dc8524259a Fix main when using C++ test cases 2012-07-03 17:42:48 +00:00
joerg
99a1942248 Fix template usage. 2012-07-03 17:42:05 +00:00
adam
9fde0ec108 Revbump after updating boost 2012-07-02 13:37:35 +00:00
dholland
f91b8b8497 Add desktopdb.mk and bump PKGREVISION for 118 packages as reported by
pkglint. If any of these are wrong for some reason, please revert/adjust.
2012-07-01 19:05:10 +00:00
asau
73ceaf0866 Update to Mathomatic 16.0.0
CHANGES MADE TO MATHOMATIC 15.8.5 TO BRING IT UP TO THE NEXT VERSION:

Code, documentation, and user interface improvements, corrections,
and cleanup.  Fixed many possible bugs, some where the wrong level global
expression buffers were being used.

05/26/12 - Push command improved with better responses.  Same functionality.

           In the source code, tune-up variable integer_coefficients was
           renamed to "factor_out_all_numeric_gcds", because Mathomatic always
           tries to have integer coefficients this year, but it doesn't always
           factor out all numeric GCDs unless factor_out_all_numeric_gcds
           is true, or the factor command is used.  The default is false,
           for more orderly and revealing coefficients.
           Of course, much of what Mathomatic does is
           try to improve readability and simplicity.
           There is no need to set this variable, just use the factor command.

05/27/12 - Removed C declarations for memmove(3), the defaults in
           /usr/include/string.h are probably better and what's wanted in
           every case.  It would be very odd if this didn't work 100%.

05/28/12 - readline history file renamed to "~/.matho_history" from
           "~/.mathomatic_history".  File name was too long for CygWin.
           Tested thoroughly compiling, installing, and running under
           the latest CygWin.  Works fine, except for rlwrap.  "rlwrap -v"
           returns with error, a successful return is how I test for its
           existence.

           Made output redirection work with the "list primes" command.

06/02/12 - Cleanup of Linux, Mac OS X, and Windows binary distributions.
           The Windows binary distribution now includes m4 scripts, in case
           CygWin is installed, allowing use of m4 Mathomatic in Windows.

           Fixed MinGW version to not output two carriage returns at the
           end of every line of list command output.

06/03/12 - If compiled with -DSHOW_RESOURCES, will give total CPU usage and
           RSS size in the "version status" command.  Requires OS support.
           Some OSes will show even more information.  Uses getrusage(2).

06/04/12 - Allow breaking out of user line-input requests with Control-C.
           Still have to hit the Enter key, but the command will be aborted.

06/05/12 - Added "lib/example.c", the simplest example yet of Symbolic Math
           Library usage.  Compile with "compile.testmain" or practice
           compiling it by hand.

           The simplify command now returns the number of expressions
           simplified, so you can tell if "simplify sign" worked.

           The solve command can now require verification, by using the
           "verifiable" option, instead of the "verify" option.  This causes
           unverifiable solves to return with failure, aborting any reads.

           Fixed missing code in internal C function free_mem().
           I don't think it was used by anyone.  A call to free_mem() is
           now made on exit, if Mathomatic is compiled with -DVALGRIND, to
           check for memory leaks.

06/08/12 - Added polynomial factoring to GCD result of divide command.
           It is always handy to know what the factors are of the GCD.

           Allow comma (,) at the end of most input lines.  A comma now
           terminates an expression instead of giving an error.  Allow
           commas all over the place, where-ever logical, in any
           Mathomatic command-line.  They are used as separators,
           more so than spaces.

06/09/12 - Cleaned up variables command to always allow the count parameter,
           and to line up everything with 8 character wide tabs.

           Added ability to place the definite integration bounds on the
           integrate command-line, just like the nintegrate command.

           Added titles to most help command pages.

06/10/12 - The "factor number" command works much nicer now, and allows comma
           separators and zero.

           Developers should note that to remain the same as past versions,
           HTML mode needs to be "set html all" to output HTML at all times
           in both the application and the symbolic math library, even when
           redirecting output.  Now setting all HTML mode with
           "make pdfsheet".  "set html" only outputs HTML code to standard
           output.

06/13/12 - Added warning in "misc/known_bugs.txt" about LLVM/Clang optimizer
           failure when compiling Mathomatic with LLVM/Clang instead of gcc.
           If you enable any optimization at all, entering (32^.5) and the
           like will hang Mathomatic, putting it in an endless loop.
           So when compiling Mathomatic with LLVM/Clang, always disable
           optimization with "-O0", so that it will then run and pass
           all of the tests in 1 second and not be infinitely slower.
           Mathomatic will hang during "make test"
           if compiled with optimization enabled using LLVM.  Mathomatic is
           not noticeably slower when compiled without any optimization,
           because everything is memmove(3)s and floating point arithmetic.

06/15/12 - Added repeat option to replace command.  A handy feature that
           lets you try plugging different values into an equation.  It
           checks if the result is an identity, too.

06/18/12 - The version command now has a "status" option, which behaves
           as before, displaying all version and status information.
           The version command by itself now only displays the Mathomatic
           version number.  Running "mathomatic -v" is now a good way of
           testing for the existence of Mathomatic on your system, only
           outputting the version number to standard output and exiting
           successfully.

06/19/12 - Removed the parenthesizing of variable names in all messages.

           If the current expression is a non-equation, then prefixing or
           suffixing an expression with "=" will add that expression as
           the other equation side now, conveniently making it an equation
           you can solve.

06/22/12 - Added equation number ranges option to tally command.  Type
           "tally -" to resume if the current equation hasn't changed.  Type
           "tally all" to add together all stored expressions as the starting
           value.  Specifying equation numbers or ranges will silently add
           them, then prompt for the next things to add.  The average option
           now displays the number of entries (count) each time the average
           is displayed.  When you exit by typing an empty line, the current
           total is saved in the next available equation space and made
           current, so it can easily resume with "tally -".  "-" by itself
           always means the current equation.

           gnuplot now works with MS-Windows better.  Tried running a Windows
           gnuplot test from scratch, without Cygwin, and it didn't work.
           It should be mostly fixed now.  So go ahead and try plotting
           in Windows, after downloading and installing gnuplot.  Please
           complain if any problems.

           Fixed a long-running problem with the plot command, by asking the
           user questions, only if needed, so that gnuplot will not give an
           error if you are multi-expression plotting.

06/23/12 - Moved load_rc() out of main.c so that the Mathomatic startup set
           options file can be loaded by the library, if the developer wishes.
           Changed a few things so that "set save" and "set no save" will work
           if load_rc() is called beforehand.

06/25/12 - The simplify command has been fixed for optimal integer coefficient
           factoring results and so "180*(sides-2)" simplification works
           nicely, by keeping the result the same as the start by
           factoring out rational constants greater than 1 (this is new),
           along with less than 1,
           if the coefficients remain or become integers.

           Many things cleaned up and finished, like the official
           documentation, the "code integer" command, and "examples/fact.c".

06/27/12 - Allow an ASCII string after the "set save" command, to save only
           that string in ~/.mathomaticrc, so that string, which should be set
           options, is for every Mathomatic session to start with.
           For example, "set save bold color" will start out Mathomatic in
           bold color mode every time.  Enter "set no save" to remove.
           "set save" by itself saves all of the current set options for every
           future session.

Mathomatic version 16.0.0 released Friday 06/29/12.
2012-07-01 08:02:04 +00:00
dholland
523eb32ad6 This blows up on python25 and it doesn't really seem like it's worth
trying to figure out what's wrong, so just mark it INCOMPATIBLE.
2012-06-16 05:40:05 +00:00
markd
e43be93ef2 Update to KDE SC 4.8.4
Bug fixes.
2012-06-16 04:45:28 +00:00
taca
8be70336fa Update ruby-spreadsheet to 0.7.2.
=== 0.7.2 / 14.06.2012

* many changes by Mina Naguib <mina.git@naguib.ca>
* see git log for full details
2012-06-15 13:55:09 +00:00
asau
953f3dcd69 Provide TEST_TARGET. 2012-06-14 08:26:14 +00:00
asau
f0c3d8af40 The package doesn't install HTML files, remove unneeded patch. 2012-06-14 08:24:14 +00:00
sbd
21792a9296 Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
asau
aa8cd8f145 PCRE is no longer optional. 2012-06-06 23:14:10 +00:00
obache
da6442717f Update py-gmpy to 1.15.
Based on PR 46507 by Wen Heping.
* let to register egg-info.
* all files in distfile are not DOS style EOL oter than Windows related files,
  so remove extract option for ZIP.

GMPY 1.15 is a bug fix release. The following bugs were fixed:
* Reference counting leak in divmod(x,0).
* Fatal crash in remove(x,1).
* Discontinue use of custom memory allocator. (Fixes compatibility with Sage.)
* Allow up to base-62 integer conversion.
2012-06-02 13:52:06 +00:00
obache
0e2f0c9d23 remove buildlink3.mk, this package have no contents to buildlink. 2012-06-02 13:38:56 +00:00
obache
f57e210a7c Update py-networkx to 1.6.
Based on PR 46506 by Wen Heping.
* let to register egg-info.
* marked as incompatible with python 2.5, as new features in 1.3.
  but not marked as compatible with 3.x, one file will not be compiled well
  both 3.1 and 3.2.

Lease Log:

Networkx-1.6

Release date: 20 November 2011

Highlights

New functions for finding articulation points, generating random bipartite
graphs, constructing adjacency matrix representations, forming graph products,
computing assortativity coefficients, measuring subgraph centrality and
communicability, finding k-clique communities, and writing JSON format output.

New examples for drawing with D3 Javascript library, and ordering matrices with
the Cuthill-McKee algorithm.

More memory efficient implementation of current-flow betweenness and new
approximation algorithms for current-flow betweenness and shortest-path
betweenness.

Simplified handling of "weight" attributes for algorithms that use
weights/costs/values. See Version 1.6 notes and API changes.

Updated all code to work with the PyPy Python implementation http://pypy.org
which produces faster performance on many algorithms.

For full details of the tickets closed for this release (added features and bug
fixes) see: https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.6

API Changes

See Version 1.6 notes and API changes:
	http://networkx.lanl.gov/reference/api_1.6.html

Networkx-1.5

Release date: 4 June 2011

For full details of the tickets closed for this release see: https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.5

Highlights

New features

	* Algorithms for generating and analyzing bipartite graphs
	* Maximal independent set algorithm
	* Erd?s-Gallai graphical degree sequence test
	* Negative edge cycle test
	* More memory efficient Dijkstra path length with cutoff parameter
	* Weighted clustering coefficient
	* Read and write version 1.2 of GEXF reader format
	* Neighbor degree correlation that handle subsets of nodes
	* In-place node relabeling
	* Many `weighted' graph algorithms now take optional parameter to use
	  specified edge attribute (default=`weight') (ticket 509)
	* Test for distance regular graphs
	* Fast directed Erd?s-Renyi graph generator
	* Fast expected degree graph generator
	* Navigable small world generator
	* Waxman model generator
	* Geographical threshold graph generator
	* Karate Club, Florentine Families, and Davis' Women's Club graphs

API Changes
See Version 1.5 notes and API changes
	http://networkx.lanl.gov/reference/api_1.5.html

Bug fixes
	* Fix edge handling for multigraphs in networkx/graphviz interface
	  (ticket 507)
	* Update networkx/pydot interface for new versions of pydot
	  (ticket 506), (ticket 535)
	* Fix negative cycle handling in Bellman-Ford (ticket 502)
	* Write more attributes with GraphML and GML formats (ticket 480)
	* Handle white space better in read_edgelist (ticket 513)
	* Better parsing of Pajek format files (ticket 524) (ticket 542)
	* Isolates functions work with directed graphs (ticket 526)
	* Faster conversion to numpy matrices (ticket 529)
	* Add graph[`name'] and use properties to access Graph.name (ticket 544)
	* Topological sort confused None and 0 (ticket 546)
	* GEXF writer mishandled weight=0 (ticket 550)
	* Speedup in SciPy version of PageRank (ticket 554)
	* Numpy PageRank node order incorrect + speedups (ticket 555)

Networkx-1.4

Release date: 23 January 2011

New features
	* k-shell,k-crust,k-corona
	* read GraphML files from yEd
	* read/write GEXF format files
	* find cycles in a directed graph
	* DFS and BFS algorithms
	* chordal graph functions
	* Prim's algorithm for minimum spanning tree
	* r-ary tree generator
	* rich club coefficient
	* NumPy matrix version of Floyd's algorithm for all-pairs shortest path
	* read GIS shapefiles
	* functions to get and set node and edge attributes
	* and more, see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.4

API Changes
	* gnp_random_graph() now takes a directed=True|False keyword instead of
	  create_using
	* gnm_random_graph() now takes a directed=True|False keyword instead of
	  create_using

Bug fixes
	* see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.4

Networkx-1.3

Release date: 28 August 2010

See: https://networkx.lanl.gov/trac/timeline

New features
	* Works with Python versions 2.6, 2.7, 3.1, and 3.2 (but not 2.4 and 2.5).
	* Minimum cost flow algorithms
	* Bellman-Ford shortest paths
	* GraphML reader and writer
	* More exception/error types
	* Updated many tests to unittest style. Run with:
	  "import networkx; networkx.test()" (requires nose testing package)
	* and more, see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.3

API Changes
	* minimum_spanning_tree() now returns a NetworkX Graph (a tree or forest)

Bug fixes
	* see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.3
2012-06-02 13:19:17 +00:00
wiz
990d0f63fd Add an option for psiconv support, and turn it off by default.
Fixes PR 46511 by Nouod de Brouwer (using his patch).
2012-06-02 07:11:09 +00:00
wiz
c71d178e6b Add an option for psiconv support, and turn it off by default.
Fixes PR 46511 by Nouod de Brouwer.

Set LICENSE while here.
2012-06-02 07:10:53 +00:00
wiz
98e0ec6a6c + py-munkres. 2012-05-30 11:05:49 +00:00
wiz
dfa4bc6b1f Initial import of py-munkres-1.0.5.4:
The Munkres module provides an implementation of the Munkres
algorithm (also called the Hungarian algorithm or the Kuhn-Munkres
algorithm), useful for solving the Assignment Problem.

Assignment Problem: Let C be an nxn matrix representing the costs
of each of n workers to perform any of n jobs. The assignment
problem is to assign jobs to workers in a way that minimizes the
total cost. Since each worker can perform only one job and each
job can be assigned to only one worker the assignments represent
an independent set of the matrix C.
2012-05-30 11:05:30 +00:00
cheusov
44858c9817 Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@).
All utilities are installed with a prefix 'g'. Symlinks with original
names are created in ${PREFIX}/gnu/bin.

Add LICENSE.

++pkgrevision
2012-05-29 18:33:34 +00:00
asau
881f14420d + arpack 2012-05-29 16:41:26 +00:00
asau
c0dee90348 Import ARPACK 96 as math/arpack.
Contributed to pkgsrc-wip by Jason Bacon.

ARPACK is a collection of Fortran77 subroutines designed to solve large
scale eigenvalue problems.

The package is designed to compute a few eigenvalues and corresponding
eigenvectors of a general n by n matrix A. It is most appropriate for large
sparse or structured matrices A where structured means that a matrix-vector
product w <- Av requires order n rather than the usual order n**2 floating
point operations. This software is based upon an algorithmic variant of the
Arnoldi process called the Implicitly Restarted Arnoldi Method (IRAM). When
the matrix A is symmetric it reduces to a variant of the Lanczos process
called the Implicitly Restarted Lanczos Method (IRLM). These variants may be
viewed as a synthesis of the Arnoldi/Lanczos process with the Implicitly
Shifted QR technique that is suitable for large scale problems. For many
standard problems, a matrix factorization is not required. Only the action
of the matrix on a vector is needed.  ARPACK software is capable of solving
large scale symmetric, nonsymmetric, and generalized eigenproblems from
significant application areas. The software is designed to compute a few (k)
eigenvalues with user specified features such as those of largest real part
or largest magnitude.  Storage requirements are on the order of n*k locations.
No auxiliary storage is required. A set of Schur basis vectors for the desired
k-dimensional eigen-space is computed which is numerically orthogonal to working
precision. Numerically accurate eigenvectors are available on request.

Important Features:

    o  Reverse Communication Interface.
    o  Single and Double Precision Real Arithmetic Versions for Symmetric,
       Non-symmetric, Standard or Generalized Problems.
    o  Single and Double Precision Complex Arithmetic Versions for Standard
       or Generalized Problems.
    o  Routines for Banded Matrices - Standard or Generalized Problems.
    o  Routines for The Singular Value Decomposition.
    o  Example driver routines that may be used as templates to implement
       numerous Shift-Invert strategies for all problem types, data types
       and precision.
2012-05-29 16:38:01 +00:00
wiz
95e216b064 Update to 2.0.17:
Thiss fixes a compilation issue with aligned_allocator, and a typo
in the ParametrizedLine documentation.
2.0.16:
Fix bug in 3x3 tridiagonlisation (and consequently in 3x3 selfadjoint eigen decomposition).
Fix compilation for new gcc 4.6.
Fix performance regression since 2.0.12: in some matrix-vector product, complex matrix expressions were not pre-evaluated.
Fix documentation of Least-Square.
New feature: support for part<SelfAdjoint>.
Fix bug in SparseLU::setOrderingMethod.
2012-05-29 14:51:42 +00:00
wiz
9455950fc8 Update to 3.3.2:
FFTW 3.3.2

* Removed an archaic stack-alignment hack that was failing with
  gcc-4.7/i386.

* Added stack-alignment hack necessary for gcc on Windows/i386.  We
  will regret this in ten years (see previous change).

* Fix incompatibility with Intel icc which pretends to be gcc
  but does not support quad precision.

* make libfftw{threads,mpi} depend upon libfftw when using libtool;
  this is consistent with most other libraries and simplifies the life
  of various distributors of GNU/Linux.

FFTW 3.3.1

* Changes since 3.3.1-beta1:

  - Reduced planning time in estimate mode for sizes with large
    prime factors.

  - Added AVX autodetection under Visual Studio.  Thanks Carsten
    Steger for submitting the necessary code.

  - Modern Fortran interface now uses a separate fftw3l.f03 interface
    file for the long double interface, which is not supported by
    some Fortran compilers.  Provided new fftw3q.f03 interface file
    to access the quadruple-precision FFTW routines with recent
    versions of gcc/gfortran.

* Added support for the NEON extensions to the ARM ISA.  (Note to beta
  users: an ARM cycle counter is not yet implemented; please contact
  fftw@fftw.org if you know how to do it right.)

* MPI code now compiles even if mpicc is a C++ compiler; thanks to
  Kyle Spyksma for the bug report.
2012-05-29 13:53:29 +00:00
wiz
55594b568e Update to 3.3.2:
FFTW 3.3.2

* Removed an archaic stack-alignment hack that was failing with
  gcc-4.7/i386.

* Added stack-alignment hack necessary for gcc on Windows/i386.  We
  will regret this in ten years (see previous change).

* Fix incompatibility with Intel icc which pretends to be gcc
  but does not support quad precision.

* make libfftw{threads,mpi} depend upon libfftw when using libtool;
  this is consistent with most other libraries and simplifies the life
  of various distributors of GNU/Linux.
2012-05-29 13:40:16 +00:00
asau
186c03f12b Update to Mathomatic 15.8.5
CHANGES MADE TO MATHOMATIC 15.8.4 TO BRING IT UP TO THE NEXT VERSION:

General cleanup.

05/11/12 - Renamed fact(x) function to factorial(x), because Maxima uses
           the function "factorial(x)" and no one uses "fact(x)".  Added
           factorial(x) as a standard function in rmath.  Removed binary
           operator name "mod" from rmath, due to having a different meaning
           in conventional mathematics.  It previously meant the % operator,
           which is a programming language construct and not math.

05/14/12 - Improved user interface of divide command.

05/16/12 - Improved introduction to Mathomatic in "doc/manual.html".

05/17/12 - Made more use of C function !isfinite(double) for better
           reliability.  Checks for infinity and NaN on user input.

05/18/12 - Solve verify now quick simplifies the solve result, so you
           don't have to.  This will result in better verification and
           less chance of oversized expressions.

05/20/12 - Fixed solving bug where it was throwing away absolute values.

           Improved the way Mathomatic looks.

05/21/12 - examples/limits.c is now a highly polished program, LGPL licensed.
           Compile with "./compile.limits".  Tells the integer and float
           C data types, with sizes, characteristics, and verification
           for the current C compiler (cc).

           Display total number of unique solutions stored with
           "simplify sign".

           Fixed several errors in the simplify command documentation in the
           Mathomatic Command Reference.

05/22/12 - Fixed simplify command to simplify (x^2 - 1)^4/(x + 1)^2 properly,
           by factoring repeated factor polynomials at the very end.

           Fixed bug in divide command, wasn't calculating the polynomial GCD
           sometimes, etc, because input was not being expanded.  Broken on
           12/14/11, fixed today.

05/23/12 - Fixed limit command to return the original expression when the
           limit variable is not found or the expression contains no
           variables.  A warning is given, telling that this is the case.
           Thanks to Parag Magunia for indicating that this was a bug.
           Previously these cases only returned with an error message.

           "tests/limits.in" limit command regression tests checked and
           re-added to the main tests.  All still works the same as when
           these limit command regression tests were removed long ago.

05/24/12 - Cleanup, and remove "examples/c", replaced with
           "examples/compile.limits" and "examples/compile.roots".

Mathomatic version 15.8.5 released Friday 05/25/12.

CHANGES MADE TO MATHOMATIC 15.8.3 TO BRING IT UP TO THE NEXT VERSION:

The version command now displays the last main prompt return value, and
the number of allocated equation spaces.

04/29/12 - Added simplifying trig identities to the tests.  Discovered
           "solve 0" doesn't work anymore, use "solve for 0" instead.
           "solve 0" will be fixed and enhanced shortly.

04/30/12 - "solve 0" and "solve verify 0" work now.  "solve verify 0"
           will solve for zero and tell you if the equation is an identity
           or not, while "solve 0" simply solves the current equation for
           zero.  "solve all verify 0" will verify that all entered equations
           are identities.

           With the roots command, the "Inverse check" value is not
           displayed unless debugging is enabled now.

           The iterative calculate command mode now always tells the
           number of completed feedback iterations.
           It was not apparent before.

           Documented and ignore pause command with demo mode now,
           instead of html mode.
           Demo mode is specified with -d, html mode with -x.

05/02/12 - Mathomatic now proudly displays when verifying a solve operation.
           Too many UI improvements to mention, all relatively minor.

05/03/12 - Added "copy select" option to the copy command, which selects
           the first created copy, making it the current equation, rather
           than not updating the current equation.

05/04/12 - Ran valgrind on the symbolic math library executable testmain,
           after running all the tests, no memory
           leaks were found at all!  I was surprised!  Now I get to pat
           myself on the back!  I will make another release soon.

05/05/12 - "display simple" is now allowed, in addition to "display mixed",
           to display simple or mixed fractions as desired, regardless of
           the default.

           "set finance" option removed, replace with "set fixed" option.
           Works similarly, except now you can do "set fixed_point=0" to have
           integer-only output.
           "set no fixed" or "set fixed -1" turns off fixed-point
           mode, returning you to true floating-point mode.

05/06/12 - Added more integer factoring debugging code.  It's a shame that
           Mathomatic only does double precision floating point arithmetic.

           Made "set no autodelete" the default.  Numeric expressions will
           not be deleted.  "set auto" leaves "autodelete" alone now.

05/07/12 - real and imaginary commands now append "_real" or "_imag" to the
           solved for variable name now, if a solved equation.  This is for
           clarification and ease of use.

05/08/12 - Improved "misc/limits.c" and added GNU LGPL license preamble.
           Later moved to directory examples.

           -d demo mode now allows using the calculate command without
           prompting for the values of any of the variables.  This is so the
           calculate command can be used with the online versions of
           Mathomatic.

05/09/12 - Moved all worthy example source code from directory misc to
           directory examples, so they can be included in the binary
           distributions.  Moved and now available are limits.c, roots.c,
           and testprimes.

           Improved/shortened the eliminate command messages and made the
           "using" syntax consistent.

           Need "set debug -2" to suppress everything now, including warnings.
           "set debug -1" only suppresses helpful messages now, warnings will
           get through.  Warnings are usually rather important.

Mathomatic version 15.8.4 released Thursday 05/10/12.

CHANGES MADE TO MATHOMATIC 15.8.2 TO BRING IT UP TO THE NEXT VERSION:

Code cleanup.

03/27/12 - Added simplification of "tests/trig.in" and "tests/hypertrig.in"
           to the regression tests.

04/02/12 - Added ability to create all non-re-entrant code, so that the Apple
           app store won't complain.  The line containing "_REENTRANT" in
           "includes.h" has been commented out, so nothing special needs to be
           done, when compiling for iOS.

04/07/12 - Added ability to make help command text paragraphs all one long
           line, instead of always expecting an 80 column or higher display.
           Useful for 40 column displays for example, as long as the display
           wraps at 40 columns, the output should look OK.  Better than it
           did, anyways.  Tables and such are preserved.  See the beginning
           of "help.c".

04/10/12 - Fixed bug failing to run gnuplot with Mathomatic compiled with
           MINGW. This only affects the MS-Windows version.  So if you have
           downloaded gnuplot under MS-Windows, the plot command should work
           the same as in all other operating systems, now.  Be sure and name
           it gnuplot.exe and have it in an executable directory in your PATH.
           This fixed bug is thanks to Tom Sturgeon for bringing this
           error to my attention.  This gnuplot fix will be included in the
           next release, version 15.8.3, and is now in the development
           version.  The problem was caused by differences between the Unix
           echo command and the Windows echo command.

04/12/12 - Comparing expressions with the compare command will now tell if
           one expression is the negation (times -1) of the other.

04/22/12 - Added the HTML tidy command after rman, so that the HTML errors
           created by rman are all fixed.

           Added and documented matho_clear(3) to Symbolic Math Library,
           replaces clear_all().  Simply rename all occurrences of
           clear_all() in your code that uses the library with
           matho_clear().

04/23/12 - Improved debugging code and error messages.

04/25/12 - The previous autocalc result is erased every time autocalc is
           used, unless "set no autodelete" was done.  This is done in case
           you would like to keep every calculation you made stored in an
           equation space.  The default is the previous behavior:
           "set autodelete", which only keeps one numerical calculation
           in memory.  "autodelete" only means something when "autocalc" is
           on, and since the library has no calculate command, this is not
           available in the symbolic math library.

04/27/12 - Cleanup of equation space selecting, shelling out with !, etc.
           In the Mathomatic application, everything is now flushed before
           user input (with fflush(NULL)).  fflush(NULL) is not used at all
           anymore in the symbolic math library.

Mathomatic version 15.8.3 released Saturday 04/28/12.

CHANGES MADE TO MATHOMATIC 15.8.1 TO BRING IT UP TO THE NEXT VERSION:

Change of 12/18/11 partially undone.  Preventing power collecting
of absolute values doesn't seem necessary anymore, some other
change done recently must have fixed it.
Now power collecting is always done when requested,
fixing a substantial simplification regression that began on 12/18/11.

03/13/12 - Small fix to main makefile.  "mandir" and "docdir" no longer depend
           on "datadir".

03/14/12 - Small fix to simplification.  Any absolute value (such as
           |x*y| = ((x*y)^2)^.5) is now not ever power expanded
           (to (x^2)^.5*(y^2)^.5 or (x*x*y*y)^.5), so some results are
           simpler, like simplifying |x^2-x|.

03/23/12 - A change to the matho script makes GNU m4 no longer quiet
           about any warnings or errors, when running m4 Mathomatic.

Mathomatic version 15.8.2 released Saturday 03/24/12.
2012-05-29 13:23:49 +00:00
marino
e97c419033 math/R-wle: Add gettext-lib buildlink3 2012-05-26 14:38:38 +00:00
marino
81eae99561 math/R-circular: Add gettext-lib buildlink3
Yes, it's needed.  During installation on DragonFly:
distance.c: error libintl.h: No such file or directory.
2012-05-21 14:57:31 +00:00
reed
7afd4f1544 To build it needs at least libgsf 1.14.18
Package revision not bumped since no package with older version possible.0
2012-05-15 03:45:22 +00:00
dholland
f4ad6218eb Build fix for new glib2. 2012-05-10 07:50:11 +00:00
obache
1dd70837f4 === 0.7.1 / 08.05.2012
* Author: Artem Ignatiev <zazubrik@gmail.com>
* remove require and rake altogether
* gem build and rake gem both work fine without those requires,
* and requiring 'rake' broke bundler
* add rake as development dependency
* Somehow it broken rake on my other project

=== 0.7.0 / 07.05.2012

* Author: Artem Ignatiev <zazubrik@gmail.com>
* use both ruby 1.8 and 1.9 compatible way of getting character code when hashing
* Fix syntax for ruby-1.9
* return gemspec so that bundler can find it
  When bundler loads gemspec, it evaluates it, and if the return value is
  not a gem specification built, refuses to load the gem.
* Testing worksheet protection
2012-05-08 09:37:51 +00:00
dholland
6d31fbdd1d Fix fpos_t configure test, allowing this to build on netbsd-6.
PR 46412.

XXX: I'm not convinced the results will actually *work*. If anyone
XXX: knows how to check this, please do.
2012-05-07 19:57:17 +00:00