Accepting request 478923 from devel:languages:perl
1 OBS-URL: https://build.opensuse.org/request/show/478923 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-DBD-mysql?expand=0&rev=46
This commit is contained in:
commit
a45e44448f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4777de11c464b515db9da95c08c225900d0594b65ba3256982dc21f9f9379040
|
||||
size 150508
|
3
DBD-mysql-4.042.tar.gz
Normal file
3
DBD-mysql-4.042.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dadb6884788dc3fdf40b13b72d8c60d5a83680cc2aeec7515c3e5999e064b455
|
||||
size 160028
|
@ -1,3 +1,61 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 9 06:21:41 UTC 2017 - coolo@suse.com
|
||||
|
||||
- updated to 4.042
|
||||
see /usr/share/doc/packages/perl-DBD-mysql/Changes
|
||||
|
||||
2017-03-08 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.042)
|
||||
* Full release to include development releases 4.041_2 and 4.041_1.
|
||||
|
||||
2017-02-28 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.041_2)
|
||||
* Statement handle now also has mysql_sock attribute, just as database handle.
|
||||
(by Pali)
|
||||
* Fix type conversions for magic types. Issue reported by Dmitriy Yatsenko and
|
||||
Giovanni Bechis, fix by Pali.
|
||||
https://lists.amavis.org/pipermail/amavis-users/2016-December/004674.html
|
||||
https://github.com/perl5-dbi/DBD-mysql/issues/78
|
||||
* Fix UTF8-encoding of table names, field names, warnings and error messages.
|
||||
Reported by Tanabe Yoshinori, fix by Pali.
|
||||
https://rt.cpan.org/Public/Bug/Display.html?id=120141
|
||||
* Fix mysql_auto_reconnect when using mysql_server_prepare (pali). Reported by
|
||||
Vladimir Marek.
|
||||
https://github.com/perl5-dbi/DBD-mysql/pull/95
|
||||
* Improve regex for removing database from dsn (pali)
|
||||
https://rt.cpan.org/Public/Bug/Display.html?id=118837
|
||||
* Locate MySQL libs using Devel::CheckLib (pali)
|
||||
* Support async on Windows (pali)
|
||||
|
||||
* Fix test suite on range of older and newer MySQL and MariaDB versions
|
||||
(https://github.com/perl5-dbi/DBD-mysql/pull/87)
|
||||
* Fix compilation on MySQL 4.1 (pali)
|
||||
* Do not leak dangling pointer to mysql result (pali)
|
||||
* Fix logic when assigning to variable bind_comment_placeholders (pali)
|
||||
* mysql_fd() still returned file descriptor after closing connection.
|
||||
Reported by Larry Leszczynski, fixed by Pali Rohár.
|
||||
(https://rt.cpan.org/Public/Bug/Display.html?id=110983)
|
||||
* Fix parsing configure libs from mysql_config --libs output in Makefile.PL
|
||||
Libraries in mysql_config --libs output can be specified by library name
|
||||
with the -l prefix or by absolute path to library name without any prefix.
|
||||
Parameters must start with a hyphen, so treat all options without leading
|
||||
hyphen in mysql_config --libs output as libraries with full path.
|
||||
Partially fixes bug https://rt.cpan.org/Public/Bug/Display.html?id=100898
|
||||
Fix by Pali Rohár.
|
||||
* Fix support for magic scalars (pali)
|
||||
(https://github.com/perl5-dbi/DBD-mysql/pull/76)
|
||||
|
||||
2016-12-12 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.041_1)
|
||||
* Unicode fixes: when using mysql_enable_utf8 or mysql_enable_utf8mb4,
|
||||
previous versions of DBD::mysql did not properly encode input statements
|
||||
to UTF-8 and retrieved columns were always UTF-8 decoded regardless of the
|
||||
column charset.
|
||||
Fix by Pali Rohár.
|
||||
Reported and feedback on fix by Marc Lehmann
|
||||
(https://rt.cpan.org/Public/Bug/Display.html?id=87428)
|
||||
Also, the UTF-8 flag was not set for decoded data:
|
||||
(https://rt.cpan.org/Public/Bug/Display.html?id=53130)
|
||||
* Return INTs with ZEROFILL as strings. Reported by Knarf, fix by Pali Rohár.
|
||||
(https://rt.cpan.org/Public/Bug/Display.html?id=118977)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 29 06:18:42 UTC 2016 - coolo@suse.com
|
||||
|
||||
|
@ -17,19 +17,20 @@
|
||||
|
||||
|
||||
Name: perl-DBD-mysql
|
||||
Version: 4.041
|
||||
Version: 4.042
|
||||
Release: 0
|
||||
%define cpan_name DBD-mysql
|
||||
Summary: MySQL driver for the Perl5 Database Interface (DBI)
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/DBD-mysql/
|
||||
Source0: http://www.cpan.org/authors/id/M/MI/MICHIELB/%{cpan_name}-%{version}.tar.gz
|
||||
Source0: https://cpan.metacpan.org/authors/id/M/MI/MICHIELB/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(DBI) >= 1.609
|
||||
BuildRequires: perl(Devel::CheckLib)
|
||||
BuildRequires: perl(Test::Deep)
|
||||
BuildRequires: perl(Test::Simple) >= 0.90
|
||||
Requires: perl(DBI) >= 1.609
|
||||
@ -64,6 +65,7 @@ find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes LICENSE Makefile.PL.embedded myld README.md
|
||||
%doc Changes Makefile.PL.embedded myld README.md
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user