pkgsrc/math
wiz 8fbd04e59c 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
..
aamath Don't use VLAs of non-POD types. 2013-03-24 16:52:35 +00:00
abs "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
admesh "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
algae "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
analitza Update to KDE SC 4.10.3 2013-05-21 12:49:28 +00:00
antixls "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
aribas "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
arpack Revert pkglint-induced nonsense. 2013-04-08 18:29:37 +00:00
bc Resolves: 2013-04-06 20:27:16 +00:00
blas "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
blitz++ Resolves: 2013-04-06 20:27:16 +00:00
calc Resolves: 2013-04-06 20:27:16 +00:00
calcoo Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
cantor Update to KDE SC 4.10.3 2013-05-21 12:49:28 +00:00
capc-calc "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
cgal Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
clisp-pari Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
cln Add a bunch of missing includes hidden by libstdc++ namespace pollution. 2013-05-04 12:59:45 +00:00
cloog Fix cut(1) arguments so that all tests work fine. From Kai-Uwe Eckhardt. 2013-02-20 21:37:13 +00:00
dcdflib.c "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
dcdflib.f "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
dfftpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
dieharder "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
djbfft "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
eigen2 Revert pkglint-induced nonsense. 2013-04-08 18:29:37 +00:00
eigen3 Revert pkglint-induced nonsense. 2013-04-08 18:29:37 +00:00
eispack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ess Resolves: 2013-04-06 20:27:16 +00:00
eukleides "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
euler Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
extcalc "Definition of USE_DIRS is deprecated. You can just remove it." 2013-04-06 03:54:38 +00:00
fftpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
fftw Changes 3.3.3: 2012-11-26 17:36:50 +00:00
fftw2 Resolves: 2013-04-06 20:27:16 +00:00
fftwf Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
fgmp "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
fityk Avoid conflict with std::is_function. Add some missing const and 2013-04-30 22:25:39 +00:00
fricas Update to FriCAS 1.2.0 2013-05-19 10:01:00 +00:00
galculator update to 2.1.2 2013-05-03 16:40:02 +00:00
gap "Packages that install libtool libraries should define USE_LIBTOOL." 2013-04-06 14:22:39 +00:00
gcalctool Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
gcalctool-gtk3 Update gcalctool-gtk3 to 6.6.2 2013-05-18 23:12:39 +00:00
geg "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
genius update to 1.0.16 2013-03-15 19:10:39 +00:00
glpk GLPK 4.49 (release date: Apr 16, 2013) 2013-04-16 14:15:14 +00:00
gnumeric Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
gnumeric110 Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
gnumeric112 Remove deprecated MIME type from .desktop file. 2013-05-06 11:06:34 +00:00
gp-autpgrp "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-factint "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-fplsa "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-grape "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-grpconst "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-lag "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
grace Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
graphopt "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
grpn Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
gsl "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gtklife Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
harminv "Please write NetBSD.org instead of netbsd.org" 2013-04-06 13:09:24 +00:00
heirloom-factor DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-units DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
isl Changes 0.11.2: 2013-04-16 06:47:15 +00:00
itpp Adjust HOMEPAGE, SourceForge stopped hosting WordPress. 2012-09-13 13:23:33 +00:00
kalgebra Update to KDE SC 4.10.3 2013-05-21 12:49:28 +00:00
kcalc Update to KDE SC 4.10.3 2013-05-21 12:49:28 +00:00
kseg Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
lapack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
libffm "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
libint Revert. "GBS" is not acceptable abbreviation here. 2013-04-07 20:38:36 +00:00
libmatheval add test target 2012-09-13 17:14:36 +00:00
linpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
lp_solve "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ltm "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
mapm Adjust HOMEPAGE to point to package's home page directly. 2012-09-13 16:56:17 +00:00
mathomatic CHANGES MADE TO MATHOMATIC 16.0.3 TO BRING IT UP TO THE NEXT VERSION: 2012-09-13 09:13:09 +00:00
maxima Update to Maxima 5.29.1 2012-12-17 21:35:11 +00:00
mcsim Resolves: 2013-04-06 20:27:16 +00:00
meschach "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
metis Update metis to 4.0.3. 2013-05-16 12:37:35 +00:00
minpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
mpcomplex Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
mpfr update to 3.1.2 2013-03-15 19:09:06 +00:00
mprime-bin "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
mtl Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
muparser 'Please use ${ECHO} instead of "echo".' 2013-04-06 14:58:18 +00:00
newmat "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
nickle Update to 2.77: 2013-05-26 20:14:48 +00:00
ntl Update math/ntl to version 6.0.0 2013-05-18 18:32:19 +00:00
octave "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
octave-forge Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
odepack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
openaxiom recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
openfst Prefer C++11 interfaces over tr1. 2013-05-06 14:52:54 +00:00
ordCalc Fix reference type to match argument from flex. Add missing include. 2013-05-23 18:41:21 +00:00
otter "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
p5-Excel-Template Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Excel-Template-Plus Fixes: 2013-04-06 03:45:05 +00:00
p5-Math-Base36 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Base85 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-BaseCnv Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Bezier Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-BigInt-GMP Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-BigInt-Pari Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-BigInteger Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-FFT Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-GMP Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Interpolate Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-MatrixReal Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Pari Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Permute-List Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Prime-Util Update to 0.15 2012-12-10 13:35:45 +00:00
p5-Math-Random Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Random-MT Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Random-MT-Auto Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-Random-MT-Perl Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
p5-Math-Round Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Math-VecStat Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Number-Compare Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Number-Latin Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Roman Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Set-Crontab Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Set-Infinite Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Spreadsheet-ParseExcel Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Spreadsheet-Read Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Spreadsheet-ReadSXC Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Spreadsheet-WriteExcel Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Spreadsheet-XLSX Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Statistics-Descriptive Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Test-Number-Delta Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
pari Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
pari-galdata Update to 2.2. Changes not documented. 2012-12-12 12:45:18 +00:00
pear-Math_BigInteger Add pear-Math_BigInteger version 1.0.0. 2013-03-16 04:04:30 +00:00
pear-Numbers_Roman "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
pear-Numbers_Words "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
php-bcmath "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ppl Fix build with gmp-5.1.0. 2013-02-09 21:29:24 +00:00
prng Fix inline misuse. 2012-11-01 19:42:01 +00:00
pspp Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
py-ephem "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-fpconst "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-gmpy "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-mpmath "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-munkres "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-networkx Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-numarray "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-Numeric "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-numexpr "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-numpy Changes 1.7.1: 2013-05-20 05:59:58 +00:00
py-pandas Update py-pandas to 0.11.0. 2013-05-16 23:10:16 +00:00
py-pytables Update py-pytables to 2.4.0. 2013-05-14 09:57:58 +00:00
py-roman "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-rpy "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-Scientific "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-Scientific-doc "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-scipy Update to 0.12.0 2013-04-14 00:28:53 +00:00
py-sympy Update to 0.7.2 2012-12-02 12:33:23 +00:00
qalculate recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
qalculate-bases Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
qalculate-currency Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
qalculate-gtk Add const for the compare operator. 2013-05-12 19:16:01 +00:00
qalculate-kde Add const for the compare operator. 2013-05-12 19:16:01 +00:00
qalculate-units Add const for the compare operator. 2013-05-12 19:16:01 +00:00
qhull "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
quadpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
R Use -Wl,-export-dynamic, not plain -export-dynamic. Fix powl and related 2013-05-05 14:57:27 +00:00
R-abind Update to abind v1.4-0, add LICENSE and regularize package files. 2012-04-15 14:55:50 +00:00
R-akima Update to reflect license restrictions on commercial redistribution. 2012-04-15 21:58:24 +00:00
R-bitops Add bitops R module, version 1.0-4.1. 2011-06-14 21:28:50 +00:00
R-car Update to car v2.0-12 and add LICENSE. 2012-04-15 15:15:48 +00:00
R-CGIwithR For all packages include ghostscript.buildlink3.mk: 2013-04-25 03:53:11 +00:00
R-chron Update to chron v2.3-42, add LICENSE and update MAINTAINER. 2012-04-15 15:18:34 +00:00
R-circular Mark packages with no staged installation support explicitly (PKG_DESTDIR_SUPPORT=none). 2012-08-14 17:07:55 +00:00
R-classInt Update to classInt v0.1-17, add LICENSE and regularize package files. 2012-04-15 16:00:01 +00:00
R-clim.pact Update to clim.pact v2.3-10, add LICENSE and regularize package files. 2012-04-15 16:15:31 +00:00
R-combinat Add a LICENSE and regularize the package files. 2012-04-15 13:16:35 +00:00
R-DAAG Update to DAAG v1.12 and regularize the package files. 2012-04-15 13:33:06 +00:00
R-date Update to date v1.2-32, add LICENSE and update MAINTAINER. 2012-04-15 15:22:37 +00:00
R-DBI Import R DBI v0.2-5. 2012-04-15 17:54:23 +00:00
R-e1071 Update to e1071 v1.6, add LICENSE and regularize package files. 2012-04-15 15:25:09 +00:00
R-gdata Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
R-genetics Update to 1.3.8 2013-01-24 02:24:15 +00:00
R-geoR Fixes: 2013-04-06 03:45:05 +00:00
R-geoRglm Import of geoRglm v0.9-2. 2012-04-15 22:14:29 +00:00
R-GRASS
R-gstat Update to 1.0.15 2013-01-24 01:51:13 +00:00
R-gtools Update to gtools v2.6.2, add LICENSE and regularize package files. 2012-04-15 15:26:35 +00:00
R-httpRequest Update MAINTAINER and add LICENSE. 2012-04-15 13:09:40 +00:00
R-hwde Update to hwde v0.62, add LICENSE and regularize package files. 2012-04-15 15:28:51 +00:00
R-intervals Import R-intervals version 0.13.3 2013-01-24 01:26:22 +00:00
R-ISwR Update to ISwR v2.0-6, add LICENSE and regularize package files. 2012-04-15 14:45:35 +00:00
R-lmm Update to lmm v0.5 and regularize the package files. 2012-04-15 13:46:13 +00:00
R-mapproj Update to mapproj v1.1-8.3, add LICENSE and update MAINTAINER. 2012-04-15 16:35:01 +00:00
R-maps Update to maps v2.2-5, add LICENSE and update MAINTAINER. 2012-04-15 15:30:55 +00:00
R-mvtnorm Update to mvtnorm v0.9-9992, add LICENSE and regularize package files. 2012-04-15 15:33:38 +00:00
R-ncdf Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
R-PHYLOGR Update to PHYLOGR v1.0.7, add LICENSE and regularize package files. 2012-04-15 14:48:26 +00:00
R-pixmap Update to pixmap v0.4-11, add LICENSE and update MAINTAINER. 2012-04-15 15:38:14 +00:00
R-R2HTML Update to R2HTML v2.2, add LICENSE and regularize package files. 2012-04-15 14:51:05 +00:00
R-RandomFields Initial import of package. 2012-04-01 17:46:27 +00:00
R-randomForest Update to 4.6.7 2012-12-17 15:04:19 +00:00
R-RArcInfo Update to RArcInfo v0.4-12, added LICENSE and regularized package files. 2012-04-15 16:57:19 +00:00
R-Rcmdr Update to Rcmdr v1.8-4, add LICENSE and update MAINTAINER. 2012-04-15 15:49:00 +00:00
R-RColorBrewer Import of RColorBrewer v1.0-5. 2012-04-15 16:43:47 +00:00
R-RPostgreSQL Bump PKGREVISION for change of PostgreSQL default version to 9.1. 2012-08-05 10:02:09 +00:00
R-sgeostat Update to sgeostat v1.0-24, add LICENSE and regularize package files. 2012-04-15 15:43:26 +00:00
R-shapefiles Add a LICENSE and regularize the Makefile format. 2012-04-15 13:13:17 +00:00
R-sp Update to version 0.9-98 of the R sp package. Cleanup of DESCR and 2012-04-01 18:05:34 +00:00
R-spacetime Update to 1.0.3 2013-01-24 01:40:57 +00:00
R-splancs Initial import of the R-splancs package. 2012-04-01 17:57:21 +00:00
R-statmod Update to 1.4.16 2012-11-30 13:55:48 +00:00
R-wle Update to 0.9.7 2012-11-30 13:06:54 +00:00
R-XML Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
R-xts Fixes: 2013-04-06 03:45:05 +00:00
R-zoo Update to 1.7.9 2012-11-29 08:09:54 +00:00
randlib "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ruby-gsl Add ruby-gsl 1.15.3 which is latest version on rubygems.org. 2013-03-11 12:28:46 +00:00
ruby-narray Add ruby-narray package version 0.6.0.8. 2013-03-11 09:27:27 +00:00
ruby-spreadsheet Update ruby-spreadsheet to 0.8.5. 2013-04-25 11:07:56 +00:00
sc "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
scilab Revision bump associated with the update of lang/ocaml to version 4. 2012-10-08 15:18:20 +00:00
slatec "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
snns Update to SNNS 4.3 2012-09-13 21:43:08 +00:00
speedcrunch Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
statist "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
superlu 'You can use "foo" instead of "${WRKSRC}/foo".' 2013-04-06 15:46:33 +00:00
tasp-vsipl "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
teapot Update to Teapot 2.3.0 2012-09-13 22:29:09 +00:00
tex-fp
tex-fp-doc
tex-kastrup
tex-kastrup-doc
texdrive Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
TinySVM "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
tochnog "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
udunits Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
units Add PKGGNUDIR support. 2012-12-06 11:38:19 +00:00
vista "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
xeukleides "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
xfractint Don't conflict with libm. 2013-01-11 13:29:34 +00:00
xgap "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
xldlas Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
xlife Fix missing includes. Add missing value in return. 2012-10-26 20:39:57 +00:00
xlispstat Use more void. 2012-11-19 02:56:44 +00:00
xmgr Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
xylib Use <memory> for libc++. 2013-04-30 22:26:29 +00:00
yacas Can't use const with non-default constructor. 2012-11-23 12:11:00 +00:00
yorick Resolves: 2013-04-06 20:27:16 +00:00
Makefile Add eigen3 2013-03-17 19:38:36 +00:00