OpenPKG CVS Repository
  http://cvs.openpkg.org/
  ____________________________________________________________________________

  Server: cvs.openpkg.org                  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs                   Email:  r...@openpkg.org
  Module: openpkg-src                      Date:   12-Oct-2009 08:55:10
  Branch: HEAD                             Handle: 2009101207551000

  Modified files:
    openpkg-src/perl-dbi    perl-dbi.patch perl-dbi.spec

  Log:
    modifying package: perl-dbi-5.10 20091007 -> 20091012

  Summary:
    Revision    Changes     Path
    1.68        +71 -10     openpkg-src/perl-dbi/perl-dbi.patch
    1.376       +2  -2      openpkg-src/perl-dbi/perl-dbi.spec
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-dbi/perl-dbi.patch
  ============================================================================
  $ cvs diff -u -r1.67 -r1.68 perl-dbi.patch
  --- openpkg-src/perl-dbi/perl-dbi.patch       7 Oct 2009 06:06:46 -0000       
1.67
  +++ openpkg-src/perl-dbi/perl-dbi.patch       12 Oct 2009 06:55:10 -0000      
1.68
  @@ -1,6 +1,6 @@
   Index: DBD-SQLite-1.26_04/Makefile.PL
  ---- DBD-SQLite-1.26_04/Makefile.PL.orig      2009-08-12 07:53:19 +0200
  -+++ DBD-SQLite-1.26_04/Makefile.PL   2009-09-16 12:13:17 +0200
  +--- DBD-SQLite-1.26_04/Makefile.PL.orig      2009-10-06 08:16:49 +0200
  ++++ DBD-SQLite-1.26_04/Makefile.PL   2009-10-12 08:29:04 +0200
   @@ -17,46 +17,7 @@
        return @_;
    }
  @@ -46,9 +46,9 @@
   -    exit(0);
   -}
    
  - # Determine if we are going to use the provided SQLite code, or an already-
  - # installed copy. To this end, look for two command-line parameters:
  -@@ -148,17 +109,17 @@
  + # See if we have a C compiler
  + # The following code is adapted from Module::Install::Can
  +@@ -198,17 +159,17 @@
    # Prepare Compiler Options
    
    my @CC_LIBS = ();
  @@ -74,7 +74,7 @@
    }
   Index: DBD-Sybase-1.09/dbdimp.c
   --- DBD-Sybase-1.09/dbdimp.c.orig    2008-08-31 14:08:17 +0200
  -+++ DBD-Sybase-1.09/dbdimp.c 2009-09-16 12:13:17 +0200
  ++++ DBD-Sybase-1.09/dbdimp.c 2009-10-12 08:29:04 +0200
   @@ -774,22 +774,22 @@
    
    #if defined(CS_VERSION_150)
  @@ -105,7 +105,7 @@
        if (cs_config(context, CS_SET, CS_MESSAGE_CB,
   Index: DBD-cego/Makefile.PL
   --- DBD-cego/Makefile.PL.orig        2009-04-09 17:37:51 +0200
  -+++ DBD-cego/Makefile.PL     2009-09-16 12:13:17 +0200
  ++++ DBD-cego/Makefile.PL     2009-10-12 08:29:04 +0200
   @@ -43,7 +43,7 @@
        'VERSION_FROM'  => 'Cego.pm',
        'PREREQ_PM'     => {DBI => 1.03},
  @@ -116,8 +116,8 @@
              . $opt->{'prefix'} . "/lib/libXML.a " 
              . $opt->{'prefix'} . "/lib/libBase.a",
   Index: DBD-mysql-4.013/dbdimp.h
  ---- DBD-mysql-4.013/dbdimp.h.orig    2009-06-19 03:54:47 +0200
  -+++ DBD-mysql-4.013/dbdimp.h 2009-09-16 12:13:17 +0200
  +--- DBD-mysql-4.013/dbdimp.h.orig    2009-09-15 03:57:53 +0200
  ++++ DBD-mysql-4.013/dbdimp.h 2009-10-12 08:29:04 +0200
   @@ -19,6 +19,7 @@
     *  Header files we use
     */
  @@ -126,9 +126,70 @@
    #include <mysql.h>  /* Comes with MySQL-devel */
    #include <mysqld_error.h>  /* Comes MySQL */
    
  +Index: SQL-Statement-1.22/Makefile.PL
  +--- SQL-Statement-1.22/Makefile.PL.orig      2009-10-12 08:29:18 +0200
  ++++ SQL-Statement-1.22/Makefile.PL   2009-10-12 08:32:31 +0200
  +@@ -3,52 +3,6 @@
  + use strict;
  + require ExtUtils::MakeMaker;
  + 
  +-eval { require SQL::Statement; };
  +-
  +-unless ($@)
  +-{
  +-    my $sqlstmtver = $SQL::Statement::VERSION;
  +-    $sqlstmtver =~ s/_[0-9]+$//;
  +-    if ( $sqlstmtver <= 1.20 )
  +-    {
  +-        my $warning = sprintf( <<'END_OF_WARNING', $SQL::Statement::VERSION 
);
  +-
  +-WARNING! You seem to have an older version of SQL::Statement already 
installed (%s <= 1.20).
  +-This new version introduces a number of features that will impact operation 
of SQL::Statement and of DBD drivers for CSV, AnyData, and Excel.
  +-
  +-Changes include (1.003):
  +-  * There are *many* new SQL features including table joins
  +-  * BLOBS, Empty strings, and NULLs behave differently
  +-  * Some applications may run a bit slower than previously
  +-
  +-Changes include (1.22):
  +-  * behavior for unquoted identifiers modified to lower case them
  +-  * IN and BETWEEN operators are supported native
  +-
  +-See the Changes for details.
  +-
  +-END_OF_WARNING
  +-
  +-        my $cpan_smoker = grep { $_ =~ 
m/(?:CR_SMOKER|CPAN_REPORTER|AUTOMATED_TESTING)/ } keys %ENV;
  +-        if ( $cpan_smoker || defined( $ENV{SQL_STATEMENT_WARN_UPDATE} ) )
  +-        {
  +-            warn $warning;
  +-        }
  +-        else
  +-        {
  +-            $warning .= <<'END_OF_WORKAROUND';
  +-Use
  +-
  +-$ env SQL_STATEMENT_WARN_UPDATE=sure perl Makefile.PL
  +-
  +-to build and install anyway.
  +-
  +-END_OF_WORKAROUND
  +-            Carp::croak($warning);
  +-        }
  +-    }
  +-}
  +-
  + my %opts = (
  +         'NAME'         => 'SQL::Statement',
  +         'VERSION_FROM' => './lib/SQL/Statement.pm',
  +@@ -76,3 +30,4 @@
  +     $opts{'AUTHOR'} = 'Jeff Zucker <j...@vpservices.com>, Jens Rehsack 
<rehs...@cpan.org>';
  + }
  + ExtUtils::MakeMaker::WriteMakefile(%opts);
  ++
   Index: SQL-Translator-0.11002/Makefile.PL
   --- SQL-Translator-0.11002/Makefile.PL.orig  2009-08-28 14:08:09 +0200
  -+++ SQL-Translator-0.11002/Makefile.PL       2009-09-16 12:13:33 +0200
  ++++ SQL-Translator-0.11002/Makefile.PL       2009-10-12 08:29:04 +0200
   @@ -14,7 +14,7 @@
        'Carp::Clan'               => 0,
        'IO::Dir'                  => 0,
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-dbi/perl-dbi.spec
  ============================================================================
  $ cvs diff -u -r1.375 -r1.376 perl-dbi.spec
  --- openpkg-src/perl-dbi/perl-dbi.spec        7 Oct 2009 06:06:47 -0000       
1.375
  +++ openpkg-src/perl-dbi/perl-dbi.spec        12 Oct 2009 06:55:10 -0000      
1.376
  @@ -24,7 +24,7 @@
   #   versions of individual parts
   %define       V_perl            5.10
   %define       V_dbi             1.609
  -%define       V_sql_statement   1.20
  +%define       V_sql_statement   1.22
   %define       V_sql_abstract    1.60
   %define       V_sql_routine     0.70.3
   %define       V_sql_builder     0.033
  @@ -54,7 +54,7 @@
   Group:        Perl
   License:      GPL/Artistic
   Version:      %{V_perl}
  -Release:      20091007
  +Release:      20091012
   
   #   package options
   %option       with_sqlite       yes
  @@ .
______________________________________________________________________
OpenPKG                                             http://openpkg.org
CVS Repository Commit List                     openpkg-cvs@openpkg.org

Reply via email to