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 (14m)  pkgsrc-2024Q1 (19d)  pkgsrc-2023Q4 (66d)  pkgsrc-2023Q2 (98d)  pkgsrc-2023Q3 (178d) 

2024-06-06 02:52:43 UTC Now

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)

2008-04-23 20:12:51 UTC MAIN commitmail json YAML

Update to 0.55:

0.55 Mon Aug 20 16:37:48 EDT 2007
    - FIXED:[rt.cpan.org #28852] t/basic.t fails on Win32 due to the path separator issue. Thanks to ISHIGAKI

0.54 Mon Aug 13 17:18:51 EDT 2007
    - Ditched Test::Inline like a lead brick.

(wiz)

2008-04-23 20:03:29 UTC MAIN commitmail json YAML

Updated devel/p5-File-Flat to 1.04

(wiz)

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

Update to 1.04:

1.04 Mon 24 Mar 2008
- Removing dependency on File::Slurp

1.03 Sat  1 Mar 2008
- Incremental release to clear out some CPAN Testers failures
- No need to upgrade

1.02 Tue 11 Dec 2007
- Cygwin is clearly insane, skip root and win32 test sets
- More aggressive dependencies, particularly on Win32

1.01 Tue 11 Dec 2007
- No functional changes
- Correcting dependency
- Updating to Module::Install 0.68
- Updating bundled tests

(wiz)

2008-04-23 19:55:23 UTC MAIN commitmail json YAML

Updated devel/p5-File-Slurp to 9999.13

(wiz)

2008-04-23 19:55:12 UTC MAIN commitmail json YAML

Update to 9999.13:

9999.13  Wed Jan 23 22:54:03 CDT 2008
        - This is a "get the tests passing" release by Dave Rolsky
- Fixes the tests to pass with the latest Test::More
        - Also shuts up warnings from some tests about redefining SEEK_SET.

(wiz)

2008-04-23 19:53:59 UTC MAIN commitmail json YAML

Updated devel/p5-prefork to 1.02

(wiz)

2008-04-23 19:53:46 UTC MAIN commitmail json YAML

Update to 1.02:

1.02 Fri 23 Nov 2007
- Upgrading to Module::Install 0.68

(wiz)

2008-04-23 19:52:44 UTC MAIN commitmail json YAML

Updated sysutils/p5-File-Remove to 1.40

(wiz)

2008-04-23 19:52:32 UTC MAIN commitmail json YAML

Update to 1.40:

1.40 Sat 23 Feb 2008
- Dev release looks good, changing to production release

1.39_01 Wed 20 Feb 2008 (Adam Kennedy)
- Fixed rt.cpan.org #30251 "removing dirs enclosed by curly braces"
- remove now ignores globbing if -e is true BEFORE globbing
  (This should fix numerous possible failures where people are trying
  delete strangely named files, but globbing is kicking in and
  expanding the names incorrectly)
- Moving to a production-grade version to indicate module stability
- Adding explicit 5.005 dependency
  (Primarily for the benefit of automated quality/anaylsis tools)

(wiz)

2008-04-23 19:51:14 UTC MAIN commitmail json YAML

Updated devel/p5-Params-Util to 0.31

(wiz)

2008-04-23 19:51:01 UTC MAIN commitmail json YAML

Update to 0.31:

0.31 Wed 14 Nov 2007
- Upgrading to Module::Install 0.68

0.30 Mon 22 Oct 2007
- Incremental release to get a newer and non-broken version of the
  author-only tests.

0.29 Thu 23 Aug 2007
- Correcting a test which only ran under AUTOMATED_TESTING,
  apparently my release automation isn't doing what I think
  it is doing.

0.28 Sat 18 Aug 2007
- Dropping the Perl version requirement in 01_compile.t to 5.004

0.27 Sat 18 Aug 2007
- Skipping one particularly evil test that we know fails on a few OS
  unless AUTOMATED_TESTING is enabled.
  These failures weren't worth preventing installation at all.

0.26 Fri 27 Jul 2007
- Adding the _NONNEGINT function

(wiz)

2008-04-23 19:49:37 UTC MAIN commitmail json YAML

Updated devel/p5-Class-Inspector to 1.22

(wiz)

2008-04-23 19:49:26 UTC MAIN commitmail json YAML

Update to 1.22:

1.22 Sat 1 Mar 2008
- 1.21_01 tested ok, moving to production version
- No changes

1.21_01 Tue 12 Feb 2008
- Adding experimental support for utf8 methods
  (as per http://rt.cpan.org/Public/Bug/Display.html?id=28796)

1.20 Tue 12 Feb 2008
- CPAN Testers results look good for 1.19_01,
  converting to a production release.

1.19_01 Mon 11 Feb 2008
- Bug fix to adapt to changes to File::Spec

1.18 Thu  8 Nov 2007
- Incremental release, no functional changes
- Updated to Module::Install 0.68
  (This brings META.yml to the current version)
- Updated versions of the automated tests that
  were causing CPAN Testers failures.

(wiz)

2008-04-23 19:48:02 UTC MAIN commitmail json YAML

Updated databases/p5-DBIx-DBSchema to 0.36

(wiz)

2008-04-23 19:47:50 UTC MAIN commitmail json YAML

Update to 0.36:

0.36 Thu Dec 13 17:49:35 PST 2007
        - Patch from ISHIGAKI@cpan.org to suppress unnecessary warnings about
          undefined local_options, thanks!
        - fix bug preventing adding new columns as primary keys under Pg

0.35 Mon Oct 29 18:58:36 PDT 2007
        - Fix minor breakage (pretty_print) resulting from Jesse's changes.
- Update mysql driver to handle BIGSERIAL columns
- Update Column.pm, move all mysql and Pg-specific code to DBD driver
  callbacks
- Update Table.pm, add local_options
- Fix mysql NULL reverse-engineering and updating code

0.34 Sun Aug 19 10:08:51 PDT 2007
        - More work on update schema from Slaven Rezic <srezic@cpan.org>,
          thanks!
          + implement table dropping (closes: CPAN#27936)
          + implement column dropping (closes: CPAN#27896)
        - Fix to quiet warnings from internal use of old API from Jesse Vincent
          <jesse+cpan@fsck.com>, thanks! (closes: CPAN#27958)
        - Make table dropping optional, not the default.

0.33 Thu Jun 28 18:46:15 PDT 2007
        - Overhaul of index representation: indices (both normal and unique)
          now have names and are DBIx::DBSchema::Index objects
        - update_schema now handles indices!
        - Bump version numbers in Table.pm, Column.pm and DBD.pm
        - Pg reverse-engineering fix for column order in multi-column indices,
          to prevent needless drop/add of identical indices
        - mysql reverse-engineering patch from Brian Phillips
          <bphillips@cpan.org>, closes: CPAN#17582, thanks!
        - mysql NAME vs NAME_lc patch from Ralf Hack <ralf@beetlecraft.net>,
          closes: CPAN#16715, thanks!
        - mysql fix for additional column data from Chris Mungall
          <cjm@fruitfly.org>, closes: CPAN#20859, thanks!
        - SQLite SERIAL patch from IN SUK JOUNG <i.joung@gmail.com>, and fix
          for mis-application of said patch from Slaven Rezic
          <srezic@cpan.org>, thanks!
        - Update README wrt current CVS info and URL, closes: CPAN#27577

0.32 Wed Apr 18 15:02:25 PDT 2007
- increment the version numbers in Column.pm and Table.pm and the
  "use" statements accordingly
- Error reporting for load constructor
- Update documentation wrt supported databases and new update_schema
  stuff
- Fixes for dropping nullability on old Pg (<= 7.2)
        - Fixes for adding nullability on old Pg (<= 7.3)
        - Throw a warning if pg_server_version is unavailable, assume >= 7.3
        - fix POD error in DBSchema::DBD::SQLite that confused pod2man and
          prevented the documentation from being installed.  Patch from Niko
          Tyni <ntyni@iki.fi>, thanks!

(wiz)

2008-04-23 19:38:52 UTC MAIN commitmail json YAML

+ gnome-sharp-2.20.1, gtk-sharp-2.12.1, swfdec-0.6.6.
- amarok-1.4.9.1, dvd+rw-tools-7.1, p5-MailTools-2.03.

(wiz)

2008-04-23 19:02:31 UTC MAIN commitmail json YAML

Updated x11/xf86-video-intel to 2.3.0

(tnn)

2008-04-23 19:00:46 UTC MAIN commitmail json YAML

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

Provide a buildlink3 for the upcoming compiz-fusion pkgs.

(xtraeme)

2008-04-23 18:23:51 UTC MAIN commitmail json YAML

Updated audio/amarok to 1.4.9.1

(wiz)

2008-04-23 18:23:33 UTC MAIN commitmail json YAML

Update to 1.4.9.1:

VERSION 1.4.9
  BUGFIXES:
    * The last.fm dialog did not always properly disable options when the
      username was not entered.
    * Fix Amazon Cover fetching by using their new web service api.
    * Don't insert items into Dynamic Mode that don't exist.
    * If unavailable tracks are in the Playlist and random mode is on, don't
      stop those tracks if selected; continue with available tracks.

(wiz)

2008-04-23 18:18:37 UTC MAIN commitmail json YAML

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

Update to 0.6.2:

Release 0.6.2 (2007-10-18 Danny Baumann <dannybaumann@web.de>)
==============================================================
Stable release.

Support for automatically starting one decorator per screen.

Various stacking problem fixes.

Fixes for various focus issues.

Minor other bug fixes.

Release 0.6.0 (2007-10-01 Danny Baumann <dannybaumann@web.de>)
==============================================================
Third stable release of Compiz.

Improved focus stealing prevention.

Improved dynamic desktop resizing support.

Added button action configuration options to gtk-window-decorator.

Added UTF-8 window title support to kde-window-decorator.

Various bug fixes and improvements.

... and more, check the NEWS file.

(xtraeme)

2008-04-23 18:04:03 UTC MAIN commitmail json YAML

Use id -un for whoami on QNX.

(joerg)

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

Note update of devel/ruby-SDL.

(jlam)

2008-04-23 17:03:49 UTC MAIN commitmail json YAML

Update devel/ruby-SDL to 2.0.1.  Changes from version 1.3.1 include:

+ Change MAINTAINER to pkgsrc-users@NetBSD.org on advice from <taca>
  in private email.

* raise SDL::Surface::VideoMemoryLost when video memory is lost when
  calling SDL::Surface.blit

* Remove Old SDL::Event, and rename SDL::Event2 to SDL::Event

Reorganize methods by moving them into modules/namesspaces that are
more relevant:
* GL_RED_SIZE -> GL::RED_SIZE
* GL_GREEN_SIZE -> GL::GREEN_SIZE
* GL_BLUE_SIZE -> GL::BLUE_SIZE
* GL_ALPHA_SIZE -> GL::ALPHA_SIZE
* GL_BUFFER_SIZE -> GL::BUFFER_SIZE
* GL_DOUBLEBUFFER -> GL::DOUBLEBUFFER
* GL_DEPTH_SIZE -> GL::DEPTH_SIZE
* GL_STENCIL_SIZE -> GL::STENCIL_SIZE
* GL_ACCUM_RED_SIZE -> GL::ACCUM_RED_SIZE
* GL_ACCUM_GREEN_SIZE -> GL::ACCUM_GREEN_SIZE
* GL_ACCUM_BLUE_SIZE -> GL::ACCUM_BLUE_SIZE
* GL_ACCUM_ALPHA_SIZE -> GL::ACCUM_ALPHA_SIZE
* SDL.get_GL_attr -> SDL::GL.get_attr
* SDL.set_GL_attr -> SDL::GL.set_attr
* SDL.GL_swap_buffers -> SDL::GL.swap_buffers
* SDL.auto_lock? -> SDL::Surface.auto_lock?
* SDL.auto_lock_on -> SDL::Surface.auto_lock_on
* SDL.auto_lock_off -> SDL::Surface.auto_lock_off
* SDL.transform_blit -> SDL::Surface#transform_blit
* SDL.blitSurface -> SDL::Surface.blit
* SDL.get_video_surface -> SDL::Screen.get
* SDL.set_video_mode -> SDL::Screen.open
* SDL.check_video_mode -> SDL::Screen.check_mode
* SDL.list_modes -> SDL::Screen.list_modes
* SDL.set_gamma -> SDL::Screen.set_gamma
* SDL.get_gamma_ramp -> SDL::Screen.get_gamma_ramp
* SDL.set_gamma_ramp -> SDL::Screen.set_gamma_ramp
* SDL.video_driver_name -> SDL::Screen.driver_name
* SDL.video_info -> SDL::Screen.info
* SDL::Surface#get_rgb -> SDL::PixelFormat#get_rgb
* SDL::Surface#get_rgba -> SDL::PixelFormat#get_rgba
* SDL::Surface#map_rgb -> SDL::PixelFormat#map_rgb
* SDL::Surface#map_rgba -> SDL::PixelFormat#map_rgba
* SDL::Surface#get_palette -> SDL::PixelFormat#palette
* SDL::Surface#bpp -> SDL::PixelFormat#bpp
* SDL::Surface#bytes_per_pixel -> SDL::PixelFormat#bytes_per_pixel
* SDL::Surface#[RGBA]mask -> SDL::PixelFormat#[RGBA]mask
* SDL::Surface#[RGBA]shift -> SDL::PixelFormat#[RGBA]shift
* SDL::Surface#[RGBA]loss -> SDL::PixelFormat#[RGBA]loss
* SDL::Surface#colorkey -> SDL::PixelFormat#colorkey
* SDL::Surface#alpha -> SDL::PixelFormat#alpha

Add following methods
* SDL::Surface#load_bmp_from_string
* SDL::Surface#load_from_string
* SDL::Mixer::Wave#load_from_string
* SDL::Mixer.playing_channels
* SDL::Surface#destroy
* SDL::Joystick#close
* SDL::Mixer#close
* SDL::Mixer::Wave#destroy
* SDL::Mixer::Music#destroy

Remove following methods
* SDL::Surface#draw_ellispe
* SDL::Surface#draw_filled_ellispe
* SDL::Surface#rotate_surface
* SDL::Surface#rotate_scaled_surface
* SDL.rotate
* SDL.rotate_blit
* SDL.rotate_scaled_blit
* SDL.rotate_xy_scaled

Change behavior of following methods
* SDL::Surface#draw_line
* SDL::Surface#draw_circle
* SDL::Surface#draw_rect
* SDL::Surface#draw_ellipse
* SDL::Surface#draw_bezier

(jlam)

2008-04-23 16:58:07 UTC MAIN commitmail json YAML

2008-04-23 16:28:29 UTC MAIN commitmail json YAML

+ xf86-video-intel-2.3.0

(xtraeme)

2008-04-23 15:36:01 UTC MAIN commitmail json YAML

Updated sysutils/dvd+rw-tools to 7.1

(wiz)

2008-04-23 15:35:50 UTC MAIN commitmail json YAML

Update to 7.1:

Sense codes are now transcribed into human-readable representation.
The -F/-free-space option was added. Solaris compatibility was
increased. Building on Mac OS X 10.5 was fixed.  A workaround for
missing direct I/O on Linux 2.4 was implemented.  SCSI devices are
now locked more aggressively on Linux. Error handling was improved.
Several other fixes and enhancements were made.

(wiz)

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

Updated devel/fromcvs to 0.0.0.117

(wiz)

2008-04-23 15:28:06 UTC MAIN commitmail json YAML

Update to 0.0.0.117:
Fix bug in repocopy code.

Reported-by: Andriy Gapon <avg@icyb.net.ua>

(wiz)

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

Updated mail/p5-MailTools to 2.03

(wiz)

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

Update to 2.03:

version 2.03: Mon Apr 14 11:13:31 CEST 2008

Fixes:

- Netware needs to use smtp as well [G�nter Knauf]

- Mail::Field::extract() fixed.  Reported by [Andrea Venturol]

(wiz)

2008-04-23 14:37:10 UTC MAIN commitmail json YAML

Requires libarchive 2.5.

(joerg)

2008-04-23 14:18:03 UTC MAIN commitmail json YAML

Another typo fixed that prevented installation

(is)

2008-04-23 13:19:15 UTC MAIN commitmail json YAML

2008-04-23 12:40:40 UTC MAIN commitmail json YAML

Add missing CONFLICTS with postgresql83-* packages.  Reported by ASau` on irc.

(ghen)

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

Stop the "configure" script from picking up "doxygen" or "pdflatex"
which will break the build later (and would cause package list
inconsistencies if the build succeeded).

(tron)

2008-04-23 12:12:06 UTC MAIN commitmail json YAML

Back out patch-ac rev. 1.3, which doesn't seem to be needed when
using patch-af. See PR pkg/38484 for the discussion.

(tnn)

2008-04-23 11:54:54 UTC MAIN commitmail json YAML

rc.subr-20080423: Add QNX support.
>From Christian Leutloff on tech-pkg.

(joerg)

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

Add depends on time/p5-Time-Duration, bump PKGREVISION

(abs)

2008-04-23 09:44:05 UTC MAIN commitmail json YAML

- add patch from git for disabling gcc --param inline-* if not GCC, and
  change patch to disable if not GCC4.
- add patch from PR pkg/38484 to fix missing symbol pixman_have_sse
- bump PKGREVISION

(tnn)

2008-04-23 09:22:39 UTC MAIN commitmail json YAML

Fix p5-libwww version number.

(wiz)

2008-04-23 09:22:08 UTC MAIN commitmail json YAML

Reset PKGREVISION after update.
It's been less than a day, so I hope it won't bite anyone.

(wiz)

2008-04-23 05:53:00 UTC MAIN commitmail json YAML

2008-04-22 23:06:45 UTC MAIN commitmail json YAML

clive update done.

(wiz)

2008-04-22 23:06:01 UTC MAIN commitmail json YAML

Updated net/clive to 0.4.10

(wiz)

2008-04-22 23:05:49 UTC MAIN commitmail json YAML

Update to 0.4.10:

Version 0.4.10                                      [2008-04-21]
=================================================================
+new !fix ~change -remove | focus: Major bugfixes

+ newt library
    The library, which is written in C and depends on the libslang, is now
    part of the clive distribution. For more details, see the README file.

+ configure: --with-newt[=yes/no] (default:yes)
    If disabled:
        - python newt module will not be built
        - The --rss feature will be disabled

+ Prerequisite: libslang >= 2.0
    The newt library depends on this library.

+ Google Video: mp4 support
    clive will now attempt to download mp4 format from the host by
    default. --low-quality option can be used to override this. Falls
    back to flv if the mp4 link is not found.

    Example:
        mp4: Video: h264, yuv420p, 320x240, 29.97 fps(r)
        mp4: Audio: mpeg4aac, 48000 Hz, stereo

        flv: Video: flv, yuv420p, 320x240, 29.75 fps(r)
        flv: Audio: mp3, 22050 Hz, mono, 64 kb/s

+ Google Video: Partial support for continuing transfers
    Continuing partially downloaded files is now possible for the mp4 transfers
    introduced in this release.

    As with Youtube/FLV, continuing GoogleVideo/FLV files still fails.

~ Program start options stdout
    clive now prints out the bundled newt version (if any).

! Cache: --low-quality
    Caching should now work properly with the --low-quality option. If the
    cache entry was previously recorded using different video quality, the
    video page is re-visited and the cache is updated.

    A new column 'cache_lowq' was added to the 'cache' sqlite table.
    Should the upgrade from a previous version fail, remove the existing
    ~/.clive/cache file.

! Bug #11523: Google video extraction fails
    Affected versions: clive < 0.4.10

! Various typos
    Mostly in the manual page.

- Prerequisite: python-newt module
    The module is now part of the distribution.

(wiz)

2008-04-22 23:03:06 UTC MAIN commitmail json YAML

+ roundcube-0.1.1, solfege-3.10.3, and claim lilypond.

(schmonz)

2008-04-22 22:03:01 UTC MAIN commitmail json YAML

+ bzflag-2.0.10, clive-0.4.10, dasher-4.9.0, fromcvs-117,
  imapsync-1.250.
- SDL_sound-1.0.2, enchant-1.4.1,
  libtheora-1.0beta3, libxml2-2.6.32, mednafen-0.8.8, p5-libwww-5.812,
  singularity-0.27, wesnoth-1.4.1, xcompmgr-1.1.4.

(wiz)

2008-04-22 21:59:47 UTC MAIN commitmail json YAML

Updated emulators/mednafen to 0.8.8

(wiz)

2008-04-22 21:59:22 UTC MAIN commitmail json YAML

Update to 0.8.8:
0.8.8:

        Added <string.h> to the global include list in mednafen.h.

        Added boolean setting "debugger.autostepmode" that, when set to 1, will cause Mednafen to automatically start
        the debugger in step mode after a game is loaded(only if Mednafen has a debugger for the emulated system, of course).

        NES:  Fixed CNROM emulation initialization bug.

        PCE:  ADPCM software reset was erroneously also resetting the playback frequency.  Fixed.  (Fixes ADPCM voices in Gulliver Boy)

        PCE:  Fixed disassembly of the JMP $(AAAA, X) instruction.

        PCE, PC-FX:  Improved PSG LFO emulation.

        PC-FX:  Emulated gamepad button presses weren't being decoded from the driver-side data correctly(causing problems on big-endian
platforms).  Fixed.

        PC-FX:  Improved the logging of the ROM font system call in the debugger, to also include the callee address and the size of the
        glyph being requested.

        PC-FX:  Disassembly of the "nop" instruction will no longer show the virtually meaningless operand.

        PC-FX:  Fixed alignment and prettified the disassembly of LDSR and STSR instructions.

        SMS:  SMS pause and 2-player support were erroneously commented out.  Fixed.

(wiz)

2008-04-22 21:49:10 UTC MAIN commitmail json YAML

Updated www/p5-libwww to 5.812nb3

(wiz)

2008-04-22 21:48:58 UTC MAIN commitmail json YAML

Update to 5.812:

2008-04-16  Gisle Aas <gisle@ActiveState.com>

    Release 5.812

    Gisle Aas (6):
          Typo fix.
          Simplified Net::HTTP::Methods constructor call.
          Croak if Net::HTTP constructor called with no argument.
          Avoid calling $self->peerport to figure out what the port is.
          5.811 breaks SSL requests [RT#35090]
          Make test suite compatible with perl-5.6.1.

    Toru Yamaguchi (1):
          Wrong treatment of qop value in Digest Authentication [RT#35055]

2008-04-14  Gisle Aas <gisle@ActiveState.com>

    Release 5.811

    Gisle Aas (6):
          Avoid "used only once" warning for $Config::Config.
          Make HTTP::Request::Common::PUT set Content-Length header [RT#34772]
          Added the add_content_utf8 method to HTTP::Message.
          Typo fix.
          Retry syscalls when they fail with EINTR or EAGAIN [RT#34093,32356]
          Allow HTTP::Content content that can be downgraded to bytes.

    Gavin Peters (1):
          HTML::Form does not recognise multiple select items with same name [RT#18993]

    Mark Stosberg (1):
          Document how HTTP::Status codes correspond to the classification functions [RT#20819]

    Robert Stone (1):
          Allow 100, 204, 304 responses to have content [RT#17907]

    sasao (1):
          HTTP::Request::Common::POST suppressed filename="0" in Content-Disposition [RT#18887]

2008-04-08  Gisle Aas <gisle@ActiveState.com>

    Release 5.810

    Gisle Aas (10):
          Small documentation issues [RT#31346]
          Explain $netloc argument to $ua->credentials [RT#31969]
          Make lwp-request honour option -b while dumping links [RT#31347]
          Ignore params for date convenience methods [RT#30579]
          Get rid of all the old CVS $Keyword:...$ templates.  Set $VERSION to 5.810.
          Update Copyright year.
          Drop some sample URLs that were failing.
          Complement the HTTP::Status codes [RT#29619]
          Don't allow HTTP::Message content to be set to Unicode strings.
          Refactor test for Encode.pm

    Ville Skytta (3):
          Spelling fixes [RT#33272]
          Trigger HTML::HeadParser for XHTML [RT#33271]
          Escape status line in error_as_HTML, convert to lowercase [RT#33270]

    Alexey Tourbin (2):
          Typo fix [RT#33843]
          Protocol/file.pm: postpone load of URI::Escape and HTML::Entities [RT#33842]

    Daniel Hedlund (1):
          HTML::Form Module and <button> element clicks

    Adam Kennedy (1):
          HTTP::Cookies handle malformed empty Set-Cookie badly [RT#29401]

    Jacob J (1):
          [HTTP::Request::Common] Does not handle filenames containing " [RT#30538]

    Rolf Grossmann (1):
          Allow malformed chars in $mess->decoded_content [RT#17368]

    FWILES (1):
          Croak if LWP::UserAgent is constructed with hash ref as argument [RT#28597]

    Adam Sjogren (1):
          Disabled, checked radiobutton being submitted [RT#33512]

    DAVIDRW (1):
          warn if TextInput's maxlength exceeded [RT#32239]

(wiz)

2008-04-22 21:42:20 UTC MAIN commitmail json YAML

Updated textproc/libxml2 to 2.6.32

(wiz)

2008-04-22 21:42:07 UTC MAIN commitmail json YAML

Update to 2.6.32:

2.6.32: Apr 8 2008

* Documentation: returning heap memory to kernel (Wolfram Sang),
  trying to clarify xmlCleanupParser() use, xmlXPathContext
  improvement (Jack Jansen), improve the *Recover* functions
  documentation, XmlNodeType doc link fix (Martijn Arts)
* Bug fixes: internal subset memory leak (Ashwin), avoid problem
  with paths starting with // (Petr Sumbera), streaming XSD validation
  callback patches (Ashwin), fix redirection on port other than 80
  (William Brack), SAX2 leak (Ashwin), XInclude fragment of own
  document (Chris Ryan), regexp bug with '.' (Andrew Tosh), flush
  the writer at the end of the document (Alfred Mickautsch), output
  I/O bug fix (William Brack), writer CDATA output after a text
  node (Alex Khesin), UTF-16 encoding detection (William Brack),
  fix handling of empty CDATA nodes for Safari team, python binding
  problem with namespace nodes, improve HTML parsing (Arnold
  Hendriks), regexp automata build bug, memory leak fix (Vasily
  Chekalkin), XSD test crash, weird system parameter entity parsing
  problem, allow save to file:///X:/ windows paths, various attribute
  normalisation problems, externalSubsetSplit fix (Ashwin), attribute
  redefinition in the DTD (Ashwin), fix in char ref parsing check
  (Alex Khesin), many out of memory handling fixes (Ashwin), XPath
  out of memory handling fixes (Alvaro Herrera), various realloc
  problems (Ashwin), UCS4 encoding conversion buffer size (Christian
  Fruth), problems with EatName functions on memory errors, BOM
  handling in external parsed entities (Mark Rowe)
* Code cleanup: fix build under VS 2008 (David Wimsey), remove
  useless mutex in xmlDict (Florent Guilian), Mingw32 compilation
  fix (Carlo Bramini), Win and MacOS EOL cleanups (Florent Guiliani),
  iconv need a const detection (Roumen Petrov), simplify xmlSetProp
  (Julien Charbon), cross compilation fixes for Mingw (Roumen
  Petrov), SCO Openserver build fix (Florent Guiliani), iconv uses
  const on Win32 (Rob Richards), duplicate code removal (Ashwin),
  missing malloc test and error reports (Ashwin), VMS makefile fix
  (Tycho Hilhorst)
* improvements: better plug of schematron in the normal error
  handling (Tobias Minich)

(wiz)

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

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

Updated audio/SDL_sound to 1.0.2

(wiz)

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

Update to 1.0.2. Add speex to DEPENDS. Update buildlink3.mk and bump ABI.

04172008 - Look for Speex includes in new directory. Converted all text
          encoding from ISO-8859-1 to UTF-8. Fixed "make dist" script for
          dealing with Subversion instead of CVS. Added Speex to the README.
          Upped version to 1.0.2.
04112008 - Check if Speex header has bogus data (CVE-2008-1686).
08062007 - Updated my email address.
07152007 - Minor correction in Timidity resampling code (Thanks, Sam!).
07062007 - Fixed uninitialized buffer in mpglib. (Thanks, Phil!).
10292006 - Fixed bogus memory dereference when SMPEG fails init (thanks, Chris!)
10272006 - FLAC 1.1.3 breaks their API _again_, so we try to do the right
          thing at build time. (Thanks, Josh!).
05122006 - Patched to get mpglib compiling again (thanks, Sam!).
12172005 - Fixed gcc4 whining in playsound_simple.c.
12062005 - Trimmed a bunch of junk out of the build system, and now it works
          on Mac OS X again.
10122005 - Check for libmodplug headers in two possible places (thanks, Tyler!)
10012005 - Added playsound_simple.c.
05302005 - Backport from devtree: Fixed automake nonsense.
11122004 - Backport from devtree: fix .voc decoder crash on file open.
05082004 - Fixed "bootstrap" to work with MacOSX.
05072004 - Backed out some commits, converted repository to Subversion, and
          branched off to a 1.1.0 development tree. Changed MikMod URL...old
          one is now a porn site.  :(
10252003 - VOC decoder was broken. Now it isn't.
10142003 - Build system fix: acinclude.m4 had some word wrapping badness.

(wiz)

2008-04-22 20:55:49 UTC MAIN commitmail json YAML

Updated games/singularity to 0.27

(wiz)

2008-04-22 20:55:38 UTC MAIN commitmail json YAML

Update to 0.27:

v0.27 (release 2008.04.17):

USER-VISIBLE CHANGES:
- Display the actual discovery percentage when preparing to build a base.
  (Brian, Phil)
- Minor text cleanups. (Phil)
* Support events that can happen throughout the course of the game, changing
  things in interesting ways. (Brian, Phil)
* A number of new items and technologies to ease gameplay. (Brian, tweaks
  by Phil and emh)
- Building new machines informs you how much CPU capacity you will receive
  from the new systems. (Brian, Phil for suggestion)
- Idle bases are harder to discover. (Brian)
- Allow keys to be repeated when held down. (Brian, emh for suggestion)
- Fix the constant "CPU complete" dialogs when low on money. (Brian, numerous
  people for suggestion)
- Added research item for construction. Still needs actual implementation.
  Weird time code is blocking. (Brian, ? for suggestion)
- Return to base menu when exiting base screens rather than returning to map.
  (Brian, emh and Max McCracken for suggestion)
- Implemented Security and Reactor values obtained from data files. (Brian)
- Implemented "Destroy" feature from base list (Brian, Max McCracken and emh
  for suggestion)
- When building, items are sorted by their cost to make picking the best one
  easier. (Phil, Gustav Bertram for suggestion)
- Keep the game from crashing when it cannot create a 'music/' directory.
  (Phil, Andrew McMillan for report)
- Added checks to avoid key error crashes related to unfinished Construction
  code. (Brian)
- Added check to avoid crash when hitting 'Destroy' button in an empty base
  list. (Brian)
- Preferences have moved to 'prefs.dat', and now follow the standard Python
  ConfigParser format. (Phil)
- Added difficulty choice dialog handled by pgu. (Brian)
- Increased robustness across the board; E:S should be harder to crash.
  (Phil)
- Various strings shortened to fit dialogs. (Phil, Joey Hess for suggestion)
- Fixed bug that kept music from playing. (Phil, Brian Warner for suggestion)
- Keep running if the mixer can't load. (Phil, Rafal Czlonka for bug report)
- Fix up the handling of music paths. (Phil)
- Added support for win and losegame music. (emh)
* Three new tracks, 'Deprecation', 'Awakening,' and 'Inevitable,' including
  the Psycle source! (Max McCracken)
- Research screen will no longer assign an extra base to research. (emh,
  blog... for report)
- When naming base, text will take up the entire box. (emh, blog... for report)
- Fixed a potential crash with display_base_list self-recursing. (Phil,
  Josh Triplett for report)

OTHER CHANGES:
- Code cleanups and reformatting. (Phil)
- Cleanup a bug introduced in player.py, item may be int rather than object.
  (Brian)
- The music loading code is less fragile now; it shouldn't break on too-short
  file names. (Phil)
- Massive changes to data file handling; we now use Python's built-in
  ConfigParser. (Phil)
- Further changes to the data file formats, for consistency and ease of
  code/data maintenance.  (Phil)
- Switched sounds to using data files, for smoother future expansion. (Phil)
- Fixed strings loading. (Phil)

(wiz)

2008-04-22 20:27:16 UTC MAIN commitmail json YAML

Updated multimedia/libtheora to 1.0beta3

(wiz)

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

Update to 1.0beta3:

libtheora 1.0beta3 (2008 April 16)

- Build new libtheoradec and libtheoraenc libraries
  supporting the new API from theora-exp. This API should
  not be considered stable yet.
- Change granule_frame() to return an index as documented.
  This is a change of behaviour from 1.0beta1.
- Document that granule_time() returns the end of the
  presentation interval.
- Use a custom copy of the libogg bitpacker in the decoder
  to avoid function call overhead.
- MMX code improved and ported to MSVC.
- Fix a problem with the MMX code on SELinux
- Fix a problem with decoder quantizer initialization.
- Fix a page queue problem with png2theora.
- Improved robustness.
- Updated VS2005 project files.
- Dropped build support for Microsoft VS2003.
- Dropped build support for the unreleased libogg2.
- Added the specification to the autotools build.
- Specification corrections.

(wiz)

2008-04-22 20:26:51 UTC MAIN commitmail json YAML

Added sysutils/acpica-utils-20080321 (replacing acpi-iasl)

(xtraeme)

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

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

Import acpica-utils 20080321. The acpi-iasl pkg didn't build some
useful tools provided in the acpica-unix package, so this package
will install all them.

This package provides the ACPICA user-space utilities built upon
the same kernel code. The following utilities are provided:

    * ASL Compiler & Disassembler
    * ACPI Simulator (AcpiExec)
    * ACPI Table Extractor

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(xtraeme)

2008-04-22 19:40:47 UTC MAIN commitmail json YAML

Updated x11/xcompmgr to 1.1.4

(wiz)

2008-04-22 19:40:28 UTC MAIN commitmail json YAML

Update to 1.1.4:

iAdam Jackson (1):
      xcompmgr 1.1.4

Dana Jansens (1):
      Fix a server resource leak on destroying windows.

James Cloos (2):
      Remove deprecated .cvsignore
      Add *~ to .gitignore to skip patch/emacs droppings

Jamey Sharp (1):
      Bug #13073: Fix broken word-wrapping in ChangeLog generation.

Mark Tiefenbruck (1):
      Bug #9762: Fix opacity changes on unmapped windows.

Tilman Sauerbeck (5):
      Fixed a bunch of warnings.
      Added .gitignore.
      Include getopt.h for getopt().
      Constified some variables.
      Make this loop slightly easier to read.

(wiz)

2008-04-22 19:32:33 UTC MAIN commitmail json YAML

Updated textproc/enchant to 1.4.1

(wiz)

2008-04-22 19:32:18 UTC MAIN commitmail json YAML

Update to 1.4.1:
Included hunspell upgraded to 1.2.2, pkgsrc patches integrated.

(wiz)

2008-04-22 18:17:35 UTC MAIN commitmail json YAML

HOMEPAGE= http://librsync.sourceforge.net/

The old web page at http://www.nongnu.org/rdiff-backup
reditrects to http://rdiff-backup.stanford.edu/, but that's
about rdiff-backup, not about librsync.

(apb)

2008-04-22 18:06:52 UTC MAIN commitmail json YAML

Updated devel/libevent to 1.4.3

(tnn)

2008-04-22 18:06:09 UTC MAIN commitmail json YAML

2008-04-22 17:25:42 UTC MAIN commitmail json YAML

Fix build on HP-UX 11.11

(tnn)

2008-04-22 17:16:54 UTC MAIN commitmail json YAML

Update to libevent-1.4.3.
1.4.3-stable:
1.4.2-rc:
* make Solaris event subsystems more reliable; from W.C.A. Wijngaards
* event_base_get_method(); from Springande Ulv
* fix HTTP/1.1 chunk formatting; from "propanbutan"
* allow 64-bit content lengths; from Scott Lamb
* and more...
1.4.1-beta:
* fixed some memory leaks and other misc cleanup; from Christopher Layne,
  Scott Lamb and Charles Kerr
* introduced event_reinit to deal with fork()
* improved efficiency of generated RPC structure
* performance improvements to Win32 backend
* and many more...
1.4.0-beta:
* a new RPC subsytem for writing distributed clients and servers
* almost everything is documented via Doxygen now
* many fixes and improvements to evdns and evhttp
* libevent now builds two additional libraries: libevent_core (containing only
  the event core) and libevent_extras (contained evdns, evhttp and evrpc)
* performance improvements due to using a heap instead of red-black trees for
  timeouts
* Solaris' event ports are better supported
1.3e:
* Fix compilation on Solaris; from Magne Mahre
* Add a "Date" header to HTTP responses when it's missing, as required by
  HTTP 1.1. Original Patch from Ralph Moritz.
* Fix a memory leak in which failed HTTP connections whould not free the
  request object.
* Fix a memory leak in the DNS server.
* Handle NULL timeouts correctly on Solaris; from Trond Norbye
* Recalculate pending events properly when reallocating event array on
  Solaris; from Trond Norbye

(tnn)

2008-04-22 16:24:31 UTC MAIN commitmail json YAML

Restructure the following packages:

www/htmldoc
www/htmldoc-x11

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

+ Add options.mk that supports a new option:

htmldoc-gui Build with GUI support

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

+ Add full DESTDIR support.

+ Bump the PKGREVISION for htmldoc and htmldoc-x11 to 7.  Both packages
  now track and use the same PKGREVISION number.

(jlam)

2008-04-22 16:23:57 UTC MAIN commitmail json YAML

Restructure the following packages:

editors/elvis
editors/elvis-x11

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

+ Add options.mk that supports a new "x11" option.

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

+ Rename PLIST.common to PLIST as there are no PLIST differences
  between elvis and elvis-x11.

+ Modify patch-ab to add a --sysconfdir option to the configure script
  and fix the parsing of --with-x* options so that --with-xft isn't
  ignored.

+ Modify patch-ac to handle SYSCONFDIR in Makefile.in passed in from the
  configure script.

+ Remove the unnecessary substitution for PKG_SYSCONFDIR now that the
  configure script and Makefile.in directly support --sysconfdir.

+ Include termcap.buildlink3.mk to properly deal with termcap/curses
  issues (elvis needs termcap).

+ Add full DESTDIR support.

+ Set HOMEPAGE to the correct URL.

+ Bump the PKGREVISION for elvis and elvis-x11 to 6.  Both packages
  now track and use the same PKGREVISION number.

(jlam)

2008-04-22 16:23:37 UTC MAIN commitmail json YAML

Restructure the following packages:

databases/sqsh
databases/sqsh-motif
databases/sqsh-x11

The latter two are now just databases/sqsh built with a specific set of
options.  Changes include:

+ Add options.mk that supports three options:

sqsh-motif Motif GUI
sqsh-xaw Athena GUI
sybase-openclient Use real Sybase

  Note that USE_SYBASE_OPENCLIENT is a legacy variable for the new
  global "sybase-openclient" option.

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

+ Remove section in patch-aa that tried to deal with termcap/curses
  issues for readline.  That is now automatically taken care of in
  pkgsrc through termcap.buildlink3.mk, which is included here
  indirectly by readline/buildlink3.mk.

+ Add full DESTDIR support.

+ Bump the PKGREVISION for sqsh, sqsh-motif and sqsh-x11 to 5.  All
  three packages now track and use the same PKGREVISION number.

(jlam)

2008-04-22 16:09:58 UTC MAIN commitmail json YAML

Updated sysutils/acpi-iasl to 20080321

(xtraeme)

2008-04-22 16:09:12 UTC MAIN commitmail json YAML

Update to 20080321 (for real, the latest one).

Bugfixes and some other stuff, please review the CHANGES.txt file
for more info.

(xtraeme)

2008-04-22 14:27:51 UTC MAIN commitmail json YAML

Restore symlinks as the code was accidently removed.

(joerg)

2008-04-22 14:19:22 UTC MAIN commitmail json YAML

- firefox-2.0.0.14

(ghen)

2008-04-22 13:47:08 UTC MAIN commitmail json YAML

pkg_install-20080422:
Make use of the linkresolver from libarchive and thereby fix the
permissions of hardlinks in archives.  This wasn't a problem so far
as nbpax is (incorrectly) ignoring the permissions of the other entries.

(joerg)

2008-04-22 12:15:56 UTC MAIN commitmail json YAML

Note update of the "pango" package to version 1.20.2nb1.

(tron)

2008-04-22 12:15:38 UTC MAIN commitmail json YAML

After "atsui" support was removed from "cairo" it is no longer available
in "pango", too. Fix package list (for Mac OS X) and bump package revision.

(tron)

2008-04-22 11:31:18 UTC MAIN commitmail json YAML

2008-04-22 11:31:05 UTC MAIN commitmail json YAML

Updated chat/ejabberd to 2.0.0nb1

Fix pkg/38347 (patch provided by Daniel Horecki).

(martti)

2008-04-22 10:41:04 UTC MAIN commitmail json YAML

2008-04-22 10:30:13 UTC MAIN commitmail json YAML

Updated math/maxima to 5.15.0

(tnn)

2008-04-22 10:27:55 UTC MAIN commitmail json YAML

Update to maxima-5.15.0. Patch From Aleksej Saushev in private mail.

Backwards-incompatible changes:
* Disable verb => numerical evaluation scheme for math functions
Major changes:
* User interface Imaxima now packaged with Maxima
New items in share:
* share/contrib/bitwise: Bitwise operations on integers
* share/contrib/noninteractive: Catch asksign and askprop questions
and turn them into conditional expressions
* share/contrib/namespaces: A namespace implementation for Maxima
* share/contrib/amatrix: Matrix with underlying Lisp array
Other revisions:
* gf package: New version of gf package (Galois fields)
* tex function: Enable TeX output to output stream
* stringproc package: Revised printf; regex functions
* ezunits package: Dimensional analysis; physical constants
* quadpack functions: Return partially-evaluated expressions
* plot functions: New options; bug fixes
* tensor functions: Many improvements
* graphs package: Improvements

(tnn)

2008-04-22 10:23:23 UTC MAIN commitmail json YAML

Note update of the "cairo" package to version 1.6.4nb1.

(tron)

2008-04-22 10:23:09 UTC MAIN commitmail json YAML

"atsui" support in "cairo" has been deprecated. Remove "atsui" specific
bits (available under Mac OS X only) and correct the package list.
Bump package revision.

(tron)

2008-04-22 06:01:28 UTC MAIN commitmail json YAML

2008-04-22 05:59:12 UTC MAIN commitmail json YAML

Remove libgnomeprint dependency, the package itself doesn't depend on
it any longer.

Fixes build problem in evolution:
> ===> Creating toolchain wrappers for evolution-2.22.1
> ERROR: libgnomeprintui is not installed; can't buildlink files.

Bump BUILDLINK_ABI_DEPENDS.gtkhtml314 for dependency change.

(wiz)

2008-04-21 22:39:15 UTC MAIN commitmail json YAML

Actually, just check for linux and ignore hurd...

(joerg)

2008-04-21 22:36:08 UTC MAIN commitmail json YAML

Fix another surprise from the glibc folks.

(joerg)

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

2008-04-21 22:19:04 UTC MAIN commitmail json YAML

Updated x11/modular-xorg-server to 1.3.0.0nb8

(wiz)

2008-04-21 22:18:52 UTC MAIN commitmail json YAML

2008-04-21 22:08:20 UTC MAIN commitmail json YAML

+ RealPlayer-11, SDL_sound-1.0.2, amarok-1.4.9.1, ap2-perl-2.0.4,
  claws-mail-3.4.0, eggdrop-1.6.19, enchant-1.4.1, fbdesk-1.4.1
  [pkg/38473], fuse-ntfs-3g-1.2412, gcalctool-5.23.1, geany-0.14,
  glade-3.4.4, gtexinfo-4.12, hatari-1.0.1, heyu-2.2.1, ikiwiki-2.43,
  libtheora-1.0beta3, libxml2-2.6.32, mednafen-0.8.8, mpg123-1.4.2,
  mtr-0.73, p5-ExtUtils-CBuilder-0.23, p5-MailTools-2.03,
  p5-libwww-5.812, postal-0.69, py-libxml2-2.6.32, qemu-0.9.1,
  ruby-rbtree-0.3.0, scons-0.98.1, silc-server-1.1.5, singularity-0.27,
  skipstone-1.0.1, wine-0.9.60, worker-2.16.3, yasm-0.7.0,
  youtube-dl-20080420.

(wiz)

2008-04-21 21:47:53 UTC MAIN commitmail json YAML

Needs pkg-config during configure.

(wiz)

2008-04-21 21:42:37 UTC MAIN commitmail json YAML

New package: net/walker version 3.8

(reed)

2008-04-21 21:40:25 UTC MAIN commitmail json YAML

Import new package: walker-3.8

Utility to download DNS zone contents using the DNSSEC NXT/NSEC
record chain (even when AXFR is disabled).  It can also verify all
digital signature resource records within a zone against the zone key.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(reed)

2008-04-21 21:15:53 UTC MAIN commitmail json YAML

Fix typo in delimiter.

(joerg)

2008-04-21 20:11:58 UTC MAIN commitmail json YAML

update to 4.6.3
changes: many fixes, improvements and API extensions, see
http://www.jcea.es/programacion/pybsddb.htm

pkgsrc note: 'egg' (setuptools) support was added upstream, but
disabled in pkgsrc because it leads to nondeterministic results
depending on OS version and installed pkgs

(drochner)

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

2008-04-21 20:04:43 UTC MAIN commitmail json YAML

update to 1.0.6.14
changes:
-TrueColor support
-Started native Aqua port for TeXmacs
-Fix compatibility issues for C++ and Guile

(drochner)

2008-04-21 19:53:50 UTC MAIN commitmail json YAML

2008-04-21 19:48:29 UTC MAIN commitmail json YAML

2008-04-21 19:44:14 UTC MAIN commitmail json YAML

2008-04-21 19:28:30 UTC MAIN commitmail json YAML

Updated devel/glibmm to 2.16.2; math/glpk to 4.28

(adam)

2008-04-21 19:26:35 UTC MAIN commitmail json YAML

Changes 4.28:

The iODBC and MySQL table drivers, which allows transmitting
data between MathProg model objects and relational databases,
were re-implemented to replace a static linking by a dynamic
linking to corresponding shared libraries.
Many thanks to Heinrich Schuchardt <heinrich.schuchardt@gmx.de>
for the contribution, Rafael Laboissiere <rafael@debian.org>
for useful advices concerning the shared library support under
GNU/Linux, and Vijay Patil <vijay.patil@gmail.com> for testing
this feature under Windows XP.

A new optional feature was added to the package. This feature
is based on the zlib data compression library and allows GLPK
API routines and the stand-alone solver to read and write
compressed data files performing compression/decompression "on
the fly" (compressed data files are recognized by suffix `.gz'
in the file name). It may be useful in case of large MPS files
to save the disk space (up to ten times).

(adam)

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

Changes 2.16.2:
* Bug 526831: G_OPTION_REMAINING no longer works with OptionEntry
* Bug 527687: ustring::erase(iterator) incorrect for non ascii character
* add API documentation for spawn_* functions
* fix possible memory leak in OptionEntr

(adam)

2008-04-21 19:07:53 UTC MAIN commitmail json YAML

I've long not used TeXmacs anymore; unset MAINTAINER.

(ghen)

2008-04-21 17:15:31 UTC MAIN commitmail json YAML

libfetch-2.9:
Add fetch_extract_filename to extract the unquoted filename of a URL.

(joerg)

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

The update to xterm-234 (really 235) has been done.

(bjs)

2008-04-21 17:11:18 UTC MAIN commitmail json YAML

+ Updated x11/xterm to 235 [bjs 2008-04-21]

(bjs)

2008-04-21 17:10:40 UTC MAIN commitmail json YAML

Update to xterm-235.

Changes within pkgsrc:

    - Remove most options, as I see no reason not just to build them in
      by default (they shouldn't be intrusive).  I also enabled a few
      features that weren't there before (mouse support for readline
      applications, support for the mini/built-in luit, paste64, etc.).

    - Build-in the toolbar by default.  I patched xterm to disable the
      toolBar resource by default.

    - Include xaw.buildlink3.mk instead of libXaw/buildlink3.mk and
      add some code to configure xterm properly according to the
      user's preference.

    - Use @unexec ${RMDIR} ... when attempting to remove
      lib/X11/app-defaults.

    - Install xterm.desktop and uxterm.desktop to share/applications
      (I don't think this needs desktopdb.mk).

    - Added a 'debug' option which builds in support for event tracing.
      Also, if PKG_DEVELOPER=yes, tell configure to --enable-warnings.

                            Patch #235 - 2008/04/20

    * add control sequences for some of the recent resource/menu settings:

          * altSendsEscape (private mode 1039)
          * keepSelection (private mode 1040)
          * selectToClipboard (private mode 1041)
          * bellIsUrgent (private mode 1042)
          * popOnBell (private mode 1043)

    * add resource formatOtherKeys to provide an alternate escape sequence
      format for the modifyOtherKeys resource (request by Paul LeoNerd
      Evans).
    * adjust saved-cursor position if the window is resized while
      displaying the alternate screen (Novell #196880, Debian #383384).
    * improve pointer-checks to fix a bug exposed by resizing during
      initialization under StumpWM window manager (Fedora Bugzilla #437928).
    * modify unselectwindow() to ensure that the mouse pointer is not
      hidden after xterm loses focus (report by Jeremy Huddleston).
    * add special check for fd_mask on Mac OS X (report by Jeremy
      Huddleston).
    * add dylib to autoconf's suffix list used for checking the result
      from xmkmf, to work with Mac OS X (report by Jeremy Huddleston).
    * correct initialization of bold- and wide-, wide-bold fonts which may
      be set via the utf8Fonts subresource (Debian #347790).

                            Patch #234 - 2008/03/02

    * modify sinstall.sh to use POSIX locale to bypass GNU ls changes to
      date-format.
    * improved/refined changes for closing bitmap font (patch by Andrea
      Odetti).
    * improve resize computation for situations where the negotiation
      fails, by invoking the xterm widget's core-class resize method
      (Debian #365602, patch by Jim Paris).
    * restore initialization of terminal's VMIN and VTIME settings, from
      patch #232 changes (patch by Matthieu Herrb).

                            Patch #233 - 2008/02/24

    * add configure check for ttydefaults.h, include if needed, e.g., for
      systems where defining _POSIX_C_SOURCE, etc., prevents it from being
      included via termios.h (prompted by comments by Robert Delius Royar
      and Jeremy Huddleston).
    * patches from Alan Coopersmith. These correspond to bug-ids on
      bugs.opensolaris.org

            4029911
                    fix a typo in manpage

            4045962
                    xterm doesn't properly set ut_syslen

            4192572
                    left-left-right misinterpreted as triple click

    * minor optimization to tab-initialization (patch by Nemeth Marton).
    * fix a case where an incorrect font was freed during initialization
      from patch #232 changes (patch by Andrea Odetti).
    * improve comparison used in SameFont function for GC-caching (Julien
      Cristau).
    * correct macro name used for default CKILL definition to work with
      Mac OS X (report by Jeremy Huddleston).

                            Patch #232 - 2008/01/30

    * corrected logic in a font-cache used for reverse-video (Debian
      #404079).
    * add control sequence to alter pointerMode at runtime.
    * add limit-checks for rectangle operation parameters (report by
      Martin Pirker).
    * modify minstall.sh to suppress $MANPAGER and $PAGER environment
      variables, which may interfere with redirecting output of man to a
      shell variable (report/patch by Zdenek Sekera).
    * do not try to hide mouse pointer in the tek4014 window, fixes broken
      "-t" option at startup from patch #230 changes (report by Robert K.
      Nelson).
    * correct datatype used when drawing tek4014 data using xterm compiled
      for wide-characters, on big-endian machines (reports by Jeremy
      Huddleston, Harald Hanche-Olsen, Martin Costabel, Merle Reinhart).
    * modify to cache the font-names along with the bitmap font data, to
      improve comparison of fonts.
    * modify to allow building with configure options --disable-ansi-color
      and --disable-leaks (Debian #459817, report/patch by Nemeth Marton).
    * modify to allow building with configure options --enable-wide-chars
      and --disable-c1-print (Debian #459816, report/patch by Nemeth
      Marton).
    * add pointerMode resource to control whether and when the pointer
      cursor is hidden as the user types.
    * simplify initialization of ttyMode- and related characters using a
      table.
    * modify initialization-logic for stty values that correspond to
      ltchars structure and the BSD TIOCSLTC ioctl (susp, dsusp, rprnt
      flush, werase, lnext). These were reset to constants for both
      termios and legacy interfaces immediately after asking the system
      for the existing values since X11R6.1, rather than using them to
      provide inherited values. While the legacy interface has some
      constraints, e.g., on HPUX, the POSIX or termios interface should
      not. Your shell may reset these anyway (prompted by patch by Ed
      Schouten).
    * improve logic for hiding/displaying pointer-cursor (report by Mark
      Brukhartz).
    * add limit-checks to tabs.c, increase maximum column for setting
      tab-stops from 320 to 1024 (report by Nemeth Marton).
    * correct length, i.e., number of types of selection targets, computed
      by ConvertSelection() when not handling wide characters for the
      XA_TARGETS() case. This leaves an extra Atom on the end of the list
      which is not handled by Java applications. The problem was introduced
      in patch #151 (report by David Wood).

(bjs)

2008-04-21 17:08:02 UTC MAIN commitmail json YAML

2008-04-21 16:40:17 UTC MAIN commitmail json YAML

2008-04-21 16:35:06 UTC MAIN commitmail json YAML

Update patch checksum

(jlam)

2008-04-21 16:34:45 UTC MAIN commitmail json YAML

Add the 'scmgit-gui' option. If enabled, the GUI in Tcl/Tk will be
build, otherwise not. Use the PLIST_VARS stuff to handle the PLIST file.

Enabled by default to respect previous behaviour.

(xtraeme)

2008-04-21 16:33:30 UTC MAIN commitmail json YAML

Note update of www/thoth.

(jlam)

2008-04-21 16:33:20 UTC MAIN commitmail json YAML

Update www/thoth to version 0.1.4.  Changes from version 0.1.3 include:

  * Fixed a nasty bug introduced in 0.1.3 that caused a memory leak
    and resulted in the index page (/) not being cached properly.

(jlam)

2008-04-21 16:24:40 UTC MAIN commitmail json YAML

Note udpates of www/heel and www/thin.

(jlam)

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

Update www/heel to 1.0.0.  Changes from version 0.6.0 include converting
heel into a Rack application built on top of Thin.

(jlam)

2008-04-21 16:09:42 UTC MAIN commitmail json YAML

Update www/thin to version 0.8.1.  Changes from version 0.8.0 include:

  * [bug] Rescue all types of errors when processing request
  * [bug] Use Swiftiply backend when -y option is specified
  * Allow passing port as a string in Server.new
  * Define deferred?(env) in your Rack application to set if a request
    is handled in a thread (return true) or not (return false).

(jlam)

2008-04-21 16:01:15 UTC MAIN commitmail json YAML

Fix build with newer versions of Hoe by providing a default value for
author and email.

(jlam)

2008-04-21 15:53:55 UTC MAIN commitmail json YAML

Fix build with newer versions of Hoe by providing a default value for
author and email.

(jlam)

2008-04-21 15:44:16 UTC MAIN commitmail json YAML

Updated security/fwbuilder21 to 2.1.18

(adam)

2008-04-21 15:43:15 UTC MAIN commitmail json YAML

2008-04-21 15:42:17 UTC MAIN commitmail json YAML

Fix build using Hoe by providing values for "email" and "author".

(jlam)

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

Fix ${MASTER_SITES} and ${HOMEPAGE}.

(bjs)

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

Updated graphics/cairomm to 1.6.0

(adam)

2008-04-21 15:00:18 UTC MAIN commitmail json YAML

Changes 1.6.0:
* wrap cairo_format_stride_for_width().  All new cairo 1.6 API should now be
  implemented in cairomm

Changes 1.5.0:
* Unstable release wrapping new API in cairo 1.5 series
* Bugfixes

(adam)

2008-04-21 14:58:23 UTC MAIN commitmail json YAML

Remove stale patch (HI RHAEN)

(xtraeme)

2008-04-21 14:55:08 UTC MAIN commitmail json YAML

Updated x11/p5-gtk2 to 1.182

(xtraeme)

2008-04-21 14:53:53 UTC MAIN commitmail json YAML

Updated fonts/fontforge to 20080330

(adam)

2008-04-21 14:53:19 UTC MAIN commitmail json YAML

Update to 1.182:

Overview of changes in Gtk2 1.182
=================================

* Correct memory management in Gtk2::ScaleButton::new() and set_icons().
* Fix many build and test suite issues, especially on MSWin32 and cygwin.

Overview of changes in Gtk2 1.181
=================================

* Fix a test failure.
* Fix a Makefile.PL problem encountered by CPAN testers.

Overview of changes in Gtk2 1.180
=================================

Since 1.16x (the previous stable series)
----------------------------------------
  * Add bindings for GtkIMContext, GtkIMContextSimple, and GtkIMMulticontext.
  * Correct the way we check values for definedness.
  * Allow Perl code to implement GtkCellLayoutIface.
  * Allow Perl code to implement GtkBuildableIface.
  * Add accessors for Gtk2::Assistant's buttons.
  * Add Gtk2::Container::forall, Gtk2::Pango::Layout::set_height,
    Gtk2::Pango::Layout::get_height, Gtk2::Pango::LayoutIter_get_layout,
    Gtk2::Pango::Renderer::get_layout, and
    Gtk2::Pango::Renderer::get_layout_line.
  * Improve documentation.
  * Fix many leaks and other memory handling issues.

Since 1.173
-----------
  * Fix test failures.

Overview of changes in Gtk2 1.173
=================================

* Fix memory handling bugs in Gtk2::Gdk::Region::get_clipbox and
  Gtk2::StatusIcon::get_geometry.
* Make Gtk2::Gdk::Pixbuf::new_from_xpm_data handle incomplete XPM data
  gracefully.
* Wrap new API:
  - pango_layout_set_height, pango_layout_get_height
  - pango_layout_iter_get_layout
  - pango_renderer_get_layout, pango_renderer_get_layout_line
* Improve documentation in many places.
* Fix some test failures.

Overview of changes in Gtk2 1.172
=================================

* Improve the documentation significantly in many places.
* Allow Perl code to implement GtkCellLayoutIface.
* Allow Perl code to implement GtkBuildableIface.
* Make Gtk2::CellLayout::set_attributes() properly clear all previous
  attributes.
* Add accessors for Gtk2::Assistant's cancel, forward, back, apply, close, and
  last buttons.
* Add Gtk2::Container::forall.
* Fix build and test suite issues.

Overview of changes in Gtk2 1.171
=================================

* Avoid syntax that was causing perl errors in Gtk2::Builder::_do_connect on
  some platforms.
* Add bindings for GtkIMContext, GtkIMContextSimple, and GtkIMMulticontext.
* Improve the documentation in various places.
* Make Gtk2::Gdk::Color::new take an optional pixel value.
* Correct the way we check values for definedness: use Glib's
  gperl_sv_defined(), an XS version of perl's defined().  Among other things,
  this should fix the problems where tied values were reported as undefined.
* Plug memory leaks.

Overview of changes in Gtk2 1.170
=================================

* Make our build output prettier.
* Publicize our Makefile.PL-time requirements through META.yml's
  configure_requires.
* Fix leak in Gtk2::Pango::Layout::get_iter.
* Fix a few test failures.

(xtraeme)

2008-04-21 14:52:58 UTC MAIN commitmail json YAML

2008-04-21 14:44:00 UTC MAIN commitmail json YAML

Updated graphics/p5-cairo to 1.060

(xtraeme)

2008-04-21 14:43:50 UTC MAIN commitmail json YAML

Revert rev 1.3 as it breaks e.g. -Wl,--whole-archive. See PR 38476 for
details.

(joerg)

2008-04-21 14:43:20 UTC MAIN commitmail json YAML

Update to 1.060:

* Wrap new API:
- cairo_has_current_point
- cairo_path_extents
- cairo_format_stride_for_width
- cairo_surface_copy_page and cairo_surface_show_page
- cairo_ps_surface_restrict_to_level, cairo_ps_get_levels, and
  cairo_ps_level_to_string
- cairo_ps_surface_set_eps and cairo_ps_surface_get_eps

* Provide Cairo::FtFontFace::create which can be used with Font::FreeType.
* Complete the API listing POD.

(xtraeme)

2008-04-21 14:40:31 UTC MAIN commitmail json YAML

Updated devel/p5-glib2 to 1.182

(xtraeme)

2008-04-21 14:40:09 UTC MAIN commitmail json YAML

Update to 1.182:

Overview of changes in Glib 1.182
=================================

* Fix build and test suite issues, especially on MSWin32 and cygwin.

Overview of changes in Glib 1.181
=================================

* Fix Makefile.PL problems encountered by CPAN testers.

Overview of changes in Glib 1.180
=================================

Since 1.16x (the previous stable series)
----------------------------------------
  * Add Glib::MakeHelper::get_configure_requires_yaml.
  * Add Glib::Object::signal_get_invocation_hint.
  * Make our lazy-loader compatible with perl-5.10.0.
  * Allow Perl-derived GObjects to override GInterfaces that are implemented by
    parent classes.
  * Correct the way we check values for definedness: use the new function
    gperl_sv_is_defined.  For convenience, also add gperl_sv_is_array_ref,
    gperl_sv_is_code_ref, and gperl_sv_is_hash_ref.

Since 1.174
-----------
  * Tell the compiler to always look for our headers in '.' first.
  * Add a hyphen to the NAME section of generated POD indices.

Overview of changes in Glib 1.174
=================================

* Increase compatibility with different `make卒s by not using Makefile
  conditionals for building our documentation.

Overview of changes in Glib 1.173
=================================

* Make Glib::Type::list_values return the value of each enum/flags entry in
  addition to the name and nickname.

Overview of changes in Glib 1.172
=================================

* Make inproper usage of Glib::Object methods result in an error message and
  not in a segfault.
* Add Glib::Object::signal_get_invocation_hint.
* In our lazy-loading machinery for packages, change the way we clear @ISA
  arrays to avoid problems with perl 5.10.0.
* Add new helpers to the C API: gperl_sv_is_defined, gperl_sv_is_array_ref,
  gperl_sv_is_code_ref, and gperl_sv_is_hash_ref.
* Allow Perl-derived GObjects to override GInterfaces that are implemented by
  parent classes.
* Load GInterface types immediately, instead of lazily.  This makes sure
  GInterfaces are set up by the time they are needed.

Overview of changes in Glib 1.171
=================================

* Correct the way we check values for definedness: add gperl_sv_defined(), an
  XS version of perl's defined(), and use it everywhere.  Among other things,
  this should fix the problems where tied values were reported as undefined.
* Fix some build issues.

Overview of changes in Glib 1.170
=================================

* Make our build output prettier.
* Add Glib::MakeHelper::get_configure_requires_yaml.
* Use the above to add configure_requires information to META.yml in order to
  publicize our Makefile.PL-time requirements.
* Try to fix some portability issues.

(xtraeme)

2008-04-21 14:39:10 UTC MAIN commitmail json YAML

Updated devel/p5-ExtUtils-Depends to 0.300

(xtraeme)

2008-04-21 14:38:09 UTC MAIN commitmail json YAML

Update to 0.300:

- On MSWin32 and cygwin, find the link libraries of dependencies and
  put them into LIBS.
- Add tests.
- Correct typos in the documentation.
- In get_makefile_vars, comment out the code that put the installed
  libraries into @OBJECT, which caused them to get deleted on
  realclean.
- In Makefile.PL, don't use the bogus package "MAIN".
- Remove debug spew.

(xtraeme)

2008-04-21 13:09:57 UTC MAIN commitmail json YAML

libfetch-2.8:
Fix a number of small bugs introduced in the last version.

(joerg)

2008-04-21 11:36:10 UTC MAIN commitmail json YAML

Updated graphics/cairo to 1.6.4

(tnn)

2008-04-21 11:29:33 UTC MAIN commitmail json YAML

Update to cairo-1.6.4.
Major changes between the 1.4 and 1.6 branch:
- Now uses external "pixman" library instead of a bundled one.
- Improvements to PDF, SVG and PostScript output
- New support for arbitrary X server visuals
  (the 8-bit display support patch (patch-ae in pkgsrc) is integrated)
- rendering backend improvements
- various new API additions, while maintaining ABI compatibility
- New Quartz backend
- bug fixes

(tnn)

2008-04-21 11:09:07 UTC MAIN commitmail json YAML

Note update of devel/p5-SVN-Notify to version 2.70

(seb)

2008-04-21 11:08:11 UTC MAIN commitmail json YAML

Update devel/p5-SVN-Notify to version 2.70.

Changes since last packaged version (2.64):

2.70  2008-02-29T17:03:26
- See http://justatheory.com/computers/programming/perl/modules/svnnotify-2.70.html
  for an announcement of this release.
- Fixed issues with character encoding handling, starting from a patch
  submitted by Toshikazu Kinkoh, and with a lot of experimentation and
  testing by Toshikazu, Martin Lindhe, and myself. Hopefully these
  changes will help solve the various encoding problems that continue to
  crop up:
  + Removed --io-layer, which, it seems, never actually worked.
  + Changed --charset to --encoding, although the former is still
    supported for backwards compatibility.
  + Added --svn-encoding, which identifies the encoding in which data
    is stored in SVN. It defaults to the value of --encoding.
  + Added --diff-encoding, which identifies the encoding in which files
    are stored in SVN. This is useful for the case when log messages
    are written in one encoding and files stored in another. Defaults
    to the value of --svn-encoding.
  + The --language option is now used to set the C<$LANG> environment
    variable for the execution of `svnlook` as well as `sendmail`,
    although not `svnlook diff`, which always runs under the "C" locale.
  + Now only setting the $LANG environment variable for the execution of
    `svnlook` and `sendmail` if it is not already set. This allows the
    existing usages such as `LANG=ja_JP svnnotify ...` to keep working.
  + Fixed character encoding when sending messages via SMTP.
- Added extensive documentation on how to deal with character encodings
  under "Character Encoding Support" in the SVN::Notify docs.
- Added support for output filtering. This allows users to easily
  modify content before it's output.
- Added SVN::Notify::Filter, which fully documents the interface for
  filtering (it's really easy!).
- Added SVN::Notify::Filter:Trac, which parses log messages from the
  Trac wiki syntax to HTML. Useful for use with SVN::Notify::HTML
  and SVN::Notify::HTML::ColorDiff, and as a nice example of filtering.
- Split up the output of the HTML <head> section and the <body> section
  into two methods in SVN::Notify::HTML in order to simplify filtering.
- The CSS output by SVN::Notify::HTML is now output inside the <body>
  tags, rather than inside the <head> tags. This isn't valid, but will
  hopefully it will allow messages to display better in Web mail clients
  such as Gmail.
- Eliminated locale warnings during tests.
- Tweaked the CSS emitted by SVN::Notify::HTML to support a lot of HTML
  in the log message, since such formatting can come from the use of
  SVN::Notify::Filter::Trac and, potentially, other output filters.
- Fixed issue running tests with a Perl other than /usr/bin/perl without
  running `./Build`. If you just did `./Build test`, it could fail with
  a lot of errors, but no more.
- Fixed use of the SMTP feature under Perl 5.6. Reported by CPAN testers
  David Cantrell and Slaven Rezic.
- Fixed the formatting and display of the log message when using the
  --wrap-log option with SVN::Notify::HTML.
- Eliminated a bogus empty paragraph when using the --wrap-log option
  with SVN::Notify::HTML.
- Fixed the encoding of the subject line so that Unicode characters
  show up properly. Reported by Ian Anderson (Ticket # 24138).
- Switched from using `crypt` to using a simple random string algorithm
  for generating email part boundaries, since `crypt` was choking on
  multibyte characters from message subjects. Reported by Toshikazu
  Kinkoh.
- Added a link to SVN::Notify's Subversion repository.

2.67 2008-02-06T20:15:13
- Fixed bug where a directory with a valid regular expression character
  could be incorrectly truncated. Patch from Wayne Davison.
- Fixed a bug where a directory name could be truncated too much if
  there are directory names with common roots. Patch from Wayne Davison.
- Added the "configure_requires" parameter to Build.PL.
- Fixed SVN::Notify::HTML::ColorDiff so that it respects
  --max-diff-length.
- The SVN::Notify::HTML --wrap-log option now wraps individual
  paragraphs as identified by blank lines (with optional spaces), rather
  than wrapping the entire message in a single set of paragraph tags.

2.66  2007-06-17T05:08:29
- Added some examples complements of Matt Doar.
- Fixed the specification of recipients passed to the SMTP server so
  that comma-separated email addresses are properly split apart.
  Reported by Michael Plump.
- Fixed a bug with --to-regex-map where certain entries in it could
  be skipped altogether. Reported by John Peacock.

2.65  2007-03-27T07:01:09
- Another patch from Martijn van Beers, this one generalizing the
  execution of --ticket-map parageters (Ticket # 21633).
- Added note and link for HookStart for Windows users who run into
  asynchronous execution issues. Reported by Eric Lemes.
- Added the --wrap-log option to SVN::Notify::HTML. When passed a true
  value, the log message will be put into a `p` tag instead of a `pre`
  tag, thus allowing it to wrap to the width of the mailer window.
  Needless to say, this means that any whitespace formatting in the log
  message itself will be lost. Suggested by Ian Anderson (Ticket
  #24138).
- Restored checking for "%s" in the JIRA, RT, Butzilla, and GNATS
  URLs. Reported by Matt Doar.
- Fixed some spelling errors, thanks to Matt Doar.
- Added note that verbose output goes to STDOUT.
- Added support for specifying the location of the revision number via
  an "%d" temlate in the --subject-prefix option. Patch from Jerry
  Veldhuis (Ticket #24309).
- The --max-diff-length option now works properly in HTML output, as
  well. Reported by Rob Moore (Ticket #25070)
- Added the --to-email-map option as the inverse of --to-regex-map. That
  is, it maps regular expressions to email addresses, rather than the
  other way around.

(seb)

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

Fix MASTER_SITES.

(wiz)

2008-04-21 08:17:25 UTC MAIN commitmail json YAML

PYTHON_VERSIONS_ACCEPTED+=25

(abs)

2008-04-21 08:12:03 UTC MAIN commitmail json YAML

+ Updated devel/patchutils to 0.2.31nb1 [bjs 2008-04-21]: add DESTDIR support

(bjs)

2008-04-21 08:10:22 UTC MAIN commitmail json YAML

Add DESTDIR support.

(bjs)

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

+ Updated devel/scmgit to 1.5.5 [bjs 2008-04-21]
+ Updated devel/scmgit-base to 1.5.5 [bjs 2008-04-21]
+ Updated devel/scmgit-docs to 1.5.5 [bjs 2008-04-21]

(bjs)

2008-04-21 01:09:51 UTC MAIN commitmail json YAML

Update devel/scmgit [1.5.4.5 -> 1.5.5]

  The scmgit-base package now installs most of its binaries, e.g. git-*,
  to ${PREFIX}/libexec/git-core/ instead of ${PREFIX}/bin.  There are
  only two programs under ${LOCALBASE}/bin: the "master" git(7) wrapper
  program and the gitk tcl/tk repository browser.  Given that there are
  many different GIT interfaces (GUI applications, devel/tig, shell
  completion scripts, etc.), it seemed needless to me to have 120+
  binaries--a vast majority of which most users would seldom invoke
  directly--polluting ${LOCALBASE}/bin.

GIT v1.5.5 Release Notes
========================

Updates since v1.5.4
--------------------

(subsystems)

* Comes with git-gui 0.10.1

(portability)

* We shouldn't ask for BSD group ownership semantics by setting g+s bit
  on directories on older BSD systems that refuses chmod() by non root
  users.  BSD semantics is the default there anyway.

* Bunch of portability improvement patches coming from an effort to port
  to Solaris has been applied.

(performance)

* On platforms with suboptimal qsort(3) implementation, there
  is an option to use more reasonable substitute we ship with
  our software.

* New configuration variable "pack.packsizelimit" can be used
  in place of command line option --max-pack-size.

* "git fetch" over the native git protocol used to make a
  connection to find out the set of current remote refs and
  another to actually download the pack data.  We now use only
  one connection for these tasks.

* "git commit" does not run lstat(2) more than necessary
  anymore.

(usability, bells and whistles)

* Bash completion script (in contrib) are aware of more commands and
  options.

* You can be warned when core.autocrlf conversion is applied in
  such a way that results in an irreversible conversion.

* A catch-all "color.ui" configuration variable can be used to
  enable coloring of all color-capable commands, instead of
  individual ones such as "color.status" and "color.branch".

* The commands refused to take absolute pathnames where they
  require pathnames relative to the work tree or the current
  subdirectory.  They now can take absolute pathnames in such a
  case as long as the pathnames do not refer outside of the
  work tree.  E.g. "git add $(pwd)/foo" now works.

* Error messages used to be sent to stderr, only to get hidden,
  when $PAGER was in use.  They now are sent to stdout along
  with the command output to be shown in the $PAGER.

* A pattern "foo/" in .gitignore file now matches a directory
  "foo".  Pattern "foo" also matches as before.

* bash completion's prompt helper function can talk about
  operation in-progress (e.g. merge, rebase, etc.).

* Configuration variables "url.<usethis>.insteadof = <otherurl>" can be
  used to tell "git-fetch" and "git-push" to use different URL than what
  is given from the command line.

* "git add -i" behaves better even before you make an initial commit.

* "git am" refused to run from a subdirectory without a good reason.

* After "git apply --whitespace=fix" fixes whitespace errors in a patch,
  a line before the fix can appear as a context or preimage line in a
  later patch, causing the patch not to apply.  The command now knows to
  see through whitespace fixes done to context lines to successfully
  apply such a patch series.

* "git branch" (and "git checkout -b") to branch from a local branch can
  optionally set "branch.<name>.merge" to mark the new branch to build on
  the other local branch, when "branch.autosetupmerge" is set to
  "always", or when passing the command line option "--track" (this option
  was ignored when branching from local branches).  By default, this does
  not happen when branching from a local branch.

* "git checkout" to switch to a branch that has "branch.<name>.merge" set
  (i.e. marked to build on another branch) reports how much the branch
  and the other branch diverged.

* When "git checkout" has to update a lot of paths, it used to be silent
  for 4 seconds before it showed any progress report.  It is now a bit
  more impatient and starts showing progress report early.

* "git commit" learned a new hook "prepare-commit-msg" that can
  inspect what is going to be committed and prepare the commit
  log message template to be edited.

* "git cvsimport" can now take more than one -M options.

* "git describe" learned to limit the tags to be used for
  naming with --match option.

* "git describe --contains" now barfs when the named commit
  cannot be described.

* "git describe --exact-match" describes only commits that are tagged.

* "git describe --long" describes a tagged commit as $tag-0-$sha1,
  instead of just showing the exact tagname.

* "git describe" warns when using a tag whose name and path contradict
  with each other.

* "git diff" learned "--relative" option to limit and output paths
  relative to the current directory when working in a subdirectory.

* "git diff" learned "--dirstat" option to show birds-eye-summary of
  changes more concisely than "--diffstat".

* "git format-patch" learned --cover-letter option to generate a cover
  letter template.

* "git gc" learned --quiet option.

* "git gc" now automatically prunes unreachable objects that are two
  weeks old or older.

* "git gc --auto" can be disabled more easily by just setting gc.auto
  to zero.  It also tolerates more packfiles by default.

* "git grep" now knows "--name-only" is a synonym for the "-l" option.

* "git help <alias>" now reports "'git <alias>' is alias to <what>",
  instead of saying "No manual entry for git-<alias>".

* "git help" can use different backends to show manual pages and this can
  be configured using "man.viewer" configuration.

* "gitk" does not restore window position from $HOME/.gitk anymore (it
  still restores the size).

* "git log --grep=<what>" learned "--fixed-strings" option to look for
  <what> without treating it as a regular expression.

* "git gui" learned an auto-spell checking.

* "git push <somewhere> HEAD" and "git push <somewhere> +HEAD" works as
  expected; they push the current branch (and only the current branch).
  In addition, HEAD can be written as the value of "remote.<there>.push"
  configuration variable.

* When the configuration variable "pack.threads" is set to 0, "git
  repack" auto detects the number of CPUs and uses that many threads.

* "git send-email" learned to prompt for passwords
  interactively.

* "git send-email" learned an easier way to suppress CC
  recipients.

* "git stash" learned "pop" command, that applies the latest stash and
  removes it from the stash, and "drop" command to discard the named
  stash entry.

* "git submodule" learned a new subcommand "summary" to show the
  symmetric difference between the HEAD version and the work tree version
  of the submodule commits.

* Various "git cvsimport", "git cvsexportcommit", "git cvsserver",
  "git svn" and "git p4" improvements.

(internal)

* Duplicated code between git-help and git-instaweb that
  launches user's preferred browser has been refactored.

* It is now easier to write test scripts that records known
  breakages.

* "git checkout" is rewritten in C.

* "git remote" is rewritten in C.

* Two conflict hunks that are separated by a very short span of common
  lines are now coalesced into one larger hunk, to make the result easier
  to read.

* Run-command API's use of file descriptors is documented clearer and
  is more consistent now.

* diff output can be sent to FILE * that is different from stdout.  This
  will help reimplementing more things in C.

Fixes since v1.5.4
------------------

All of the fixes in v1.5.4 maintenance series are included in
this release, unless otherwise noted.

* "git-http-push" did not allow deletion of remote ref with the usual
  "push <remote> :<branch>" syntax.

* "git-rebase --abort" did not go back to the right location if
  "git-reset" was run during the "git-rebase" session.

* "git imap-send" without setting imap.host did not error out but
  segfaulted.

(bjs)

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

2008-04-20 22:41:57 UTC MAIN commitmail json YAML

set INSTALL_UNSTRIPPED in buildlink3.mk for darwin so that programs
that duse the c-client library do not have their callback function symbols
stripped at install time.  Fixes the following:
PR pkg/34031
and indicates that this need not be reopened:
PR pkg/35592
also bump PKGREVISION and BUILDLINK_ABI_DEPENDS

(dbj)

2008-04-20 22:37:07 UTC MAIN commitmail json YAML

use setpgid instead of setpgrp on darwin if __DARWIN_UNIX03
PR pkg/37490

(dbj)

2008-04-20 20:50:20 UTC MAIN commitmail json YAML

The package supports installation to DESTDIR.

(heinz)

2008-04-20 20:38:53 UTC MAIN commitmail json YAML

The package supports installation to DESTDIR.

(heinz)

2008-04-20 19:32:31 UTC MAIN commitmail json YAML

Reset PKG_CONFIG_PATH in the environment.  Fixes misterious build problems
of packages when it is already defined by the user.

(jmmv)

2008-04-20 17:48:03 UTC MAIN commitmail json YAML

-bind 8.x
-tomcat55

(adrianp)

2008-04-20 17:36:15 UTC MAIN commitmail json YAML

2008-04-20 17:20:33 UTC MAIN commitmail json YAML

Updated mail/dkim-milter to 2.5.4

(adrianp)

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

Update to 2.5.4

- Add dkim-stats option to install dkim-stats(8) FFR
- Only install dkim-stats(8) man page if dkim-stats option has been specified

2.5.4          2008/04/17
* Skip signatures with errors in dkimf_authorsigok().
* Avoid a NULL dereference in dkimf_config_reload() when starting
without a configuration file.
* Fix an alignment problem in dkimf_checkip().  Problem reported
by Jeff A. Earickson.
* LIBDKIM: Fix bug #SF1942387: Per RFC4871, disallow "l=" values
that exceed the size of the canonicalized message body.

2.5.3          2008/04/14
* Add "AllowSHA1Only" configuration option which permits operation
of verifiers that only know about SHA1.  Without this, a
filter compiled with only SHA1 support will refuse to start
in verifier mode.
* Add "LogWhy" configuration parameter and "-W" command line flag
to request detailed logging about why a message was not
signed by the filter.  Intended for debugging; not intended
for normal operation.
* Another tweak to parameters passed to db->open().  Based on patches
from Jukka Salmi and S. Moonesamy.
* Fixes in ares_parse() to match the current syntax.  In particular,
deal with the fact that some of our tokens can legally appear
in e-mail addresses.  Problem noted by S. Moonesamy of
Eland Systems.
* LIBDKIM: Evaluate key granularity against the "i=" value rather than
the value of the From: header per RFC4871.  Problem noted by
Jason Long.
* LIBDKIM: Remove the chartable stuff from dkim-tables.c as it is
not used anywhere.
* LIBDKIM: Fix bug #SF1940302: Perform stronger validation of the value
of the "h=" tag.

(adrianp)

2008-04-20 17:13:06 UTC MAIN commitmail json YAML

2008-04-20 16:08:35 UTC MAIN commitmail json YAML

Updated devel/opengrok to 0.6.1

(adrianp)

2008-04-20 16:08:20 UTC MAIN commitmail json YAML

OpenGrok 0.6.1.

Please see http://src.opensolaris.org/source/history/opengrok/trunk/ for the full change history, and for the list of contributors. The following is just a summary.

Bugs fixed:
* Bug #67: Duplicate magics in the analyzers
* Bug #546: IOException when viewing history for xref root in multi-project installation
* Bug #785: Indexer don't use the value specified with -m
* Bug #779: Add option to disable index optimization upon indexing
* Bug #829: create links to account details in annotate mode
* Bug #966: fails on directory names that contain a plus (+) character
* Bug #989: Can't reindex a subtree
* Bug #988: Make it possible to optimize the index without reingexing
* Bug #1007: Add URL friendly project handling
* Bug #1009: Economical mode generates suggestion database
* Bug #1057: double-colon in search pattern throws an error

(adrianp)

2008-04-20 15:49:02 UTC MAIN commitmail json YAML

Updated print/xpdf to 3.02pl2nb1

(tonnerre)

2008-04-20 15:48:12 UTC MAIN commitmail json YAML

Fix embedded font handling (CVE-2008-1693). While at it, add a patch
from upstream CVS which fixes display of 16-bit colors. Update from
print/poppler.
Approved-by: joerg

(tonnerre)

2008-04-20 15:32:02 UTC MAIN commitmail json YAML

Updated multimedia/vlc to 0.8.6f

(tonnerre)