Skip to content

Commit 5fbe62a

Browse files
committed
Fix for BDR setup which does not have vendor=redhat
1 parent 16c9bf6 commit 5fbe62a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: openssl
22
Type: Package
33
Title: Toolkit for Encryption, Signatures and Certificates Based on OpenSSL
4-
Version: 2.3.2
4+
Version: 2.3.3
55
Authors@R: c(person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]",
66
comment = c(ORCID = "0000-0002-4035-0289")),
77
person("Oliver", "Keyes", role = "ctb"))

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.3.3
2+
- Fix a unit test for CRAN Fedora builds
3+
14
2.3.2
25
- Remove R_unload_openssl() as it may interfere with other packages
36
- Windows: update to openssl 3.4.0 and fix build on compilers without zlib

tests/testthat/helper-version.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# See https://github.com/jeroen/openssl/issues/125
22
skip_on_redhat <- function(){
3-
skip_if(grepl("redhat", R.version$platform))
3+
skip_if(any(grepl("fedora|redhat", c(osVersion, R.version$platform), ignore.case = TRUE)))
44
}

0 commit comments

Comments
 (0)