Hello community, here is the log from the commit of package perl-Apache-DBI checked in at Fri Mar 30 16:31:18 CEST 2007. -------- --- perl-Apache-DBI/perl-Apache-DBI.changes 2006-12-13 13:30:27.000000000 +0100 +++ /mounts/work_src_done/STABLE/perl-Apache-DBI/perl-Apache-DBI.changes 2007-03-30 16:08:37.000000000 +0200 @@ -1,0 +2,8 @@ +Fri Mar 30 16:04:12 CEST 2007 - anicka@suse.cz + +- update to 1.06 + * MP2/AuthDBI: Fixed Apache::AuthDBI::debug() to + actually work. + * Bump minium required perl version to 5.6.1 to match DBI + +------------------------------------------------------------------- Old: ---- Apache-DBI-1.05-path.diff Apache-DBI-1.05.tar.bz2 New: ---- Apache-DBI-1.06-path.diff Apache-DBI-1.06.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Apache-DBI.spec ++++++ --- /var/tmp/diff_new_pack.e28346/_old 2007-03-30 16:31:13.000000000 +0200 +++ /var/tmp/diff_new_pack.e28346/_new 2007-03-30 16:31:13.000000000 +0200 @@ -1,7 +1,7 @@ # -# spec file for package perl-Apache-DBI (Version 1.05) +# spec file for package perl-Apache-DBI (Version 1.06) # -# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # @@ -12,7 +12,7 @@ Name: perl-Apache-DBI BuildRequires: apache2-devel apache2-mod_perl libapr-util1-devel pcre-devel perl-DBI -Version: 1.05 +Version: 1.06 Release: 1 Provides: ApacheDBI perl-ApacheDBI Obsoletes: perl-ApacheDBI @@ -70,7 +70,12 @@ %{perl_vendorarch}/auto/Apache/DBI /var/adm/perl-modules/%{name} -%changelog -n perl-Apache-DBI +%changelog +* Fri Mar 30 2007 - anicka@suse.cz +- update to 1.06 + * MP2/AuthDBI: Fixed Apache::AuthDBI::debug() to + actually work. + * Bump minium required perl version to 5.6.1 to match DBI * Wed Dec 13 2006 - anicka@suse.cz - update to 1.05 * MP2/AuthDBI: Add missing Apache2::Access ++++++ Apache-DBI-1.05-path.diff -> Apache-DBI-1.06-path.diff ++++++ ++++++ Apache-DBI-1.05.tar.bz2 -> Apache-DBI-1.06.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/Apache-DBI-1.05/Changes new/Apache-DBI-1.06/Changes --- old/Apache-DBI-1.05/Changes 2006-11-04 07:16:22.000000000 +0100 +++ new/Apache-DBI-1.06/Changes 2007-03-23 09:56:16.000000000 +0100 @@ -1,5 +1,14 @@ Revision history for ApacheDBI. +1.06 03/23/2007 + - MP2/AuthDBI: Fixed Apache::AuthDBI::debug() to + actually work. + Submitted by: [Kevin Appel <kappel@tgic.com>] + + - Bump minium required perl version to 5.6.1 to match DBI + (Changes in DBI 1.49 (svn rev 2287), 29th November 2005) + Philip M. Gollucci <pgollucci@p6m7g8.com> + 1.05 11/3/2006 - MP2/AuthDBI: Add missing Apache2::Access Submitted by: Adam Prime x443 <aprime@brunico.com> diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/Apache-DBI-1.05/lib/Apache/AuthDBI.pm new/Apache-DBI-1.06/lib/Apache/AuthDBI.pm --- old/Apache-DBI-1.05/lib/Apache/AuthDBI.pm 2006-11-04 07:17:44.000000000 +0100 +++ new/Apache-DBI-1.06/lib/Apache/AuthDBI.pm 2007-03-23 09:56:42.000000000 +0100 @@ -1,7 +1,7 @@ -# $Id: AuthDBI.pm 8010 2006-11-04 06:17:42Z pgollucci@p6m7g8.com $ +# $Id: AuthDBI.pm 9303 2007-03-23 08:56:44Z pgollucci@p6m7g8.com $ package Apache::AuthDBI; -$Apache::AuthDBI::VERSION = '1.05'; +$Apache::AuthDBI::VERSION = '1.06'; # 1: report about cache miss # 2: full debug output @@ -29,7 +29,7 @@ use Digest::MD5 (); sub debug { - print STDERR "$_[1]\n" if $_[0] >= $Apache::AuthDBI::DEBUG; + print STDERR "$_[1]\n" if $_[0] <= $Apache::AuthDBI::DEBUG; } sub push_handlers { @@ -1538,11 +1538,24 @@ =head1 PREREQUISITES +=head2 MOD_PERL 2.0 + +Apache::DBI version 0.96 and should work under mod_perl 2.0 RC5 and later +with httpd 2.0.49 and later. + +Apache::DBI versions less than 1.00 are NO longer supported. Additionally, +mod_perl versions less then 2.0.0 are NO longer supported. + +=head2 MOD_PERL 1.0 Note that this module needs mod_perl-1.08 or higher, apache_1.3.0 or higher and that mod_perl needs to be configured with the appropriate call-back hooks: PERL_AUTHEN=1 PERL_AUTHZ=1 PERL_CLEANUP=1 PERL_STACKED_HANDLERS=1 +Apache::DBI v0.94 was the last version before dual mod_perl 2.x support was begun. +It still recommened that you use the latest version of Apache::DBI because Apache::DBI +versions less than 1.00 are NO longer supported. + =head1 SECURITY In some cases it is more secure not to put the username and the password in diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/Apache-DBI-1.05/lib/Apache/DBI.pm new/Apache-DBI-1.06/lib/Apache/DBI.pm --- old/Apache-DBI-1.05/lib/Apache/DBI.pm 2006-11-04 07:17:44.000000000 +0100 +++ new/Apache-DBI-1.06/lib/Apache/DBI.pm 2007-03-23 09:56:42.000000000 +0100 @@ -1,4 +1,4 @@ -# $Id: DBI.pm 8010 2006-11-04 06:17:42Z pgollucci@p6m7g8.com $ +# $Id: DBI.pm 9303 2007-03-23 08:56:44Z pgollucci@p6m7g8.com $ package Apache::DBI; use strict; @@ -21,7 +21,7 @@ require_version DBI 1.00; -$Apache::DBI::VERSION = '1.05'; +$Apache::DBI::VERSION = '1.06'; # 1: report about new connect # 2: full debug output @@ -492,16 +492,23 @@ =head1 PREREQUISITES +=head2 MOD_PERL 2.0 + +Apache::DBI version 0.96 and should work under mod_perl 2.0 RC5 and later +with httpd 2.0.49 and later. + +Apache::DBI versions less than 1.00 are NO longer supported. Additionally, +mod_perl versions less then 2.0.0 are NO longer supported. + +=head2 MOD_PERL 1.0 Note that this module needs mod_perl-1.08 or higher, apache_1.3.0 or higher and that mod_perl needs to be configured with the appropriate call-back hooks: - PERL_CHILD_INIT=1 PERL_STACKED_HANDLERS=1. +Apache::DBI v0.94 was the last version before dual mod_perl 2.x support was begun. +It still recommened that you use the latest version of Apache::DBI because Apache::DBI +versions less than 1.00 are NO longer supported. -=head1 MOD_PERL 2.0 - -Apache::DBI version 0.96 and should work under mod_perl 2.0 RC5 and later. -See the Changes file for more information. Beware that it has -only been tested very lightly. + PERL_CHILD_INIT=1 PERL_STACKED_HANDLERS=1. =head1 SEE ALSO @@ -511,7 +518,8 @@ =item * Philip M. Gollucci <pgollucci@p6m7g8.com> is currently packaging new releases. -Ask Bjoern Hansen <ask@develooper.com> package a large number of releases. + +Ask Bjoern Hansen <ask@develooper.com> packaged a large number of releases. =item * Edmund Mergl was the original author of Apache::DBI. It is now diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/Apache-DBI-1.05/META.yml new/Apache-DBI-1.06/META.yml --- old/Apache-DBI-1.05/META.yml 2006-11-04 07:38:44.000000000 +0100 +++ new/Apache-DBI-1.06/META.yml 2007-03-23 09:59:08.000000000 +0100 @@ -1,15 +1,14 @@ ---- #YAML:1.0 -name: Apache-DBI -version: 1.05 -abstract: ~ -license: ~ -generated_by: ExtUtils::MakeMaker version 6.31 -distribution_type: module -requires: +# http://module-build.sourceforge.net/META-spec.html +#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# +name: Apache-DBI +version: 1.06 +version_from: lib/Apache/DBI.pm +installdirs: site +requires: DBI: 1 Digest::MD5: 2.2 Digest::SHA1: 2.01 Test::More: 0 -meta-spec: - url: http://module-build.sourceforge.net/META-spec-v1.2.html - version: 1.2 + +distribution_type: module +generated_by: ExtUtils::MakeMaker version 6.30 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/Apache-DBI-1.05/README new/Apache-DBI-1.06/README --- old/Apache-DBI-1.05/README 2006-11-04 07:17:24.000000000 +0100 +++ new/Apache-DBI-1.06/README 2007-03-23 09:55:41.000000000 +0100 @@ -1,7 +1,7 @@ DESCRIPTION: ------------ -This is version 1.05 of Apache::AuthDBI and Apache::DBI. +This is version 1.06 of Apache::AuthDBI and Apache::DBI. These modules are supposed to be used with the Apache server together with an embedded perl interpreter like mod_perl. They provide support for basic ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de