Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (2h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-12 22:32:51 UTC Now

2009-08-15 05:59:02 UTC MAIN commitmail json YAML

Mention removal of geography/postgresql81-postgis.

(wiz)

2009-08-15 05:58:07 UTC MAIN commitmail json YAML

2009-08-15 05:57:26 UTC MAIN commitmail json YAML

Remove postgresql81 removal remnant.

(wiz)

2009-08-15 05:56:13 UTC MAIN commitmail json YAML

+ memcached-1.4.0

(obache)

2009-08-15 05:03:30 UTC MAIN commitmail json YAML

Fixes PLIST for arm and sparc with jit option.

(obache)

2009-08-15 03:31:11 UTC MAIN commitmail json YAML

Add checksum for patch-ab.

(taca)

2009-08-15 01:30:57 UTC MAIN commitmail json YAML

Assembly language atomic operations don't work on NetBSD  mipsel, so
  disable them with CONFIGURE_ARGS.

(jklos)

2009-08-14 23:20:54 UTC MAIN commitmail json YAML

Updated print/epdfview to 0.1.7nb1.

(snj)

2009-08-14 23:20:30 UTC MAIN commitmail json YAML

Add a patch from upstream to unbreak mouse wheel scrolling.  While
here, include sysutils/desktop-file-utils/desktopdb.mk.

Bump PKGREVISION to 1.

(snj)

2009-08-14 22:58:19 UTC MAIN commitmail json YAML

Updated lang/gforth to 0.7.0

(asau)

2009-08-14 22:54:49 UTC MAIN commitmail json YAML

Fix licence (GNU GPLv3).

(asau)

2009-08-14 22:52:21 UTC MAIN commitmail json YAML

Update to Gforth 0.7.0.

User-visible changes between 0.6.2 and 0.7.0:

Requirements:
  At run-time requires libtool and gcc (for the libcc C interface) and
                      gdb (for the disassembler (SEE)) on some platforms.
License:
  Changed to GPLv3
Bug fixes
  Now works with address-space randomization.
  The single-step debugger works again in some engines.
  Many others.
Ports:
  AMD64, ARM, IA-64 (Itanium): better performance
  PPC, PPC64: disassembler and assembler
  Gforth EC: R8C, 4stack, misc, 8086 work
  MacOS X: better support
Invocation:
  New flags --ignore-async-signals, --vm-commit (default overcommit)
            --print-sequences
Forth 200x:
  X:extension-query: produce true for all implemented extensions
  X:required REQUIRED etc. (not new)
  X:defined: [DEFINED] and [UNDEFINED]
  X:parse-name: PARSE-NAME (new name)
  X:deferred: deferred words (new: DEFER@ DEFER! ACTION-OF)
  X:structures: +FIELD FIELD: FFIELD: CFIELD: etc.
  X:ekeys: new: EKEY>FKEY K-SHIFT-MASK K-CTRL-MASK K-ALT-MASK K-F1...K-F12
  X:fp-stack (not new)
  X:number-prefixes (partially new, see below)
Number prefixes:
  0x is a hex prefix: 0xff and 0XfF now produces (decimal) 255
  # is a decimal prefix: #10 now produces (decimal) 10
  Signs after the number prefix are now accepted, e.g, #-50.
  ' now only handles a single (x)char: 'ab is no longer accepted,
                                      'a' now produces (decimal) 97
Unicode support (currently supports only uniform encoding):
  added xchars words for dealing with variable-width multi-byte characters
  provide 8bit (ISO Latin 1) and UTF-8 support for xchars
New words:
  \C C-FUNCTION C-LIBRARY END-C-LIBRARY C-LIBRARY-NAME (libcc C interface)
  LIB-ERROR (complements OPEN-LIB)
  OUTFILE-EXECUTE INFILE-EXECUTE BASE-EXECUTE (limited change of global state)
  16-bit and 32-bit memory acces: UW@ UL@ SW@ SL@ W! L! W@ L@ /W /L
  NEXT-ARG SHIFT-ARGS (OS command-line argument processing)
  NOTHROW (for backtrace control)
  FTRUNC FMOD (undocumented)
  SEE-CODE SEE-CODE-RANGE (show generated dynamic native code)
Improvements/changes of existing words:
  S\", .\" now support \l, \m, \z, and limits hex and octal character specs.
  OPEN-FILE with W/O no longer creates or truncates files (no compat. file)
  OPEN-LIB now understands ~ at the start, like OPEN-FILE.
  TRY...ENDTRY changed significantly, compatibility files available (see docs).
  The disassembler (DISCODE) can now use gdb to disassemble code
  Uninitialized defered words now give a warning when executed
  Division is floored (disable with "configure --enable-force-cdiv")
  Gforth (not gforth-fast) reports division by zero and overflow on division
    on all platforms.
Newly documented words:
  S>NUMBER? S>UNUMBER?
  EKEY keypress names: K-LEFT  K-RIGHT K-UP K-DOWN K-HOME K-END K-PRIOR
    K-NEXT K-INSERT K-DELETE
  CLEARSTACKS
  FORM
Environment variable GFORTHSYSTEMPREFIX (used by word SYSTEM and friends)
C interface:
  exported symbols now start with "gforth_" (for referencing them from C code)
  libcc C function call interface (requires libtool and gcc at run-time)
    alternative: undocumented libffi-based interface
Libraries:
  depth-changes.fs: report stack depth changes during interpretation
  ans-report.fs now reports CfV extensions
  fsl-util.4th: FSL support files (undocumented)
  regexp.fs for regular expressions (undocumented)
  complex.fs for complex numbers (undocumented)
  fft.fs for Fast Fourier Transform (undocumented)
  wf.fs, a Wiki implementation (undocumented)
  httpd.fs, a web server (undocumented)
  status.fs, show interpreter status in separate xterm (undocumented)
  profile.fs for profiling (undocumented, incomplete)
  endtry-iferror.fs, recover-endtry.fs to ease the TRY change transition
  test/tester.fs: Now works with FP numbers (undocumented)
  test/ttester.fs: Version of tester.fs with improved interface (T{...}T).
compat library:
  compat/execute-parsing.fs
Speed improvements:
  automatic performance tuning on building
  static stack caching (good speedup on PPC)
  mixed-precision division is now faster
  support for int128 types on AMD64
  workarounds for gcc performance bugs (in particular, PR 15242)
  branch target alignment (good speedup on Alpha).

(asau)

2009-08-14 19:41:47 UTC MAIN commitmail json YAML

2009-08-14 19:40:48 UTC MAIN commitmail json YAML

Unsupport PostgreSQL 8.1. Garbage collect detection of ancient versions.

(joerg)

2009-08-14 19:19:49 UTC MAIN commitmail json YAML

2009-08-14 19:09:49 UTC MAIN commitmail json YAML

2009-08-14 18:46:32 UTC pkgsrc-2009Q2 commitmail json YAML

2009-08-14 18:45:44 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup ticket #2859 - requested by tron
fetchmail: security update
fetchmailconf: security update

Revisions pulled up:
- pkgsrc/mail/fetchmail/Makefile 1.169
- pkgsrc/mail/fetchmail/PLIST 1.13
- pkgsrc/mail/fetchmail/distinfo 1.40
- pkgsrc/mail/fetchmail/patches/patch-aa removed
- pkgsrc/mail/fetchmail/patches/patch-aa removed
- pkgsrc/mail/fetchmailconf/Makefile 1.75

  Module Name: pkgsrc
  Committed By: tron
  Date: Mon Aug 10 08:46:30 UTC 2009

  Modified Files:
  pkgsrc/mail/fetchmail: Makefile PLIST distinfo
  pkgsrc/mail/fetchmailconf: Makefile
  Removed Files:
  pkgsrc/mail/fetchmail/patches: patch-aa patch-ab

  Log Message:
  Update "fetchmail" package to version 6.3.11. Changes since version 6.3.8:
  - Security fixes for CVE-2009-2666, CVE-2007-4565 and CVE-2008-2711.
  - Fetchmail no longer drops permanently undelivered messages by default,
    to match historic documentation.  It does this by adding a new
    "softbounce" option.
  - A lot bug fixes and improvements.

(salo)

2009-08-14 17:59:52 UTC MAIN commitmail json YAML

patch-aa: set auto_update_check to default FALSE.
(I don't appreciate software that phones home.)

(tnn)

2009-08-14 17:23:08 UTC MAIN commitmail json YAML

Note PKGREVISION bump of mew.

(minskim)

2009-08-14 17:21:20 UTC MAIN commitmail json YAML

Add UTF-8 hack for Emacs 23.  Patch from Mew CVS.

(minskim)

2009-08-14 16:15:31 UTC MAIN commitmail json YAML

- fftw, opal; updated.

(wiz)

2009-08-14 16:14:27 UTC MAIN commitmail json YAML

Updated math/fftw to 3.2.2

(wiz)

2009-08-14 16:14:17 UTC MAIN commitmail json YAML

Update to 3.2.2. Set LICENSE to gnu-gpl-v2.

FFTW 3.2.2

* Improve performance of some copy operations of complex arrays on
  x86 machines.

* Add configure flag to disable alloca(), which is broken in mingw64.

* Planning in FFTW_ESTIMATE mode for r2r transforms became slower
  between fftw-3.1.3 and 3.2.  This regression has now been fixed.

(wiz)

2009-08-14 16:05:16 UTC MAIN commitmail json YAML

Updated devel/opal to 3.6.4

(wiz)

2009-08-14 16:05:06 UTC MAIN commitmail json YAML

Update to 3.6.4, set LICENSE to mpl-1.0.

Opal-3.6.4:
2009-07-05 05:39  rjongbloed

* [r23075] src/sip/sippdu.cxx:
  Fixed unnecessary attempt abort a transaction that has completed
  causing some confusing logs.

Opal-3.6.2:
2009-03-18 03:47  rjongbloed

* [r22213] version.h:
  Update version number for beta v3.6.2

2009-03-18 22:01  rjongbloed

* [r22216] plugins/video/MPEG4-ffmpeg/ReadMe.txt:
  Removed reference to compatibility issues with old H.263 codec as
  that is now deprecated, thanks Eugen Dedu

2009-03-18 22:51  rjongbloed

* [r22220] ., src/codec/rfc2833.cxx:
  Stopped transmission of CED/CNG continually retrying when there
  is no payload type to use, should not even try and start as this
  indicates that the remote did not negotiate the ability to
  receive this signals.

2009-03-19 00:07  rjongbloed

* [r22224] ., src/sip/sipcon.cxx:
  A SIP 488 response may also indicate a codec mismatch, not just a
  415 response.

2009-03-19 03:16  rjongbloed

* [r22228] ., src/opal/call.cxx:
  Fixed filtering of media formats so is done by both connections
  in call.

2009-03-19 03:48  rjongbloed

* [r22229] ., samples/faxopal/main.cxx, samples/faxopal/main.h:
  Fixed issue with waiting for registration to complete in faxopal
  before starting an outgoing call.

  Added command line argument to disable in band tone detection in
  faxopal.

2009-03-19 04:12  rjongbloed

* [r22230] include/t38/t38proto.h, src/t38/t38proto.cxx:
  Back patched some changes from Sirius branch to help in detecting
  end of fax call.

2009-03-23 03:39  rjongbloed

* [r22247] ., src/opal/rtpconn.cxx:
  Applied patch ID: 2686504
  fix compilation when disabling statistics
  thanks Mounir Lamouri

2009-03-23 05:54  rjongbloed

* [r22251] src/sip/sdp.cxx:
  Fixed order of b= line in SDP output, order is apparently
  important! Thanks Yuri Valentini for the report.

2009-03-24 00:37  rjongbloed

* [r22253] samples/ivropal/main.cxx, samples/ivropal/main.h:
  Fixed ivropal sometimes making outgoing call before finished
  registration.

2009-03-24 00:51  rjongbloed

* [r22255] include/sip/sipep.h, src/sip/sipcon.cxx,
  src/sip/sipep.cxx, src/sip/sippdu.cxx:
  Fix issue with having multiple registrations with the same SIP
  registrar. This assures the "Contact" field is for the correct
  registration, previously always ended up being the first
  registration.

2009-03-24 01:26  rjongbloed

* [r22258] src/sip/sipcon.cxx:
  Fixed problem with not waiting till ACK arrives before destroying
  connection object when sending a terminating response (300 and
  up), some implementations get offended if the ACK gets a
  transaction does not exist error. Thanks hongsion for the report.

2009-03-24 02:19  rjongbloed

* [r22260] src/sip/sippdu.cxx:
  Fixed bug where if a non-INVITE transaction gets a 1xx response,
  but then the 2xx (or above) response is lost, the command is not
  retransmitted. Thanks Dan Julius for the report.

2009-03-24 04:36  rjongbloed

* [r22265] ., plugins/video/common/dyna.cxx:
  Added fix for video plug in shared library loading, current code
  would not look anywhere but default path. Thanks various people
  at http://bugzilla.gnome.org/show_bug.cgi?id=573882#c24

2009-03-25 00:58  rjongbloed

* [r22272] ., src/rtp/jitter.cxx:
  Remove hole in locking logic

2009-03-25 09:53  rjongbloed

* [r22285] ., plugins/audio/G722/Makefile.in:
  Applied patch for compiling G722 plug in on SUN, thanks elaine

2009-03-25 22:55  rjongbloed

* [r22291] src/sip/sipcon.cxx:
  Fixed correct value for remote party address, this is not
  supposed to include the scheme (sip:) as that is in the remote
  party URL.

2009-03-26 00:36  rjongbloed

* [r22296] plugins/video/H.264/Makefile.in,
  plugins/video/H.264/gpl/Makefile.in:
  Applied patch ID: 2712513 "NetBSD patches for opal", supplied by
  Jared
  D. McNeill

2009-03-26 03:40  rjongbloed

* [r22300] include/opal/connection.h, samples/openphone/main.cxx,
  samples/sipim/main.cxx, src/h323/h323.cxx, src/h323/h323ep.cxx,
  src/h323/h323pdu.cxx, src/opal/connection.cxx, src/opal/ivr.cxx,
  src/opal/opal_c.cxx, src/sip/sipcon.cxx, src/sip/sipep.cxx,
  src/t38/t38proto.cxx:
  Fixed INVITE sent in response to a REFER command using a
  different local user name to the original call.

  In process moved all "standard" string option names to #defines
  in connection.h so can be documented.

2009-03-27 05:08  rjongbloed

* [r22306] Makefile.in:
  Fixed bug ID: 2715354 "opal try to install plugins even if they
  have
  been disabled", patch supplied by Mounir Lamouri

2009-03-27 05:39  rjongbloed

* [r22308] configure, configure.ac, opal.m4:
  Added abort of configure if compulsory options in PTLib are
  disabled.

2009-03-27 23:28  rjongbloed

* [r22313] plugins/audio/G726/Makefile.in,
  plugins/audio/GSM0610/Makefile.in,
  plugins/audio/IMA_ADPCM/Makefile.in,
  plugins/audio/LPC_10/Makefile.in, plugins/audio/SBC/Makefile.in,
  plugins/audio/Speex/Makefile.in, plugins/audio/celt/Makefile.in,
  plugins/audio/gsm-amr/Makefile.in,
  plugins/audio/iLBC/Makefile.in:
  Fixed bug ID: 2027650 "$(CFLAGS) include path overrides package
  include
  path", reported by Stefano Sabatini

2009-03-29 23:54  rjongbloed

* [r22319] configure, configure.ac:
  Fixed bug ID: 2721404 "opal depends on ptlib stun option",
  reported by
  Mounir Lamouri

2009-03-30 11:04  rjongbloed

* [r22330] ., src/sip/sipep.cxx:
  Fixed search for connection matching replaces header dialog info,
  broken during changes to make calls back into the same stack.

2009-03-31 00:40  rjongbloed

* [r22336] configure, configure.ac:
  Fixed bug ID: 2721707 "h323 support needs ptlib to be compiled
  with asn
  support", reported by Mounir Lamouri

2009-03-31 04:42  rjongbloed

* [r22342] ., src/opal/opal_c.cxx:
  Fixed from/to fields reversed in call dialog identifier
  information, needed for a INVITE with replaces header.

2009-03-31 07:03  csoutheren

* [r22347] include/sip/sdp.h, src/sip/sdp.cxx:
  Fix compiler warning

2009-03-31 07:06  csoutheren

* [r22348] src/codec/opalpluginmgr.cxx:
  Backport logging changes and video I-frame detection changes from
  head

2009-03-31 07:10  csoutheren

* [r22351] include/codec/ratectl.h, include/codec/vidcodec.h,
  include/opal/mediafmt.h, include/opal/patch.h,
  src/codec/ratectl.cxx, src/codec/vidcodec.cxx,
  src/opal/mediafmt.cxx, src/opal/patch.cxx:
  Backport media format matching option additions
  Backport advanced rate controller support
  Backport fix for popping frames when rate controller
  skips input frames

2009-03-31 07:14  rjongbloed

* [r22352] ., src/rtp/jitter.cxx:
  Fixed missing re-lock of mutex on jitter buffer shut down, so
  when unlocked a little bit later it does not assert.

2009-03-31 23:16  rjongbloed

* [r22353] src/opal/pcss.cxx:
  Fixed support for WAV files etc in PCSS endpoint.

2009-03-31 23:21  rjongbloed

* [r22355] samples/codectest/main.cxx, samples/codectest/main.h:
  Backported codectest application enhancements from trunk which
  became necessary due to backport of video rate controller
  changes.

2009-04-01 01:11  rjongbloed

* [r22358] include/sip/sipep.h, src/sip/sipcon.cxx,
  src/sip/sipep.cxx:
  Another fix for replaces header in INVITE.

2009-04-01 07:06  rjongbloed

* [r22361] ., include/h323/h323ep.h, src/h323/h323ep.cxx:
  Added "*" for gatekeeper address to indicate should do gatekeeper
  discovery (IP broadcast) in UseGatekeeper().

2009-04-02 05:13  rjongbloed

* [r22364] ., src/sip/sipep.cxx:
  Fixed stupid typo causing crash.

2009-04-06 03:04  rjongbloed

* [r22366] ., include/opal.h,
  src/java/OpalLineAppearanceStates.java, src/java/exampleJNI.java,
  src/java/java_swig_wrapper.c:
  Changed Line Appearance status code enum name to better reflect
  reality, line does not necessarily become "idle" when a call ends
  as an individual "line" name may be a trunk and have multiple
  calls on it. So changed OpalLineIdle to be OpalLineTerminated.

2009-04-07 04:32  rjongbloed

* [r22390] ., plugins/audio/G722/Makefile.in,
  plugins/audio/G722/g722codec.c:
  Applied patch ID: 2728003 "Win32 g722codec.c can not be
  compiled", thanks Michael Rickmann

2009-04-07 06:09  rjongbloed

* [r22398] ., src/sip/sipcon.cxx:
  If SIP answer to our offer contains only media formats we never
  offered then abort the call as this is SO not to specification!

2009-04-07 23:52  rjongbloed

* [r22405] ., src/opal/mediastrm.cxx:
  Close raw media stream (in particular sound card) before waiting
  for thread to exit. It is possible under some weird circumstances
  for the channel Read() function to block indefinitely on a sound
  card, then the patch thread does not exit causing an assert. So,
  we close it before waiting instead of relying on the sound card
  read never blocking for long.

2009-04-09 05:02  rjongbloed

* [r22416] ., src/opal/connection.cxx:
  Restored old code that was changed (accidentally?) in an
  apparently unrelated patch #21934.

2009-04-14 03:00  rjongbloed

* [r22421] ., src/sip/handlers.cxx:
  Fixed possible path through unsubscribe/unregister code that
  could lead to a NULL pointer being used. Not sure how it can
  happen, but got bug reports it is happening.

2009-04-14 03:19  rjongbloed

* [r22423] ., src/opal/patch.cxx:
  Added mutex to media patch "push" mode.

2009-04-14 09:24  rjongbloed

* [r22426] ., src/opal/transports.cxx:
  Fix problem with case significant tarnsport prefix in Contact tag

2009-04-15 02:34  rjongbloed

* [r22428] ., src/sip/handlers.cxx:
  Fixed issue in SIP registering, if both a full AOR and a
  registrar host name is provided then we would normally disable
  all registrar searches (e.g. SRV record lookup) and just use the
  host name specified.

  However, a common thing for people to do is to make the registrar
  address identical to the registrar domain in the AOR, so we had a
  special case that this would NOT disable registrar discovery, but
  this bit was broken, now fixed.

2009-04-16 06:41  csoutheren

* [r22435] plugins/video/H.263-1998/h263-1998.cxx:
  Change default TSTO to give better quality, and add extra logging

2009-04-16 09:08  rjongbloed

* [r22436] src/sip/sipep.cxx:
  Fixed issue with SIP call hairpinning back into the same stack,
  the ACK is sent to the wrong internal connection, as the from/to
  fields are around the other way every other command. ACK truly is
  special.

2009-04-21 05:26  rjongbloed

* [r22447] src/opal/mediastrm.cxx:
  Fixed possibility of closing a channel twice, should be OK, but
  you can;t c=guarantee all writers of channels do it, so easier
  just to fix it here.

2009-04-21 06:39  rjongbloed

* [r22449] src/opal/connection.cxx, src/sip/sipcon.cxx:
  Fixed intermittent problem with losing an audio channel when
  using INVITE with replace, e.g. attended transfer.

2009-04-24 07:33  rjongbloed

* [r22462] ., include/rtp/rtp.h, src/rtp/rtp.cxx:
  Fixed being able to switch off jitter buffer while still a thread
  reading from it, extra mutex needed.

  make sure jitter buffer (and it's thread) are stopped when you
  close the read side of the RTp session.

2009-04-24 08:25  rjongbloed

* [r22463] ., include/rtp/rtp.h, src/rtp/rtp.cxx:
  Reversed out previous check in for jitter buffer mutex as causes
  deadlock under load, can't win!

2009-04-24 18:24  csoutheren

* [r22465] src/opal/call.cxx:
  Change locking for OpenSourceMediaStreams to be read/write

2009-04-25 05:35  rjongbloed

* [r22468] ., include/opal/mediafmt.h:
  Fixed a bunch of != comparisons for OpalMediaFormat

2009-04-30 05:23  rjongbloed

* [r22497] src/sip/sipcon.cxx, src/sip/sipep.cxx:
  Fixed bug with "hairpin" SIP calls, subsequent commands to INVITE
  are not routed to the correct connection instance.

2009-05-01 14:30  csoutheren

* [r22503] plugins/video/H.263-1998/h263-1998.cxx,
  plugins/video/H.263-1998/rfc2190.cxx:
  Add extra bulletproofing for receiving bad packets

2009-05-02 12:26  dsandras

* [r22506] configure, configure.ac, plugins/plugin-config.h.in:
  H.224 should not be enabled when H.323 is disabled.

2009-05-03 13:39  csoutheren

* [r22508] plugins/video/H.263-1998/h263-1998.cxx:
  Fix bug introduced in previous checkin

2009-05-05 05:02  rjongbloed

* [r22511] include/rtp/rtp.h, include/t38/t38proto.h,
  plugins/fax/fax_spandsp/spandsp_util,
  plugins/fax/fax_spandsp/spandsp_util/README,
  plugins/fax/fax_spandsp/spandsp_util/spandsp_if.cpp,
  plugins/fax/fax_spandsp/spandsp_util/spandsp_if.h,
  plugins/fax/fax_spandsp/spandsp_util/spandsp_util.cpp,
  plugins/fax/fax_spandsp/spandsp_util/spandsp_util.sln,
  plugins/fax/fax_spandsp/spandsp_util/spandsp_util.vcproj,
  plugins/fax/fax_spandsp/spandsp_util/spandsp_util_2008.sln,
  plugins/fax/fax_spandsp/spandsp_util/spandsp_util_2008.vcproj,
  samples/faxopal/main.cxx, samples/faxopal/main.h,
  samples/openphone/main.cxx, samples/openphone/openphone.wxg,
  samples/openphone/openphone.xrc, src/rtp/rtp.cxx,
  src/sip/sipcon.cxx, src/t38/t38proto.cxx:
  Added fax statistics from SpanDSP, in process fixes major failing
  that the system gave no indication of if the fax was successfully
  and completely sent to the remote.

  Also updated spandsp_util to be built against spandsp-0.0.6pre10

2009-05-05 05:25  rjongbloed

* [r22512] plugins/fax/fax_spandsp/spandsp_util,
  plugins/fax/fax_spandsp/spandsp_util/README:
  Fixed output path in readme file.

2009-05-05 05:41  rjongbloed

* [r22513] plugins/fax/fax_spandsp/spandsp_util/spandsp_if.cpp:
  Fixed flush of debug output from spandsp library.

2009-05-05 05:57  rjongbloed

* [r22514] src/t38/t38proto.cxx:
  Fixed race condition where if remote disconnects really quickly
  after fax is sent, the local side kills sub-process and we don't
  get the final statistics.

  Also changed verbose logging from spandsp_util to only be enabled
  when have level 5 tracing.

2009-05-06 00:06  rjongbloed

* [r22517] include/opal/mediastrm.h, include/opal/patch.h,
  include/t38/t38proto.h,
  plugins/fax/fax_spandsp/spandsp_util/spandsp_if.cpp,
  samples/openphone/main.cxx, samples/openphone/main.h,
  src/opal/mediastrm.cxx, src/opal/patch.cxx, src/t38/t38proto.cxx:
  Fixed display of progress fax statistics so can get page count
  received/sent so far.

2009-05-06 05:04  rjongbloed

* [r22519] src/sip/handlers.cxx:
  Added std:: to map<> calls for Solaris build compatibility,
  thanks Bruce McAlister.

2009-05-06 06:11  rjongbloed

* [r22520] include/opal/patch.h, src/opal/patch.cxx:
  Fixed video statistics broken in previous check in.

2009-05-06 06:31  rjongbloed

* [r22521] include/codec/opalplugin.h, include/opal/mediafmt.h,
  include/sip/sdp.h, src/opal/mediafmt.cxx, src/sip/sdp.cxx:
  Fixed SIP bandwidth (RFC3890 TIAS) support.

2009-05-06 08:19  csoutheren

* [r22526] plugins/video/H.263-1998/h263-1998.cxx:
  Make sure Max Bit Rate is not altered

2009-05-06 08:58  rjongbloed

* [r22527] include/opal/mediafmt.h, src/h323/h323caps.cxx,
  src/opal/mediafmt.cxx, src/sip/sdp.cxx:
  Added media format option indicating the protocol (e.g. "H.323"
  or "SIP") the media format is being used in. This can be a "get
  out of gaol" card for various compatibility issues.

2009-05-06 10:41  csoutheren

* [r22529] plugins/video/H.263-1998/h263-1998.cxx,
  plugins/video/H.263-1998/h263-1998.h:
  Use dynamically allocated frame buffer instead of enormous
  statically sized array

2009-05-06 13:12  csoutheren

* [r22531] include/opal/rtpconn.h:
  Don't stop a call from clearing due to lack of media just because
  a session has not received any packets

2009-05-06 13:13  csoutheren

* [r22532] src/codec/opalpluginmgr.cxx:
  Fix rare memory leak and add extra checking

2009-05-07 00:29  rjongbloed

* [r22536] src/codec/opalpluginmgr.cxx:
  Fixed MSVC warning

2009-05-07 03:43  rjongbloed

* [r22538] include/sip/sdp.h, src/sip/sdp.cxx:
  Added ability to set SDP bandwidth parameters from media format
  options.

2009-05-07 08:56  csoutheren

* [r22553] ., include/opal.h, include/opal/mediastrm.h,
  include/rtp/jitter.h, include/rtp/rtp.h, include/sip/sipep.h,
  plugins/video/H.263-1998/rfc2190.cxx,
  plugins/video/H.263-1998/rfc2190.h,
  samples/openphone/unknown16.ico, samples/openphone/unknown16.xpm,
  src/opal/localep.cxx, src/opal/mediastrm.cxx,
  src/opal/opal_c.cxx, src/opal/patch.cxx, src/rtp/rtp.cxx,
  src/sip/sipcon.cxx, src/sip/sipep.cxx:
  Bulk backport of patches from trunk including RTP SafePtr and
  thread pooling

2009-05-07 09:02  rjongbloed

* [r22556] ., src/opal/localep.cxx:
  Fixed local EP auto-starting media under some circumstances (e.g.
  H.323 slow start)

2009-05-07 10:05  csoutheren

* [r22562] ., samples/openphone/unknown16.ico,
  samples/openphone/unknown16.xpm, src/codec/opalpluginmgr.cxx:
  Backport 22542 - set payload type for encoded video from plugins

2009-05-07 17:34  csoutheren

* [r22563] src/opal/mediafmt.cxx:
  Fixed adding/subtracting media formats from a list should break
  references and
  make list unique as adding to one instance changing a whole bunch
  of others is
  really confusing.

2009-05-11 12:29  csoutheren

* [r22580] samples/codectest/main.cxx:
  Backport of 22574 from head
  Fix problem with duplicate S option

2009-05-12 00:59  rjongbloed

* [r22581] src/java/OpalParamSetUpCall.java,
  src/java/OpalStatusIncomingCall.java, src/java/exampleJNI.java,
  src/java/java_swig_wrapper.c:
  Added protocol ID to "C" API

2009-05-12 10:18  rjongbloed

* [r22589] ., src/sip/sipcon.cxx, src/sip/sippdu.cxx:
  Fixed issue with outgoing re-INVITE that gets a 401/407
  authentication required error, the re-transmitted INVITE was not
  a re-INVITE but another normal INVITE, so "hold" doesn't work.

  Fixed issue with incoming re-INVITE that has no SDp in the
  INVITE, if the eventual ACK has the same streams but only changed
  the IP address/port for RTP, then we did not change our RTP send
  addresss/port.

  Added more logging for determining Product Info from
  User-Agent/Server mime field.

2009-05-12 13:50  rjongbloed

* [r22593] src/win32/opal_2008.dtf, src/win32/opald_2008.dtf,
  src/win32/opaln_2008.dtf:
  UUpdate symbols

2009-05-12 23:08  rjongbloed

* [r22594] src/win32/opal_2005.dtf, src/win32/opal_2005_wm.dtf,
  src/win32/opal_2005_wm6.dtf, src/win32/opald_2005.dtf,
  src/win32/opald_2005_wm.dtf, src/win32/opald_2005_wm6.dtf,
  src/win32/opaln_2005.dtf, src/win32/opaln_2005_wm.dtf,
  src/win32/opaln_2005_wm6.dtf:

2009-05-13 00:03  rjongbloed

* [r22595] samples/openphone/OpenPhoneInstaller_2005.vdproj,
  samples/openphone/OpenPhone_2005.sln:
  Removed deprecated ffmpeg H.263 code3c plug in.

2009-05-13 02:27  rjongbloed

* [r22596] include/t38/h323t38.h, samples/openphone/main.cxx,
  samples/openphone/main.h, src/h323/h323caps.cxx,
  src/t38/h323t38.cxx:
  Fixed inclusion of T.38 fax capability in H.323, got lost
  somewhere along the way.

2009-05-13 04:47  rjongbloed

* [r22599] src/codec/opalpluginmgr.cxx:
  Added sanity checking of video plug in decoder output.

2009-05-13 14:23  csoutheren

* [r22604] plugins/video/H.263-1998/h263-1998.cxx,
  plugins/video/H.263-1998/rfc2190.cxx,
  plugins/video/H.263-1998/rfc2190.h:
  Add numerous boundary checks
  Add extra logging
  Ensure use of aligned memory for ffmpeg
  Discard out of order packets, mode A frames that don't begin
  with a start code, and frames that don't begin with a start code

2009-05-13 14:24  csoutheren

* [r22605] samples/codectest, samples/codectest/main.cxx,
  samples/codectest/main.h:
  Backport code from trunk - put mutex around console output.

2009-05-13 14:36  csoutheren

* [r22607] src/opal/mediastrm.cxx:
  Ensure destructors of OpalMediaStream descendants call
  Close because the overrides won't work from the ancestor
  destructor

2009-05-13 14:42  csoutheren

* [r22608] src/sip/sipep.cxx:
  Add #define to allow easy enable/disable of SIP thread pooling
  Add log message to display active connections/transactions

2009-05-14 02:02  rjongbloed

* [r22616] ., src/sip/sipep.cxx:
  Reduced level of new trace log in SIP garbage collection. Too
  noisy!

2009-05-14 03:59  csoutheren

* [r22617] samples/codectest/main.cxx, samples/codectest/main.h:
  Add option to drop n% of encoded packets

2009-05-15 00:20  rjongbloed

* [r22619] ., src/rtp/rtp.cxx:
  Added log message for when RTP expected sequence number is
  changed automatically. Code added due to various remote system
  bugs.

2009-05-15 01:08  rjongbloed

* [r22620] src/h323/h323.cxx:
  Fixed initial H.323 call set up honouring the auto-start
  configuration for "don't offer". In particular the extraneous
  attempt to start fax when it shouldn't.

2009-05-15 03:53  rjongbloed

* [r22622] samples/openphone/main.cxx:
  Fixed OpenPhone play button for ring WAV file.

2009-05-15 07:10  csoutheren

* [r22624] plugins/video/H.263-1998/h263-1998.cxx:
  Disable OBMC because it makes ffmpeg non-threadsafe

2009-05-18 05:39  csoutheren

* [r22628] plugins/video/H.263-1998/h263-1998.cxx:
  Remove use of posix_memalign, as it's not needed and not
  supported in all environments

2009-05-18 06:12  rjongbloed

* [r22630] include/opal/ivr.h, src/opal/ivr.cxx:
  Cannot mix VXML and simplified commands. So now check once at the
  start for a .vxml file URL, processing only that if so. If not
  then assume all file URL's in the command string are playable
  (typically WAV) files.

2009-05-19 03:19  rjongbloed

* [r22640] include/h323/h323con.h, include/t38/h323t38.h,
  samples/faxopal/main.cxx, src/h323/h323.cxx,
  src/h323/h323neg.cxx, src/opal/mediastrm.cxx,
  src/opal/rtpconn.cxx, src/t38/h323t38.cxx, src/t38/t38proto.cxx:
  Fixed crash on ending fax, race condition on terminating SpanDSP
  reading thread.

  Fixed faxopal displaying correct status at end of call.

  Fixed H.323 T.38 support requiring:
  T.38 capability no longer uses custom H323Channel
  Mode request badly broken, need to deal with having media stream
  before logical channel
  Internal/External session number handling interferes with fax
  re-opening session ID 1
  Need to close tx channels media stream immediately on sending
  CLC, don;t wait for CLCAck
  Not opening reverse T.38 channel

2009-05-19 04:14  rjongbloed

* [r22647] src/codec/ratectl.cxx, src/opal/manager.cxx:
  Fixed no trace warnings.

2009-05-19 05:23  rjongbloed

* [r22649] src/win32/opal_2003.dtf, src/win32/opal_2005.dtf,
  src/win32/opal_2005_wm.dtf, src/win32/opal_2005_wm6.dtf,
  src/win32/opal_2008.dtf, src/win32/opald_2003.dtf,
  src/win32/opald_2005.dtf, src/win32/opald_2005_wm.dtf,
  src/win32/opald_2005_wm6.dtf, src/win32/opald_2008.dtf,
  src/win32/opaln_2003.dtf, src/win32/opaln_2005.dtf,
  src/win32/opaln_2005_wm.dtf, src/win32/opaln_2005_wm6.dtf,
  src/win32/opaln_2008.dtf:
  Update DLL symbols

2009-05-19 06:04  csoutheren

* [r22652] plugins/configure.ac, plugins/plugin-config.h.in,
  plugins/video/H.263-1998/h263-1998.cxx,
  plugins/video/H.263-1998/h263-1998.h,
  plugins/video/common/dyna.cxx:
  Add check for posix_memalign and other misc stuff

2009-05-19 06:06  csoutheren

* [r22653] plugins/video/H.263-1998/h263-1998.h,
  plugins/video/common/dyna.h:
  Fix for gcc 4.4.0

2009-05-19 06:06  csoutheren

* [r22654] plugins/configure:
  Update configure

2009-05-19 07:10  rjongbloed

* [r22655] include/codec/ratectl.h, include/h224/h323h224.h,
  include/im/sipim.h, include/opal/buildopts.h.in,
  src/codec/ratectl.cxx, src/im/sipim.cxx:
  Fixed compilation with video, h.323 or sip disabled.

2009-05-19 09:34  rjongbloed

* [r22657] src/win32/opal_2005_wm.dtf, src/win32/opal_2005_wm6.dtf,
  src/win32/opald_2005_wm.dtf, src/win32/opald_2005_wm6.dtf,
  src/win32/opaln_2005_wm.dtf, src/win32/opaln_2005_wm6.dtf:
  Update DLL symbols

(wiz)

2009-08-14 15:57:16 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup tickets #2681, #2862 and #2863.

(tron)

2009-08-14 15:56:38 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup ticket #2863 - requested by kefren
gmplayer: security patch

Revisions pulled up:
- multimedia/gmplayer/Makefile 1.77
- multimedia/gmplayer/distinfo 1.64
---
Module Name: pkgsrc
Committed By: wiz
Date: Sun Aug  9 19:21:10 UTC 2009

Modified Files:
pkgsrc/multimedia/gmplayer: distinfo

Log Message:
Add patch-ar.
---
Module Name: pkgsrc
Committed By: wiz
Date: Sun Aug  9 19:24:25 UTC 2009

Modified Files:
pkgsrc/multimedia/gmplayer: Makefile

Log Message:
Remove BROKEN_IN 2006Q4, builds fine for me. Bump PKGREVISION for patch-ar.

(tron)

2009-08-14 15:51:06 UTC MAIN commitmail json YAML

some fixes and cleanup:
-replace a struct member name "private" in a public header, it is
reserved in C+, fixes build problems reported by joerg and wiz
-link against librt on Linux (needed for clock_gettime()), should
fix build problem reported by dsainty
-don't even compile cooked_interface.c on NetBSD, and g/c patches
which added NetBSD support code which was never used
bump PKGREVISION

(drochner)

2009-08-14 15:47:43 UTC MAIN commitmail json YAML

Updated x11/libgnomekbd to 2.26.0nb1

(wiz)

2009-08-14 15:47:31 UTC MAIN commitmail json YAML

Fix build with libxklavier-4.0, and depend on it.
Bump PKGREVISION.
Patch from gentoo, linked to by hasso.

(wiz)

2009-08-14 15:41:18 UTC MAIN commitmail json YAML

Mark as not make-jobs safe. Fails with -j16 for me.

(wiz)

2009-08-14 15:39:37 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup ticket #2862 - requested by kefren
mplayer: security patch

Revisions pulled up:
- multimedia/mplayer-share/distinfo 1.61-1.62
- multimedia/mplayer-share/patches/patch-ar 1.1-1.2
- multimedia/mplayer/Makefile 1.67
---
Module Name: pkgsrc
Committed By: kefren
Date: Sun Aug  9 12:56:11 UTC 2009

Modified Files:
pkgsrc/multimedia/mplayer: Makefile
pkgsrc/multimedia/mplayer-share: distinfo
Added Files:
pkgsrc/multimedia/mplayer-share/patches: patch-ar

Log Message:
add fix for SA26157. Bump PKGREVISION
---
Module Name: pkgsrc
Committed By: wiz
Date: Sun Aug  9 19:20:50 UTC 2009

Modified Files:
pkgsrc/multimedia/mplayer-share: distinfo
pkgsrc/multimedia/mplayer-share/patches: patch-ar

Log Message:
Add RCS Id and comment.

(tron)

2009-08-14 15:37:40 UTC MAIN commitmail json YAML

Make joerg happy by using PYTHON_VERSIONS_ACCEPTED.

(wiz)

2009-08-14 15:31:58 UTC MAIN commitmail json YAML

Needs python, so include lang/python/application.mk.
Doesn't recognize python26, so set PYTHON_VERSIONS_INCOMPATIBLE to 26.

(wiz)

2009-08-14 15:24:05 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup ticket #2861 - requested by kefren
vlc08: security patch

Revisions pulled up:
- multimedia/vlc08/Makefile 1.22
- multimedia/vlc08/distinfo 1.9
- multimedia/vlc08/patches/patch-ab 1.7
---
Module Name: pkgsrc
Committed By: kefren
Date: Sun Aug  9 12:33:14 UTC 2009

Modified Files:
pkgsrc/multimedia/vlc08: Makefile distinfo
Added Files:
pkgsrc/multimedia/vlc08/patches: patch-ab

Log Message:
add fix for SA36037, bump PKGREVISION. XXX: not tested

(tron)

2009-08-14 15:16:47 UTC MAIN commitmail json YAML

Add missing dbus* dependencies. It seems they were pulled
in via some dependency but most now be included separately.

(wiz)

2009-08-14 15:06:44 UTC MAIN commitmail json YAML

+ album-4.06, botan-1.8.6, cdrtools-2.01.01alpha63, diffstat-1.48,
  gmime-2.2.24, gmime24-2.4.8, gnome-commander-1.2.8.1, gnutls-2.8.2,
  kdevelop-3.5.5, ldns-1.6.0 [pkg/41868], mkvtoolnix-2.9.8, mpc-0.17,
  mpg123-1.9.0, nagios-3.2.0, p5-xmltv-0.5.56, phpmyadmin-3.2.1,
  pixman-0.15.20, png-1.2.39, samba-3.2.14, unbound-1.3.3 [pkg/41871],
  vsftpd-2.2.0, wine-devel-1.1.27, xrandr-1.3.1, xterm-245,
  zile-2.3.10.

(wiz)

2009-08-14 14:21:35 UTC MAIN commitmail json YAML

pygopherd-2.0.16

(joerg)

2009-08-14 14:20:51 UTC MAIN commitmail json YAML

Update to pygopherd-2.0.16.  No detailed changes.
Prepared by Dave Vollenweider with some additional fixes by me.

(joerg)

2009-08-14 14:11:01 UTC MAIN commitmail json YAML

mixminion-0.0.8alpha3

(joerg)

2009-08-14 14:09:28 UTC MAIN commitmail json YAML

Update to Mixminion-0.0.8alpha3.

- support for newer Python versions
- various bug fixes and security improvements
- moved from LGPL to MIT license

Based on the update by Christian Sturm in wip with additional fixes from
me.

(joerg)

2009-08-14 14:02:37 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup tickets #2860, #2864 and #2865.

(tron)

2009-08-14 14:00:01 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup ticket #2860 - requested by kefren
vlc: security patch

Revisions pulled up:
- multimedia/vlc/Makefile 1.80 via patch
- multimedia/vlc/distinfo 1.29 via patch
- multimedia/vlc/patches/patch-aa 1.7
---
Module Name: pkgsrc
Committed By: kefren
Date: Sun Aug  9 12:18:17 UTC 2009

Modified Files:
pkgsrc/multimedia/vlc: Makefile distinfo
Added Files:
pkgsrc/multimedia/vlc/patches: patch-aa

Log Message:
add fix for SA26156
Bump PKGREVISION

(tron)

2009-08-14 12:07:25 UTC MAIN commitmail json YAML

Make a note about CLISP 2.48.

(asau)

2009-08-14 12:04:30 UTC MAIN commitmail json YAML

Remove stray "@dirrm".

(asau)

2009-08-14 10:47:58 UTC MAIN commitmail json YAML

Denote a successor for mail/p5-Mail-IMAPClient2.

(wiz)

2009-08-14 10:18:20 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup ticket #2865 - requested by taca
apr0: security patch

Revisions pulled up:
- devel/apr0/Makefile 1.6
- devel/apr0/distinfo 1.4
- devel/apr0/patches/patch-ab 1.1
- devel/apr0/patches/patch-ac 1.1
---
Module Name: pkgsrc
Committed By: taca
Date: Wed Aug 12 03:37:28 UTC 2009

Modified Files:
pkgsrc/devel/apr0: Makefile distinfo
Added Files:
pkgsrc/devel/apr0/patches: patch-ab patch-ac

Log Message:
Fix security problem of CVE-2009-2412 adding patches described in it.

Bump PKGREVISION.

(tron)

2009-08-14 10:02:08 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup ticket #2864 - requested by adrianp
wordpress: security update

Revisions pulled up:
- www/wordpress/Makefile 1.5
- www/wordpress/distinfo 1.4
---
Module Name: pkgsrc
Committed By: adrianp
Date: Wed Aug 12 20:21:10 UTC 2009

Modified Files:
pkgsrc/www/wordpress: Makefile distinfo

Log Message:
Update to 2.8.4 to fix security issue:
http://wordpress.org/development/2009/08/2-8-4-security-release/

(tron)

2009-08-13 21:21:30 UTC MAIN commitmail json YAML

Final fix in _stop() from spz@

(adrianp)

2009-08-13 20:20:25 UTC MAIN commitmail json YAML

CFLAGS must be modified after including bsd.prefs.mk.

XXX pkglint should detect this

(joerg)

2009-08-13 19:03:33 UTC MAIN commitmail json YAML

pidgin done.

(snj)

2009-08-13 19:02:37 UTC MAIN commitmail json YAML

gnutls-2.8.3 and libpurple(+friends)-2.5.8.

(snj)

2009-08-13 18:58:31 UTC MAIN commitmail json YAML

Update libpurple and friends to 2.5.8.  Changes:

ICQ:
* Fix misparsing a web message as an SMS message. (Yuriy Kaminskiy)

MSN:
Increase NS command history size to prevent crashes on buddy lists that
  have a lot of buddies on other networks like Yahoo!.

MySpace:
* Accounts with empty buddy lists are now properly marked as connected.
* Fix receiving messages from users of MySpace IM's web client.

Yahoo:
* Fixed phantom online buddies.  They should now properly disappear when
  signing out.
* Fixed the crashes some users were seeing with cn.scs.msg.yahoo.com in
  2.5.7.
* Fixed compiling on systems with glib 2.4.x or older.
* Fixed an issue with file transfers.  This may not resolve all issues,
  but it should resolve at least some of the most common ones.
* The pager server will automatically update to scsa.msg.yahoo.com if the
  user empties the field or if it is scs.msg.yahoo.com.  This should ease
  the pain of transition to the new login method.

XMPP:
* Fix an incompatibility betweeen Prosody and libpurple clients.

(snj)

2009-08-13 18:56:32 UTC MAIN commitmail json YAML

Update to 2.8.3.  Changes:

* Version 2.8.3 (released 2009-08-13)

** libgnutls: Fix patch for NUL in CN/SAN in last release.
Code intended to be removed would lead to an read-out-bound error in
some situations.  Reported by Tomas Hoger <thoger@redhat.com>.  A CVE
code have been allocated for the vulnerability: [CVE-2009-2730].

** libgnutls: Fix rare failure in gnutls_x509_crt_import.
The function may fail incorrectly when an earlier certificate was
imported to the same gnutls_x509_crt_t structure.

** libgnutls-extra, libgnutls-openssl: Fix MinGW cross-compiling build
error.

** tests: Made self-test mini-eagain take less time.

** doc: Typo fixes.

** API and ABI modifications:
No changes since last version.

* Version 2.8.2 (released 2009-08-10)

** libgnutls: Fix problem with NUL bytes in X.509 CN and SAN fields.
By using a NUL byte in CN/SAN fields, it was possible to fool GnuTLS
into 1) not printing the entire CN/SAN field value when printing a
certificate and 2) cause incorrect positive matches when matching a
hostname against a certificate.  Some CAs apparently have poor
checking of CN/SAN values and issue these (arguable invalid)
certificates.  Combined, this can be used by attackers to become a
MITM on server-authenticated TLS sessions.  The problem is mitigated
since attackers needs to get one certificate per site they want to
attack, and the attacker reveals his tracks by applying for a
certificate at the CA.  It does not apply to client authenticated TLS
sessions.  Research presented independently by Dan Kaminsky and Moxie
Marlinspike at BlackHat09.  Thanks to Tomas Hoger <thoger@redhat.com>
for providing one part of the patch.  [GNUTLS-SA-2009-4].

** libgnutls: Fix return value of gnutls_certificate_client_get_request_status.
Before it always returned false.  Reported by Peter Hendrickson
<pdh@wiredyne.com> in
<http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3668>.

** libgnutls: Fix off-by-one size computation error in unknown DN printing.
The error resulted in truncated strings when printing unknown OIDs in
X.509 certificate DNs.  Reported by Tim Kosse
<tim.kosse@filezilla-project.org> in
<http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3651>.

** libgnutls: Return correct bit lengths of some MPIs.
gnutls_dh_get_prime_bits, gnutls_rsa_export_get_modulus_bits, and
gnutls_dh_get_peers_public_bits.  Before the reported value was
overestimated.  Reported by Peter Hendrickson <pdh@wiredyne.com> in
<http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3607>.

** libgnutls: Avoid internal error when invoked after GNUTLS_E_AGAIN.
Report and patch by Tim Kosse <tim.kosse@filezilla-project.org> in
<http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3671>
and
<http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3670>.

** libgnutls: Relax checking of required libtasn1/libgcrypt versions.
Before we required that the runtime library used the same (or more
recent) libgcrypt/libtasn1 as it was compiled with.  Now we just check
that the runtime usage is above the minimum required.  Reported by
Marco d'Itri <md@linux.it> via Andreas Metzler
<ametzler@downhill.at.eu.org> in <http://bugs.debian.org/540449>.

** minitasn1: Internal copy updated to libtasn1 v2.3.

** tests: Fix failure in "chainverify" because a certificate have expired.

** API and ABI modifications:
No changes since last version.

(snj)

2009-08-13 18:18:56 UTC MAIN commitmail json YAML

2009-08-13 18:17:18 UTC MAIN commitmail json YAML

Update to ECL 9.8.3.

Changes since previous packaged version (8.12.0) include half year
of very active development:

- The dynamic FFI is now implemented using libffi.

- Support of UNICODE.

- Multithreading (provided Boehm-GC built with threads support).

- Command line flags to control the different memory limits:
  --heap-size, --lisp-stack, --frame-stack and --c-stack.

- The stack size is now measured in bytes, not in lisp words.

- The out of memory error (ext:storage-exhausted) can now be recovered.
  By default a correctable error is signaled and the user is given the
  chance to increase the heap size.

- Better compiler, optimizer, debugger.

- Improved handling of compiler errors.

- New and more easily extensible implementation of streams.

- *STANDARD-INPUT*, *{STANDARD,ERROR,TRACE}-OUTPUT* are no longer synonyms to
  *TERMINAL-IO* but directly the input or output streams associated to stdin,
  stdout and stderr.

- Improved numerics.

- Read-only readtables.

- Numerous bug fixes.

(asau)

2009-08-13 17:27:59 UTC MAIN commitmail json YAML

2009-08-13 15:23:38 UTC MAIN commitmail json YAML

Removed mail/p5-Mail-IMAPClient2
No longer needed now that p5-Mail-IMAPClient (v3.x) has fixed the
regressions which broke mail/imapsync

(abs)

2009-08-13 15:22:54 UTC MAIN commitmail json YAML

No longer needed now that p5-Mail-IMAPClient (v3.x) has fixed the regressions
which broke mail/imapsync

(abs)

2009-08-13 15:21:18 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-IMAPClient to 3.19 [abs 2009-08-13]
Updated mail/imapsync to 1.286 [abs 2009-08-13]

(abs)

2009-08-13 15:20:33 UTC MAIN commitmail json YAML

Updated mail/imapsync to 1.286

pkgsrc change:
Add missing p5-Date-Manip depends - noted by Martti Kuparinen

upstream changes:

revision 1.286
date: 2009/07/24 15:53:04;  author: gilles;  state: Exp;  lines: +10 -7
Bug fix: allow3x is on by default (was badly done after check_lib_version())

revision 1.285
date: 2009/07/03 00:59:20;  author: gilles;  state: Exp;  lines: +38 -17
Applied "patch -p0 < patches/imapsync.1.284.patch"
Attached is a patch against 1.284 with the following changes:

- [Bug] to_folder_name() failed to escape $f_prefix so --prefix1 <string> was treated like --prefix1 <regex> instead

- [Enhancement] updated parse_header_msg1() to return 0 on duplicate or undef on "no header" so now the "+ Skipping msg" will show either "no header" or "duplicate" as appropriate

- [Bug] flag handling: make sure we don't try to set \Recent as RFC 2060 doesn't allow for that

- [Enhancement] flag handling: only add missing flags instead of always calling $to->store() to set flags even when the flags already matched what we wanted... my first patch just used string comparison, this patch actually uses a hash for comparison so we're smarter about flags even when the order on $from and $to are different now - definitely helps speed up imapsync when lots of messages have flags and running sync in multiple passes

Phil

revision 1.284
date: 2009/06/30 03:14:24;  author: gilles;  state: Exp;  lines: +15 -19
allow Mail::IMAPClient 3.0.xx by default
Removed Mail::IMAPClient::Ssl since 3.0.19 has it now.

revision 1.283
date: 2009/06/30 02:54:57;  author: gilles;  state: Exp;  lines: +123 -94
Applied Phil Lobbes patch as is : ./patches/imapsync.1.282.patch

revision 1.282
date: 2009/05/11 00:05:39;  author: gilles;  state: Exp;  lines: +15 -10
Added option --justlogin

revision 1.281
date: 2009/04/24 13:58:15;  author: gilles;  state: Exp;  lines: +29 -6
Added tests_flags_regex() regression tests.

revision 1.280
date: 2009/04/02 11:32:10;  author: gilles;  state: Exp;  lines: +103 -47
Applied Phil patch with many IsUnconnected() calls.

revision 1.279
date: 2009/03/22 00:12:15;  author: gilles;  state: Exp;  lines: +9 -7
isUnconnected BAD IsUnconnected GOOD!

revision 1.278
date: 2009/02/23 00:40:25;  author: gilles;  state: Exp;  lines: +14 -12
Less imap output with +FLAGS.SILENT
Changed unsubscribe subscribe order in documentation.
Typos.

revision 1.277
date: 2009/02/21 12:10:50;  author: gilles;  state: Exp;  lines: +8 -6
Better example explanation.

revision 1.276
date: 2009/02/21 04:04:08;  author: gilles;  state: Exp;  lines: +15 -22
Removed mailto: in MAILING-LIST section.

revision 1.275
date: 2009/02/21 02:04:26;  author: gilles;  state: Exp;  lines: +25 -14
Change real password to "MASKED" in command line output.

revision 1.274
date: 2009/02/21 01:10:02;  author: gilles;  state: Exp;  lines: +14 -8
--delete 2 is now a fatal error.

revision 1.273
date: 2009/02/21 00:48:40;  author: gilles;  state: Exp;  lines: +36 -37
Print a warning and return error code each time a disconnection occurs.

revision 1.272
date: 2009/02/20 23:41:09;  author: gilles;  state: Exp;  lines: +78 -78
Fixed many English errors (thanks to Reuben Thomas)

revision 1.271
date: 2009/02/19 23:38:32;  author: gilles;  state: Exp;  lines: +28 -35
Bug fix about $t_prefix and INBOX '.' was hardcoded.
Small change on documentation.

revision 1.270
date: 2009/02/14 22:21:35;  author: gilles;  state: Exp;  lines: +16 -11
Another Phil Lobbes patch.
Exit with error code and warning when a server disconnect
during the folder loop.

revision 1.269
date: 2009/02/14 22:08:18;  author: gilles;  state: Exp;  lines: +65 -38
Applied Phil Lobbes patches.
- catch (what should be) fatal eval errors for regextrans2,
  $regexflag, $regexmess, instead of silently ignoring them
  and letting the user think they are working/OK
- fix login_imap() Died at .../imapsync line 780 when IsUnconnected()
  and log some more useful into to stderr than just 'Died at...'
- check_lib_version() contains a bad use of unset match/capture variables
- added and now use new function myconnect() and myconnect_v2()
  does not require hack/override of Mail::IMAPClient::connect
  and is backwards compatible with Mail::IMAPClient v2.x
- redo $Mail::IMAPClient::Authuser hack since only
  Mail::IMAPClient v2 does not have Authuser()
Many thanks to Phil.

revision 1.268
date: 2009/02/14 03:27:51;  author: gilles;  state: Exp;  lines: +22 -21
Fixed  bad VERSION_IMAPClient output

revision 1.267
date: 2008/10/07 11:36:02;  author: gilles;  state: Exp;  lines: +14 -10
Better test to check non existing folders on destination
server.

revision 1.266
date: 2008/10/07 05:56:52;  author: gilles;  state: Exp;  lines: +27 -10
*** empty log message ***

revision 1.265
date: 2008/08/30 14:20:38;  author: gilles;  state: Exp;  lines: +7 -7
carp to warn

(abs)

2009-08-13 15:15:11 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-IMAPClient to 3.19

version 3.19: Fri Jun 19 14:59:15 EDT 2009
- *search() backwards compat: caller must quote single arg properly
  rt.cpan.org#47044: $imap->search does not return [ekuemmer]
- cleanup regexp in _send_line()
- reduce extra newlines injected by _debug()

version 3.19_02: Tue Jun  9 00:47:52 EDT 2009
- _list_or_lsub() now calls _list_response_preprocess so
  consumers of this method no longer need to deal with how
  LITERAL data is represented in the returned data
- update _list_or_lsub_response_parse handling of folder names
  that came back as literal data
- update comments related to _list_response_preprocess
version 3.19_01: Fri Jun  5 15:45:05 EDT 2009
- make parse_headers more robust to errors/non-header data

version 3.18: Wed Jun  3 23:07:12 EDT 2009
- enhance fetch_hash to enable caller to specify list of messages
  suggestion by [Eugene Mamaev]
- better handling of untagged BYE response

version 3.18_02: Wed May 27 10:02:24 EDT 2009
- *new attribute Ssl, when true causes IO::Socket::SSL to be
  used instead of IO::Socket::INET.  This change allows
  Reconnectretry logic to work on SSL connections too.
        - have LastError cluck() if setting error to NO not connected
        - handle errors from imap4rev1() in multiple places
        - Reconnectretry/_imap_command enhancements/fixes
  + only run command if IsConnected
  + keep a temporary history of LastError(s)
  + sets LastError to NO not connected if ! IsConnected
  + retry =~ timeout|socket closed|* BYE| NO not connected
        - _imap_command_do reduce data logged when using APPEND
        - fetch() now handles messages() errors
        - thread(), has_capability(), capability() better error checking
        - authenticate() now uses _imap_command for retry mechanism
        - size() now sets LastError when no RFC822.SIZE is found

version 3.18_01: Fri May 22 17:08:00 EDT 2009
- *update several methods to use common _get_response() method
- refactor most code handling imap responses
- new internal method _get_response() to reduce code duplication
- more regex cleanup $CR/$LF (not \r\n) per perlport/IMAP spec
- major cleanup/fix of append_file for rt.cpan.org#42434

(abs)

2009-08-13 13:24:21 UTC MAIN commitmail json YAML

Updated mail/sylpheed to 2.7.1

(ahoka)

2009-08-13 13:22:17 UTC MAIN commitmail json YAML

Changes from 2.7.0

    * The feature to import and export .eml files was added.
    * Progress is displayed during import and export now.
    * The warning about non-exist plug-in directory was removed.
    * The comments within Content-Type header are handled now.
    * The order of signals emitted at moving messages was modified.
    * The sylpheed.spec file was fixed.

(ahoka)

2009-08-13 12:57:59 UTC MAIN commitmail json YAML

The latest vala is here.

(ahoka)

2009-08-13 09:32:14 UTC MAIN commitmail json YAML

include ../../databases/db4/buildlink3.mk to make this build.
Bump PKGREVISION to 3.

(apb)

2009-08-12 22:40:19 UTC MAIN commitmail json YAML

Updated mail/sympa to 5.4.4nb1

(bouyer)

2009-08-12 22:39:17 UTC MAIN commitmail json YAML

ALso needs p5-Template-Toolkit. Bump PKGREVISION.

(bouyer)

2009-08-12 21:51:49 UTC MAIN commitmail json YAML

2009-08-12 21:15:32 UTC MAIN commitmail json YAML

2009-08-12 21:14:35 UTC MAIN commitmail json YAML

Update to 3.141592. From the changelog:

* Add new hooks: canremove, canrename, rename. (intrigeri)
* rename: Refactor subpage rename handling code into rename hook.
    (intrigeri)
* po: New plugin, suporting translation of wiki pages using po
    files. (intrigeri)
* Add build machinery to build po files to translate the underlay wikis,
* Add further build machinery to generate translated underlays from
    the po file, for use by wikis whose primary language is not English.
* Add Danish basewiki translation by Jonas Smedegaard.
* img: Fix adding of dependency from page to the image.
* pagestats: add among parameter, which only counts links from
    specified pages (smcv)
* pagestats: when making a tag cloud, don't emit links where the
    tag is unused (smcv)
* map: Avoid emitting an unclosed ul element if the map is empty.
    (harishcm)
* inline: Add pagenames parameter that can be used to list a set
    of pages to inline, in a specific order, without using a PageSpec.
    (smcv)
* Add getsource plugin (Will, smcv)

Note that the new po plugin won't work until textproc/po4a is updated
to at least 0.34. Any takers?

(schmonz)

2009-08-12 20:21:24 UTC MAIN commitmail json YAML

Updated www/wordpress to 2.8.4

(adrianp)

2009-08-12 20:21:10 UTC MAIN commitmail json YAML

2009-08-12 20:07:58 UTC MAIN commitmail json YAML

2009-08-12 18:11:24 UTC MAIN commitmail json YAML

Include curses.buildlink3.mk on platforms which want to link against curses.
Unbreaks build on DargonFly and probably some others.

(hasso)

2009-08-12 18:07:15 UTC MAIN commitmail json YAML

Add USE_LIBTOOL=yes - thanks tnn@

(abs)

2009-08-12 17:18:52 UTC MAIN commitmail json YAML

Note update of lua-stdlib{,-doc}.

(minskim)

2009-08-12 17:17:42 UTC MAIN commitmail json YAML

Update lua-stdlib and lua-stdlib-doc to 11.

Changes since 8:
    - Updates the object module to be the same as that published in "Lua
      Gems", and fixes a bug in the utility mk1file which makes a one-file
      version of the library, to stop it permanently redefining require.
    - Fixes table.deepclone to copy metatables, as it should.
    - Fixes a bug in string.format, removes the redundant string.join
      (it's the same as table.concat), and adds to table.clone and
      table.deepclone the ability to copy without metatables.

(minskim)

2009-08-12 13:50:16 UTC MAIN commitmail json YAML

Updated databases/tokyocabinet to 1.4.31

(obache)

2009-08-12 13:50:02 UTC MAIN commitmail json YAML

Update tokyocabinet to 1.4.31.

2009-07-23  Mikio Hirabayashi  <mikio@users.sourceforge.net>

* tcutil.c (tcmpoolpop, tcstatfile): new functions.

* tcutil.c (tcwwwformdecode2, tcarccipher): new functions.

* tcutil.c (tctmpldumpeval, tctmpldumpevalvar): type checking was improved.

- Release: 1.4.31

(obache)

2009-08-12 13:36:06 UTC MAIN commitmail json YAML

Conflicts with gnuls (misc/gnuls), as noted by Mihkel Ader in PR 41876.
Bump revision.

(asau)

2009-08-12 12:51:56 UTC MAIN commitmail json YAML

done - ruby-gnome2-0.19.1

(obache)

2009-08-12 12:51:06 UTC MAIN commitmail json YAML

Note update of ruby-gnome2.

(obache)

2009-08-12 12:43:11 UTC MAIN commitmail json YAML

Update ruby-gnome2 to 0.19.1.

This release is a bug fix release of 0.19.0.

=== Changes

==== Ruby/GTK2

  * use RUBYARCHDIR
    [OBATA Akio]
  * #2814953: install missing headers
    [Mamoru Tasaka]

==== Ruby/GLib2

  * Bug fixes:
    * avoid object allocation while GC
      [OBATA Akio, Kouhei Sutou]
  * use RUBYARCHDIR
    [OBATA Akio]
  * mkmf-gnome2.rb add "-I$(vendorarchdir)" to $CPPFLAGS.
    [OBATA Akio, Kouhei Sutou]

==== Ruby/ATK

  * use RUBYARCHDIR
    [OBATA Akio]

==== Ruby/Pango

  * use RUBYARCHDIR
    [OBATA Akio]
  * use gem version rcairo as fallback
    [OBATA Akio]

==== Ruby/Libart

  * use RUBYARCHDIR
    [OBATA Akio]

==== Ruby/GdkPixbuf

  * use gem version rcairo as fallback
    [OBATA Akio]

==== Ruby/GnomePrint

  * install rblibgnomeprintversion.h
    [OBATA Akio, Kouhei Sutou]

==== Ruby/GtkMozEmbeded

  * fix header generation error caused by missing file
    [OBATA Akio]

==== Ruby/VTE

  * support VTE 0.20
    [Kouhei Sutou]

==== Ruby/PanelApplet

  * #2815036: re-support Ruby 1.8.6.
    [Mamoru Tasaka, Kouhei Sutou]

==== Ruby/Libglade2

  * Debian#519786: fix GC related SEGV when a widget in
    glade is removed by hand.
    [Arnaud Cornet, Kouhei Sutou]

=== Thanks

  * OBATA Akio
  * Mamoru Tasaka
  * Arnaud Cornet

(obache)

2009-08-12 12:28:44 UTC MAIN commitmail json YAML

gnuradio update.

(markd)

2009-08-12 12:21:42 UTC MAIN commitmail json YAML

2009-08-12 12:20:04 UTC MAIN commitmail json YAML

2009-08-12 11:47:23 UTC MAIN commitmail json YAML

Updated lang/vala to 0.7.5

(ahoka)

2009-08-12 11:43:57 UTC MAIN commitmail json YAML

Vala 0.7.5
Changes

    * Add support for static properties.
    * Add support for delegate properties.
    * Support virtual default handler for signals.
    * Add limited support for derived compact classes.
    * Add libgdata bindings (V鱈ctor Manuel J叩quez Leal).
    * Add libusb-1.0 bindings (Evan Nemerson).
    * Many bug fixes and binding updates.

Vala 0.7.4
Changes

    * Add support for array properties.
    * Support implicit and explicit GValue casts.
    * Add initial support for generic methods.
    * Add postgres bindings.
    * Many bug fixes and binding updates.

Vala 0.7.3
Changes

    * Add initial support for POSIX profile.
    * Add --vapi and --gir commandline options.
    * Add initial x11, xcb, and cairo-xcb bindings.
    * Many bug fixes and binding updates.

Vala 0.7.2
Changes

    * Improvements to the .gir reader and writer (Didier Ptitjes).
    * Many bug fixes and binding updates.

Vala 0.7.1
Changes

    * Introduce new syntax to connect/disconnect signal handlers.
    * Add experimental support for fixed-length arrays.
    *

      Update Genie parser (Jamie McCracken).
    * Updates to the GLib, Cairo, GTK+, GStreamer, and POSIX bindings.
    * Many bug fixes.

Vala 0.7.0
Changes

    * Do not generate header files unless requested by the -H commandline
          o option. This requires changes in the build system of Vala projects.
    * Support conditional compilation.

Vala 0.6.1
Changes

    * Updates to the GLib, Cairo, GTK+, GStreamer, and POSIX bindings.
    * Minor bug fixes.

Vala 0.6.0
Changes

    * Improvements to the .gir reader and writer (Didier Ptitjes).
    * Add librsvg-2.0 bindings (Evan Nemerson).
    * Add Maemo libosso bindings (Jukka-Pekka Iivonen).
    * Add V4L2 bindings (Mat鱈as De la Puente).
    * Many bug fixes.

(ahoka)

2009-08-12 07:54:32 UTC MAIN commitmail json YAML

Updated math/maxima to 5.19.0

(asau)

2009-08-12 07:53:21 UTC MAIN commitmail json YAML

Update to Maxima 5.19.0.

ChangeLog is empty, the package contains various bug fixes.

(asau)

2009-08-12 07:45:10 UTC MAIN commitmail json YAML

MAKE_JOBS_SAFE=no, for all your repeatable build desires

(abs)

2009-08-12 07:27:26 UTC MAIN commitmail json YAML

fix unsatisfiable dependency

(tnn)

2009-08-12 05:22:32 UTC MAIN commitmail json YAML

+ po4a-0.36.3

(schmonz)

2009-08-12 04:51:34 UTC MAIN commitmail json YAML

- belatedly note update of comms/asterisk16 to 1.6.1.2 on 2009-08-10
- note update of comms/asterisk16 to 1.6.1.4

(jnemeth)

2009-08-12 04:19:45 UTC MAIN commitmail json YAML

update of apache2 package was withdrawn.

(taca)

2009-08-12 04:18:27 UTC MAIN commitmail json YAML

Back out previous PKG_REVISION bump, hoping that it was in 40 minutes...

(taca)

2009-08-12 03:39:31 UTC MAIN commitmail json YAML

Note update of these packages.

devel/apr0 0.9.17.2.0.63nb2
www/apache2 2.0.63nb5

(taca)

2009-08-12 03:38:28 UTC MAIN commitmail json YAML

Bump PKGREVISION reflecting update of devel/apr0.

(taca)

2009-08-12 03:37:28 UTC MAIN commitmail json YAML

Fix security problem of CVE-2009-2412 adding patches described in it.

Bump PKGREVISION.

(taca)

2009-08-12 03:27:48 UTC MAIN commitmail json YAML

Update to 1.6.1.4.  This fixes AST-2009-005, which is a DOS problem with
chan_sip.

(jnemeth)

2009-08-12 02:44:52 UTC MAIN commitmail json YAML

Updated archivers/php-zip to 1.8.10

(dsainty)

2009-08-12 02:38:24 UTC MAIN commitmail json YAML

Update php-zip from version 1.0 to version 1.8.10.  This appears to be the
last version that can build under both www/php4 and lang/php5, since version
1.9.0 and 1.10.1 both require PCRE support in the PHP engine, which Pkgsrc
php4 seems to build without.

Changes since version 1.0:

1.8.10
  - Fixed build, missing macro

1.8.9
  - Fixed a possible crash in the event directory cannot be created, due to a
    double free. (Ilia)

1.8.8
  - PECL bug #10414, Fixed macros name in stream
  - Fixed possible leak when open_basedir checks fail in extractTo (Ilia)

1.8.7
  - Add missing openbasedir or safemode (php 5.x and 4.x) checks in zip://
    stream or ZipArchive::open
  - Fixed possible relative path issues in zip_open and TS mode (old API)
  - rename SAFEMODE_CHECKFILE to OPENBASEDIR_CHECKPATH (no confusion when used
    wiht php6)

1.8.6
  - Fixed possible leaks in zip_read() and zip_entry_read (old API)
  - Fixed leak when an entry is 0 bytes length in ZipArchive::getFrom*()
    methods
  - Use snprintf instead sprintf (Ilia, Marcus)
  - Add examples images and odt in release

1.8.5
  - Fixed leaks happening on error (Nuno Lopes)
  - PHP bug #40228, extractTo does not create recursive empty path
    (empty1/empty2/)

1.8.4
  - Use phplibdir in config.m4 (for lib64 or other custom location)
  - Add path length sanity checks (Ilia, Tony)
  - Update year, happy new year

1.8.3
  - Fixed threadsafe issue with localtime function, it uses now the php
    php_localtime_r (Ron Korving, Ilia)

1.8.2
  - restore compatibility with php 5.1.0 to 5.1.2 (other versions are not
    affected)

1.8.1
  - PECL #9278, Binary access issues on Windows in any SAPI but CGI, CLI and
    embed (windows API does not respect "b" mode given to fopen)
  - Fixed a possible leak in the entries managements (Nuno Lopes)
  - createEmptyDir returns true one success
  - Use static for each internal functions when possible (Nuno Lopes)
  - Update protos in the sources

1.8.0
  - Fixed a possible leak in statName and statIndex
  - Added zipArchive::adEmptyDir() method, creates an empty directory
  - Fixed setComment when used with a freshly added entry
  - setComment now returns the expected value (boolean) (Hannes)

1.7.5
  - PECL Bug #9082, wrong entry name like "a/b//file.txt" cannot be extracted
    on windows A "bug" in php mkdir was the cause, a work around has been
    introduced for php versions before 5.2.0

1.7.4
  - PHP Bug #38943, properties in extended class cannot be set
  - PHP Bug #38944, freshly created archive has no comment or cdir

1.7.3
  - PECL Bug #8700, zipArchive::getFromIndex fails
  - PECL Bug #8676, zipArchive::addFile was not updated and still used
    VCWD_REALPATH, it now uses expand_filename
  - Fixed wrong internal types for comment lenghts, does not affect userland
    script (Nuno Lopes)

1.7.2
  - Previous release was broken in non threaded environment.  This release
    works smoothly in threaded and non threaded.  Thanks to "FamilleCollet dot
    com" (Fedora-Extra maintainer for the head up)

1.7.1
  - Fix issues with relative path in threaded environment, VCWD_REALPATH is
    used in ZipArchive::open() and ::addFile

1.7.0
  - Add ZIPARCHIVE::OVERWRITE mode for ::open(), creates a new archive and
    write over an existing file
  - locateName do not change anymore the state, it can now be used to test an
    entry
  - fix possilbe crashes when two entries with the same name have been added
  - Enhanced safemode support
  - fix builds against php 6.0 (HEAD)
  - fix compiler warning (Ilia, Tony)
  - cleanup phpinfo() output (Ilia)

1.6.0
  - Rename Class Zip to ZipArchive, required to be bundled in php 5.2.0 (Zip
    being a ZipCode in US), making the role of this class more obvious *Gah*

1.5.0
  - bring consistency to the method names:
  - rename zip::delete() to deleteIndex()
  - add zip::deleteName()
  - rename zip::statPath to zip::statName()
  - rename zip::rename to zip::renameIndex()
  - add zip::renameName();
  - add zip::locateName(), returns the index of an entry, allows case
    insensitive or directory free lookup (ZIP::FL_NOCASE, ZIP::FL_NODIR)
  - add zip::unchangeName(), ::unchangeIndex(), unchangeAll() and
    unchangeArchive() revert changes to an entry, to all entries or the
    archive
  - add zip::getNameIndex(), get the name of the entry at the given position
  - Bug #7658, Modify zip archives causes corruption if the data descriptor is
    used (bit 3 of the general flags)
  - fix a bug when in the delete and rename methods when the index is lower
    than 1
  - zip::addFile() must return true on success
  - zip::open() returns now the error code on error and true on success

1.4.1
  - Add missing files in the package release

1.4.0
  - Add write mode to the archive comment (zip::comment property)
  - Add zip::setCommentName and ::setCommentIndex, add or remove entrie comment
  - Add zip::getCommentName and ::getCommentIndex, get an entrie comment
  - Add zip::setArchiveComment
  - Full sync with zip-0.7.1
  - #8009, modify archives on windows cannot be closed

1.3.1
  - #7500, Fix build with php 5.1.0, 5.1.1 and 5.1.2

1.3.0
  - Fix possible leak with __set/__get in classes extending the Zip intern
    object (tony2001[at]php.net)
  - Added getFromName(), return the contents of an entry using its name
  - Added getFromIndex(), return the contents of an entry using its index

1.2.3
  - #7214, use binary safe string as return value, 0x00 was considered as the
    end of the content, affected only the procedural API

1.2.2
  - fix a bug in internal zip_close, new archives were not written
  - ::open returns now false on error
  - update the "create.php" example, status and returned codes are now checked
  - fix a leak when the ::open method is called twice or more with the same
    object

1.2.1
  - fixed a possible build problem (mkstemp missing)
  - fix a bug where extending the Zip class does allow to write to a property,
    see php bugs #36743 (array)

1.2.0
  - enable stream by default,
    * use uri like zip:///path/to/my.zip#entryname.dat
    (the URI format may change in future version)
  - add support for print_r/var_dump (Zip object)
  - add tests for the OO (still need more)
  - add more example, like using xmlreader and zip stream to parse
    OpenDocument meta info

1.1.2
  - do not create empty file when a zip entry is only a directory (empty or
    not)

1.1.1
  - Fix PHP 5.1 detection at compiletie
  - fix possible build errors with gcc other than 4.0.x
  - add better zlib detection
  - "--with-zlib-dir=[DIR]" added

1.1.0
  - replace the old zip extensions
  - 100% compatible with the old API
  - added zip creation support (write mode)
  - added OO interface
  - Stream support, getStream method returns a file handler
  - bundled libzip and drop zzlib usage (see http://www.nih.at/libzip/)

1.0
  - Initial Release in PECL

(dsainty)

2009-08-12 02:31:23 UTC MAIN commitmail json YAML

2009-08-11 23:11:59 UTC MAIN commitmail json YAML

Updated archivers/pigz to 2.1.5

(zafer)

2009-08-11 23:09:27 UTC MAIN commitmail json YAML

Updated to 2.1.5. Added license.

ChangeLog:
Added 2008, 2009 to --license statement
Allow numeric parameter immediately after -p or -b
Enforce parameter after -p, -b, -s, before other options
Enforce numeric parameters to have only numeric digits
Try to determine the number of processors for -p default
Fix --suffix short option to be -S to match gzip [Bloch]
Decompress if executable named "unpigz" [Amundsen]
Add a little bit of testing to Makefile

(zafer)

2009-08-11 22:10:34 UTC MAIN commitmail json YAML

remove dead master site mirror.nu6.org. Doesn't resolve anymore.

(zafer)

2009-08-11 22:03:39 UTC MAIN commitmail json YAML

remove master site www.engergyhq.es.eu.org. Doesn't resolve anymore.

(zafer)

2009-08-11 21:03:56 UTC MAIN commitmail json YAML

It's not MAKE_JOBS safe.

(hasso)

2009-08-11 20:53:06 UTC MAIN commitmail json YAML

Make this build again on netbsd-current.  Bump PKGREVISION to 5.

(apb)

2009-08-11 20:48:07 UTC MAIN commitmail json YAML

Fix some lint warnings about G/C unused variables and changing a
variable type to match the return type of fetch_read.

(joerg)

2009-08-11 20:40:19 UTC MAIN commitmail json YAML

Updated x11/kdebase3 to 3.5.10nb4.

(hasso)

2009-08-11 20:37:55 UTC MAIN commitmail json YAML

Make ksysguardd work for FreeBSD and DragonFly users as well.
Bump PKGREVISION.

(hasso)

2009-08-11 20:32:03 UTC MAIN commitmail json YAML

Just kidding, it's ikiwiki 3.141592 (not kidding about that).

(schmonz)

2009-08-11 20:25:22 UTC MAIN commitmail json YAML

Fix a #ifdef condition in print/luatex so that it holds on Solaris
with Sun Studio.

(minskim)

2009-08-11 19:48:42 UTC MAIN commitmail json YAML

Updated comms/xtel to 3.3.0nb9
Updated graphics/xfig to 3.2.5bnb1

(hasso)

2009-08-11 19:46:20 UTC MAIN commitmail json YAML

+ ikiwiki-3.15 [schmonz]

(schmonz)

2009-08-11 19:42:31 UTC MAIN commitmail json YAML

Fix PLIST for platforms !NetBSD. Bump PKGREVISION.

(hasso)

2009-08-11 19:41:43 UTC MAIN commitmail json YAML

Fix PLIST for platforms !NetBSD. Bump PKGREVISION.

(hasso)

2009-08-11 18:57:07 UTC MAIN commitmail json YAML

update to 1.0
changes:
-added support of svg gradients
-implemented GetResultBBox() (SVG1.2)
-added parameter coordinates (wxSVG_COORDINATES) to GetBBox()
-implemented baseline
-some other small changes and bug fixes

(drochner)

2009-08-11 18:04:49 UTC MAIN commitmail json YAML

Add an option to enable thread support in boehm-gc.

(minskim)

2009-08-11 16:15:54 UTC MAIN commitmail json YAML

mention recent updates

(drochner)

2009-08-11 15:54:36 UTC MAIN commitmail json YAML

Update ap2-auth-mellon to 0.2.4

(manu)

2009-08-11 15:53:41 UTC MAIN commitmail json YAML

Change since 0.2.4:

* Fix for downloads of files with Internet Explorer with SSL enabled.

* Mark session as disabled as soon as logout starts, in case the IdP
  doesn't respond.

* Bugfix for session lifetime. Take the session lifetime from the
  SessionNotOnOrAfter attribute if it is present.

(manu)

2009-08-11 15:44:14 UTC MAIN commitmail json YAML

2009-08-11 15:44:01 UTC MAIN commitmail json YAML

add a comment telling that ImageMagick detection in "configure"
doesn't work currently

(drochner)

2009-08-11 15:41:01 UTC MAIN commitmail json YAML

bump PKGREVISION for ImageMagick shlib name change

(drochner)

2009-08-11 15:40:18 UTC MAIN commitmail json YAML

turn ImageMagick/bl3 inclusion into a simple DEPENDS, nothing
is compiled here

(drochner)

2009-08-11 15:26:22 UTC MAIN commitmail json YAML

2009-08-11 15:24:27 UTC MAIN commitmail json YAML

back out unneeded PKGREV change (has been there only for minutes),
according to Joerg the ImageMagick libs are not used

(drochner)

2009-08-11 15:10:14 UTC MAIN commitmail json YAML

Apply md.patch in config/makedepend directory to avoid conflict
with getline(3).

(taca)

2009-08-11 15:01:14 UTC MAIN commitmail json YAML

2009-08-11 14:59:09 UTC MAIN commitmail json YAML

2009-08-11 14:52:28 UTC MAIN commitmail json YAML

Add a patch to deal with getline(3) confliction.

(taca)

2009-08-11 14:41:23 UTC MAIN commitmail json YAML

* Add a patch to fix build problem with OpenSSL 1.0.0 and later.
  The patch is provided by Sverre Froyen <sverre at viewmark.com> and
  I confirmed its contents.
* Remove checksum for patch-ad which had been removed.

(taca)

2009-08-11 14:38:27 UTC MAIN commitmail json YAML

to save myself the work to install KDE3: instead of checking now
ImageMagick is used just bump PKGREVISION (for ImageMagick lib
major change), to be on the safe side.

(drochner)

2009-08-11 14:35:15 UTC MAIN commitmail json YAML

bump PKGREVISION for ImageMagick shlib name change

(drochner)

2009-08-11 14:27:44 UTC MAIN commitmail json YAML

Note update of lang/ruby18-base package to 1.8.7.174nb2.

(taca)

2009-08-11 14:26:59 UTC MAIN commitmail json YAML

2009-08-11 14:07:01 UTC MAIN commitmail json YAML

This pkg is too big for me to check how ImageMagick is used,
just bump PKGREVISION (for ImageMagick lib major change),
to be on the safe side.

(drochner)

2009-08-11 14:03:11 UTC MAIN commitmail json YAML

turn ImageMagick/bl3 inclusion into a simple DEPENDS, nothing
is compiled here

(drochner)

2009-08-11 13:15:36 UTC MAIN commitmail json YAML

bump PKGREVISION for ImageMagick shlib name change

(drochner)

2009-08-11 13:11:23 UTC MAIN commitmail json YAML

2009-08-11 13:10:46 UTC MAIN commitmail json YAML

Note update of www/typolight27-translations package to 20090810.

(taca)

2009-08-11 13:09:21 UTC MAIN commitmail json YAML

Update typolight27-translations package to 20090810.

* Update Latvian translation file.

pkgsrc change: fix Latvian PLIST file.

(taca)

2009-08-11 12:46:41 UTC MAIN commitmail json YAML

turn ImageMagick/bl3 inclusion into a simple DEPENDS, nothing
is compiled here

(drochner)

2009-08-11 12:40:45 UTC MAIN commitmail json YAML

recurse: PKGREV bump for ImageMagick shlib name change

(drochner)

2009-08-11 12:34:51 UTC MAIN commitmail json YAML

bump PKGREVISION for ImageMagick shlib name change

(drochner)

2009-08-11 12:31:30 UTC MAIN commitmail json YAML

turn ImageMagick/bl3 inclusion into a simple DEPENDS, nothing
compiles against its libraries

(drochner)

2009-08-11 12:17:20 UTC MAIN commitmail json YAML

turn ImageMagick/bl3 inclusion into a simple DEPENDS, nothing
compiles against its libraries

(drochner)

2009-08-11 12:12:35 UTC MAIN commitmail json YAML

turn ImageMagick/bl3 inclusion into a simple DEPENDS, nothing
is compiled here

(drochner)

2009-08-11 11:55:29 UTC MAIN commitmail json YAML

recursive PKGREVISION bump for icu shlib version change,
suggested by OBATA Akio

(drochner)

2009-08-11 11:33:58 UTC MAIN commitmail json YAML

Update to Dovecot 1.1.18.

+ dovecot -n/-a now outputs also lda settings.
- Maildir++ quota: Quota was sometimes updated wrong when it was
  being recalculated.
- Searching quoted-printable message body internally converted "_"
  characters to spaces and didn't match search keys with "_".
- Messages in year's first/last day may have had broken timezones
  with OSes not having struct tm->tm_gmtoff (e.g. Solaris).

(ghen)

2009-08-11 11:29:04 UTC MAIN commitmail json YAML

add checksum for added patch

(drochner)

2009-08-11 11:26:23 UTC MAIN commitmail json YAML

Add some updates I have done a bit ago.

(joerg)

2009-08-11 11:17:56 UTC MAIN commitmail json YAML

2009-08-11 11:16:38 UTC MAIN commitmail json YAML

make the installed include files more consistent: don't rely
on HAVE_STDINT_H defined by the client app, don't install
mp4ffint.h which is purely internal,
fix build of the xmms plugin,
bump PKGREVISION

(drochner)

2009-08-11 10:45:01 UTC MAIN commitmail json YAML

Set license to "mit", "gnu-lgpl-v2.1" and "modified-bsd".

(tron)

2009-08-11 06:07:21 UTC MAIN commitmail json YAML

Updated textproc/iso-codes to 3.10.2

(wiz)

2009-08-11 06:07:01 UTC MAIN commitmail json YAML

Update to 3.10.2:

iso-codes 3.10.2
----------------
Tobias Quathamer <toddy@debian.org>
Mon, 3 August 2009

  [ ISO 3166 translations ]
  * Russian by Yuri Kozlov. Closes:#537814
  * Breton by Denis Arnaud (LP)
  * Marathi by Sandeep Shedmake (TP)
  * new Bengali (India) by Runa Bhattacharjee (TP)
  * Czech by Miroslav Kure

  [ ISO 3166-2 translations ]
  * Simplified Chinese by LI Daobing (TP)
  * Danish by Joe Hansen (TP)

  [ ISO 639 translations ]
  * Traditional Chinese by Wei-Lun Chao (TP)
  * Breton by Denis Arnaud (LP)
  * Marathi by Sandeep Shedmake (TP)
  * new Gujarati by Ankit Patel (TP)
  * new Bengali (India) by Runa Bhattacharjee (TP)
  * new Punjabi by A S Alam (TP)
  * Czech by Miroslav Kure

  [ ISO 639-3 translations ]
  * Breton by Denis Arnaud (LP)
  * Marathi by Sandeep Shedmake (TP)
  * new Gujarati by Ankit Patel (TP)

  [ ISO 15924 translations ]
  * Breton by Denis Arnaud (LP)
  * Czech by Miroslav Kure

  [ ISO 4217 translations ]
  * Breton by Denis Arnaud (LP)
  * Czech by Miroslav Kure

(wiz)

2009-08-10 23:12:38 UTC MAIN commitmail json YAML

Updated misc/pciids to 20090807

(wiz)

2009-08-10 23:12:11 UTC MAIN commitmail json YAML

2009-08-10 23:10:29 UTC MAIN commitmail json YAML

patch LP64 bug in AAC plugin (Raymond Meyer via PR pkg/41872)

(tnn)

2009-08-10 23:03:20 UTC MAIN commitmail json YAML

If the OPSYS-specific defconfig file isn't present, don't bomb out the
Makefile by trying to concatenate the non-existent file.  Fixes the build for
Linux, and presumably all other non-NetBSD platforms too.

(dsainty)

2009-08-10 20:37:15 UTC MAIN commitmail json YAML

Disable use of SSE2 accelerations if compiled with gcc<4.2, this causes
crashes. (means this snapshot is just too new for NetBSD's toolchain)

(drochner)

2009-08-10 20:01:37 UTC MAIN commitmail json YAML

bump PKGREVISION for ImageMagick shlib change

(drochner)

2009-08-10 19:59:48 UTC MAIN commitmail json YAML

this changed its shlib major number on last update, adjust ABI requirement

(drochner)

2009-08-10 19:02:16 UTC MAIN commitmail json YAML

+bmp-scrobbler SUBDIR

(kefren)

2009-08-10 19:01:26 UTC MAIN commitmail json YAML

+audio/bmp-scrobbler

(kefren)

2009-08-10 19:00:00 UTC MAIN commitmail json YAML

Import audio/bmp-scrobbler 0.4.0, a last.fm reporter for beep media player.
Started from wip xmms similar work

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(kefren)

2009-08-10 17:53:45 UTC MAIN commitmail json YAML

xchm update is done.

(minskim)

2009-08-10 17:50:43 UTC MAIN commitmail json YAML

Note update of xchm.

(minskim)

2009-08-10 17:50:04 UTC MAIN commitmail json YAML

Update xchm to 1.17.

Changes since 1.13:
+ fixed Normalize() code for Windows CHM files.
+ fixed "Cannot display document in <whatever> encoding"
  error.
+ now allowing ENTER to work in the bookmarks list.
+ updated Romanian, German translations.
+ added Belarusian translation.
+ don't initialize locale data on Windows (English-only)
+ fixed build problem with Unicode-detecting #ifdefs
  inside wxT() macros.
+ made the source code GCC 4.3 friendly (fixed duplicate
  parameters issue in GetItem()).
+ #included <bitfiddle.inl> in chmapp.cpp (apparently it
  did not compile without this on some platforms)
+ updated French translation.
+ fixed XPM compile-time warnings for GCC 4.3
+ bumped minimum accepted wxWidgets version to 2.8.
+ added tabbed browsing support (from Cedric Boudinet).
+ Firefox-style shortcuts for navigation.
+ fixed font non-Latin encoding character set encoding
  problem.
+ replaced the checks for u_intXX_t with checks for the
  more standard uintXX_t.
+ some refactoring.
+ added #include <stdint.h> GCC 4.4 patch from the Gentoo
  ebuild.

(minskim)

2009-08-10 17:00:36 UTC MAIN commitmail json YAML

Updated misc/xchm to 1.13nb1

(wiz)

2009-08-10 17:00:15 UTC MAIN commitmail json YAML

Convert to wxGTK28. Bump PKGREVISION.

(wiz)

2009-08-10 16:59:20 UTC MAIN commitmail json YAML

Updated multimedia/dvdstyler to 1.5.1nb1

(wiz)

2009-08-10 16:58:59 UTC MAIN commitmail json YAML

Convert to wxGTK28. Bump PKGREVISION.

(wiz)

2009-08-10 16:58:29 UTC MAIN commitmail json YAML

Updated multimedia/mmg to 1.7.0nb1

(wiz)

2009-08-10 16:58:03 UTC MAIN commitmail json YAML

Updated graphics/wxsvg to 1.0beta6nb2

(wiz)

2009-08-10 16:57:43 UTC MAIN commitmail json YAML

2009-08-10 16:52:59 UTC MAIN commitmail json YAML

Convert to wxGTK28. Bump PKGREVISION.

(wiz)

2009-08-10 15:14:03 UTC MAIN commitmail json YAML

option perl needs perl at runtime.

(wiz)

2009-08-10 14:18:13 UTC MAIN commitmail json YAML

Add two patches:
* On some systems, curses.h defines TRUE and FALSE, so conditionalise
  them in lib.h to avoid compiler complaints about duplicate definitions.
* mutt_curses.h refers to event_t from mutt.h, and SHORT_STRING from lib.h,
  so include those headers fom mutt_curses.h.

These patches allow mutt-devel to build on NetBSD-5.99.15.

Bump PKGREVISION to 1.

(apb)

2009-08-10 14:03:56 UTC MAIN commitmail json YAML

Basic default buildlink3.mk, for packages wanting access to pppd's headers.

(dsainty)

2009-08-10 13:17:34 UTC MAIN commitmail json YAML

inputmethod/libhangul uses c99.

(minskim)

2009-08-10 13:13:42 UTC MAIN commitmail json YAML

Fix GRE registration. Should fix PR pkg/41866. PKGREVISION++

(tnn)

2009-08-10 12:15:57 UTC MAIN commitmail json YAML

Updated net/Transmission to 1.73

(tnn)

2009-08-10 12:14:50 UTC MAIN commitmail json YAML

Update to Transmission-1.73.

All Platforms
* Fix bug where user-configured peer limits could be exceeded
* Use less memory in some high-peer situations
* Better estimation of time left to download
* Support supportcrypto and requirecrypto flags in http tracker announces
* Update to newer snapshots of libnatpmp and miniupnpc
* Make DHT a compile-time option
GTK+
* Use GDK-safe versions of g_idle_add() and g_timeout_add*()
* Save some space in GTK+ >= 2.16.0 by not building SexyIconEntry
Qt
* Fix bug that crashed Qt client when setting alternative up/down speeds
Daemon
* Add umask support
Web Client
* Inspector and Add Torrent buttons for iPhone/iPod Touch
* Add location field to inspector
CLI
* Some torrent files created with transmission-cli were invalid

(tnn)

2009-08-10 12:00:04 UTC pkgsrc-2009Q2 commitmail json YAML

Pullup ticket #2858 - requested by bouyer
py-smbpasswd: build fix

Revisions pulled up:
- security/py-smbpasswd/Makefile 1.4
---
Module Name: pkgsrc
Committed By: bouyer
Date: Sat Aug  8 14:16:55 UTC 2009

Modified Files:
pkgsrc/security/py-smbpasswd: Makefile

Log Message:
This works fine with python 2.5

(tron)

2009-08-10 11:59:23 UTC pkgsrc-2009Q2 commitmail json YAML

2009-08-10 11:45:50 UTC MAIN commitmail json YAML

Note update of the "apache22" package to version 2.2.13.

(tron)

2009-08-10 11:45:09 UTC MAIN commitmail json YAML

Update "apache22" package to version 2.2.13. Changes since 2.2.12:
- mod_ssl, ab: improve compatibility with OpenSSL 1.0.0 betas.  Report
  warnings compiling mod_ssl against OpenSSL to the httpd developers.
  [Guenter Knauf]
- mod_cgid: Do not add an empty argument when calling the CGI script.
  Bug 46380 [Ruediger Pluem]
- Fix potential segfaults with use of the legacy ap_rputs() etc
  interfaces, in cases where an output filter fails.  Bug 36780.
  [Joe Orton]

(tron)

2009-08-10 11:32:41 UTC MAIN commitmail json YAML

needs pkg-config (for newer libshout), pointed out by Hasso Tepper

(drochner)

2009-08-10 11:26:06 UTC MAIN commitmail json YAML

needs pkg-config (for newer libshout), pointed out by Hasso Tepper

(drochner)

2009-08-10 10:00:19 UTC MAIN commitmail json YAML

avoid crashes if the disk title or artist cannot be identified
(just workarounds, the code is too messy for a real fix),
bump PKGREVISION

(drochner)

2009-08-10 09:47:23 UTC MAIN commitmail json YAML

Correct patch-ac checksum.

(hasso)

2009-08-10 08:47:58 UTC MAIN commitmail json YAML

Note update of "mail/fetchmail" and "mail/fetchmailconf" packages
to version 6.3.11.

(tron)

2009-08-10 08:46:30 UTC MAIN commitmail json YAML

Update "fetchmail" package to version 6.3.11. Changes since version 6.3.8:
- Security fixes for CVE-2009-2666, CVE-2007-4565 and CVE-2008-2711.
- Fetchmail no longer drops permanently undelivered messages by default,
  to match historic documentation.  It does this by adding a new
  "softbounce" option.
- A lot bug fixes and improvements.

(tron)

2009-08-10 06:51:06 UTC MAIN commitmail json YAML

Update to 1.6.1.2.

pkgsrc change: restore checksums for ilbc files.

  This release has been made to address one or more security vulnerabilities
  that have been identified. A security advisory document has been published
  for each vulnerability that includes additional information. Users of
  versions of Asterisk that are affected are strongly encouraged to review
  the advisories and determine what action they should take to protect their
  systems from these issues.

  Security Advisories: AST-2009-004

(jnemeth)