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 (6m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 09:57:20 UTC Now

2008-04-25 20:31:10 UTC MAIN commitmail json YAML

Update to py-pexpect-2.3.
- Supports DESTDIR
- Accept Python 2.5

No ChangeLog, but it adds three new modules:
SCREEN: This implements a virtual screen
ANSI:  This implements an ANSI terminal emulator as a subclass of screen
FSM:    This module implements a Finite State Machine (FSM)

(tnn)

2008-04-25 20:18:21 UTC MAIN commitmail json YAML

- Supports DESTDIR
- Accept Python 2.5

(tnn)

2008-04-25 20:11:48 UTC MAIN commitmail json YAML

+ Updated graphics/MesaLib to 7.0.3nb1 [bjs 2008-04-25]

(bjs)

2008-04-25 20:11:17 UTC MAIN commitmail json YAML

2008-04-25 20:11:11 UTC MAIN commitmail json YAML

Add some SUBST magic for NetBSD to change the name of the function
called in the x86/x86_64 assembler dispatch routine to __thr_getspecific to
avoid an unresolved symbol error from ld at link-time.

This is a weak alias in libc and a strong alias in libpthread, so
everything should work fine.  This could probably be fixed in a better way,
but for now, I think "it works" is a plus.

Bump rev.

(bjs)

2008-04-25 20:06:15 UTC MAIN commitmail json YAML

Fix detection of openssl configuration directory on NetBSD so it's
/etc/openssl only if USE_BUILTIN.openssl is "yes".

(jlam)

2008-04-25 20:06:04 UTC MAIN commitmail json YAML

Update to py-dbus-0.82.4.
- Supports DESTDIR
- Accept Python 2.5

News:
* supplying reply_handler but not error_handler raises
  MissingReplyHandlerException instead of MissingErrorHandlerException,
  and vice versa (fd.o #12304, patch from Rene Neumann)
* Using non-recursive make for dbus/ directory should fix builds in some
  environments (fd.o #12741)

(tnn)

2008-04-25 19:59:30 UTC MAIN commitmail json YAML

2008-04-25 19:58:17 UTC MAIN commitmail json YAML

2008-04-25 19:57:16 UTC MAIN commitmail json YAML

Passes all tests, so enable for Python 2.5.

(tnn)

2008-04-25 19:52:58 UTC MAIN commitmail json YAML

Remove the right version.

(joerg)

2008-04-25 19:50:11 UTC MAIN commitmail json YAML

Explicitly include Python 2.1 as it is required by Zope 2.5.

(joerg)

2008-04-25 19:49:03 UTC MAIN commitmail json YAML

Explicitly include Python 2.1 as it is required by Zope 2.5.

(joerg)

2008-04-25 19:47:58 UTC MAIN commitmail json YAML

Explicitly include Python 2.1 as this is used by Zope 2.5.

(joerg)

2008-04-25 19:46:49 UTC MAIN commitmail json YAML

Explicitly include Python 2.1 -- this is used by Zope 2.5.

(joerg)

2008-04-25 19:35:03 UTC MAIN commitmail json YAML

Remove removed Python versions.

(joerg)

2008-04-25 19:32:44 UTC MAIN commitmail json YAML

Update to 1.6.0.
- supports DESTDIR
- Accept Python 2.5

ChangeLog:
2007-11-25  Bob Halley  <halley@dnspython.org
* dns/query.py (_wait_for): if select() raises an exception due to
  EINTR, we should just select() again.
2007-06-13  Bob Halley  <halley@dnspython.org>
* dns/inet.py: Added is_multicast().
* dns/query.py (udp):  If the queried address is a multicast address, then
  don't check that the address of the response is the same as the address
  queried.
2007-05-24  Bob Halley  <halley@dnspython.org>
* dns/rdtypes/IN/NAPTR.py: NAPTR comparisons didn't compare the
  preference field due to a typo.

(tnn)

2008-04-25 19:18:23 UTC MAIN commitmail json YAML

Update to urlgrabber-3.1.0.
pkgsrc:
- Fix acceptable python versions
- Supports DESTDIR

>From ChangeLog: Added James Bowes' SSL patch to use M2Crypto when available.

(tnn)

2008-04-25 18:47:25 UTC MAIN commitmail json YAML

Supports installation to DESTDIR.
Accept Python 2.5.

(tnn)

2008-04-25 18:28:33 UTC MAIN commitmail json YAML

Remove removed Python versions.

(joerg)

2008-04-25 18:15:55 UTC MAIN commitmail json YAML

2008-04-25 18:04:27 UTC MAIN commitmail json YAML

Accept Python 2.5.

(tnn)

2008-04-25 18:02:24 UTC MAIN commitmail json YAML

2008-04-25 17:58:24 UTC MAIN commitmail json YAML

Fix inverted test for compressing the ".el" files.

(tron)

2008-04-25 17:53:48 UTC MAIN commitmail json YAML

Update for Python 2.5.

(joerg)

2008-04-25 17:37:56 UTC MAIN commitmail json YAML

Update to py-pyrex-0.9.6.4 for Python 2.5 support.

0.9.6.4
-------
Enhancements:
  - Functions declared with_gil and external functions declared nogil
    are now allowed to have Python arguments and return types.
0.9.6.3
-------
Enhancements:
  - C API now only uses a single name in the module namespace
    instead of one for each exported C function. [Stefan Behnel]
  - Multiple declarations with the same visibility and api options
    can now be grouped into a 'cdef' block.
  - The 'api' keyword can now be used on extension types to cause
    generation of an api.h file when there are no exported C functions.
  - Added a getattr3() builtin for the three-argument form of getattr.
0.9.6
-----
New Features:
  - Top-level C functions defined in one module can now be used in
    another via cimport, and a C API can be produced to allow them
    to be used from C code without linking to the extension module.
    See "Interfacing with External C Code" and "Sharing Declarations
    between Pyrex Modules" in the Language Overview. [Stefan Behnel]
  - Facilities added for releasing the GIL around a section of code
    and acquiring it on entry to a C function. See "Acquiring and
    Releasing the GIL under "Interfacing with External C Code" in
    the Language Overview. [Ulisses Furquim, Stefan Behnel]
  - Some conditional compilation facilities have been added. See
    "Conditional Compilation" under "Language Basics" in the
    Language Overview. [Sam Rushing]
Language Changes:
  - The __new__ special method of extension types is being renamed
    to "__cinit__". For now, you will get a warning whenever you
    declare a __new__ method for an extension type, and it will
    automatically be renamed to __cinit__ for you. In the next
    release, the warning will become an error and no renaming will
    occur. In some later release, the __new__ method may be
    re-introduced with different semantics. It is recommended that
    you begin updating your sources now to use __cinit__.
  - A 'raise' statement with no arguments (i.e. to re-raise the
    last exception caught) is now required to be lexically within
    the 'except' clause which caught the exception. This change was
    necessary to efficiently support preserving the exception if an
    intervening call raises and catches a different exception.
  - The following new reserved words have been added:
      with, DEF, IF, ELIF, ELSE
Enhancements:
  - Calls to many of the builtin functions are now compiled as
    direct calls to Python/C API routines.
  - A C type explicitly declared as 'signed' is represented as
    such in the generated code, to acommodate platforms where
    'char' is unsigned by default. [Francesc Altet]
  - Python function can now have an argument of type "unsigned
    char". [Alexander Belchenko]
  - A new Pyrex.Distutils implementation has been added, which
    exports an Extension type supporting the following options:
      pyrex_include_dirs - list of dirs to search for Pyrex header files
      pyrex_create_listing_file - bool - write errs to listing file
      pyrex_cplus - bool - generate C++ code
      pyrex_c_in_temp - bool - put generated C files in temp dir
      pyrex_gen_pxi - bool - generate .pxi file for public declarations
    [Contributed by Billie G. Allie]
  - Assert statements can be compiled out by arranging for
    PYREX_WITHOUT_ASSERTIONS to be #defined at C compilation time.
    [Contributed by Stefan Behnel]
  - Support for __index__ slot added to extension types.
    [William Stein]
  - Exception types now properly checked according to pre or post
    2.5 rules as appropriate.
  - Py_ssize_t support added. [Stefan Behnel]
  - Windows __stdcall and __decl qualifiers now supported.
    [Suggested by Eric Devolder]
  - Keyword-only argument support added. [Suggested by Stefan Behnel]
  - An 'include' statement can now appear anywhere that another kind
    of statement or declaration can appear, instead of being restricted
    to the top level. [Caio Marcelo]
  - Unnecessary PyErr_Occurred() call to check result of
    PyString_AsString() no longer made.
  - Complicated C types are displayed more readably in error messages.
Modifications:
  - A Python function argument declared as "char" or "unsigned
    char" now expects a Python integer rather than a string of
    length 1, for consistency with the way automatic conversions
    are done elsewhere.
  - Support for string and tuple exceptions dropped.
0.9.5.1
-------
Modifications:
  - NULL in Pyrex source now translated into NULL instead of 0
    in C code, to allow for the possibility of calling something
    not defined with a prototype in an external header. [Adapted Cat]
0.9.5
-----
Enhancements:
  - Exception return values may now be specified by arbitrary
    constant expressions of appropriate type, not just literals.
    [Stefan Behnel]
  - Redundant type check now omitted when passing a literal None
    to a function expecting an extension type. [Patch by Sam Rushing]
  - New-style classes now allowed as exceptions for compatibility
    with Python 2.5 (inheritance from BaseException not currently
    checked). [Stefan Behnel]
  - Sequence unpacking is now done using the iterator protocol
    instead of indexing.
  - Allocation of an empty tuple is avoided when making a
    Python call with no arguments. [Stefan Behnel]
  - Most warnings about unused variables and labels have been
    eliminated.
  - Support for running the test suite on Linux added but not
    yet fully tested. [Based in part on patch by Eric Wald].
  - Makefile included for compiling the patched Carbon File module
    used by the MacOSX test code.
Modifications:
  - Type rules for enums tightened for compatibility with C++.
  - Direct assignment from float to int disallowed to prevent
    C++ compilation warnings.
  - Hex literals left as hex in C code to avoid warnings from
    the C compiler about decimal constants becoming unsigned.

(tnn)

2008-04-25 17:16:41 UTC MAIN commitmail json YAML

Update to py-psyco-1.6.
New in this release: OSX/Intel and Python 2.5 support.
While here, add DESTDIR support.

(tnn)

2008-04-25 16:48:35 UTC MAIN commitmail json YAML

+ python 2.5
- python 2.0
- python 2.2

(joerg)

2008-04-25 16:44:31 UTC MAIN commitmail json YAML

Updated devel/scmgit to 1.5.5.1 [bjs 2008-04-25]
Updated devel/scmgit-base to 1.5.5.1 [bjs 2008-04-25]
Updated devel/scmgit-docs to 1.5.5.1 [bjs 2008-04-25]

(bjs)

2008-04-25 16:40:47 UTC MAIN commitmail json YAML

Update to version 1.5.5.1.  No pkgsrc changes, this time.

GIT v1.5.5.1 Release Notes
==========================

Fixes since v1.5.5
------------------

* "git archive --prefix=$path/" mishandled gitattributes.

* "git fetch -v" that fetches into FETCH_HEAD did not report the summary
  the same way as done for updating the tracking refs.

* "git svn" misbehaved when the configuration file customized the "git
  log" output format using format.pretty.

* "git submodule status" leaked an unnecessary error message.

* "git log --date-order --topo-order" did not override the earlier
  date-order with topo-order as expected.

* "git bisect good $this" did not check the validity of the revision
  given properly.

* "url.<there>.insteadOf" did not work correctly.

* "git clean" ran inside subdirectory behaved as if the directory was
  explicitly specified for removal by the end user from the top level.

* "git bisect" from a detached head leaked an unnecessary error message.

* "git bisect good $a $b" when $a is Ok but $b is bogus should have
  atomically failed before marking $a as good.

* "git fmt-merge-msg" did not clean up leading empty lines from commit
  log messages like "git log" family does.

* "git am" recorded a commit with empty Subject: line without
  complaining.

* when given a commit log message whose first paragraph consists of
  multiple lines, "git rebase" squashed it into a single line.

* "git remote add $bogus_name $url" did not complain properly.

*  Also comes with various documentation updates.

(bjs)

2008-04-25 16:35:32 UTC MAIN commitmail json YAML

Make emacs and emacs-nox11 look more like xemacs and xemacs-nox11 in
terms of file structure.  Also add DESTDIR support.

(jlam)

2008-04-25 16:27:45 UTC MAIN commitmail json YAML

Remove python 2.1 from the default set of acceptable python packages
so that packages that require it must specify so explicitly.

(tnn)

2008-04-25 16:25:25 UTC MAIN commitmail json YAML

2008-04-25 16:18:20 UTC MAIN commitmail json YAML

2008-04-25 16:17:36 UTC MAIN commitmail json YAML

+ndesk-dbus
+ndesk-dbus-glib

(kefren)

2008-04-25 16:15:24 UTC MAIN commitmail json YAML

mono1.9.1nb1, ndesk-dbus packages and dcsharp

(kefren)

2008-04-25 16:13:56 UTC MAIN commitmail json YAML

-python20, -python22

(tnn)

2008-04-25 16:12:50 UTC MAIN commitmail json YAML

Removed lang/python{20,22}

(tnn)

2008-04-25 16:11:13 UTC MAIN commitmail json YAML

2008-04-25 16:10:27 UTC MAIN commitmail json YAML

2008-04-25 15:49:30 UTC MAIN commitmail json YAML

Initial import of ndesk-dbus-glib 0.4.1

This module provides GLib integration for sysutils/ndesk-dbus

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(kefren)

2008-04-25 15:39:54 UTC MAIN commitmail json YAML

PR pkg/38506: Rob Quinn: Work around Solaris /bin/sh brain damage.

(tnn)

2008-04-25 15:29:34 UTC MAIN commitmail json YAML

Update to libarchive-2.5.1b. Fix a counter bug and make UTF8 conversion
for PAX format more robust.

(joerg)

2008-04-25 15:27:30 UTC MAIN commitmail json YAML

Update to libarchive-2.5.1b:
- Simplify character-translation logic.

pkgsrc:
Fix a bug in the linkresolver for tar format. When linkresolver is done,
the entry belongs to the caller, so don't keep a reference to it and use
the local copy for inode comparision.

(joerg)

2008-04-25 15:18:28 UTC MAIN commitmail json YAML

Initial import of ndesk-dbus 0.6.1a

ndesk-dbus is a C# implementation of D-Bus. It's often referred
to as dbus-sharp, or "managed D-Bus" to avoid confusion with
existing bindings (which wrap libdbus).


Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(kefren)

2008-04-25 15:16:31 UTC MAIN commitmail json YAML

2008-04-25 15:07:39 UTC MAIN commitmail json YAML

2008-04-25 15:04:32 UTC MAIN commitmail json YAML

Enable debug option

(smb)

2008-04-25 13:15:06 UTC MAIN commitmail json YAML

2008-04-25 13:14:52 UTC MAIN commitmail json YAML

Supports DESTDIR.

(joerg)

2008-04-25 12:04:44 UTC MAIN commitmail json YAML

Shorten staircase.

(tnn)

2008-04-25 11:51:13 UTC MAIN commitmail json YAML

Fix PLIST for systems that have builtin OpenSSL < 0.9.8, such as NetBSD-3.
While here, fix typo in previous.

(tnn)

2008-04-25 11:46:07 UTC MAIN commitmail json YAML

Fix enumeration.  I first thought this (c) was for Copyright. :-)

(ghen)

2008-04-25 11:34:11 UTC MAIN commitmail json YAML

2008-04-25 11:23:26 UTC MAIN commitmail json YAML

pullup a patch from trunk that fixes a crash when inferring from null
argument anonymous method. This should fix crash when building wip/nemo.
Bump pkgrevision

Thanks to Marek Safar for pointing me the exact change in mono tree

(kefren)

2008-04-25 11:16:25 UTC MAIN commitmail json YAML

Remove vestigial PLIST_SUBST from makefile; it uses PLIST_VARS now.

(bjs)

2008-04-25 11:13:46 UTC MAIN commitmail json YAML

Updated www/ap2-perl to 2.0.4nb1

(wiz)

2008-04-25 11:13:31 UTC MAIN commitmail json YAML

Fix PLIST. Noted by rtr@.
Bump PKGREVISION.

(wiz)

2008-04-25 08:28:22 UTC MAIN commitmail json YAML

mono, mono-xsp updated to 1.9.1

(kefren)

2008-04-25 08:26:45 UTC MAIN commitmail json YAML

update to 1.9.1:

* Don't output a date header from System.Web, let xsp do it
* Bug fixes: #376352, #371581, #379890, #379888, #377904 #363404

(kefren)

2008-04-25 08:20:05 UTC MAIN commitmail json YAML

Updated editors/gconf-editor to 2.22.0

(wiz)

2008-04-25 08:19:52 UTC MAIN commitmail json YAML

Update to 2.22.0:

2008-03-10  Fernando Herrera

* configure.in: Release 2.22.0

2008-02-05  Sebastian Dr旦ge

* src/gconf-search-dialog.c: (gconf_search_dialog_search): Don't add
a memory address on the stack as a weak pointer. Fixes segfault when
closing the search dialog with Esc (bug #483382).

2007-05-02  Jonathon Jongsma

* src/gconf-editor-window.c: (gconf_editor_window_style_set): Set the text
color to the 'fg' color so that it matches the other text regardless of GTK+
theme (bug #435396)

(wiz)

2008-04-25 08:18:01 UTC MAIN commitmail json YAML

mono-tools still at version 1.9

(kefren)

2008-04-25 08:16:51 UTC MAIN commitmail json YAML

libgdiplus is still version 1.9

(kefren)

2008-04-25 08:14:57 UTC MAIN commitmail json YAML

monodoc is still version 1.9

(kefren)

2008-04-25 08:14:20 UTC MAIN commitmail json YAML

update to mono 1.9.1, the new bugfix release.
For a complete list of changes see http://www.go-mono.com/archive/1.9.1/

(kefren)

2008-04-25 08:06:42 UTC MAIN commitmail json YAML

Updated math/gcalctool to 5.23.1

(wiz)

2008-04-25 08:06:29 UTC MAIN commitmail json YAML

Update to 5.23.1:

Overview of changes in gcalctool 5.23.1

    * Fixes a number of compiler warnings (Bugs #526976, #526702, #527318)
    * Fixes incorrect negation precedence (Bug #526094)
    * Fixes issues with thousands seperators and radix in non-english
      locales (Bug #527669)
    * Fixes regression in constant and function menus (Bug #527545)
    * Fixes problem where display is invisible after solving equation
      (Bug #524602)

(wiz)

2008-04-25 07:58:22 UTC MAIN commitmail json YAML

Updated x11/fast-user-switch-applet to 2.22.0

(wiz)

2008-04-25 07:58:05 UTC MAIN commitmail json YAML

Update to 2.22.0:

No changes in 2.22.0 except translations.

==============
Version 2.21.0 - "Windmills and Wheatfields"
==============

* gtk+ minimum version is now 2.8 (Jaap Haitsma)
* Show correct name in about dialogue (Jaap Haitsma)
* Fix the infamous socket-finding bug in various ways
  (Loïc Minier, Craig Keogh)
* Add information for bug-buddy (Matthias Clasen)
* Remove inappropriate line from help (Thomas Thurman)
* Session persistence under D-Bus (Alex Jones)
* Careful checking to make sure all code from branches
  is actually in trunk now.
* Translators:
Khaled Hosny (ar)
Petr Kovar (cs)
Ignacio Casal Quinteiro (gl)
Kjartan Maraas (nb)
Eskild Hustvedt (nn)
Yannig Marchegay (Kokoyaya) (oc)
Danishka Navin (si)
Pavol Šimo (sk)

(wiz)

2008-04-25 07:51:45 UTC MAIN commitmail json YAML

+archivers/fcrackzip 0.3

(kefren)

2008-04-25 07:50:13 UTC MAIN commitmail json YAML

2008-04-25 07:47:47 UTC MAIN commitmail json YAML

2008-04-25 07:35:59 UTC MAIN commitmail json YAML

Updated wm/dwm to 4.9

(wiz)

2008-04-25 07:35:49 UTC MAIN commitmail json YAML

Update to 4.9:

4.9:
This release contains the ability to freely define various geometries
for the built-in layout algorithms in the config.h file. It also
contains some bugfixes and a polished code base.

4.8:
This version contains two new layouts, the horizontal tile layout
and the monocle layout. It also allows you more fine-grained control
of the bar position and layout areas due to the introduction of
several new variables that can be changed during runtime (if a
related function is implemented).

(wiz)

2008-04-25 07:31:46 UTC MAIN commitmail json YAML

Updated devel/p5-ExtUtils-CBuilder to 0.23

(wiz)

2008-04-25 07:31:35 UTC MAIN commitmail json YAML

Update to 0.23:

- Fixed some problems (some old, some new) with Strawberry Perl on
  Windows. [Alberto Simo~es]

- Will now install in the core perl lib directory when the user's
  perl is new enough to have us in core. [Yi Ma Mao]

(wiz)

2008-04-25 07:28:47 UTC MAIN commitmail json YAML

Updated x11/xtrans to 1.1

(wiz)

2008-04-25 07:28:36 UTC MAIN commitmail json YAML

Update to 1.1:

Adam Jackson (2):
      Add support for the abstract socket namespace under Linux.
      xtrans 1.1

Ben Byer (5):
      suppress warning about socket directory ownership on OS X
      changes to support launchd on OS X
      removed cvs tags
      Fix for incorrect processing of recycled launchd socket on OS X
      make launchd error messages less scary

Dodji Seketeli (2):
      libxtrans: fix linux compilation breakage
      libxtrans: fixed a typo in my last commit

Jeremy Huddleston (1):
      Fixed #ifdef checks that were using i386 to use __i386__

(wiz)

2008-04-25 07:21:36 UTC MAIN commitmail json YAML

Updated devel/yasm to 0.7.0

(wiz)

2008-04-25 07:21:20 UTC MAIN commitmail json YAML

Update to 0.7.0:

Changes from 0.6.2 to 0.7.0:

  * Intel Advanced Vector Extensions (AVX) instruction support.
  * Multi-section binary support (see #71, #99, [2010]).
  * Add support for ELF32 and ELF64 TLS (thread local storage)
    relocations.
  * Allow use of 0X in addition to 0x to prefix hex constants (#127).
  * Allow underscores in hex, binary, and octal constants (e.g.
    0111_1111b).
  * Fix memory sizes on SSE/SSE2 instructions (#119).
  * Allow standalone prefixes (#122).
  * Simplify new varieties of sym-sym values (#124).
  * Support SAFESEH directive for win32 SEH handlers (#130).
  * Enable sym@FOO constructs in GAS parser.
  * SSE5 condition code support.
  * Other bugfixes.

(wiz)

2008-04-25 07:13:51 UTC MAIN commitmail json YAML

Updated lang/ocaml to 3.10.2

(wiz)

2008-04-25 07:13:39 UTC MAIN commitmail json YAML

Update to 3.10.2:

Objective Caml 3.10.2:
----------------------

Bug fixes:
- PR#1217 (partial) Typo in ocamldep man page
- PR#3952 (partial) ocamlopt: allocation problems on ARM
- PR#4339 (continued) ocamlopt: problems on HPPA
- PR#4455 str.mli not installed under Windows
- PR#4473 crash when accessing float array with polymorphic method
- PR#4480 runtime would not compile without gcc extensions
- PR#4481 wrong typing of exceptions with object arguments
- PR#4490 typo in error message
- Random crash on 32-bit when major_heap_increment >= 2^22
- Big performance bug in Weak hashtables
- Small bugs in the make-package-macosx script
- Bug in typing of polymorphic variants (reported on caml-list)

(wiz)

2008-04-25 05:26:29 UTC MAIN commitmail json YAML

Add python dependency for gtk-doc-depscan. Configure stopped without
it, so no PKGREVISION++.

(wiz)

2008-04-25 05:21:45 UTC MAIN commitmail json YAML

Updated x11/fox to 1.6.32

(wiz)

2008-04-25 05:21:30 UTC MAIN commitmail json YAML

Update to 1.6.32:

March 10 - FOX STABLE 1.6.32

    * Fixed FXPath::simplify(). Backport from FOX 1.7.
    * Fixed Adie CPU load issue caused by clock updating.
    * Fixed FXURL::fileFromURL().

November 16 - FOX STABLE 1.6.31

    * Bug fix to strtoull() for systems which have no native strtoull().
    * Missing tr() added in FXMDIClient.
    * Fix for FXRuby in FXMDIClient (don't test for message==0 in notify message).

October 6 - FOX STABLE 1.6.30

    * Fixed some issues with flush() in FXBZFileStream and FXGZFileStream.
    * FXDial didn't issue SEL_COMMAND when driven from keyboard.
    * Small typo found in fxfilematch() was found which affected character-range matching.
    * Problem in FX7Segment fixed.

August 9 - FOX STABLE 1.6.29

    * Added ".jpeg" as additional extension for JPEG images in FXIconSource.
    * Fix in FXSplashWindow not killing timer if it gets destroyed before timer goes off.
    * FX7Segment had bug in onCmdGetStringValue() implementation (it was not returning the string).
    * Cruft removed from FXMat3f.
    * Bold style fixed in FXText.
    * Read outside buffer problem (flagged in valgrind occasionally) fixed in FXText.
    * Bugs in FXListBox and FXTreeListBox fixed.

1.6.28: not described

(wiz)

2008-04-25 04:02:23 UTC MAIN commitmail json YAML

Patch data/Makefile.in not to install share/xsessions/gnome.desktop;
this conflicts with the file gdm installs.  Given that gdm has always
done this and that gdm's file uses dbus, let's keep the status quo for now.

Thanks to jmcneill@ for reporting this.

(bjs)

2008-04-25 02:28:24 UTC MAIN commitmail json YAML

Update MASTER_SITES and HOMEPAGE as old ones no longer work.

Add patch-ac to fall back to "fixed" font instead of exiting.
I submitted to upstream developers a couple weeks ago.

I was told that WeeWM is no longer maintained.
(If you use this window manager, please let me know.)

(reed)

2008-04-25 02:16:11 UTC MAIN commitmail json YAML

Add patch so  amiwm won't immediately exit without lucida font.
I also sent upstream, but I don't know if this is maintained.
(If you use this window manager, please let me know.)

(reed)

2008-04-25 01:09:44 UTC pkgsrc-2008Q1 commitmail json YAML

2008-04-25 01:09:18 UTC pkgsrc-2008Q1 commitmail json YAML

pullup ticket #2348 - requested by martti
update ejabberd fixes problem with startup after reboot

Revisions pulled up:
- pkgsrc/chat/ejabberd/Makefile 1.3,1.4,1.5
- pkgsrc/chat/ejabberd/MESSAGE 1.2
- pkgsrc/chat/ejabberd/PLIST 1.2
- pkgsrc/chat/ejabberd/distinfo 1.2,1.3
- pkgsrc/chat/ejabberd/patches/patch-aa 1.2
- pkgsrc/chat/ejabberd/patches/patch-ae 1.2

  Module Name: pkgsrc
  Committed By: martti
  Date: Tue Apr 22 11:31:05 UTC 2008

  Modified Files:
  pkgsrc/chat/ejabberd: Makefile distinfo
  pkgsrc/chat/ejabberd/patches: patch-ae

  Log Message:
  Updated chat/ejabberd to 2.0.0nb1

  Fix pkg/38347 (patch provided by Daniel Horecki).
  ------------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: martti
  Date: Thu Apr 24 08:04:13 UTC 2008

  Modified Files:
  pkgsrc/chat/ejabberd: MESSAGE Makefile PLIST distinfo
  pkgsrc/chat/ejabberd/patches: patch-aa

  Log Message:
  Fixed PLIST issues, this should not leave any files or directories behind now.
  ------------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: martti
  Date: Thu Apr 24 08:04:59 UTC 2008

  Modified Files:
  pkgsrc/chat/ejabberd: Makefile

  Log Message:
  PKGREVISION++

(rtr)

2008-04-24 21:32:47 UTC MAIN commitmail json YAML

Restructure the following packages:

editors/xemacs-current
editors/xemacs-current-nox11

The latter is now just editors/xemacs-current built with a specific set
of options.  Changes include:

+ Rename the "xaw" option to "lucid" to match the option name used in
  xemacs/options.mk.  Also comment out the "esound" option which isn't
  fully supported yet.  Add some comments to the options.mk file to
  make it a little easier to understand.

  XXX Should probably add a pgsql option as this version of XEmacs has
  XXX some sort of PostgreSQL support.  Also need to sort out native
  XXX sound support.

+ Remove Makefile.common and move all logic into xemacs-current/Makefile
  and xemacs-current/options.mk.

+ As of version 21.5, xemacs switched to using GNU autoconf, so set
  GNU_CONFIGURE=yes.

+ Include termcap.buildlink3.mk to properly deal with termcap/curses
  issues (xemacs needs termcap).  Drop the --without-ncurses setting
  as the issue is handled by termcap.buildlink3.mk.

+ Be slightly more aware of ${X11_TYPE} == "modular" by not referring to
  ${X11BASE} in that case.

+ Include buildlink3.mk files for zlib and gettext, which are detected
  automatically if they're in the base system.  Gettext is needed for
  MULE support.

+ In the Makefile and the PLIST, don't substitute for ${EMACSVER}.
  Instead substitute for ${DISTNAME} so the PLIST looks closer to
  xemacs/PLIST.

+ Add patch-al which handles a difference between bmake and gmake in
  using $< in a makefile target.

+ Support DESTDIR installation by adding INSTALL_MAKE_FLAGS to override
  where files are installed during the install phase.

+ Honor PKGMANDIR.

+ Bump the PKGREVISION for xemacs-current and xemacs-current-nox11 to 1.
  Both packages now track and use the same PKGREVISION number.

(jlam)

2008-04-24 21:32:11 UTC MAIN commitmail json YAML

Updated textproc/gtk-doc to 1.10

(wiz)

2008-04-24 21:32:01 UTC MAIN commitmail json YAML

Update to 1.10. Fix HOMEPAGE.

GTK-Doc 1.10    (Mar 20 2008)
============

Changes

o 460753 : enable vpath build in gtkdoc-mkhtml
o 503119 : Add dependency on content_files to SGML target
o 127049 : building reference documentation fails when builddir != s...
o 481811 : Inline function bodies are confused with declarations
o 448879 : Use a footer when generating HTML documentation
o 492005 : Deprecation guard warnings for properties and signals
o 498521 : Inconsistent compiler flags passed in gtk-doc.make
o 365913 : gtk-doc output is not predictable
o 446648 : gtk-doc does not handle forward typedef'd enums
o 468278 : Display proper types for properties
o 497367 : don't use US-ASCII for output encoding
o 501066 : Missing quotes around gtkdoc-rebase check cause a warning
o 508897 : [PATCH] Fix build when gtk-doc is not installed
o 509539 : Building documentation aborts when no .types file is present
o 512154 : Struct member type attributes are limited to one token
o 513318 : gtk-doc.el doesn't work fine with emacs22

Contributors

Benjamin Otte
Carlos Garnacho
Damon Chaplin
David Nečas
Frederic Peters
Joe Marcus Clarke
Kouhei Sutou
Loïc Minier
Mathias Hasselmann
Petteri Räty
Rouslan Solomakhin
Stefan Kost
Sven Herzberg
Yeti

(wiz)

2008-04-24 21:27:02 UTC MAIN commitmail json YAML

Updated games/crimsonfields to 0.5.2

(wiz)

2008-04-24 21:26:49 UTC MAIN commitmail json YAML

Update to 0.5.2:

* 0.5.2 (13-12-2007)
  - added animation effects when moving and choosing targets
  - improved portability
  - updated translations: de, fr, pl

(wiz)

2008-04-24 21:24:06 UTC MAIN commitmail json YAML

btparse and p5-Text-BibTeX updates

(markd)

2008-04-24 21:20:46 UTC MAIN commitmail json YAML

Update to version 0.37

Release 0.37 - 21 Setember, 2006
--------------------------------
* added support for 'conference' key (alias for inproceedings)

Release 0.36 - 24 July, 2005
----------------------------
* fixed url where btparse should be downloaded from. (stupid bug)

Release 0.35 - 23 July, 2005
----------------------------
* changed from 0.33 to 0.35 to maintain relation with btparse.
* some tests now use Test::More (more tests will change soon)
* the way the module initializes changed. Now the module can be
  included to check its version.

(markd)

2008-04-24 21:19:41 UTC MAIN commitmail json YAML

Updated archivers/gzrecover to 0.5

(wiz)

2008-04-24 21:19:31 UTC MAIN commitmail json YAML

Update to 0.5:

New for release 0.5 (2006-08-29)
  Including public domain contributions from Paul Wise
  o Modify Makefile to append CFLAGS and LDFLAGS
  o Modify error handling to suppress gcc warnings
  o Include man page
  o Minor typo/documentation changes

New for release 0.4 (2005-11-12)
  o Discontinue tar patch (replaced by out of the box GNU cpio)
  o Update instructions

New for release 0.3 (2005-03-13)
  o Convert from mmap to traditional buffered file reads in gzrecover
  o Convert gzrecover to GPL licensing

(wiz)

2008-04-24 21:17:51 UTC MAIN commitmail json YAML

Update to version 0.35

Changes:
  Adds a package-config configuration file and minor bugfix.

(markd)

2008-04-24 20:56:46 UTC MAIN commitmail json YAML

Updated devel/libglademm to 2.6.6

(wiz)

2008-04-24 20:56:33 UTC MAIN commitmail json YAML

Update to 2.6.6:

2.6.6:

* Xml::connect_clicked((): Handle ToolButtons too.
  (Dave Moore. Bug #439339)

(wiz)

2008-04-24 20:47:17 UTC MAIN commitmail json YAML

Updated devel/libsigc++ to 2.2.2

(wiz)

2008-04-24 20:47:05 UTC MAIN commitmail json YAML

Update to 2.2.2:

2.2.2 (stable)

* Added an include of functors/slot.h that was mistakenly removed
  during the 2.1 series.
  (Deng Xiyue) Bug #521418.

2.2.1 (stable):

* Really fix the build with Sun CC.
  (Elaine Xiong. Bug #302098)

2.2.0 (stable):

* Build fixes when using gcc 4.3 pre-releases.
  (Ryan Hill, Vladimir Marek)

(wiz)

2008-04-24 20:22:22 UTC MAIN commitmail json YAML

Updated wm/openbox to 3.4.7.2

(wiz)

2008-04-24 20:22:00 UTC MAIN commitmail json YAML

Update to 3.4.7.2:

3.4.7.2:
  * The system I used to generate the dist tarball didn't have the
    docbook-to-man command so the manpages were empty.

3.4.7.1:
  * Not to be outdone by the cairo team, I introduced a bug in the last release
    which made resizing not give any feedback. This is now fixed.

(wiz)

2008-04-24 20:14:25 UTC MAIN commitmail json YAML

+ R-2.7.0, amavisd-new-2.6.0, hylafax-5.2.4, kid3-1.0 [pkg/38492],
  ktorrent-2.2.6 [pkg/38494], mathomatic-14.0.0, openbox-3.4.7.2,
  plptools-1.0.3, prelude-lml-0.9.12, scmgit-1.5.5.1.

(wiz)

2008-04-24 19:11:21 UTC MAIN commitmail json YAML

Updated mail/sylpheed-devel to 2.5.0beta2

(xtraeme)

2008-04-24 19:10:40 UTC MAIN commitmail json YAML

Update to 2.5.0beta2:

* The feature to confirm missing attachments was added.
* The feature to confirm recipients before sending was added.
* To: header is also searched by quick search in Sent/Draft/Queue folders.
* 'Edit/Quick search' menu was added.
* Spaces in address and server entries on account preferences dialog
  are now automatically removed when applied.
* The address completion was fixed.
* The compilation failure with GTK+ <= 2.8 was fixed.
* Win32: --attach option was fixed.

(xtraeme)

2008-04-24 15:59:54 UTC MAIN commitmail json YAML

+ Updated x11/gnome-control-center to 2.22.1nb1 [bjs 2008-04-24]

(bjs)

2008-04-24 15:58:31 UTC MAIN commitmail json YAML

Force installation of gnome-at-session.desktop to
${PREFIX}/share/applications instead of ${PKG_SYSCONFDIR}.  Bump revision.

(bjs)

2008-04-24 15:37:00 UTC MAIN commitmail json YAML

Be slightly more clever about setting MASTER_SITES so we don't need to
hardcode a portion of the version number.

(jlam)

2008-04-24 15:33:12 UTC MAIN commitmail json YAML

No need to mention the website directly... it's automatically added
by pkgsrc infrastructure.

(jlam)

2008-04-24 15:32:16 UTC MAIN commitmail json YAML

Restructure the following packages:

editors/xemacs
editors/xemacs-nox11

The latter is now just editors/xemacs built with a specific set of
options.  Changes include:

+ Add support for the following new options in options.mk:

x11 Support X11 displays
lucid Use Lucid widget set

  Also add commented out support for the following options for
  alternative widget sets:

gtk GTK widgets
motif Motif widgets
xaw Athena widgets

  Note that USE_ATHENA, USE_GTK, and USE_MOTIF are legacy variables for
  the corresponding options.

+ Remove Makefile.common and move all logic into xemacs/Makefile and
  xemacs/options.mk.

+ Rename the "mule" PLIST variable to "canna", which more accurately
  reflects what is conditionally installed.

+ Include termcap.buildlink3.mk to properly deal with termcap/curses
  issues (xemacs needs termcap).  Drop the --with-ncurses=no setting
  as the issue is handled by termcap.buildlink3.mk.

+ In xemacs/Makefile, we don't need separate EXTRACT_ONLY and EXTRA_FILES
  if we're actually going to extract all of those files all of the time.
  Just list them all in DISTFILES.

+ Be slightly more aware of ${X11_TYPE} == "modular" by not referring to
  ${X11BASE} in that case.

+ In patch-ak, directly substitute the local value of etcdir (``../etc/'')
  into src/Makefile.in.in.  This allows for overriding etcdir via
  INSTALL_MAKE_FLAGS at install-time so that destdir-style installation
  will work.

+ Support DESTDIR installation by adding INSTALL_MAKE_FLAGS to override
  where files are installed during the install phase.

+ Honor PKGMANDIR.

+ Bump the PKGREVISION for xemacs and xemacs-nox11 to 4.  Both packages
  now track and use the same PKGREVISION number.

(jlam)

2008-04-24 15:20:06 UTC MAIN commitmail json YAML

Mirror PKG_DESTDIR_SUPPORT setting from the included Makefile.  This is
only necessary because PKG_DESTDIR_SUPPORT must be defined before
bsd.prefs.mk is included.

(jlam)

2008-04-24 14:37:21 UTC MAIN commitmail json YAML

Updated mail/evolution-exchange to 2.22.1

(wiz)

2008-04-24 14:36:55 UTC MAIN commitmail json YAML

Update to 2.22.1:

Evolution Exchange 2.22.1 2008-04-07
------------------------------------

Bug fixes:
#268259: (Novell Bugzilla) Don't require restart of Evolution to create appointment on switching from offline to online mode (Suman Manjunath)
#303067: Random crash looking up addresses in new email (Milan Crha)

Evolution Exchange 2.22.0 2008-03-10
-------------------------------------

Bug fixes:
#432885: Rescan the hierarchy (Veerapuram Varadhan)
#518569: Properly format name and address with "<>" characters (Milan Crha)

Evolution Exchange 2.21.92 2008-02-25
-------------------------------------

Bug fixes:
#432885: Fix to subscribe to other user's folders (Bharath)
#514836: Fix importing contact lists into a attendee lists for a meeting (Milan Crha)
#515744: Free our message info members properly (Milan Crha)
#516248: Hierarchy wont be available if we are offline (Srinivasa Ragavan)
#516250: Allow it to reauth if we are connecting after a offline (Srinivasa Ragavan)
#516252: Determine that we are in offline if we cant get info from the server (Srinivasa Ragavan)
#516408: Free memory returned by libical (Chenthill)

Evolution Exchange 2.21.91 2008-02-11
-------------------------------------

Bug fixes:
#420503 - Crash while filtering (Milan Crha)
#436628 - Fix alarms for Exchange calendar
#501295 - Crash while caching in addressbook.

Other Contributors:
Patch for crash in process_flags (Srinivasa Ragavan and Bharath Acharya)
Fix two junk folder (Sankar P)

Evolution Exchange 2.21.90 2008-01-28
-------------------------------------

Other Contributors:
libsoup updates (Dan Winship)

Evolution Exchange 2.21.5 2008-01-14
------------------------------------

Bug Fixes:
#404002: Set the default priority of tasks as 'Normal' for Outlook/OWA compatibility. (Suman Manjunath)
#501567: If unsupported queries, don't crash (Srinivasa Ragavan)
#503356: String change: "Ximian Connector" -> "Evolution Connector for Microsoft Exchange" (Martin Meyer)

Evolution Exchange 2.21.4 2007-12-17
------------------------------------

Bug Fixes:
#336074: Check for mail only in active folders (Milan Crha)

Evolution Exchange 2.21.3 2007-12-03
------------------------------------

Bug Fixes:
#444503: Check and store the folder filter and junk filter flags before performing the check for folder summary being available (Bharath Acharya)

Other Contributors:
Removing redundancy in code, demangle meeting related messages in subscribed inboxes (Suman Manjunath)

Evolution Exchange 2.21.2 2007-11-12
------------------------------------

Bug Fixes:
#478680: Remove dead files from source control (Matthew Barnes)

Evolution Exchange 2.21.1 2007-10-29
------------------------------------

Bug Fixes:
#474000: Use GLib's Base64 API instead of Camel's (Matthew Barnes)

(wiz)

2008-04-24 13:57:08 UTC MAIN commitmail json YAML

Fix build with the latest version of the "MesaLib" package.

(tron)

2008-04-24 13:46:24 UTC MAIN commitmail json YAML

Adjust reference from PostgreSQL 8.2

(abs)

2008-04-24 13:27:46 UTC pkgsrc-2008Q1 commitmail json YAML

2008-04-24 13:27:08 UTC pkgsrc-2008Q1 commitmail json YAML

pullup ticket #2346 - requested by tonnerre
fixes several security vulnerabilities

Revisions pulled up:
- pkgsrc/multimedia/vlc/Makefile 1.52
- pkgsrc/multimedia/vlc/distinfo 1.16
- pkgsrc/multimedia/vlc/patches/patch-ac 1.4
- pkgsrc/multimedia/vlc/patches/patch-ad 1.6
- pkgsrc/multimedia/vlc/patches/patch-ae removed

  Module Name: pkgsrc
  Committed By: tonnerre
  Date: Sun Apr 20 15:31:03 UTC 2008

  Modified Files:
  pkgsrc/multimedia/vlc: Makefile distinfo
  pkgsrc/multimedia/vlc/patches: patch-ac patch-ad
  Removed Files:
  pkgsrc/multimedia/vlc/patches: patch-ae

  Log Message:
  Update vlc to version 0.8.6f, also applying some smaller patches:
    - Wrong boundary check in Speex decoder (CVE-2008-1686).
    - Compilability of CDDA code with modern libcdio versions.

  Vendor updates in 0.8.6f
    - Security vulnerabilities in the Subtitle demuxer, Real RTSP demuxer,
      MP4 demuxer and Cinepak codec: CVE-2007-6681, CVE-2008-0073,
      CVE-2008-1489, CVE-2008-1769).
    - Crashes in H264 packetizer.
    - Close MMS access on network timeout.
    - Some problems with AAC decoder & packetizer.

  Vendor updates in 0.8.6e:
    - Security vulnerabilities in the Web interface, Subtitle demuxer,
      Real RTSP demuxer, SDL_image library and MP4 demuxer (CVE-2007-6681,
      CVE-2007-6682, CVE-2006-4484, CVE-2008-0225, CVE-2008-0295,
  CVE-2008-0296, CORE-2008-0130).
    - Resume playback for viewing content over FTP.
    - Fixed XShm detection with remote X11.
    - DTS to S/PDIF converter fixes.
    - Waiting for SPS/PPS problem in H.264 packetizer.
    - Improved compatibility for creating H.264 video files playable on
  iPhones.

  Approved-by: joerg

(rtr)

2008-04-24 12:32:22 UTC MAIN commitmail json YAML

2008-04-24 11:57:35 UTC MAIN commitmail json YAML

2008-04-24 11:55:22 UTC MAIN commitmail json YAML

Two BUILDLINK_ABI_DEPENDS lines are one too many.

(tnn)

2008-04-24 11:18:13 UTC MAIN commitmail json YAML

Backout last change. It breaks the build on system which use a builtin
"freetype2" and provide a "freetype2.pc" (e.g. Mac OS X Leopard or
any uptodate Linux distribution).

(tron)

2008-04-24 10:24:04 UTC MAIN commitmail json YAML

Claim copyright on a few more files for completeness.

(joerg)

2008-04-24 10:21:33 UTC MAIN commitmail json YAML

2008-04-24 09:51:11 UTC MAIN commitmail json YAML

remove stale patch

(tnn)

2008-04-24 09:43:45 UTC MAIN commitmail json YAML

Updated graphics/glx-utils to 7.0.3

(tnn)

2008-04-24 09:41:38 UTC MAIN commitmail json YAML

Update to glx-utils-7.0.3 (catch up w/ Mesa)

(tnn)

2008-04-24 09:38:30 UTC MAIN commitmail json YAML

Don't hard-code /usr/pkg. Bump revision.

(joerg)

2008-04-24 09:04:56 UTC MAIN commitmail json YAML

Another try at fixing installation of the pkgconfig file under pbulk.

(wiz)

2008-04-24 08:31:04 UTC MAIN commitmail json YAML

Updated chat/silc-server to 1.1.6

(wiz)

2008-04-24 08:30:50 UTC MAIN commitmail json YAML

Update to 1.1.6:

1.1.6:
This version fixes a rekey timeout crash.

1.1.5:
This release fixes the KILL command and disconnection related
problems.

1.1.4:
This version fixes 64-bit alignment issues.

1.1.3:
This version fixes several crashes, a WATCH command busy-loop, QoS
rate limit handling, and many other bugs.

1.1.2:
This version fixes a possible buffer overflow.

1.1.1:
This version fixes a crash related to processing of NEW_CLIENT
packets.

1.1:
This version was ported to the new SILC Toolkit 1.1. Support for
dynamic router connections and HTTP statistics back end were added.
Support was added for the upcoming SILC Protocol version 1.3 and
SILC Public Key version 2. Other major bugfixes were also made.

1.1beta4:
This version fixes public key authentication as responder, OPER
and SILCOPER public key authentication, and other minor bugs.

1.1beta3:
This version fixes a CTR mode rekey crash and other CTR mode issues.

1.1beta2:
This beta release fixes many crash bugs.

(wiz)

2008-04-24 08:05:32 UTC MAIN commitmail json YAML

ejabberd-2.0.0nb2

(martti)

2008-04-24 08:04:59 UTC MAIN commitmail json YAML

2008-04-24 08:04:13 UTC MAIN commitmail json YAML

2008-04-24 07:55:00 UTC MAIN commitmail json YAML

libfetch-2.4.10:
Start URL quoting cleanup.  All URLs are now quoted correctly on parsing
and when appending URLs.  URLs without schema and starting with slash are
considered to be file:// URLs.

(joerg)

2008-04-24 07:45:49 UTC MAIN commitmail json YAML

Make sure that configure includes pthread.h when checking for pthread
stubs as they are macros at least on NetBSD. Bump revision.

(joerg)

2008-04-24 07:44:13 UTC MAIN commitmail json YAML

Updated graphics/Mesa to 7.0.3 [bjs 2008-04-24]
Updated graphics/MesaLib to 7.0.3 [bjs 2008-04-24]
Updated graphics/glu to 7.0.3 [bjs 2008-04-24]
Updated graphics/glut to 7.0.3 [bjs 2008-04-24]
Updated graphics/glx-utils to 7.0.3 [bjs 2008-04-24]

(bjs)

2008-04-24 07:40:24 UTC MAIN commitmail json YAML

Welcome to Mesa-7.0.3.

Changes from 6.4.2 are (obviously) far too numerous to mention!  This
package brings with it support for the Direct Rendering Infrastructure
(DRI) on NetBSD-current; the kernel DRM was committed approximately
one year ago.  Patches for NetBSD 4.0 are available in the mailing list
archives (I think), but are _not supported_.

Developers and other interested parties are encouraged to read the TODO
file, as well as my remarks in options.mk.  There is still a significant
amount of work to be done.  Users of NetBSD/i386 (-current) shouldn't
have much trouble getting mainstream cards (Intel i915 and Radeon 9600-
R430 are by far the most tested) to work.

I have taken great pains to ensure that this works properly, but inevitably
there will be problems--especially on heretofore untested (read: non-x86)
hardware.  Your questions, comments, problem reports, and of course
bug fixes are welcome.

NOTE: There are currently problems (on NetBSD, at least) linking some
executables, e.g. compiz, due to unresolved symbols for libpthread
functions.  This is due to libX11's thread stubs, which should not
be enabled on NetBSD >= 2.0; see the TODO For more information
and the URL of an interim patch.

(bjs)

2008-04-24 04:42:31 UTC MAIN commitmail json YAML

+ Updated lang/python25 to 2.5.2nb1 [bjs 2008-04-24]

(bjs)

2008-04-24 04:42:00 UTC MAIN commitmail json YAML

We're not in pkgsrc-wip anymore, so replace 'wip' with 'lang' in
paths to PLIST.*. ;)

While here, patch sunaudiodev.c to use AUDIO_GETBUFINFO (when available)
and BSD AUDIO_FLUSH on NetBSD and OpenBSD.  This could be
#ifdef AUDIO_FLUSH, but for now I am only certain about these two
platforms.

Bump PKGREVISION.

(bjs)

2008-04-24 03:51:45 UTC MAIN commitmail json YAML

+ Updated wm/twm to 1.0.4 [bjs 2008-04-24]

(bjs)

2008-04-24 03:50:58 UTC MAIN commitmail json YAML

Update to version 1.0.4.  Fixes a bug with mouse button limits, and
gets along better with automake-1.10.  The rest of the changes are
cosmetic in nature.

(bjs)

2008-04-24 02:17:27 UTC MAIN commitmail json YAML

Python 2.5.2 done.

(tnn)

2008-04-24 02:02:04 UTC MAIN commitmail json YAML

adjust directory for python25

(tnn)

2008-04-24 01:53:22 UTC MAIN commitmail json YAML

Added lang/python25 version 2.5.2

(tnn)

2008-04-24 01:50:58 UTC MAIN commitmail json YAML

2008-04-24 01:39:25 UTC MAIN commitmail json YAML

2008-04-24 01:11:15 UTC MAIN commitmail json YAML

fake up a freetype2.pc file for configure scripts that want it

(jnemeth)

2008-04-24 00:49:30 UTC MAIN commitmail json YAML

Fixes build problem with glib 2.16 reported in PR 38467.
Patch taken from upstream SVN repository Revision 2848.

(obache)

2008-04-23 22:48:35 UTC MAIN commitmail json YAML

Fixup dependencies and the gnome option. Thanks to jmcneill@.

(xtraeme)

2008-04-23 22:20:59 UTC MAIN commitmail json YAML

Updated www/tidy to 20080423

(wiz)

2008-04-23 22:20:47 UTC MAIN commitmail json YAML

Update to 20080423: Fix a doxygen warning.

(wiz)

2008-04-23 22:12:47 UTC MAIN commitmail json YAML

- awesome, updated with ideas from wip/awesome by Adam Hoka.

(wiz)

2008-04-23 22:11:40 UTC MAIN commitmail json YAML

Updated wm/awesome to 2.2

(wiz)

2008-04-23 22:11:27 UTC MAIN commitmail json YAML

Update to 2.2:

version 2.2

The final version 2.2 of awesome is available. To download it, see the download page.

This release fixes some bugs, add some features. You can see some changes from 2.2-rc4.

    * Add a manpage for awesome-message
    * Add more documentation into awesomerc(5)
    * Fix segmentation fault if no layout are available
    * Check for EWMH hints after reloading clients props on restart
    * Fix transparency property on focus (bug #93)
    * Fix a bug with delay inside awesome-message
    * Stop adding useless spaces at endline on default created .awesomerc
    * Fix a bug in uicb_spawn when using a DISPLAY envvar with IP address

Thanks to the awesome contributors we had on this release.

(Fabienne Ducroquet, Hans Ulrich Niedermann, MATSUU Takuto, Matthieu Pasini, Michael Kaminsky, Nathan LaFreniere, Nikos Ntarmos, Thomas Janu and last but not least, Marco Candrian).

Don't hesitate to report bugs and ask or write enhancements on awesome BTS.

Have fun and be awesome!
Posted Sun Mar 23 10:54:53 2008
version 2.2-rc4

The new version 2.2-rc4 of awesome is available. To download it, see the download page. This is the fourth release candidate version of the upcoming 2.2 version.

You can see all changes on git.

Here's a changes summary.

    * Keep floating windows on top of the stack
    * Simplify grabkeys() function
    * Verify user input for tag values (mwfact, nmaster and ncol) (bug #91)
    * Fix some problem with include() in configuration file (bug #99)
    * Add make targets replacing the running awesome
    * Bugfix in client_toggletag and checking if no tag selected

Don't hesitate to report bugs and ask or write enhancements on awesome bug tracking system or awesome list.

Have fun!
Posted Thu Mar 13 11:05:20 2008
version 2.2-rc3

The new version 2.2-rc3 of awesome is available. To download it, see the download page. This is the third release candidate version of the upcoming 2.2 version.

You can see all changes on git.

Here's a changes summary.

    * Fix segfault after viewing same tag twice and doing a tagprevselected (bug #76)
    * Client_moveresize fix
    * Check widget position (bug #68)
    * Change awesomerc manpage to section 5 (bug #79)
    * Support for include() in configuration file
    * New system to drop EnterWindow events
    * Textbox can be flex-aligned
    * Add widget names in warnings
    * Fix multi-monitor mode with Zaphod and xrandr (bug #73)

Don't hesitate to report bugs and ask or write enhancements on awesome bug tracking system or awesome list.

Have fun!
Posted Tue Mar 4 14:34:52 2008
version 2.2-rc2

The new version 2.2-rc2 of awesome is available. To download it, see the download page. This is the second release candidate version of the upcoming 2.2 version.

You can see all changes on git.

Here's a changes summary.

    * Fix CPU usage (bug #68);
    * Fix regression with Zaphod mode (bug #73).

Don't hesitate to report bugs and ask or write enhancements on awesome bug tracking system or awesome list.

Have fun!
Posted Mon Feb 25 17:14:22 2008
version 2.2-rc1

The new version 2.2-rc1 of awesome is available. To download it, see the download page. This is the first release candidate version of the upcoming 2.2 version.

You can see all changes on git.

Here's a changes summary.

    * Graph widgets works with floats;
    * Add tileup and tilebottom layouts;
    * Fix statusbar recovering each others (bug #37);
    * Fix sloppy focus problems;
    * Optimize arrangement and statusbar refreshing with a cache system;
    * Add support for keycode in keys bindings (bug #40);
    * New awesome-message program (xmessage-like);
    * Fix various problems with widget drawing;
    * Print more warnings on various errors;
    * Fix issues with padding;
    * Enable tiled windows moving/switching;
    * Add sloppyfocusraise option (bug #47);
    * Add --check option to awesome to verify configuration file syntax;
    * Convert statusbar text to UTF-8 before drawing (bug #39);
    * Add scratch window support;
    * Remove focustitle widget: tasklist can do the same now;
    * Rename netwmicon widget to focusicon;
    * Add align options to widgets;
    * Add smart placement algorithm for floating (bug #50);
    * Fix raise problem with focus_history (bug #49);
    * Fix tag_viewprev (bug #60);
    * Add master property to rule (bug #6);
    * Fix XRandR clone mode issues (bug #42);
    * Fix windows hiding issue when launching another wm (bug #53);
    * Add opacity as rule attribute (bug #54);

Don't hesitate to report bugs and ask or write enhancements on awesome bug tracking system or awesome list.

Have fun!
Posted Wed Feb 13 17:43:41 2008
version 2.1

The final version 2.1 of awesome is available. To download it, see the download page.

This release fixes some bugs, add some features. You can see some changes from 2.0.

    * Fix crashing bug triggered through awesome-client
    * Do not die anymore on bad config file, use a default internal one
    * Add uicbscreenfocus to switch to a specified screen.
    * Add a focus history.
    * Accept --version option.
    * Add spiral and dwindle layouts.
    * Widget-ise the statusbar.
    * Add new widgets: textbox, graph, progress bar, taglist, focustitle, tasklist, iconbox, layoutinfo, netwmicon.
    * We can now have several statusbar.
    * New uicb: focusclientbyname.
    * Partial EWMH support.
    * Switch to autotools based build system.

Thanks to the awesome contributors we had on this release.

(Julien Danjou, Aldo Cortesi, Nikos Ntarmos, marco candrian, Hans Ulrich Niedermann, Thomas Guebels, Robert Millar, Rico Schiekel, Laurent Fousse, Fabienne Ducroquet, Arnaud Fontaine)

Don't hesitate to report bugs and ask or write enhancements on awesome BTS.

Have fun!
Posted Mon Jan 21 16:06:20 2008
version 2.1-rc2

Version 2.1-rc2 of awesome is available. To download it, see the download page. This is the second release candidate version of the upcoming 2.2 version.

This release fixes some minor bugs.

Don't hesitate to report bugs and ask or write enhancements on awesome bug tracking system or awesome list.

Have fun!
Posted Sat Jan 12 14:20:15 2008
version 2.1-rc1

Version 2.1-rc1 of awesome is available. To download it, see the download page. This is the first release candidate version of the upcoming 2.1 version.

This release fixes bugs, adds a lot of new features and brings a new widget system for the statusbar.

Don't hesitate to report bugs and ask or write enhancements on awesome bug tracking system or awesome list.

Have fun!
Posted Wed Jan 9 10:27:50 2008
version 2.0

The final version 2.0 of awesome is available. To download it, see the download page.

This release fixes some bugs, add some features. You can see changes.

    * Include missing manpage
    * Fix typo in URL in manpage
    * Add manpage for awesome-client
    * Bug fix for GTK+ combo box
    * Fix memory allocation in awesome-client
    * Bug fix: check for value in tag_toggleview
    * Add a default configuration for running awesome without configuration file

Don't hesitate to report bugs and ask or write enhancements on awesome list.

Have fun!
Posted Tue Dec 11 14:37:43 2007
version 2.0-rc2

Version 2.0-rc2 of awesome is available. To download it, see the download page. This is the second release candidate version of the upcoming 2.0 version.

This release fixes some bugs, add some features. You can see changes.

    * Bug fix: bug with arg is NULL in client_tag
    * Bug fix: check for value in tag_toggleview
    * Bug fix: handle client_toggletag with no arg or with arg > ntags
    * Bug fix: awesome-client exits with a meaningfull value
    * Bug fix: fix compilation for GNU/Hurd
    * Bug fix: changing screen focus restore last focused client
    * Bug fix: fix segmentation fault with configuration parser
    * Bug fix: fix rules handling in some corner cases
    * New feature: client_zoom on master window swap with next window
    * New feature: add a screen padding feature

Don't hesitate to report bugs and ask or write enhancements on awesome list.

Have fun!
Posted Thu Nov 29 17:56:53 2007
version 2.0-rc1

Version 2.0-rc1 of awesome is available. To download it, see the download page. This is the first release candidate version of the upcoming 2.0 version.

This release fixes a lot of bugs, add a lot of new features and a bring a better Xinerama support. You can see changes.

    * New config file format (libconfig replaced by libconfuse)
    * Bug fix: fix resize_hint
    * Bug fix: reset correctly default bar position on toggle
    * Bug fix: wrong column in multi column tiled layout
    * Bug fix: fix a bunch of bugs with mplayer in Xinerama mode
    * Bug fix: better computation for moving windows
    * New feature: option to center pointer on focused client
    * New feature: nmaster/ncol/mwfact and layout can be specified by tags at config and run time
    * New feature: use Cairo to render status bar
    * New feature: status bar can now be placed on right or left of the screen
    * New feature: each physical screen can now be configured independently for colors, statusbar, font, etc
    * New feature: click-to-raise in floating mode
    * New feature: draw circle instead of square for some client flags in status bar
    * New feature: remember focused window on each tag
    * New feature: don't read on stdin any-more, introduce awesome-client to control everything via socket
    * New feature: rules can now set default screen where displays windows in Xinerama mode
    * New feature: mouse bindings are now configurable
    * New feature: map new clients on the screen where the mouse pointer is
    * New feature: mouse moving/resizing are now uicb

Don't hesitate to report bugs and ask or write enhancements on awesome list.

Have fun!
Posted Fri Nov 16 19:34:16 2007

(wiz)

2008-04-23 21:57:54 UTC MAIN commitmail json YAML

update pkg_chk to 1.91:
    - Use a local pkg_summary.gz iff it is the most recently modified file
      in the PACKAGES/All directory

(abs)

2008-04-23 21:57:17 UTC MAIN commitmail json YAML

Updated devel/confuse to 2.6

(wiz)

2008-04-23 21:57:05 UTC MAIN commitmail json YAML

Update to 2.6:

New in 2.6
----------

* added French translation contributed by Matthieu Sion
* added build script and instructions for compiling with Mingw under Windows
  (contributed by Matthieu Sion)
* now accepts a simplified list append syntax:
    option += "value"
      insted of
    option += {"value"}
* added flag CFGF_NO_TITLE_DUPES: multiple section titles must be unique
  (duplicates raises an error, only applies to sections)
  (suggested by Brian Fallik)
* fixed rpm builds, patch by Dan Lipsitt
* always installs pkg-config .pc script
* remove obsolete confuse-config script in favour of pkg-config
* fixed a bug reported by Josh Kropf with single sections with titles
* added patch that escapes values with quotes and backslashes when printing.
* fixed a memory leak in default values for string lists,
  reported by Vineeth Neelakant.
* windows build files now only in separate zip distribution

(wiz)

2008-04-23 21:55:29 UTC MAIN commitmail json YAML

update pkg_chk to 1.91:
    - Use a local pkg_summary.gz iff it is the most recently modified file
      in the PACKAGES/All directory

(abs)

2008-04-23 21:44:55 UTC MAIN commitmail json YAML

- fromcvs.

(wiz)

2008-04-23 21:43:13 UTC MAIN commitmail json YAML

- ap2-perl-2.0.4, naim-0.11.8.3.1, p5-Apache-Session-1.86,
  p5-Apache-Test-1.30, p5-Class-Inspector-1.22, p5-Class-ReturnValue-0.55,
  p5-Clone-0.28, p5-DBD-mysql-4.004, p5-DBIx-DBSchema-0.36,
  p5-DBIx-SearchBuilder-1.53, p5-File-Flat-1.04, p5-File-Remove-1.40,
  p5-File-Slurp-9999.13, p5-HTTP-Server-Simple-0.31, p5-INET6-2.54,
  p5-Image-Info-1.28, p5-Locale-Maketext-Fuzzy-0.10,
  p5-Locale-Maketext-Lexicon-0.66, p5-Mail-IMAPClient-3.05,
  p5-Params-Util-0.31, p5-Socket6-0.20, p5-Test-WWW-Mechanize-1.20,
  p5-Text-Quoted-2.05, p5-prefork-1.02.

(wiz)

2008-04-23 21:37:26 UTC MAIN commitmail json YAML

Updated chat/naim to 0.11.8.3.1

(wiz)

2008-04-23 21:37:15 UTC MAIN commitmail json YAML

Update to 0.11.8.3.1:

Summary of changes from 0.11.8.2.1 to 0.11.8.3
============================================
[UI  fea] Simple heuristics for disabling and reenabling encryption based on whether naim thinks you're talking to someone logged in to naim or to a second client.
[TOC fea] Availability messages are now decoded and passed along to the UI.
[TOC fea] The TOC2 driver now uses toc_locate_user instead of toc_get_info to retrieve profile information. This both fixes profile viewing, which has been broken since late 2006, and adds the ability to retrieve away messages for non-naim users, which has not been possible since 0.10.
[UI  bug] The string <a href="target"></a> would previously be rendered as " [target]" in naim, while graphical AIM clients would render it as an empty string. A recent version of AIM for Windows introduced a bug where outgoing messages included these empty hyperlinks in some situations. Fixed.

(wiz)

2008-04-23 21:34:29 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-IMAPClient to 3.06

(wiz)

2008-04-23 21:34:18 UTC MAIN commitmail json YAML

Update to 3.06:

version 3.06: Mon Apr 14 23:44:03 CEST 2008

Fixes:

- expunge without argument must use selected folder. [John W]

- expunge with folder does not select it. [John W]

- the documentation still spoke about "autogenerated methods",
  but they were removed with 2.99 [John W]

- append_string needs LF -> CRLF translations, for some
  servers. rt.cpan.org #35031 [Jonathan Kamens]

- append_string needs LF -> CRLF translations, for some
  servers. rt.cpan.org #35032 [Jonathan Kamens]

Improvements:

- added ::setquota(), thanks to [Jappe Reuling]

version 3.05: Wed Feb 20 08:59:37 CET 2008

Fixes:

- match ENVELOPE and BODYSTRUCTURE more strict in the
  grammar, to avoid confusion. [Zach Levow]

- get_envelope and get_bodystructure failed for servers which
          did not return the whole answer in one piece. [Zach Levow]

- do not produce parser errors when get_envelope does not
  return an envelope. [Zach Levow]

- PLAIN login response possibly solely a '+' [Zach] and [Nick]

version 3.04: Fri Jan 25 09:25:51 CET 2008

Fixes:

- read_header fix for UID on Windows Server 2003.
          rt.cpan.org#32398 [Michiel Stelman]

Improvements:

- doc update on authentication, by [Thomas Jarosch]

version 3.03: Wed Jan  9 22:11:36 CET 2008

Fixes:

- LIST (f.i. used by folders()) did not return anything when the
  passed argument had a trailing separator. [Gunther Heintze]

- Rfc2060_datetime() must include a zone.
          rt.cpan.org#31971 [David Golden]

- folders() uses LIST, and then calls a STATUS on each of the
  names found. This is superfluous, and will cause problems when
  the STATUS fails... for instance because of ACL limitations
  on the sub-folder.
  rt.cpan.org#31962 [Thomas Jarosch]

- fixed a zillion of problems in the BodyStructure parser.  The
  original author did not understand parsing, nor Perl.

- part numbering wrong when nested messages contained multiparts

Improvements:

- implementation of DIGEST-MD5 authentication [Thomas Jarosch]

- removed call for status() in Massage(), which hopefully speeds-up
  things without destroying anything.  It removed a possible deep
  recursion, which no-one reported (so should be ok to remove it)

- simplified folders() algorithm.

- merged folder commands, like subscribe into one.

- added unsubscribe()
  rt.cpan.org#31268 [G Miller]

- lazy-load Digest::HMAC_MD5

version 3.02: Wed Dec  5 21:33:17 CET 2007

Fixes:

- Another attempt to get get FETCH UID right.  Patch by [David Golden]

version 3.01: Wed Dec  5 09:55:43 CET 2007

Changes:

- removed version number from ::BodyStructure

Fixes:

- quote password at login.
  rt.cpan.org#31035 [Andy Harriston]

- empty return of flags command should be empty list, not undef.
  rt.cpan.org#31195 [David Golden]

- UID command does not work with folder management commands
  rt.cpan.org#31182 [Robbert Norris]

- _read_line simplifications avoids timeouts.
  rt.cpan.org#31221 [Robbert Norris]

- FETCH did not detect the UID of a message anymore.
  [David Golden]

Improvements:

- proxyauth for SUN/iPlanet/NetScape IMAP servers.
  patch by rt.cpan.org#31152 [Robbert Norris]

- use grep in stead of map in one occasion in MessageSet.pm
  [Yves Orton]

version 3.00: Wed Nov 28 09:56:54 CET 2007

Fixes:

- "${peek}[]" should be "$peek\[]" for perl 5.6.1
  rt.cpan.org#30900 [Gerald Richter]

version 2.99_07: Wed Nov 14 09:54:46 CET 2007

Fixes:

- forgot to update the translate grammar.

version 2.99_06: Mon Nov 12 23:21:58 CET 2007

Fixes:

- body structure can have any number of optional parameters.
  Patch by [Gerald Richter].

- get_bodystructure did not take the output correctly [Gerald Richter]

- parser of body-structure did not handle optional body parameters
  Patch by [Gerald Richter], rt.cpan.org#4479 [Geoffrey D. Bennet]

version 2.99_05: Mon Nov 12 00:17:42 CET 2007

Fixes:

- pod error in MessageSet.pm

- folders() without argument failed. [Gerald Richter]

Improvements:

- better use of format syntax in date formatting.

- Rfc2060_datetime also contains the time.

- append_file() now has options to pass flags and time of file
  in one go. [Thomas Jarosch]

version 2.99_04: Sat Nov 10 20:55:18 CET 2007

Changes:

- Simplified initiation of IMAP object with own Socket with a new
  option: RawSocket [Flavio Poletti]

Fixes:

- fixed read_line [Flavio Poletti]

- fixed test-run in t/basic.t [Flavio Poletti]

version 2.99_03: Thu Nov  1 12:36:44 CET 2007

Fixes:

- Remove note about optional Parse::RecDescent by Makefile.PL;
  it is not optional anymore

Improvements:

- When syswrite() returns 0, that might be caused by an error
  as well.  Take the timeout/maxtemperrors track.
  rt.cpan.org#4701 [C Meyer]

- add NTLM support for logging-in, cleanly intergrated. Requires
  the user to install Authen::NTLM.

version 2.99_02: Fri Oct 26 11:47:35 CEST 2007

The whole Mail::IMAPClient was rewritten, hopefully without
breaking the interface.  Nearly no line was untouched.

The following things happened:
- use warnings, use strict everywhere
- removed many lines which were commented out, over the years
- $self->_debug if $self->Debug checked debug flag twice
- $self->LogError calls where quite inconsequent wrt $@ and carp
- consequent layout, changed sporadic tabs in blanks
- consequent calling convensions
- \0x0d\0x0a is always \r\n
- zillions of minor syntactical improvements
- a few major algorithmic rewrites to simplify the code, still
  many oppotunities for improvements.
- expanded "smart" accessor methods, search abbreviations,
  and autoloaded methods into separate subs.  In total much
  shorter, and certainly better understandable!
- fixed many potential bugs.
- labeled some weird things with #????
Over 1000 lines (30%!) and 25kB smaller in size
Needs to be tested!!!! Volunteers?

Fixes:

- Exchange 2007 only works with new parameter: IgnoreSizeErrors
  rt.cpan.org#28933 [Dregan], #5297 [Kevin P. Fleming]

- Passed socket did not get selected.
  debian bug #401144, rt.cpan.org# [Alexander Zanger],
  #8480 [Karl Gaissmaier], #8481 [Karl Gaissmaier],
  #7298 [Herbert Engelmann]
          http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=401144

- Seperator not correctly extracted from list command.
  rt.cpan.org#9236 [Eugene Koontz], #4662 [Rasjid]

- migrate() Massage'd foldername twice
  rt.cpan.org#20703 [Peter J. Holzer]

- migrate() could loop because error in regexp.
  rt.cpan.org#20703 [Peter J. Holzer]

- migrate() append_string result not tested.
  rt.cpan.org#8577 [guest]

- Failing fetch() returned undef, not empty list.
          rt.cpan.org#18361 [Robert Terzi]

- Fix "use of uninitialised" warning when expunge is called
  rt.cpan.org#15002 [Matt Jackson]

- Fix count subfolders in is_parent, regexp did not take care
  of regex special characters in foldername and seperator.
          rt.cpan.org#12883 [Mike Porter]

- In fetch_hash(), the capturing of UID was too complicated
          (and simply wrong)
  rt.cpan.org#9341 [Gilles Lamiral]

- overload in MessageSet treated the 3rd arg (reverse) as
  message-set.

- do not send the password on a different line as the username
  in LOGIN.  Suggested by many people, amongst them
  rt.cpan.org#4449 [Lars Uffmann]

- select() with $timeout==0 (no timeout) returns immediately.
  Should be 'undef' as 4th select parameter.
  rt.cpan.org#5962 [Colin Robertson] and [Jules Agee]

- examine() remembers Massage()d folder name, not the unescaped
  version. rt.cpan.org#7859 [guest]

Improvements:

- PREAUTH support by rt.cpan.org#17693 [Danny Siu]

- Option "SupportedFlags", useful when the source supports
  different flags than the peer in migrate().
  Requested by rt.cpan.org#12961 [Don Christensen]

- Fast_io did not clear $@ on unimportant errors.
  rt.cpan.org#9835 [guest] and #11220 [Brian Helterline]

- Digest::HMAC_MD5 and MIME::Base64 are now prerequisits.
  rt.cpan.org#6391 [David Greaves]

- PLAIN (SASL) authentication added, option Proxy
  rt.cpan.org#5706 [Carl Provencher]

- removed Bodystructure.grammar and IMAPClient.cleanup from dist.

- reworked Bodystructure and MessageSet as well.

- EnableServerResponseInLiteral now autodetect (hence ignored)

version 2.99_01:

After 4 years of silence, Mark Overmeer took maintenance.  David
Kernen could not be reached.  Please let him contact the new
maintainer.

A considerable clean-up took place, fixing bug and adapting the
distribution to current best practices.

- use "prompt" in Makefile.PL, to please CPAN-testers

- removed old Parse::RecDescent grammars

- include Artistic and Copying (GPL) into COPYRIGHT file

- remove INSTALL_perl5.80

- removed all the seperate Makefile.PLs and test directories

- removed the hard-copy of all involved RFCs: there are better
  sources for those.

- converted tests to use "Test::More"

- Authmechanism eq 'LOGIN' understood.

- test for CRAM-MD5 removed, because conflicts with test params
  from Makefile.PL

- test for fast-io removed, it is Perl core functionality

- require IO::Socket::INET 1.26 to avoid Port number work-around.

- Parse::RecDescent is required, and the grammars are pre-parsed
  in the distribution.  This makes the whole installation process
  a lot easier.

- Update Todo, and many other texts.

- added pod tester in t/pod.t

- cleaned-up the rt.cpan.org bug-list from spam.  The next
  release will contain fixes for the real reports.

(wiz)

2008-04-23 21:26:09 UTC MAIN commitmail json YAML

Updated www/p5-Apache-Test to 1.30

(wiz)

2008-04-23 21:25:59 UTC MAIN commitmail json YAML

Update to 1.30:

1.30 November 26, 2007

Added t_write_test_lib for temporary testing packages
[Fred Moyer <fred@redhotpenguin.com>]

Fix syntax error in generated PHP files t/conf/*.php.in
[Philippe M. Chiasson]

Add bwshare.so to the list of modules to not inherit b/c
it rate limits requests to less then that of a test suite.
PR: 25548
[imacat <imacat@mail.imacat.idv.tw>]

Add EXTRA_CFLAGS to c-module building if defined in the environment
[Geoffrey Young]

(wiz)

2008-04-23 21:24:22 UTC MAIN commitmail json YAML

I can't maintain this package, I don't use (or install) evolution.

NOTE: If you copy and adapt a package, reset the maintainer, or at
least ask if the old maintainer is willing to also maintain the
new package.  (Hi Matthias!)

(dillo)

2008-04-23 21:15:20 UTC MAIN commitmail json YAML

Updated net/p5-Socket6 to 0.20

(wiz)

2008-04-23 21:15:09 UTC MAIN commitmail json YAML

Update to 1.20:

2008-02-16  Hajimu UMEMOTO  <ume@mahoroba.org>

* Socket6.pm: Bump version number to 0.20.

* Socket6.pm: Make the AF_INET6 and PF_INET6 exports optional.
They are exported from Socket on 5.10.0, and it contlicts with
Socket6.

PR: http://rt.cpan.org/Public/Bug/Display.html?id=32362
Reported by: "Shlomi Fish via RT" <bug-Socket6@rt.cpan.org>
Submitted by: "KONDOU, Kazuhiro" <kazuhiro@alib.jp>

2008-01-27  Hajimu UMEMOTO  <ume@mahoroba.org>

* Socket6.xs, Socket6.pm: Make getaddrinfo() return the string
error or the numeric value according to the context.
Make getnameinfo() return error value.
Export the EAI_* error constants.

Submitted by: Paul LeoNerd Evans <leonerd@leonerd.org.uk>

* Socket6.xs: FreeBSD 7 and later don't have KAME IPsec anymore.

* Socket6.xs: gai_strerror() returns `const char *'.

(wiz)

2008-04-23 21:13:08 UTC MAIN commitmail json YAML

Updated graphics/p5-Image-Info to 1.28

(wiz)

2008-04-23 21:12:57 UTC MAIN commitmail json YAML

Update to 1.28:

2008-03-30 v1.28 Tels 128 tests
  * raise minimum required Perl version to v5.6.2
    (it doesn't work on 5.005 anyway, open() with three arguments
    is not supported there and I don't have time to rewrite the code
    for outdated Perl versions. If you need it to run on 5.005, write
    a patch and file a bug report please.)
  * fix bug #15167: Incorrect width and height for JPG files
    (the fix now keeps the highest value for width/height, instead of
    creating an array ref with all the values)
  * remove Build.PL (bundle Module::Install 0.71)

2007-12-15 v1.27 Tels 128 tests
  * add both main authors to META.yml (does not work yet due to bug
    in Module::Install)
  * fix bug #30890: [PATCH] Transposed lines in documentation
  * fix bug #31165: Add attribute for parsing TIFF images (Thanx Adam Witney!)

2007-09-09 v1.26 Tels 128 tests
  * clarify the license by adding "v5.8.8" (otherwise it is quite unclear
    which Perl version, release or product the license text refers to)
  * fix bug #29088 - Another hanging image
  * fix bug #29243 - Exiftext fields (like UserComment) not parsed correctly

(wiz)

2008-04-23 21:10:45 UTC MAIN commitmail json YAML

Updated www/p5-Test-WWW-Mechanize to 1.20

(wiz)

2008-04-23 21:10:32 UTC MAIN commitmail json YAML

Update to 1.20:

1.20    Wed Mar 12 23:56:11 CDT 2008
-----------------------------------
[FIXES]
stuff_inputs() used to do nothing.  Now it works.
http://code.google.com/p/www-mechanize/issues/detail?id=9

Fixed punctuation in some error messages.

Fixed compatibility with WWW::Mechanize 1.36.

1.18    Thu Dec  6 10:12:14 CST 2007
------------------------------------
[ENHANCEMENTS]
Added default descriptions for most test assertions.

[FIXES]
HTML::Lint is now properly optional.

Added delays in all the tests that use HTTP::Server::Simple to give
it time to correctly fire up.

1.16    Mon Oct 29 15:34:21 CDT 2007
------------------------------------
[ENHANCEMENTS]
Added $mech->post_ok().  Thanks, Greg Sheard.

Added $mech->submit_form_ok().  Thanks, Mark Stosberg.

Added $mech->html_lint_ok()

[FIXES]
Fixed some bugs that were causing test failures.

1.14    Fri May 11 16:22:02 CDT 2007
------------------------------------
[FIXES]
Fixes test failures.  Thanks to Mark Blackman for RT #26602:

The module tests currently spawn a server (based on
HTTP::Server::Simple::CGI) which is killed when a __DIE__
signal is received, normally only when the invoking
perl dies. However, as perlvar makes clear, the __DIE__
signal is received when eval blocks die as well. The
new version (1.22) of WWW::Mechanize now calles
HTTP::Message::decoded_content which calls Encode.pm
which has a eval block that require's Encode::ConfigLocal
which is usually not present, so the eval dies and the
HTTP server is killed as soon as the $mech object tries
to do a 'get'. It's simple to use a system variable,
$^S to find out if the __DIE__ signal is being called
for an eval so we ignore that case with the patch
attached.

The stuff_inputs() function now actually works.

[DOCUMENTATION]
*  Made the synopsis show that T:W:M doesn't take the tests=>$x
like other Test::* modules.  It'd be nice if it did, though.

(wiz)

2008-04-23 21:05:31 UTC MAIN commitmail json YAML

Updated databases/p5-DBD-mysql to 4.006

(wiz)

2008-04-23 21:05:19 UTC MAIN commitmail json YAML

Update to 4.006:

2007-12-26 Patrick Galbraith <patg@grazr.com> (4.006)

* Cleanups on OS X compile
* Fixes to syntax errors on AIX
* Removed test code that was leaving trace files around

2007-3-22 Patrick Galbraith <patg@grazr.com> (4.005)

* Fixed mysql_warning issue < 4.1 (reminers, patches, help from ROAM, (issue 25713)
* makerealclean patch from ROAM (issue #25714)
* sqlstate cleanup patch from ROAM
* Replaced all references to dbis to use imp_xxh per DBI best practices
* Fix to dbd_st_destroy - added back previously removed 'free everything' code which
  had been moved to dbd_st_finish, causing a crash upon freeing of bind values
  after all rows resulting from one execution of a query have been fetched. This meant
  that next attempt to execute the prepared statement would segfault. This
  work thanks to Rainer Weikusat!
* Removed all 'FindNewTable' calls in all tests. Just use 't1' for all tests to
  simplify things. Plus, this is how MySQL internall tests.
* Better 'skip test' logic in some tests that were still running when they shouldn't
  have been.

2007-3-22 Patrick Galbraith <patg@grazr.com> Jim Winstead <jimw@mysql.com> (4.004)
* Work around a bug in old 3.23 servers by specifying NOT NULL for fields used
  as a primary key in tests. (Bug #20325, reported by Julian Ladisch)
* Add support for mysql_warning_count statement handle attribute. (Bug #25457,
  patch from Philip Stoev)
* Add support for mysql_multi_statements connection option. (RT #12322, based
  on patch from Doug Morris)
* Had to bump to 4.003 do to print statement in mysql.pm that made it
  into the dist. Even though you can delete a file on CPAN, you cannot
  re-upload it if it's the same name. Mea Culpa.
* UTF8-Flag not set with flag mysql_enable_utf8 and column collation utf8_bin patch,
  Joost Diepenmaat, (RT #24738)
* Fixed do_error definition (Scott Hildreth, Tim Bunce)
* Conversion of test suite to Test::More

2007-3-5 Patrick Galbraith <patg@grazr.com> Jim Winstead <jimw@mysql.com> (4.003)
* Fix inclusion of non-primary keys in primary_key_info. (Bug #26786,
  reported and patch by Dave Rolsky)

2007-3-1 Patrick Galbraith <patg@grazr.com> Jim Winstead <jimw@mysql.com> (4.002)
* Fix re-exec of Makefile.PL when forcing $ENV{LANG} to 'C'. (RT #25233,
  reported by Slaven Rezic)
* Rewrote table_info method to support all arguments (previously it would
  only ever return all of the tables in the current database, no matter what
  was specified)
* Fixed $DBD::mysql::VERSION to be a string instead of a float, which caused
  problems for certain locales
* Fixed bug #23974. $dbh->column_info now returns handle with no rows upon
  table not existing.  Much thanks to Tim Bunce for help fixing the problem
  in mysql.pm vs. dbdimp.c
* Removed #ifdefs for do error (sqlstate being passed as last arg depending on
  version)
* Fixed insertid test to work with auto_increment_increment replication setup.
* Patch from Tim Bunce fixing do() not set $dbh->{Statement} attribute,
  which prevented DBD::Profile from giving correct results for calls to do()
  and causing ShowErrorStatement to possibly report the wrong statement in the
  error message
* Patch from Tim Bunce clearing out the sth attribute cache when switching
  between result, sets which prevented the adjustedment of NUM_OF_FIELDS
* Cleanup of several unused variables
* Added support for wildcards in last argument of column_info().
* Add mysql_is_auto_increment to results of column_info(). (Bug #26603,
  original patch from Dave Rolsky)
* Return the correct table type for both tables and views from the table_info()
  method. (Bug #26603, original patch from Dave Rolsky)
* Add implementation of foreign_key_info() (Bug #26604, original patch from
  Dave Rolsky, and final implementation based on Connector/J code)

2007-1-8 Jim Winstead <jimw@mysql.com> Patrick Galbraith <patg@grazr.com> (4.001)
* Fix handling of unsigned integer values in result sets when using
  server-side prepared statements (they were not retrieved at all).
* Fix handling of signed integer values when using server-side prepared
  statements (they were being forced to unsigned values).
* Do not tell Perl that the contents of binary fields are UTF-8.
  [rt.cpan.org #22123], original patch by Joost Diepenmaat
* Fix double-free of bound parameters when freeing statements. (Bug #20559)
* Make sure to handle "magical" values in a couple of places. (Bug #20104)
* Update the hints about what to do when zlib is found missing while
  linking. (Bug #13803, reported by Philip Stoev)
* Explicitly initialize the MySQL client library to avoid possible race
  conditions in a multithreaded application. (Bug #21792)
* Fix warning when no connection attributes are passed to the connect
  method (Bug #17323, reported by Phil Randal)
* Removed redundant warnings when commit or rollback is called while
  AutoCommit is enabled. [rt.cpan.org #15802], reported by Tyler MacDonald
* Report correct type for decimal columns from MySQL 5.0 and later
  [rt.cpan.org #18294], reported by Ray Zimmerman
* Fix t/40bindparam.t to work when ANSI_QUOTES SQL_MODE is set.
  [rt.cpan.org #21521], reported by David Wheeler
* Return a statement handle with an error when column_info is called on
  a table that does not exist. (Bug #23974, patch by Philip Stoev)
* Fix handling of table names with characters that did not match /\w/ in
  the column_info method. (Bug #22005, reported by Philip Stoev)
* Fix handling of negative integers bound to a column marked as SQL_INTEGER.
  [rt.cpan.org #18976], patch from Mike Schilli.
* Add support for the primary_key_info method. [rt.cpan.org #8541]
* Fixed Bundle::DBD::mysql to only include modules required for using
  DBD::mysql, not the old Mysql package. [rt.cpan.org #24096]
* Updated Makefile.PL to not include files in .svn directories
* Fixed various compile warnings in mysql.xs (ISO C)
* Cleaned up stored procedure examples, made strict
* Fixed bug that blew away subsequent result sets if you fetched all rows, only in
  result sets that had more than one row
* Added test for bug #14979 http://rt.cpan.org/Ticket/Display.html?id=14979, which still
  fails
* Tested with ALL mysql versions, fixed 40types, 40bind_param tests to work with 4.0, 4.1
* Fixed dbdimp.c to not test for MYSQL_DATA_TRUNCATED unless >= mysql 5.0

2006-12-22 Patrick Galbraith <patg@patg.net>, Alexey Stroganov (4.00)
* Added Alexey Stroganov's patch which fixes varying number of columns in
  multiple result sets. Added new test cases to 80procs.t based of his
  test script (bug #21028) (Thanks Alexey!). Also fixed 80procs.t to allow
  'CALL' to be prepared
* Added Philip Stoev's patch for DATA_TYPE date and time columns (bug #23988)
  (Thanks Philip!)
* Reworked (for working with 4.0, which doesn't support sqlstate) Philip Stoev's
  patch for sqlstate, bug #23935 (Thanks Philip!)
* New Versioning! 4.00 now. This dev tree will now become trunk
* Cleaned up much code that failed between versions (!!!)
* Turned off prepared statements by default
* Tested this with 5.1, 5.0, 4.1, 4.0. Works with ALL these versions!

2006-10-10 Patrick Galbraith <patg@patg.net>, Alexey Stroganov (3.0009_1)
* Added fbind and bind alloc to dbd_st_describe. This was causing a crash
  when using with mod_perl

2006-10-10 Patrick Galbraith <patg@patg.net> (3.0008_1)
* Added patch for SSL Verify Certificate (Thanks Eric Chen!)
* Added multiple fixes to dbd_st_prepare which fixed variable overwrite
  and unset increment counter. Also improved loop which checks statements
  for presence of "LIMIT" by using a pointer as opposed to char array
  increment variable. These errors were showing up in OpenBSD and other
  Unixen (which I think all BSD-based) (Thanks to Kyle George!)
* Added fix to Makefile.PL to obtain correct build flags on VMS
  (Thanks to Eric Milkie!)
* Fixed casting of num_params to unsigned int in calls to NewZ in mysql.xs

2006-10-07 Patrick Galbraith <patg@patg.net>, Jim Winstead <jimw@mysql.com>
  (3.0007_2)
  * Added UTF8 patch from Dominic Mitchell (Thanks!)
  * Fixed declaration of "row" in mysql_st_internal_execute which caused compile
    errors on some platforms
  * Fix documentation for _ListDBs to remove incorrect information about
    limitations of data_sources(). (RT #20843, patch by Ann Barcomb)
  * Fix typo in example (missing quote). (RT #15086)
  * Mention in POD that 'localhost' always means to connect via UNIX socket,
    and 127.0.0.1 must be used for TCP/IP to localhost (RT #14942, reported by
    Alessandro Ranellucci)
  * Fix typos in Makefile.PL (RT#16178, reported by Gavin Shelley)

2006-09-08 Jim Winstead <jimw@mysql.com>, Patrick Galbraith <patg@mysql.com>
(3.0007_1) (3.0006/3.0006_1 is the same as 3.0005/3.0005_1)
  * Make sure to call dbd_st_finish when all rows from a statement handle
    have been fetched. (Bug #20153, Bug #21607, RT #20464, RT #21241)
  * Patch from Steve Hay to fix bind_param to deal properly with insertion
    of a NULL into an INT or DOUBLE column using server-side prepare.
    Converted Steve's dbi.pl script to expose this problem to 40bindparam2
    test.
  * Fix to mysql_st_internal_execute to keep from passing undefined dbh
    handle member (bind_type_guessing) to parse_param causing crash on
    OpenBSD. Reported on rt.cpan.org (#20868) by Kyle Georg, as well as
    info from Sam Smith and Federico Giannici
  * Cleaned up tests to make sure test table is dropped at end of test.

2006-06-10 Patrick Galbraith <patg@mysql.com) (3.0005)
  * Fix dbd_st_finish in 3.0004 didn't clean up bind buffers resulting in
    a memory leak. See eg/prepare_memory_usage.pl to see how this manifests
    itself. Thanks to Jason Snell for giving me a good script to reproduce
    this!
  * Fix to parse_params, mysql.xs dbh->do, and bind_param to deal with
    passing substr to "do" for placeholder value. Thanks Martin Waite for
    the patch to parse_params (extended to mysql.xs "do" and bind_param for
    server-side prepared statements.

2006-05-17 Patrick Galbraith <patg@mysql.com) (3.0004_1)
  * Fix dbd_st_finish which closed the handle prematurely (Martin Evans)
  * Compile issues (Martin Evans)
  * Small change to get utf8 data returned. One still has to:
      $dbh->do("set character set utf8");
      $dbh->do("set names utf8");

    to get utf8 back and even then you only get it back if the
    column is defined as utf8 in mysql.
  * Fix to dbd_bind_ph to deal with numbers (ints, floats) correctly
    (Alexey Stroganov)
  * Test changes - bind_param 41 and 42
  * Turned off 70takeimp test

2006-04-29 Patrick Galbraith <patg@mysql.com) (3.0003_1)
  * Removed old Msql-Mysql Driver emulation code - finally!!!
  * Removed aweful string testing code (that I wrote) for unsported
    statements and now use mysql_stmt_prepare, if statement not
    supported, toggle to mysql_emulated_prepare
  * Fixed bug where failed stmt execution caused later statements
    to fail with mysql_stmt_reset
  * Added tests for unsupported statements
  * Added test for test of failed statement with subsequent executes
    (thanks to Martin Evans!)
  * Added typo fix (Martin Evans)
  * Added support for ParamValues and associated test (Martin Evans)
  * Removed old emulated driver tests (HOORAY!)
  * Cleaned up debug printing code
  * Fixed syntax for create table ENGINE=InnoDB instead of type=innobase
  * Cleaned up tests

2006-01-31 Patrick Galbraith <patg@mysql.com> (3.0002_5)
  * Fixed bugs 15546 (selectcol_arrayref failing on SHOW TABLES)
    and 15665, 'USE dbname' failing when driver is not in emulated
    prepare mode

2005-10-26 Patrick Galbraith <patg@mysql.com> (3.0002_4)
  * Added Guy Harrison's patch for multiple result sets
  * Fixed bugs with declarations in middle of functions
  * Cleaned up code, rewrote several loops using pointers
    instead of iterators
  * Rewrote 'SHOW', 'ALTER', 'CALL', 'CREATE' toggling code that turns
    off server prepared statements (these calls are not supported)
  * Updated documentation

2005-09-28 Patrick Galbraith <patg@mysql.com> (3.0002_3)
  * Added code to  mysql_st_internal_execute that determines whether the
    SV *h is a sth or dbh, and then imports imp_dbh appropriately

2005-09-26 Patrick Galbraith <patg@mysql.com> (3.0002_2)
  * Fixed bug in dbd_st_execute where imp_sth was being
    imported unecessarily, when only imp_dbh is needed. This caused a
    core dump in some cases. Thanks to Andy Maas at Proofpoint for his
    execellent detective work!
  * Small changes to Makefile.PL to make sure --ps-protocol works as
    advertised.
  * Updated install.html with current info about prepared statements and FC
    RPM/YUM packages.

2005-08-04 Patrick Galbraith <patg@mysql.com> (3.0002_1)
  * Prepared statement support is default now. To turn it off
    a parameter 'mysql_emulated_prepare' must be turned ON
  * Better error handling in mysql_internal_execute_ps (renamed
    from mysql_internal_execute41). Also free the result if error -
    that could have been a memory bug
  * Added a simply 'do' to t/35prepare.test to see if you can turn
    off prepared statements in the 'do' call.
  * Cleaned up a LOT of cruft. Added more 'caveat' blurbage to old
    Mysql.pm lib, which will not work with prepared statements

(wiz)

2008-04-23 20:54:39 UTC MAIN commitmail json YAML

Make pkg_delete with -p actually work. Prepending the prefix doesn't
work as it will still use the one in the package. Use the approach from
pkg_add to override it instead.

(joerg)

2008-04-23 20:47:07 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-Server-Simple to 0.31

(wiz)

2008-04-23 20:46:56 UTC MAIN commitmail json YAML

Update to 0.31:

0.31 Sun Mar 16 20:51:04 EDT 2008

* Test suite parallelization fixes. Thanks to Slaven Rezic

0.30 Tue Mar 11 12:14:24 EDT 2008

* Minor doc fix from Paul Miller.
* Fixing doc style from "$this" to "$self" like any self-respecting perl code

0.29 Fri Feb 15 11:43:29 EST 2008

* new example section from almut on perlmonks

0.28 Tue Jan 15 09:33:58 EST 2008
* New restartability support from Mark Stosberg

    After reviewing the code in HTTP::Server::Simple,
    Catalyst::Engine::HTTP and HTTP::Server::Brick, I found and
    implemented an updated signal handling approach that I like and
    understand, and actually works.

    The current code restarted immediately if a SIGHUP came in, no
    matter what was happening, including if a request was in process of
    being fulfilled.

    The new code works more like "apachectl graceful". It waits for the
    current request cycle to finish, and then restarts the server.

    This code has to be integrated in the core, but its just about
    the same amount of signal handling code that was there... it just
    works better.  It's also written in such a way I think subclass/mixin
    authors could rewrite just these parts if they wanted.

    Also, it looks like a Net::Server based sub-class would already be
    doing its own thing with SIGHUP handling, and should continue to
    be unaffected.

(wiz)

2008-04-23 20:43:17 UTC MAIN commitmail json YAML

Updated www/p5-Apache-Session to 1.86

(wiz)

2008-04-23 20:43:06 UTC MAIN commitmail json YAML

Update to 1.86:

1.86  2008-02-01 by Alexandr Ciornii
  - Default number of semaphores for *BSD is 8 in Apache::Session::Lock::Semaphore

1.85_01  2008-01-24 by Alexandr Ciornii
  - typos corrected (catched by Gerald Fox)
  - more tests and diag in 99semaphore.t
  - no warning "disconnect invalidates 2 active statement" in
    Apache::Session::Lock::MySQL by Tony Cook (RT#32148)

1.85  2007-12-20 by Alexandr Ciornii, Perl 20th birthday version
  - mention Catalyst::Plugin::Session, Session

1.84_01  2007-11-26 by Alexandr Ciornii (alexchorny AT gmail.com)
  - Added Apache::Session::Lock::Semaphore::remove to remove semaphore
  - 99flex.t will remove semaphore (RT#30440)
  - 99flex.t should work on 5.6.1 again (no chdir now)
  - 99flex.t will clean all temporary files (RT#30209)
  - pod.t included in MANIFEST
  - cleaner tests

1.84  2007-10-02 by Alexandr Ciornii (alexchorny AT gmail.com)
  - Added constant.pm to the list of prerequisites
  - Jeffrey W. Baker, Casey West, Alexandr Ciornii, Oliver Maul agreed to
    change license of all files to Perl license
    Alexandr Ciornii agrees to relicense to Artistic 2.0 in future if needed.
  - 99flex.t will be skipped on *bsd and Solaris

1.83_01  2007-08-03 by Alexandr Ciornii
  - better handling of Storable errors by Rick Delaney (RT#27476)

1.83=1.82_05  2007-05-25
1.82_05  2007-05-14 by Alexandr Ciornii
  - skipping part of 99flex.t on NetBSD

1.82_04  2007-04-27 by Alexandr Ciornii
  - More diagnostics in Apache::Session::Lock::Semaphore::acquire_write_lock,
    acquire_read_lock
  - Did not increment modules versions in previous versions of distribution
  - Apache::Session::Lock::Semaphore can work with private semaphore
  - 99flex.t will use private semaphore
  - 99dbfile.t, 99dbfilestore.t - added undef (for RT#6216)

1.82_03  2007-03-12 by Alexandr Ciornii
  - Apache::Session::Lock::File checks flock success (RT#6936)
  - Apache::Session::Lock::File will not change to shared lock if write
    lock is in effect and read lock is requested (RT#7072)
  - 99dbfile.t, 99dbfilestore.t - added untie (for RT#6216)
  - Apache::Session::Lock::Semaphore will check for $Config{d_semget} and
    cygserver

1.82_02  2007-03-11 by Alexandr Ciornii
  - 99semaphore.t, 99flex.t will be skipped if $Config{d_semget}==undef,
    patch by Slaven Rezic
  - Removed redundant code in 99filelock.t
  - Removed unnecessary skip in 99nulllock.t
  - Added file 'Contributing.txt'
  - Apache::Session - mention CGI::Session
  - Request in Makefile.PL

1.82_01  2007-03-10 by Alexandr Ciornii
  - Applied part of patch of SREZIC (Slaven Rezic), RT#3670,
    more diagnostics on failing file operations (Apache::Session::Lock::File,
    Apache::Session::Store::DB_File, Apache::Session::Store::File)
  - RT#1251, ModUniqueId.pm, ModUsertrack.pm - small error in Carp usage,
    by Slaven Rezic
  - 99flex.t will be skipped on perls earlier than 5.8 (RT#16539)
  - Requires Storable (core from 5.7.3), as it is almost useless without it

(wiz)

2008-04-23 20:36:53 UTC MAIN commitmail json YAML

Updated www/ap2-perl to 2.0.4

(wiz)

2008-04-23 20:36:41 UTC MAIN commitmail json YAML

Update to 2.0.4:

2.0.4 April 16, 2008

Fix $r->location corruption under certain conditions
[Gozer]

Fix a crash when spawning Perl threads under Perl 5.10
[Gozer]

Fix erratic behaviour when filters were used with Perl 5.10
[Gozer]

Fix problems with redefinitions of perl_free as free and perl_malloc
as malloc on Win32, as described at
http://marc.info/?l=apache-modperl&m=119896407510526&w=2
[Tom Donovan]

Fix a crash when running a sub-request from within a filter where
mod_perl was not the content handler. [Gozer]

Refactor tests to use keepalives instead of same_interp [Gozer, Phred]

Apache2::Reload has been moved to an externally maintained
CPAN distribution [Fred Moyer <fred@redhotpenguin.com>]

PerlCleanupHandler are now registered with a subpool of $r->pool,
instead of $r->pool itself, ensuring they run _before_ any other
$r->pool cleanups [Torsten Foertsch]

Fix a bug that would prevent pnotes from being cleaned up properly
at the end of the request [Torsten Foertsch]

On Win32, embed the manifest file, if present, in mod_perl.so,
so as to work with VC 8 [Steve Hay, Randy Kobes]

Expose apr_thread_rwlock_t with the APR::ThreadRWLock module
[Torsten Foertsch]

Don't waste an extra interpreter anymore under threaded MPMs when using a
modperl handler [Torsten Foertsch]

Fix a bug that could cause a crash when using $r->push_handlers() multiple
times for a phase that has no configured handlers [Torsten Foertsch]

Catch up with some httpd API changes
  2.2.4:
  The full server version information is now included in the error log at
startup as well as server status reports, irrespective of the setting
of the ServerTokens directive. ap_get_server_version() is now
deprecated, and is replaced by ap_get_server_banner() and
ap_get_server_description(). [Jeff Trawick]

  2.3.0:
ap_get_server_version() has been removed. Third-party modules must
now use ap_get_server_banner() or ap_get_server_description().
[Gozer]

fixed Apache2::compat Apache2::ServerUtil::server_root() resolution
issues [Joshua Hoblitt]

*) SECURITY: CVE-2007-1349 (cve.mitre.org)
fix unescaped variable interprolation in regular expression
[Randal L. Schwartz <merlyn@stonehenge.com>, Fred Moyer <fred@redhotpenguin.com>]

Make $r->the_request() writeable
[Fred Moyer <fred@redhotpenguin.com>]

fix ModPerl::RegistryCooker::read_script to handle all possible
errors, previously there was a case where Apache2::Const::OK was
returned on an error.  [Eivind Eklund <eeklund@gmail.com>]

a minor compilation warning resolved in modperl_handler_new_from_sv
[Stas]

a minor compilation warning resolved in modperl_gtop_size_string
[Stas]

Prevent direct use of _deprecated_ Apache2::ReadConfig in
<Perl> sections with httpd Alias directives from
incorrectly generating
'The Alias directive in xxxxx at line y will probably never match'
messages.
[Philip M. Gollucci <pgollucci@p6m78g.com>]

Prevent Apache2::PerSections::symdump() from returning invalid
httpd.conf snippets like 'Alias undef'
[Philip M. Gollucci <pgollucci@p6m78g.com>]

Require B-Size 0.9 for Apache2::Status which fixes
Can't call method "script_name" on an undefined value
[Philip M. Gollucci <pgollucci@p6m78g.com>]

-march=pentium4 or anything with an = in it in CCFLAGS or @ARGV
that gets passed to xs/APR/APR/Makefile.PL broke the @ARGV
parsing.  I.E. FreeBSD port builds when users had CPUTYPE
set in /etc/make.conf.
[Philip M. Gollucci <pgollucci@p6m7g8.com>]

Fixes to get bleed-ithread (5.9.5+) to comile again.
[Philip M. Gollucci <pgollucci@p6m7g8.com>]

(wiz)

2008-04-23 20:26:15 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-Quoted to 2.05

(wiz)

2008-04-23 20:26:04 UTC MAIN commitmail json YAML

Update to 2.05:

2.05 Wed Jan 24 2008
    - fix tests failure under perl 5.6.x,
      thanks to David Cantrell for cpan testing it

2.04 Wed Jan 23 2008
    - use own expand_tabs instead of Text::Tabs
    - avoid segfaults when pos() is used inside of regexp

2.03 Wed Nov  7 2007
    - delete a lot of unused code
    - many micro optimisations
    - performance improvements, up to 1.5x in total
    - clanups of Makefile, README

(wiz)

2008-04-23 20:24:07 UTC MAIN commitmail json YAML

Updated misc/p5-Locale-Maketext-Fuzzy to 0.10

(wiz)

2008-04-23 20:23:56 UTC MAIN commitmail json YAML

Update to 0.10. Add HOMEPAGE.

[Changes for 0.10 - 2007-10-14]

* LICENSING CHANGE: This compilation and all individual files in it
  are now under the permissive "MIT" license.

* Modernized the build infrastructure with Module::Install.

* Tidied up source code, test files, and this changelog.

(wiz)

2008-04-23 20:23:47 UTC MAIN commitmail json YAML

Fix PLIST - bump PKGREVISION

(abs)

2008-04-23 20:23:39 UTC MAIN commitmail json YAML

Include bsd.prefs.mk so that the options appended by the package Makefile
take precedence.

(jlam)

2008-04-23 20:22:31 UTC MAIN commitmail json YAML

Updated misc/p5-Locale-Maketext-Lexicon to 0.66

(wiz)

2008-04-23 20:22:18 UTC MAIN commitmail json YAML

Update to 0.66:

[Changes for 0.66 - 2008-02-12]

* Locale::Maketext::Extract: Support in Extract.pm->extract for
  HTML::FormFu config files.
  Contributed by: Andreas Marienborg

[Changes for 0.65 - 2007-12-22]

* Perl 5.9.5+ is pickier about what "being used only once" means,
  so we make sure to avoid that warning.
  Contributed by: Alex Vandiver

* Also restore compatibility with Perl 5.005 and earlier by avoiding
  the "no warnings" pragma.

* Tidied up code style, documentation, copyright years, etc.

(wiz)

2008-04-23 20:20:46 UTC MAIN commitmail json YAML

Updated databases/p5-DBIx-SearchBuilder to 1.53

(wiz)

2008-04-23 20:20:34 UTC MAIN commitmail json YAML

Update to 1.53:

1.53 Tue Apr  2 03:06:56 UTC 2008

* Fix mysql version check in DistinctQuery function
* Fix order by outer column on Oracle
* Improve tests

1.52 Tue Apr  1 00:48:56 UTC 2008

* Fix order by outer column on SQLite, mysql, adjust Pg. Add test that
  cover this.

1.51 Tue Jan 15 22:53:56 UTC 2008

* Fix CountAll method when paging is enabled and data is in memory already

1.50 Fri Nov 23 23:24:00 UTC 2007

* Oracle: Don't DISTINCT query when there is a group by clause
* Fix a problem when we have more then two collections in a union
  and some of them are empty

1.49 Sat Jul  7 18:45:41 EDT 2007

* Fix a CPAN signature issue

(wiz)

2008-04-23 20:14:52 UTC MAIN commitmail json YAML

Updated devel/p5-Clone to 0.28

(wiz)

2008-04-23 20:14:42 UTC MAIN commitmail json YAML

Update to 0.28:

0.27, 0.28 not described.

Revision 0.26  2007-10-15 04:52:42  ray
Made a change in CLONE_KEY to the way Clone stores refs in the ref hash.
Perl no longer uses the SvANY part of the SV struct in the same way which
meams the old way of storing the hash key is no longer unique.
Thanks to Slaven Rezic for the patch.

Revision 0.25  2007-07-25 03:41:04  ray
Latest patch from Ruslan Zakirov. Patched another memory leak.

Revision 0.24  2007-07-25 03:33:57  ray
Bug fix for 5.9.*, for some reason the 'visible' logic is no longer working.
I #if 'ed it out until I figure out what is going on.
Also removed an old redundant CLONE_STORE, could have been the cause of some
memory leaks.

(wiz)

2008-04-23 20:13:02 UTC MAIN commitmail json YAML

Updated devel/p5-Class-ReturnValue to 0.55

(wiz)