-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update embedded curl to 5.2.3 (#728)
* Update embedded curl to 5.2.3 * Patch curl to compile on FreeBSD
- Loading branch information
1 parent
da1bbe8
commit 9eb0439
Showing
27 changed files
with
316 additions
and
688 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Package: curl | ||
Type: Package | ||
Title: A Modern and Flexible Web Client for R | ||
Version: 5.2.0 | ||
Version: 5.2.3 | ||
Authors@R: c( | ||
person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]", | ||
person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-4035-0289")), | ||
person("Hadley", "Wickham", , "[email protected]", role = "ctb"), | ||
person("RStudio", role = "cph") | ||
|
@@ -23,17 +23,17 @@ SystemRequirements: libcurl: libcurl-devel (rpm) or | |
URL: https://jeroen.r-universe.dev/curl https://curl.se/libcurl/ | ||
BugReports: https://github.com/jeroen/curl/issues | ||
Suggests: spelling, testthat (>= 1.0.0), knitr, jsonlite, later, | ||
rmarkdown, magrittr, httpuv (>= 1.4.4), webutils | ||
rmarkdown, httpuv (>= 1.4.4), webutils | ||
VignetteBuilder: knitr | ||
Depends: R (>= 3.0.0) | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.0 | ||
Encoding: UTF-8 | ||
Language: en-US | ||
NeedsCompilation: yes | ||
Packaged: 2023-12-07 23:07:08 UTC; jeroen | ||
Packaged: 2024-09-19 15:43:51 UTC; jeroen | ||
Author: Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), | ||
Hadley Wickham [ctb], | ||
RStudio [cph] | ||
Maintainer: Jeroen Ooms <[email protected]> | ||
Maintainer: Jeroen Ooms <[email protected]> | ||
Repository: CRAN | ||
Date/Publication: 2023-12-08 07:30:02 UTC | ||
Date/Publication: 2024-09-20 11:50:24 UTC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,13 @@ | |
#' By default, the port will be 25, unless \code{smtps://} is specified--then | ||
#' the default will be 465 instead. | ||
#' | ||
#' For internet SMTP servers you probably need to pass a | ||
#' \href{https://curl.se/libcurl/c/CURLOPT_USERNAME.html}{username} and | ||
#' \href{https://curl.se/libcurl/c/CURLOPT_PASSWORD.html}{passwords} option. | ||
#' For some servers you also need to pass a string with | ||
#' \href{https://curl.se/libcurl/c/CURLOPT_LOGIN_OPTIONS.html}{login_options} | ||
#' for example \code{login_options="AUTH=NTLM"}. | ||
#' | ||
#' @section Encrypting connections via SMTPS or STARTTLS: | ||
#' | ||
#' There are two different ways in which SMTP can be encrypted: SMTPS servers | ||
|
@@ -51,8 +58,8 @@ | |
#' for details. Default will try to SSL, proceed as normal otherwise. | ||
#' @param verbose print output | ||
#' @param ... other options passed to \code{\link{handle_setopt}}. In most cases | ||
#' you will need to set a \code{username} and \code{password} to authenticate | ||
#' with the SMTP server. | ||
#' you will need to set a \code{username} and \code{password} or \code{login_options} | ||
#' to authenticate with the SMTP server, see details. | ||
#' @examples \dontrun{# Set sender and recipients (email addresses only) | ||
#' recipients <- readline("Enter your email address to receive test: ") | ||
#' sender <- '[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.