git: 646f658c400a - main - databases/R-cran-RSQLite: update to 2.4.0

From: Steven Kreuzer <skreuzer_at_FreeBSD.org>
Date: Sun, 01 Jun 2025 20:03:19 UTC
The branch main has been updated by skreuzer:

URL: https://cgit.FreeBSD.org/ports/commit/?id=646f658c400afb92c6f1c418ecf7b326c24fb8a6

commit 646f658c400afb92c6f1c418ecf7b326c24fb8a6
Author:     Steven Kreuzer <skreuzer@FreeBSD.org>
AuthorDate: 2025-06-01 19:51:31 +0000
Commit:     Steven Kreuzer <skreuzer@FreeBSD.org>
CommitDate: 2025-06-01 20:03:07 +0000

    databases/R-cran-RSQLite: update to 2.4.0
    
    Changes:
      * Upgrade bundled SQLite to 3.50.0
---
 databases/R-cran-RSQLite/Makefile                  |  5 ++--
 databases/R-cran-RSQLite/distinfo                  |  6 ++---
 .../files/patch-tests_testthat_test-encoding.R     | 27 ----------------------
 3 files changed, 6 insertions(+), 32 deletions(-)

diff --git a/databases/R-cran-RSQLite/Makefile b/databases/R-cran-RSQLite/Makefile
index 4644618957ee..8e6fd82e6ea5 100644
--- a/databases/R-cran-RSQLite/Makefile
+++ b/databases/R-cran-RSQLite/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	RSQLite
-PORTVERSION=	2.3.6
+PORTVERSION=	2.4.0
 CATEGORIES=	databases
 DISTNAME=	${PORTNAME}_${PORTVERSION}
 
@@ -7,7 +7,8 @@ MAINTAINER=	skreuzer@FreeBSD.org
 COMMENT=	Database Interface R driver for SQLite
 WWW=		https://cran.r-project.org/web/packages/RSQLite/
 
-LICENSE=	LGPL21
+LICENSE=	LGPL21 LGPL3
+LICENSE_COMB=	dual
 
 CRAN_DEPENDS=	R-cran-bit64>0:devel/R-cran-bit64 \
 		R-cran-blob>=1.2.0:devel/R-cran-blob \
diff --git a/databases/R-cran-RSQLite/distinfo b/databases/R-cran-RSQLite/distinfo
index 70c43090fb60..243465f490cb 100644
--- a/databases/R-cran-RSQLite/distinfo
+++ b/databases/R-cran-RSQLite/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1711979278
-SHA256 (RSQLite_2.3.6.tar.gz) = fbb1b7a58ff49af30059a802a9fed0055b8cf1e401b8022382b94fc6c3c9f8f2
-SIZE (RSQLite_2.3.6.tar.gz) = 4249332
+TIMESTAMP = 1748807348
+SHA256 (RSQLite_2.4.0.tar.gz) = a3bd036e98fc1812289512571d408d96e266f880642837c252222a69df74267c
+SIZE (RSQLite_2.4.0.tar.gz) = 4327115
diff --git a/databases/R-cran-RSQLite/files/patch-tests_testthat_test-encoding.R b/databases/R-cran-RSQLite/files/patch-tests_testthat_test-encoding.R
deleted file mode 100644
index 443e56a34ca7..000000000000
--- a/databases/R-cran-RSQLite/files/patch-tests_testthat_test-encoding.R
+++ /dev/null
@@ -1,27 +0,0 @@
-Fix to skip a windows only test that does not exclude FreeBSD.
-https://github.com/r-dbi/RSQLite/pull/504
-
---- tests/testthat/test-encoding.R.orig	2024-01-20 09:56:34 UTC
-+++ tests/testthat/test-encoding.R
-@@ -34,9 +34,7 @@ test_that("list the field of tables whose colnames are
- })
- 
- test_that("list the field of tables whose colnames are BIG5 encoded (#277)", {
--  skip_on_os("linux")
--  skip_on_os("mac")
--  skip_on_os("solaris")
-+  skip_if_not(.Platform$OS.type == "windows")
-   if (.Platform$OS.type == "windows") {
-     withr::local_collate("cht")
-   } else {
-@@ -133,9 +131,7 @@ test_that("write tables whose colnames or contents are
- })
- 
- test_that("write tables whose colnames or contents are BIG5 encoded (#277)", {
--  skip_on_os("linux")
--  skip_on_os("mac")
--  skip_on_os("solaris")
-+  skip_if_not(.Platform$OS.type == "windows")
- 
-   .loc <- Sys.getlocale("LC_COLLATE")
-   suppressWarnings(Sys.setlocale(locale = "cht"))