- update to 1.617

NOTE: The officially supported minimum perl version will change
  from perl 5.8.1 (2003) to perl 5.8.3 (2004) in a future release.
  (The last change, from perl 5.6 to 5.8.1, was announced
  in July 2008 and implemented in DBI 1.611 in April 2010.)
  Fixed ParamTypes example in the pod (Martin J. Evans)
  Fixed the definition of ArrayTupleStatus and remove confusion over
    rows affected in list context of execute_array (Martin J. Evans)
  Fixed sql_type_cast example and typo in errors (Martin J. Evans)
  Fixed Gofer error handling for keeperr methods like ping (Tim Bunce)
  Fixed $dbh->clone({}) RT73250 (Tim Bunce)
  Fixed is_nested_call logic error RT73118 (Reini Urban)
  Enhanced performance for threaded perls (Dave Mitchell, Tim Bunce)
  Enhanced and standardized driver trace level mechanism (Tim Bunce)
  Removed old code that was an inneffective attempt to detect
    people doing DBI->{Attrib}.
  Clear ParamValues on bind_param param count error RT66127 (Tim Bunce)
  Changed DBI::ProxyServer to require DBI at compile-time RT62672 (Tim Bunce)
  Added pod for default_user to DBI::DBD (Martin J. Evans)
  Added CON, ENC and DBD trace flags and extended 09trace.t (Martin J. Evans)
  Added TXN trace flags and applied CON and TXN to relevant methods (Tim Bunce)
  Added some more fetchall_arrayref(..., $maxrows) tests (Tim Bunce)
  Clarified docs for fetchall_arrayref called on an inactive handle.
  Clarified docs for clone method (Tim Bunce)
  Added note to DBI::Profile about async queries (Marcel Grunauer).
  Reserved spatialite_ as a driver prefix for DBD::Spatialite
  Reserved mo_ as a driver prefix for DBD::MO
  Updated link to the SQL Reunion 95 docs, RT69577 (Ash Daminato)
  Changed links for DBI recipes. RT73286 (Martin J. Evans)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBI?expand=0&rev=35
This commit is contained in:
Vítězslav Čížek 2012-02-02 12:38:33 +00:00 committed by Git OBS Bridge
parent 72a286da10
commit 449e37106c
4 changed files with 42 additions and 19 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:60ce3986c46d12e0eae6def8b4804a90edd02c2cc6b0d2481854e6db8d99d054
size 576803

3
DBI-1.617.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bcd91d6b8d6af5791e278f3ec9dcb91d454c738cd97bcd50479339efb7a63293
size 579214

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Tue Jan 31 09:49:34 UTC 2012 - vcizek@suse.com
- update to 1.617
* Fixed ParamTypes example in the pod (Martin J. Evans)
* Fixed the definition of ArrayTupleStatus and remove confusion over
rows affected in list context of execute_array (Martin J. Evans)
* Fixed sql_type_cast example and typo in errors (Martin J. Evans)
* Fixed Gofer error handling for keeperr methods like ping (Tim Bunce)
* Fixed $dbh->clone({}) RT73250 (Tim Bunce)
* Fixed is_nested_call logic error RT73118 (Reini Urban)
* Enhanced performance for threaded perls (Dave Mitchell, Tim Bunce)
* Enhanced and standardized driver trace level mechanism (Tim Bunce)
* Removed old code that was an inneffective attempt to detect
people doing DBI->{Attrib}.
* Clear ParamValues on bind_param param count error RT66127 (Tim Bunce)
* Changed DBI::ProxyServer to require DBI at compile-time RT62672 (Tim Bunce)
* Added pod for default_user to DBI::DBD (Martin J. Evans)
* Added CON, ENC and DBD trace flags and extended 09trace.t (Martin J. Evans)
* Added TXN trace flags and applied CON and TXN to relevant methods (Tim Bunce)
* Added some more fetchall_arrayref(..., $maxrows) tests (Tim Bunce)
* Clarified docs for fetchall_arrayref called on an inactive handle.
* Clarified docs for clone method (Tim Bunce)
* Added note to DBI::Profile about async queries (Marcel Grunauer).
* Reserved spatialite_ as a driver prefix for DBD::Spatialite
* Reserved mo_ as a driver prefix for DBD::MO
* Updated link to the SQL Reunion 95 docs, RT69577 (Ash Daminato)
* Changed links for DBI recipes. RT73286 (Martin J. Evans)
-------------------------------------------------------------------
Fri Nov 18 11:09:37 UTC 2011 - coolo@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-DBI
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -15,26 +15,25 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%bcond_with opt
Name: perl-DBI
Version: 1.617
Release: 0
%define cpan_name DBI
Summary: Database independent interface for Perl
Version: 1.616
Release: 1
License: GPL-1.0+ or Artistic-1.0
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/DBI/
#Source: http://www.cpan.org/modules/by-module/DBI/DBI-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Test::Simple) >= 0.90
#
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
#
%if %{with opt}
BuildRequires: perl(Clone) >= 0.31
BuildRequires: perl(DB_File)
@ -59,20 +58,15 @@ It defines a set of methods, variables, and conventions that provide a
consistent database interface, independent of the actual database
being used.
Authors:
--------
Tim Bunce <Tim.Bunce@pobox.com>
<dbi-users@isc.org>
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
%{__make} %{?_smp_mflags}
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
make %{?_smp_mflags}
%check
%{__make} test
make test
%install
%perl_make_install
@ -80,7 +74,7 @@ Authors:
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
rm -rf %{buildroot}
%files -f %{name}.files
%defattr(-,root,root,-)