-
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.
- Loading branch information
1 parent
ee5adfa
commit 6741148
Showing
6 changed files
with
39 additions
and
13 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,19 +1,29 @@ | ||
Package: zip | ||
Title: Cross-Platform 'zip' Compression | ||
Version: 2.3.0 | ||
Author: Gábor Csárdi, Kuba Podgórski, Rich Geldreich | ||
Maintainer: Gábor Csárdi <[email protected]> | ||
Description: Cross-Platform 'zip' Compression Library. A replacement | ||
for the 'zip' function, that does not require any additional | ||
external tools on any platform. | ||
Version: 2.3.1 | ||
Authors@R: c( | ||
person("Gábor", "Csárdi", , "[email protected]", role = c("aut", "cre")), | ||
person("Kuba", "Podgórski", role = "ctb"), | ||
person("Rich", "Geldreich", role = "ctb"), | ||
person("Posit Software, PBC", role = c("cph", "fnd")) | ||
) | ||
Description: Cross-Platform 'zip' Compression Library. A replacement for | ||
the 'zip' function, that does not require any additional external | ||
tools on any platform. | ||
License: MIT + file LICENSE | ||
URL: https://github.com/r-lib/zip#readme | ||
URL: https://github.com/r-lib/zip, https://r-lib.github.io/zip/ | ||
BugReports: https://github.com/r-lib/zip/issues | ||
RoxygenNote: 7.2.1.9000 | ||
Config/testthat/edition: 3 | ||
Suggests: covr, processx, R6, testthat, withr | ||
Config/Needs/website: tidyverse/tidytemplate | ||
Config/testthat/edition: 3 | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.3 | ||
NeedsCompilation: yes | ||
Packaged: 2023-04-17 13:48:47 UTC; gaborcsardi | ||
Packaged: 2024-01-27 09:28:29 UTC; gaborcsardi | ||
Author: Gábor Csárdi [aut, cre], | ||
Kuba Podgórski [ctb], | ||
Rich Geldreich [ctb], | ||
Posit Software, PBC [cph, fnd] | ||
Maintainer: Gábor Csárdi <[email protected]> | ||
Repository: CRAN | ||
Date/Publication: 2023-04-17 15:30:02 UTC | ||
Date/Publication: 2024-01-27 10:00:02 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
YEAR: 2020 | ||
YEAR: 2023 | ||
COPYRIGHT HOLDER: zip authors |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#' @aliases zip-package NULL | ||
#' @keywords internal | ||
"_PACKAGE" | ||
|
||
## usethis namespace: start | ||
## usethis namespace: end | ||
NULL |
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,4 +1,6 @@ | ||
|
||
PKG_CFLAGS = $(C_VISIBILITY) | ||
|
||
OBJECTS = init.o miniz.o rzip.o zip.o unixutils.o | ||
|
||
.PHONY: all clean | ||
|
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