pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/databases/p5-DBD-mysql
Module Name: pkgsrc
Committed By: wiz
Date: Sun Aug 17 10:00:43 UTC 2025
Modified Files:
pkgsrc/databases/p5-DBD-mysql: Makefile distinfo
Log Message:
p5-DBD-mysql: update to 5.013.
2025-08-03 Daniël van Eeden, DBI/DBD community (5.013)
* Add security policy
* Add support for JSON column in column_info()
* CI: test against TiDB
* CI: Test with MySQL 9.3
* CI: Add testing against MariaDB server
2025-04-11 Daniël van Eeden, DBI/DBD community (5.012)
* Fix tests failing on MariaDB
* Correct SQL_DRIVER_NAME
* Add tests for UTF8 characters in table definition and errors
* CI: Update to MySQL 9.2, replace Ubuntu 20.04
2025-01-06 Daniël van Eeden, DBI/DBD community (5.011)
* CI: Update for MySQL 9.1
* Use safer quoting for placeholders
* Use ANSI path names on Windows
2024-11-11 Daniël van Eeden, DBI/DBD community (5.010)
* doc: reorder mentioned sth attributes
* doc: POD for ParamValues sth attribute
* set index offset for when gh#447 is fixed
* tests for $sth->{ParamValues} attrib (gh #447)
* Make ParamValues follow expectations
* it seems catalogs *are* now supported - make statistics_info use them
* Warn that MariaDB's client library does not work
* Carefully compare library version numbers
* Correct email address
* correct keyword name MEDIUMBLOB
2024-09-19 Daniël van Eeden, DBI/DBD community (5.009)
* Cleanup obsolete mysql_errmsg and mysql_stats
* fix some queries with columns beginning with limit would fail
* implement statistics_info $unique_only
* fix(column_info): use show columns to describe
* Update Dockerfile
2024-07-30 Daniël van Eeden, DBI/DBD community (5.008)
* CI: Use Oracle MySQL containers
* 51bind_type_guessing.t: Update for 9.0.0 errorcodes
* MySQL 9.0.0 client library support
2024-07-01 Daniël van Eeden, DBI/DBD community (5.007)
* Fix calls to mysql_server_end()/mysql_library_end()
* Dockerfile: Update mysql-apt-config
2024-06-01 Daniël van Eeden, DBI/DBD community (5.006)
* Fix pod and ensure Test::Pod is installed
* CI: Test with MySQL 8.4
* Update test for `have_ssl` removal
2024-05-01 Daniël van Eeden, DBI/DBD community (5.005)
* docs: Update package names and MariaDB related things
* Rewrite yum name to dnf
* CI: Test against MySQL 8.3
* Replace mysql_stmt_bind_param() with mysql_stmt_bind_named_param()
* Cleanup deprecated functionality
2024-03-19 Daniël van Eeden, DBI/DBD community (5.004)
* Add deprecation warning for LISTFIELDS support
* Remove calls to mysql_reload() and mysql_list_fields()
* (ci_update) Update mysql-apt-config to 0.8.29-1
* Re-add documentation on how to workaround UTF-8 bug
* Remove legacy Bundle::DBD::mysql
2023-12-01 Daniël van Eeden, DBI/DBD community (5.003)
* Add ifdef for ER_CLIENT_INTERACTION_TIMEOUT
* Fix for issue 251. Also fixed case of "e<single int>"
* Docs: Update macOS docs
* CI: Add macOS
* Call mysql_library_init() and mysql_library_end()
* Update bug report address
* Check if handle is active when calling prepare
* Add missing testsocket option to the docs
* Add Dockerfile (#390)
* More cleanups of unneeded ifdefs (#385)
* Enable auto reconnect for ER_CLIENT_INTERACTION_TIMEOUT
* Try out issue template for GitHub
* 99compression.t: Only test on 8.x
* Only use MYSQL_OPT_COMPRESSION_ALGORITHMS on >=8.0.18
* Replace `mysql_ssl_set()` with `mysql_options()`
2023-10-24 Daniël van Eeden, DBI/DBD community (5.002)
* Add support for compression algorighm selection (#372)
* Correct handling of mysql_enable_utf8mb4 (#363)
* tests: Remove have_transactions usage from 50commit.t
* Makefile: Clearly report that MySQL 8.x is needed and do some cleanup
* add DBD::mysql::client_version() to have the client version without DB connections
* Update version test for v5.x
2023-10-04 Daniël van Eeden, DBI/DBD community (5.001)
* Only support MySQL 8.x as MySQL 5.7 is going EOL soon
* Remove use of MYSQL_OPT_RECONNECT
* Remove option to disable SSL/TLS at compile time
* Only support MySQL 5.7 GA client libraries
* Remove support for MySQL Connector/C 6.0.x
* Cleanup ifdef's for pre-5.7 MySQL
* Cleanup ifdef's for MySQL 4.x and earlier
* Remove MySQL Embedded support (libmysqld)
* Replace my_bool with bool
* Remove MySQL Fabric support
To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 pkgsrc/databases/p5-DBD-mysql/Makefile
cvs rdiff -u -r1.38 -r1.39 pkgsrc/databases/p5-DBD-mysql/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/databases/p5-DBD-mysql/Makefile
diff -u pkgsrc/databases/p5-DBD-mysql/Makefile:1.86 pkgsrc/databases/p5-DBD-mysql/Makefile:1.87
--- pkgsrc/databases/p5-DBD-mysql/Makefile:1.86 Fri Jul 4 08:44:57 2025
+++ pkgsrc/databases/p5-DBD-mysql/Makefile Sun Aug 17 10:00:43 2025
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.86 2025/07/04 08:44:57 wiz Exp $
+# $NetBSD: Makefile,v 1.87 2025/08/17 10:00:43 wiz Exp $
-DISTNAME= DBD-mysql-4.050
+DISTNAME= DBD-mysql-5.013
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 8
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
@@ -20,6 +19,9 @@ REPLACE_PERL= lib/DBD/mysql.pm
MAKE_PARAMS+= --nocatchstderr
+# newer mysql versions should be fine too; for mariadb, use DBD::MariaDB
+MYSQL_VERSIONS_ACCEPTED= 80
+
.include "../../databases/p5-DBI/buildlink3.mk"
.include "../../lang/perl5/module.mk"
.include "../../mk/mysql.buildlink3.mk"
Index: pkgsrc/databases/p5-DBD-mysql/distinfo
diff -u pkgsrc/databases/p5-DBD-mysql/distinfo:1.38 pkgsrc/databases/p5-DBD-mysql/distinfo:1.39
--- pkgsrc/databases/p5-DBD-mysql/distinfo:1.38 Tue Oct 26 10:09:30 2021
+++ pkgsrc/databases/p5-DBD-mysql/distinfo Sun Aug 17 10:00:43 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.38 2021/10/26 10:09:30 nia Exp $
+$NetBSD: distinfo,v 1.39 2025/08/17 10:00:43 wiz Exp $
-BLAKE2s (DBD-mysql-4.050.tar.gz) = 2c5a2f6fe501185497e02853af6c508ad4c582bd482c79f5ce411dd10d8dfdd5
-SHA512 (DBD-mysql-4.050.tar.gz) = 910f5b4ba7a7890d50a79f37d04ec8971a4f62acd0fe30bf3ab634f66e3128f0cd6513e5c9da8c807a0f4477d0cc766682ea8dd0d8072d02821b78df51f37879
-Size (DBD-mysql-4.050.tar.gz) = 161579 bytes
+BLAKE2s (DBD-mysql-5.013.tar.gz) = 937890bf0851bc339e2b1b220447d2878e1b64bd81e66fff31b2242b629cf484
+SHA512 (DBD-mysql-5.013.tar.gz) = ce5c7c353f2d326bc8c16d0578db94ccab27e738d6c4186f30b3bf8acc414390d28b9e845affb0fdfd82451f70fbb0074ea55915a569ce2ba8348f267910de5b
+Size (DBD-mysql-5.013.tar.gz) = 160611 bytes
Home |
Main Index |
Thread Index |
Old Index