head 1.9; access; symbols pkgsrc-2013Q2:1.9.0.40 pkgsrc-2013Q2-base:1.9 pkgsrc-2012Q4:1.9.0.38 pkgsrc-2012Q4-base:1.9 pkgsrc-2011Q4:1.9.0.36 pkgsrc-2011Q4-base:1.9 pkgsrc-2011Q2:1.9.0.34 pkgsrc-2011Q2-base:1.9 pkgsrc-2009Q4:1.9.0.32 pkgsrc-2009Q4-base:1.9 pkgsrc-2008Q4:1.9.0.30 pkgsrc-2008Q4-base:1.9 pkgsrc-2008Q3:1.9.0.28 pkgsrc-2008Q3-base:1.9 cube-native-xorg:1.9.0.26 cube-native-xorg-base:1.9 pkgsrc-2008Q2:1.9.0.24 pkgsrc-2008Q2-base:1.9 pkgsrc-2008Q1:1.9.0.22 pkgsrc-2008Q1-base:1.9 pkgsrc-2007Q4:1.9.0.20 pkgsrc-2007Q4-base:1.9 pkgsrc-2007Q3:1.9.0.18 pkgsrc-2007Q3-base:1.9 pkgsrc-2007Q2:1.9.0.16 pkgsrc-2007Q2-base:1.9 pkgsrc-2007Q1:1.9.0.14 pkgsrc-2007Q1-base:1.9 pkgsrc-2006Q4:1.9.0.12 pkgsrc-2006Q4-base:1.9 pkgsrc-2006Q3:1.9.0.10 pkgsrc-2006Q3-base:1.9 pkgsrc-2006Q2:1.9.0.8 pkgsrc-2006Q2-base:1.9 pkgsrc-2006Q1:1.9.0.6 pkgsrc-2006Q1-base:1.9 pkgsrc-2005Q4:1.9.0.4 pkgsrc-2005Q4-base:1.9 pkgsrc-2005Q3:1.9.0.2 pkgsrc-2005Q3-base:1.9 pkgsrc-2005Q2:1.8.0.4 pkgsrc-2005Q2-base:1.8 pkgsrc-2005Q1:1.8.0.2 pkgsrc-2005Q1-base:1.8 pkgsrc-2004Q4:1.7.0.2 pkgsrc-2004Q4-base:1.7 pkgsrc-2004Q3:1.6.0.4 pkgsrc-2004Q3-base:1.6 pkgsrc-2004Q2:1.6.0.2 pkgsrc-2004Q2-base:1.6 pkgsrc-2004Q1:1.5.0.2 pkgsrc-2004Q1-base:1.5 pkgsrc-2003Q4:1.3.0.2 pkgsrc-2003Q4-base:1.3 netbsd-1-6-1:1.1.1.1.0.2 netbsd-1-6-1-base:1.1.1.1 netbsd-1-6:1.1.1.1.0.4 netbsd-1-6-RELEASE-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.9 date 2005.06.24.06.43.47; author jlam; state dead; branches; next 1.8; 1.8 date 2004.12.29.19.41.25; author jlam; state Exp; branches; next 1.7; 1.7 date 2004.11.07.16.20.11; author wiz; state Exp; branches; next 1.6; 1.6 date 2004.04.26.04.42.12; author jlam; state Exp; branches; next 1.5; 1.5 date 2004.02.10.01.59.54; author jlam; state Exp; branches; next 1.4; 1.4 date 2004.01.23.23.26.25; author jlam; state Exp; branches; next 1.3; 1.3 date 2003.10.05.07.07.14; author jlam; state Exp; branches; next 1.2; 1.2 date 2003.02.21.16.10.27; author grant; state Exp; branches; next 1.1; 1.1 date 2002.07.22.21.50.37; author jlam; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2002.07.22.21.50.37; author jlam; state Exp; branches; next ; desc @@ 1.9 log @Drop the perl-5.6.x package from pkgsrc. Remove lang/perl58 and update lang/perl5 to perl-5.8.6nb4. Modify packages that referred to lang/perl58 to point to lang/perl5 instead. @ text @$NetBSD: patch-ah,v 1.8 2004/12/29 19:41:25 jlam Exp $ --- perl.c.orig 2004-11-23 10:16:56.000000000 -0500 +++ perl.c @@@@ -4314,12 +4314,33 @@@@ S_init_perllib(pTHX) } /* Use the ~-expanded versions of APPLLIB (undocumented), - ARCHLIB PRIVLIB SITEARCH SITELIB VENDORARCH and VENDORLIB + SITEARCH SITELIB ARCHLIB PRIVLIB VENDORARCH and VENDORLIB */ #ifdef APPLLIB_EXP incpush(APPLLIB_EXP, TRUE, TRUE, TRUE); #endif +#ifdef SITEARCH_EXP + /* sitearch is always relative to sitelib on Windows for + * DLL-based path intuition to work correctly */ +# if !defined(WIN32) + incpush(SITEARCH_EXP, FALSE, FALSE, TRUE); +# endif +#endif + +#ifdef SITELIB_EXP +# if defined(WIN32) + /* this picks up sitearch as well */ + incpush(SITELIB_EXP, TRUE, FALSE, TRUE); +# else + incpush(SITELIB_EXP, FALSE, FALSE, TRUE); +# endif +#endif + +#ifdef SITELIB_STEM /* Search for version-specific dirs below here */ + incpush(SITELIB_STEM, FALSE, TRUE, TRUE); +#endif + #ifdef ARCHLIB_EXP incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE); #endif @@@@ -4353,27 +4374,6 @@@@ S_init_perllib(pTHX) incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE); #endif -#ifdef SITEARCH_EXP - /* sitearch is always relative to sitelib on Windows for - * DLL-based path intuition to work correctly */ -# if !defined(WIN32) - incpush(SITEARCH_EXP, FALSE, FALSE, TRUE); -# endif -#endif - -#ifdef SITELIB_EXP -# if defined(WIN32) - /* this picks up sitearch as well */ - incpush(SITELIB_EXP, TRUE, FALSE, TRUE); -# else - incpush(SITELIB_EXP, FALSE, FALSE, TRUE); -# endif -#endif - -#ifdef SITELIB_STEM /* Search for version-specific dirs below here */ - incpush(SITELIB_STEM, FALSE, TRUE, TRUE); -#endif - #ifdef PERL_VENDORARCH_EXP /* vendorarch is always relative to vendorlib on Windows for * DLL-based path intuition to work correctly */ @ 1.8 log @Update lang/perl58 to perl-5.8.6. Selected hanges from version 5.8.5 include: * By default, platforms that have native threads will build a threaded perl. Note that you will likely have to rebuild your Perl modules after this update unless your Perl is already threaded. * The perl interpreter is now more tolerant of UTF-16-encoded scripts. * Several core modules were updated. * Perl has a new -dt command-line flag, which enables threads support in the debugger. * "foreach" on threads::shared array used to be able to crash Perl. This bug has now been fixed. * A regexp in "STDOUT"'s destructor used to coredump, because the regexp pad was already freed. This has been fixed. * Using "delete" on an array no longer leaks memory. A "pop" of an item from a shared array reference no longer causes a leak. * "eval_sv()" failing a taint test could corrupt the stack - this has been fixed. * On platforms with 64 bit pointers numeric comparison operators used to erroneously compare the addresses of references that are overloaded, rather than using the overloaded values. This has been fixed. * From now on all applications embedding perl will behave as if perl were compiled with -DPERL_USE_SAFE_PUTENV. @ text @d1 1 a1 1 $NetBSD$ @ 1.7 log @Update to 5.8.5: Incompatible Changes There are no changes incompatible with 5.8.4. Core Enhancements Perl's regular expression engine now contains support for matching on the intersection of two Unicode character classes. You can also now refer to user-defined character classes from within other user defined character classes. Modules and Pragmata * Carp improved to work nicely with Safe. Carp's message reporting should now be anomaly free - it will always print out line number information. * CGI upgraded to version 3.05 * charnames now avoids clobbering $_ * Digest upgraded to version 1.08 * Encode upgraded to version 2.01 * FileCache upgraded to version 1.04 * libnet upgraded to version 1.19 * Pod::Parser upgraded to version 1.28 * Pod::Perldoc upgraded to version 3.13 * Pod::LaTeX upgraded to version 0.57 * Safe now works properly with Carp * Scalar-List-Utils upgraded to version 1.14 * Shell's documentation has been re-written, and its historical partial auto-quoting of command arguments can now be disabled. * Test upgraded to version 1.25 * Test::Harness upgraded to version 2.42 * Time::Local upgraded to version 1.10 * Unicode::Collate upgraded to version 0.40 * Unicode::Normalize upgraded to version 0.30 Utility Changes Perl's debugger The debugger can now emulate stepping backwards, by restarting and rerunning all bar the last command from a saved command history. h2ph h2ph is now able to understand a very limited set of C inline functions -- basically, the inline functions that look like CPP macros. This has been introduced to deal with some of the headers of the newest versions of the glibc. The standard warning still applies; to quote h2ph's documentation, you may need to dicker with the files produced. Installation and Configuration Improvements Perl 5.8.5 should build cleanly from source on LynxOS. Selected Bug Fixes * The in-place sort optimisation introduced in 5.8.4 had a bug. For example, in code such as @@a = sort ($b, @@a) the result would omit the value $b. This is now fixed. * The optimisation for unnecessary assignments introduced in 5.8.4 could give spurious warnings. This has been fixed. * Perl should now correctly detect and read BOM-marked and (BOMless) UTF-16 scripts of either endianness. * Creating a new thread when weak references exist was buggy, and would often cause warnings at interpreter destruction time. The known bug is now fixed. * Several obscure bugs involving manipulating Unicode strings with substr have been fixed. * Previously if Perl's file globbing function encountered a directory that it did not have permission to open it would return immediately, leading to unexpected truncation of the list of results. This has been fixed, to be consistent with Unix shells' globbing behaviour. * Thread creation time could vary wildly between identical runs. This was caused by a poor hashing algorithm in the thread cloning routines, which has now been fixed. * The internals of the ithreads implementation were not checking if OS-level thread creation had failed. threads->create() now returns undef in if thead creation fails instead of crashing perl. New or Changed Diagnostics * Perl -V has several improvements o correctly outputs local patch names that contain embedded code snippets or other characters that used to confuse it. o arguments to -V that look like regexps will give multiple lines of output. o a trailing colon suppresses the linefeed and ';' terminator, allowing embedding of queries into shell commands. o a leading colon removes the 'name=' part of the response, allowing mapping to any name. * When perl fails to find the specified script, it now outputs a second line suggesting that the user use the -S flag: $ perl5.8.5 missing.pl Can't open perl script "missing.pl": No such file or directory. Use -S to search $PATH for it. Changed Internals The Unicode character class files used by the regular expression engine are now built at build time from the supplied Unicode consortium data files, instead of being shipped prebuilt. This makes the compressed Perl source tarball about 200K smaller. A side effect is that the layout of files inside lib/unicore has changed. pkgsrc: fails the same test that 5.8.4 fails (sigaction). @ text @d1 1 a1 1 $NetBSD: patch-ah,v 1.6 2004/04/26 04:42:12 jlam Exp $ d3 1 a3 1 --- perl.c.orig 2004-06-23 12:35:46.000000000 +0200 d5 1 a5 1 @@@@ -4280,12 +4280,33 @@@@ S_init_perllib(pTHX) d40 1 a40 1 @@@@ -4319,27 +4340,6 @@@@ S_init_perllib(pTHX) @ 1.6 log @Update lang/perl58 to 5.8.4. Changes from version 5.8.3 include Unicode enhancements and optimizations and bug fixes in handling UTF8 strings. @ text @d1 1 a1 1 $NetBSD$ d3 3 a5 3 --- perl.c.orig Tue Apr 20 11:34:24 2004 +++ perl.c Sun Apr 25 03:06:15 2004 @@@@ -4245,12 +4245,33 @@@@ d40 1 a40 3 @@@@ -4282,27 +4303,6 @@@@ incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE); #else d42 2 a43 2 -#endif - d63 2 a64 2 #endif d66 2 @ 1.5 log @Update lang/perl58 to 5.8.3. This is a bugfix release over 5.8.2 and fixes some minor bugs. @ text @d3 3 a5 3 --- perl.c.orig Tue Dec 30 13:48:44 2003 +++ perl.c Mon Feb 9 19:59:50 2004 @@@@ -3972,12 +3972,33 @@@@ d40 1 a40 1 @@@@ -4009,27 +4030,6 @@@@ @ 1.4 log @Update lang/perl58 to 5.8.2. Changes from version 5.8.1nb1 include: * Build without sparc64 hacks on NetBSD-*-sparc64 if using a gcc>=3.3. * The hash randomisation introduced with 5.8.1 has been amended to be binary compatible with 5.8.0. * Several memory leaks associated with variables shared between threads have been fixed. * Several modules were updated: Devel::PPPort Digest::MD5 I18N::LangTags libnet MIME::Base64 Pod::Perldoc strict Tie::Hash Time::HiRes Unicode::Collate Unicode::Normalize UNIVERSAL * Some syntax errors involving unrecognized filetest operators are now handled correctly by the parser. @ text @d3 3 a5 3 --- perl.c.orig Mon Nov 3 00:04:27 2003 +++ perl.c @@@@ -3975,12 +3975,33 @@@@ S_init_perllib(pTHX) d40 1 a40 1 @@@@ -4012,27 +4033,6 @@@@ S_init_perllib(pTHX) @ 1.3 log @Update lang/perl58 to 5.8.1. Changes from version 5.8.0nb2 include: * Hash Randomisation * UTF-8 On Filehandles No Longer Activated By Locale * Single-number v-strings are no longer v-strings before "=>" * UTF-8 no longer default under UTF-8 locales * Unsafe signals again available @ text @d3 3 a5 3 --- perl.c.orig Thu Sep 11 14:42:33 2003 +++ perl.c Tue Sep 30 01:16:04 2003 @@@@ -3943,12 +3943,33 @@@@ d40 1 a40 1 @@@@ -3980,27 +4001,6 @@@@ @ 1.2 log @adopt some patches from FreeBSD ports, allowing this to build on FreeBSD 5.0. also, make really sure we don't try to use perl's malloc(). @ text @d3 3 a5 3 --- perl.c.orig Wed Jul 10 05:41:43 2002 +++ perl.c @@@@ -3673,12 +3673,32 @@@@ S_init_perllib(pTHX) d13 1 a13 1 incpush(APPLLIB_EXP, TRUE, TRUE); d20 1 a20 1 + incpush(SITEARCH_EXP, FALSE, FALSE); d26 2 a27 1 + incpush(SITELIB_EXP, TRUE, FALSE); /* this picks up sitearch as well */ d29 1 a29 1 + incpush(SITELIB_EXP, FALSE, FALSE); d34 1 a34 1 + incpush(SITELIB_STEM, FALSE, TRUE); d38 1 a38 1 incpush(ARCHLIB_EXP, FALSE, FALSE); d40 2 a41 2 @@@@ -3710,26 +3730,6 @@@@ S_init_perllib(pTHX) incpush(PRIVLIB_EXP, TRUE, FALSE); d43 1 a43 1 incpush(PRIVLIB_EXP, FALSE, FALSE); d50 1 a50 1 - incpush(SITEARCH_EXP, FALSE, FALSE); d56 2 a57 1 - incpush(SITELIB_EXP, TRUE, FALSE); /* this picks up sitearch as well */ d59 1 a59 1 - incpush(SITELIB_EXP, FALSE, FALSE); d64 1 a64 1 - incpush(SITELIB_STEM, FALSE, TRUE); @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD: patch-ah,v 1.1.2.2 2002/07/01 17:42:53 jlam Exp $ d3 1 a3 1 --- perl.c.orig Sat Jun 15 12:40:21 2002 d5 1 a5 1 @@@@ -3673,12 +3673,32 @@@@ d39 1 a39 1 @@@@ -3710,26 +3730,6 @@@@ @ 1.1.1.1 log @Import perl-5.8.0 as lang/perl58. This package contains the perl-5.8.0 which differs from perl-5.6.1 in the improved threading support and much improved Unicode support. Perl 5.8.0 is binary-incompatible with perl 5.6.1, so any compiled perl modules will need to be rebuilt in order to work with the new perl. This package is currently only for Darwin, though the restriction will be lifted prior to branching. @ text @@