Commit graph

184691 commits

Author SHA1 Message Date
dholland
cc16b9621f +pokerth-0.9.3 (current version of pokerth in pkgsrc does not build) 2012-04-01 22:02:16 +00:00
ryoon
2900c09496 Fix build on FreeBSD 9.0.
* Patches are borrowed from deve/xulrunner
2012-04-01 20:53:43 +00:00
markd
8612613cfd Rewrite to remove multiple post-wrapper if inet6 not defined.
fix mkspecs/default link to point to correct directory rather than
assuming netbsd-g++
2012-04-01 20:53:16 +00:00
asau
cf008e6397 Ad hoc fix to make OpenAxiom build with CLISP on NetBSD/amd64.
It sounds like COMPILE-FILE is broken in CLISP on NetBSD/amd64.
Silence warnings and suppress redefinition check in order to compile it
without a single warning.
2012-04-01 20:48:39 +00:00
rhaen
859ead242e Updated devel/p5-Module-Pluggable 2012-04-01 20:32:40 +00:00
rhaen
a4611f7d2c Updated to 4.0
Changes:

no changelog provided by upstream
2012-04-01 20:24:44 +00:00
rhaen
8e483e01f6 Updated devel/p5-Log-Log4perl 2012-04-01 20:18:28 +00:00
rhaen
f8910b78c7 Updated to 1.36
Changes:
1.36 (2012/02/11)
   *    (ms) [rt.cpan.org #74833] Reini Urban fixed "defined @array" for
             perl 5.16
   *    (ms) [rt.cpan.org #74836] Cope with Carp's questionable decision to
             add a trailing dot to its messages.

1.35 (2012/01/03)
   *    (ms) [rt.cpan.org #73462] Changed logwarn/logcluck/logcarp/error_warn
             to warn() unconditionally and send the message to log4perl which
             will log it only if the log level conditions are met.
   *    (ms) [rt.cpan.org #73598] Gerda Shank reported test suite problems
             with DBD::CSV-0.26. Bumped up to DBD::CSV-0.33 if installed.

1.34 (2011/11/04)
   *    (ms) InternalDebug now replaces all instances of INTERNAL_DEBUG,
             not just the first one.
   *    (ms) Added test case for get_logger() with a ref() on the actual
             object instead of on a static category. Updated docs.
   *    (ms) %d{e} in PatternLayout now returns epoch seconds
   *    (ms) [RT 72056] Messages blocked by an appender threshold are no
             longer passed on to the L4p::Appender::Buffer as undefined
             entries.

1.33 (2011/05/31)
   *    (ms) [RT 67132] Applied patch by Darin McBride to allow for
             empty syswrite messages in the file appender.
   *    (ms) [RT 68105] Fixed init-hash handling of subroutine references,
             reported by Frew Schmidt.
   *    (ms) Mike Schwern noticed confusing DESTROY calls to clean up loggers
             and appenders (http://stackoverflow.com/questions/5914088 and
             https://github.com/mschilli/log4perl/issues/7), so I put on my
             hazmat suit and cleaned it up. Now perl's garbage collector takes
             care of disposing of logger and appender carcasses.
   *    (ms) Added Log::Log4perl->remove_logger($logger) to remove a logger
             from the system.

1.32 (2011/02/26)
   *    (ms) Fixed %T caller_depth with wrapper_register(), reported
             by David Christensen.
   *    (ms) [RT 63053] Fixed for qw() {} deprecated (Todd Rinaldo)
   *    (ms) [RT 62674] Fixed call to deprecated form of UNIVERSAL::can (Karen
             Etheridge).
   *    (ms) [RT 62896] Log::Log4perl::Appender::ScreenColoredLevels now
             inherits from Log::Log4perl::Appender::Screen and therefore
             supports the utf8 flag.
   *    (ms) [RT 64318] Andrew Sayers provided a better error message for
             "threshold needs to be uppercase".
   *    (ms) CharleyDixon fixed LOGWARN when :no_extra_logdie_message is
             in use to no longer exit().
2012-04-01 20:17:32 +00:00
rhaen
af12e574b8 Updated devel/p5-Test-Deep 2012-04-01 20:14:06 +00:00
rhaen
0242f48eb5 Updated to 0.109
Changes:

UNIVERSAL::isa and UNIVERAL::can are no longer called as functions:
          this was deprecated in UNIVERSAL 1.03. (RT#74760, Karen Etheridge)

          the code that builds the exporter configuration is cleaned up; more
          documentation of how it may change (for the better, without breaking
          stuff) should appear in the near futureChanges:
2012-04-01 20:13:18 +00:00
rhaen
d11d62eae4 Updated databases/p5-DBI 2012-04-01 20:08:59 +00:00
rhaen
ec19edc298 Updated to 1.618
Changes:
=head2 Changes in DBI 1.618 (svn r15170) 25rd February 2012

  Fixed compiler warnings in Driver_xst.h (Martin J. Evans)
  Fixed compiler warning in DBI.xs (H.Merijn Brand)
  Fixed Gofer tests failing on Windows RT74975 (Manoj Kumar)
  Fixed my_ctx compile errors on Windows (Dave Mitchell)

  Significantly optimized method dispatch via cache (Dave Mitchell)
  Significantly optimized DBI internals for threads (Dave Mitchell)
  Xsub to xsub calling optimization now enabled for threaded perls.
  Corrected typo in example in docs (David Precious)
  Added note that calling clone() without an arg may warn in future.
  Minor changes to the install_method() docs in DBI::DBD.
  Updated dbipport.h from Devel::PPPort 3.20

=head2 Changes in DBI 1.617 (svn r15107) 30th January 2012

  NOTE: The officially supported minimum perl version will change
  from perl 5.8.1 (2003) to perl 5.8.3 (2004) in a future release.
  (The last change, from perl 5.6 to 5.8.1, was announced
  in July 2008 and implemented in DBI 1.611 in April 2010.)

  Fixed ParamTypes example in the pod (Martin J. Evans)
  Fixed the definition of ArrayTupleStatus and remove confusion over
    rows affected in list context of execute_array (Martin J. Evans)
  Fixed sql_type_cast example and typo in errors (Martin J. Evans)
  Fixed Gofer error handling for keeperr methods like ping (Tim Bunce)
  Fixed $dbh->clone({}) RT73250 (Tim Bunce)
  Fixed is_nested_call logic error RT73118 (Reini Urban)

  Enhanced performance for threaded perls (Dave Mitchell, Tim Bunce)
  Enhanced and standardized driver trace level mechanism (Tim Bunce)
  Removed old code that was an inneffective attempt to detect
    people doing DBI->{Attrib}.
  Clear ParamValues on bind_param param count error RT66127 (Tim Bunce)
  Changed DBI::ProxyServer to require DBI at compile-time RT62672 (Tim Bunce)

  Added pod for default_user to DBI::DBD (Martin J. Evans)
  Added CON, ENC and DBD trace flags and extended 09trace.t (Martin J. Evans)
  Added TXN trace flags and applied CON and TXN to relevant methods (Tim Bunce)
  Added some more fetchall_arrayref(..., $maxrows) tests (Tim Bunce)
  Clarified docs for fetchall_arrayref called on an inactive handle.
  Clarified docs for clone method (Tim Bunce)
  Added note to DBI::Profile about async queries (Marcel Grünauer).
  Reserved spatialite_ as a driver prefix for DBD::Spatialite
  Reserved mo_ as a driver prefix for DBD::MO
  Updated link to the SQL Reunion 95 docs, RT69577 (Ash Daminato)
  Changed links for DBI recipes. RT73286 (Martin J. Evans)
2012-04-01 20:07:31 +00:00
rhaen
9cf239de6d Updated databases/p5-BDB 2012-04-01 19:48:36 +00:00
rhaen
c0a35e82d2 Updated to 1.90 (aka 1.9)
* Removed patch-aa as it is included in upstream

Changes:

1.9  Mon Dec 26 02:46:09 CET 2011
	- partial: update for libdb 5.2 (to make it compile only)
2012-04-01 19:42:31 +00:00
rhaen
f67765b0fa Updated converters/p5-Unicode-Normalize 2012-04-01 19:12:51 +00:00
rhaen
85e91ea99c Updated to 1.14
Changes:
1.14  Sat Mar 10 13:34:53 2012
    - avoid "use Test".
2012-04-01 19:11:52 +00:00
rhaen
4978d7a2c7 Updated converters/p5-Unicode-Collate 2012-04-01 19:10:14 +00:00
rhaen
2c1db4b1e7 Updated to 0.89
Changes:
0.89  Sat Mar 10 20:19:11 2012
    - avoid "use Test".

0.88  Mon Mar  5 21:56:13 2012
    - DUCET is updated (for Unicode 6.1.0) as Collate/allkeys.txt.
    ! Please notice that allkeys.txt will be overwritten if you have had
      other allkeys.txt already.
    - U+9FCC is a new CJK unified ideograph.
    - The default UCA_Version is 24.
    - Locale/*.pl (except fr.pl) and CJK/Korean.pm are updated.
    - modified tests: cjkrange.t, compatui.t, hangtype.t, loc_cjkc.t,
      loc_es.t, loc_estr.t, overcjk0.t, overcjk1.t, version.t in t.
2012-04-01 19:09:33 +00:00
rhaen
6cc88c37d3 Updated comms/p5-SMS-Send 2012-04-01 19:05:16 +00:00
rhaen
78ea77d815 Updated to 1.06
Changes:

1.06 Wed 9 Nov 2011
	- No functional changes
	- Moved to production version
	- Updating to Module::Install::DSL 1.04
	- New Perl back-compatibility target of 5.6
	- Made the Perl back-compat target explicit
	- Bumping a variety of dependencies to pick up bug fixes
	- Don't import from Params::Util
	- Various whitespace/tabbing fixes
	- Removed the use of base.pm
	- Updated bundled author tests and moved to xt
2012-04-01 19:04:34 +00:00
rhaen
87387e81b8 Updated comms/p5-Device-Modem 2012-04-01 19:01:35 +00:00
rhaen
81e1eee3fb Updated to 1.56
Changes:
1.56  Thu Sep 29 13:43:31 CEST 2011
    - [RT#71330] Unbroken the MANIFEST file. 1.55 was non functional.
      Thanks to Vita Cizek for reporting.

1.55  [BROKEN RELEASE. AVOID] Fri Sep 23 22:01:31 CEST 2011
    - Performance improvements by Ed Wildgoose, long time user. Thanks Ed!
      Windows users, please test this release!
2012-04-01 19:00:49 +00:00
rhaen
dc5ad5f43e Updated comms/p5-Device-Gsm 2012-04-01 18:57:39 +00:00
rhaen
b9478ac52c Updated to 1.60
Changes:
1.60  Fri Mar 16 12:14:07 CET 2012
    - Removed the syslog test. Was artificial and pointless,
      and it failed on Windows and Solaris. Thanks to CPAN testers reports.

1.59  Thu Mar  8 10:13:30 CET 2012
    - Fixed RT #75619, POD fixes to make the POD clean for Debian packaging.
    - Applied .perltidyrc to all source files. Watch out if you had patches :)
2012-04-01 18:56:54 +00:00
rhaen
9d7340c1ed Updated comms/p5-Asterisk 2012-04-01 18:49:57 +00:00
rhaen
b3a017c6a2 Updated to 1.03
Changes:
1.03	Fix AGI.pm from printing warnings on some optional
        variables (http://bugs.debian.org/525025)

1.02	Fix POD for AGI.pm thanks to Lawrence Gilbert
	Fix Manager.pm parsing values that were 0
	Fix verbose example in AGI.pm
	Fix return in _readparse in AGI.pm
	Fix quoting on a few AGI.pm commands
2012-04-01 18:49:01 +00:00
rhaen
f8de4b6479 Updated audio/p5-CDDB_get 2012-04-01 18:46:32 +00:00
rhaen
cb0be7215b Updated to 2.28
Changes:
2.28  06.03.2012
      make tests work with perl 5.15.x
2012-04-01 18:45:43 +00:00
hans
ac53e23bf9 Restore SunOS fixes that got lost in the update. 2012-04-01 18:42:02 +00:00
rhaen
9006e887c1 Updated audio/p5-Audio-Wav 2012-04-01 18:41:06 +00:00
rhaen
cf5576a2d5 Updated to 0.13
Changes:
0.13  Fri Mar 30 21:17:18 GMT 2012
  - read: don't call close() at DESTROY time when the file handle
    creationfailed during new() (Murali Ramanathan)
      https://rt.cpan.org/Ticket/Display.html?id=71462
  - apply patch to allow read/write of files from handle
      https://rt.cpan.org/Ticket/Display.html?id=71715
  - fix problem with $^X under mod_perl (thanks, mario and david!)
      https://rt.cpan.org/Ticket/Display.html?id=62060
  - fix bug in perldoc (Sergei Steshenko)
      https://rt.cpan.org/Ticket/Display.html?id=57114
  - fix problem with writing 24,32 bps files reported by Sergei Steshenko:
      http://rt.cpan.org/Public/Bug/Display.html?id=57093
  - spelling fixes from debian
      http://rt.cpan.org/Public/Bug/Display.html?id=69644
2012-04-01 18:40:12 +00:00
rhaen
d6dab478a5 Updated chat/p5-POE-Component-IRC 2012-04-01 18:35:18 +00:00
rhaen
ca764fb077 - Updated to 6.78
- Added dependency p5-Test-Differences

Changes:
6.78  Wed Dec 7 20:29:45 GMT 2011
    - Prevent an IPv6 test failure

6.77  Fri Dec 2 03:55:14 GMT 2011
    - Prevent a test failure in 06_online.t if the host is K-lined

6.76  Tue Nov 29 03:24:55 GMT 2011
    - DCC.pm: Fix DCC RESUME, it was broken
    - NickReclaim.pm: Make it more robust and prevent an error from being
      raised when we quit from IRC.
2012-04-01 18:30:45 +00:00
hans
d4321f843c Revert the patch that added locale support by buildlinking against
converters/libiconv, which did break on NetBSD. Instead, disable nls
explicitly and set CFLAGS.SunOS when using gcc>=4.6.
2012-04-01 18:30:34 +00:00
brook
441a0db3f6 Updated math/R-geoR to 1.7.2 2012-04-01 18:11:00 +00:00
brook
4ba8136721 Update to version 1.7-2 of the R geoR package. Cleanup of DESCR and
Makefile.

Geostatistical analysis including traditional, likelihood-based and
Bayesian methods.
2012-04-01 18:09:54 +00:00
brook
3d60436a9c Updated math/R-sp to 0.9.98 2012-04-01 18:06:47 +00:00
brook
c9b88c6f9c Update to version 0.9-98 of the R sp package. Cleanup of DESCR and
Makefile.

A package that provides classes and methods for spatial data. The
classes document where the spatial location information resides, for
2D or 3D data. Utility functions are provided, e.g. for plotting data
as maps, spatial selection, as well as methods for retrieving
coordinates, for subsetting, print, summary, etc.
2012-04-01 18:05:34 +00:00
brook
28338810c9 Added new package R-splancs. 2012-04-01 18:00:02 +00:00
brook
6e82ce9a9f Updated math/R-splancs to 2.01.31 2012-04-01 17:59:13 +00:00
brook
6052a0974e Initial import of the R-splancs package.
splancs: Spatial and Space-Time Point Pattern Analysis
2012-04-01 17:57:21 +00:00
brook
8d3a20fb3f Added the new package R-RandomFields. 2012-04-01 17:52:14 +00:00
brook
2ea418ced3 Updated math/R-RandomFields to 2.0.54 2012-04-01 17:49:40 +00:00
brook
1a6799c36c Initial import of package.
RandomFields: Simulation and Analysis of Random Fields

Simulation of Gaussian and extreme value random fields; conditional
simulation; kriging.
2012-04-01 17:46:27 +00:00
ryoon
53c87d1db8 Fix build on FreeBSD 9.0.
* Add LDFLAGS.FreeBSD like DragonFly.
2012-04-01 15:19:56 +00:00
ryoon
222ee586af Fix build on FreeBSD 9.0.
* Add some conditional for FreeBSD.
* Fix for FreeBSD's kinfo_proc
* It seems that FreeBSD supports posix spawn, but xulrunner does not use it.
  (I am not famiiar with it..., this should be fixed.)
* FreeBSD 9.0 requires EXTRA_DSO_LDOPTS for nss an nspr like DragonFly 3.0.1.
2012-04-01 15:18:45 +00:00
shattered
ce6c8e4ab3 PR/41636 -- TORCS requires PIC in plib on amd64. 2012-04-01 14:57:37 +00:00
wiz
897528f080 Cast away some constness so this builds with clang. 2012-04-01 14:41:17 +00:00
shattered
3a116ee397 Whitespace only. 2012-04-01 14:39:35 +00:00
shattered
b82f0efed9 Delint (include sysutils/desktop-file-utils/desktopdb.mk) 2012-04-01 14:35:20 +00:00