r11093 - in /trunk/libapache-dbi-perl: Changes META.yml README debian/changelog lib/Apache/AuthDBI.pm lib/Apache/DBI.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Dec 10 15:51:44 UTC 2007


Author: dmn
Date: Mon Dec 10 15:51:44 2007
New Revision: 11093

URL: http://svn.debian.org/wsvn/?sc=1&rev=11093
Log:
* New upstream bugfix/docs release

Modified:
    trunk/libapache-dbi-perl/Changes
    trunk/libapache-dbi-perl/META.yml
    trunk/libapache-dbi-perl/README
    trunk/libapache-dbi-perl/debian/changelog
    trunk/libapache-dbi-perl/lib/Apache/AuthDBI.pm
    trunk/libapache-dbi-perl/lib/Apache/DBI.pm

Modified: trunk/libapache-dbi-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libapache-dbi-perl/Changes?rev=11093&op=diff
==============================================================================
--- trunk/libapache-dbi-perl/Changes (original)
+++ trunk/libapache-dbi-perl/Changes Mon Dec 10 15:51:44 2007
@@ -1,4 +1,13 @@
 Revision history for ApacheDBI.
+
+1.06 03/23/2007
+  - MP2/AuthDBI: Fixed Apache::AuthDBI::debug() to 
+    actually work.
+    Submitted by: [Kevin Appel <kappel at 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 at p6m7g8.com>
 
 1.05 11/3/2006
   - MP2/AuthDBI: Add missing Apache2::Access

Modified: trunk/libapache-dbi-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libapache-dbi-perl/META.yml?rev=11093&op=diff
==============================================================================
--- trunk/libapache-dbi-perl/META.yml (original)
+++ trunk/libapache-dbi-perl/META.yml Mon Dec 10 15:51:44 2007
@@ -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

Modified: trunk/libapache-dbi-perl/README
URL: http://svn.debian.org/wsvn/trunk/libapache-dbi-perl/README?rev=11093&op=diff
==============================================================================
--- trunk/libapache-dbi-perl/README (original)
+++ trunk/libapache-dbi-perl/README Mon Dec 10 15:51:44 2007
@@ -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 

Modified: trunk/libapache-dbi-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libapache-dbi-perl/debian/changelog?rev=11093&op=diff
==============================================================================
--- trunk/libapache-dbi-perl/debian/changelog (original)
+++ trunk/libapache-dbi-perl/debian/changelog Mon Dec 10 15:51:44 2007
@@ -1,11 +1,15 @@
-libapache-dbi-perl (1.05-2) UNRELEASED; urgency=low
+libapache-dbi-perl (1.06-1) UNRELEASED; urgency=low
 
+  [ gregor herrmann ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza).
   * Set Maintainer to Debian Perl Group.
   * Use dist-based URL in debian/watch.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 01 Dec 2007 18:54:43 +0100
+  [ Damyan Ivanov ]
+  * New upstream bugfix/docs release
+
+ -- Damyan Ivanov <dmn at debian.org>  Mon, 10 Dec 2007 17:48:21 +0200
 
 libapache-dbi-perl (1.05-1) unstable; urgency=low
 

Modified: trunk/libapache-dbi-perl/lib/Apache/AuthDBI.pm
URL: http://svn.debian.org/wsvn/trunk/libapache-dbi-perl/lib/Apache/AuthDBI.pm?rev=11093&op=diff
==============================================================================
--- trunk/libapache-dbi-perl/lib/Apache/AuthDBI.pm (original)
+++ trunk/libapache-dbi-perl/lib/Apache/AuthDBI.pm Mon Dec 10 15:51:44 2007
@@ -1,7 +1,7 @@
-# $Id: AuthDBI.pm 8010 2006-11-04 06:17:42Z pgollucci at p6m7g8.com $
+# $Id: AuthDBI.pm 9303 2007-03-23 08:56:44Z pgollucci at 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,10 +1538,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_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
 

Modified: trunk/libapache-dbi-perl/lib/Apache/DBI.pm
URL: http://svn.debian.org/wsvn/trunk/libapache-dbi-perl/lib/Apache/DBI.pm?rev=11093&op=diff
==============================================================================
--- trunk/libapache-dbi-perl/lib/Apache/DBI.pm (original)
+++ trunk/libapache-dbi-perl/lib/Apache/DBI.pm Mon Dec 10 15:51:44 2007
@@ -1,4 +1,4 @@
-# $Id: DBI.pm 8010 2006-11-04 06:17:42Z pgollucci at p6m7g8.com $
+# $Id: DBI.pm 9303 2007-03-23 08:56:44Z pgollucci at 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:
 
+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.
+
   PERL_CHILD_INIT=1 PERL_STACKED_HANDLERS=1.
-
-=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.
 
 =head1 SEE ALSO
 
@@ -511,7 +518,8 @@
 
 =item *
 Philip M. Gollucci <pgollucci at p6m7g8.com> is currently packaging new releases.
-Ask Bjoern Hansen <ask at develooper.com> package a large number of releases.
+
+Ask Bjoern Hansen <ask at develooper.com> packaged a large number of releases.
 
 =item *
 Edmund Mergl was the original author of Apache::DBI.  It is now




More information about the Pkg-perl-cvs-commits mailing list