diff options
author | Norbert Preining <norbert@preining.info> | 2020-02-08 03:02:17 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2020-02-08 03:02:17 +0000 |
commit | 9fe464819ed0a8c536f116bb55dbd39dd32cd904 (patch) | |
tree | 4da49a3397885cfdfd31ef803d0ce9dffd5e808b /support/pkgcheck | |
parent | 9c4a09ca6a4130e71ba545412319aaee3c618460 (diff) |
CTAN sync 202002080302
Diffstat (limited to 'support/pkgcheck')
-rw-r--r-- | support/pkgcheck/CHANGES.md | 6 | ||||
-rw-r--r-- | support/pkgcheck/Cargo.toml | 2 | ||||
-rw-r--r-- | support/pkgcheck/LICENSE-MIT | 2 | ||||
-rwxr-xr-x | support/pkgcheck/bin/pkgcheck | bin | 7042864 -> 7026480 bytes | |||
-rw-r--r-- | support/pkgcheck/docs/pkgcheck.pdf | bin | 70100 -> 69832 bytes | |||
-rw-r--r-- | support/pkgcheck/docs/title.tex | 2 | ||||
-rw-r--r-- | support/pkgcheck/src/main.rs | 2 |
7 files changed, 8 insertions, 6 deletions
diff --git a/support/pkgcheck/CHANGES.md b/support/pkgcheck/CHANGES.md index f41ce9b393..ba15e0ae9e 100644 --- a/support/pkgcheck/CHANGES.md +++ b/support/pkgcheck/CHANGES.md @@ -94,7 +94,7 @@ - more checks for a TDS zip archive - check for temporary files or directories -2020-01-17 (2.0.0) +2020-01-17 (2.0.0) - more error checking in TDS zip archives - detecting if a .dtx or .ins file is not in a subdirectory of source/ or doc/ toplevel directories (E0036) - detecting empty directories (W0007) @@ -122,4 +122,6 @@ check for latex-dev in the path names in the TDS zip archive - if a file in a generated file statement contains a directory part it was correctly recognized but not compared correctly to the contents of the TDS zip archive - +2020-02-07 (2.0.1) + - Use the `-a` (convert text files) flag when unzipping the TDS archive + - crates update diff --git a/support/pkgcheck/Cargo.toml b/support/pkgcheck/Cargo.toml index 94ed0aaf5b..0943bc76d7 100644 --- a/support/pkgcheck/Cargo.toml +++ b/support/pkgcheck/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkgcheck" -version = "2.0.0" +version = "2.0.1" authors = ["Manfred Lotz <manfred@ctan.org>"] description = "Command-line tool to check packages uploaded to CTAN." license = "MIT/Apache-2.0" diff --git a/support/pkgcheck/LICENSE-MIT b/support/pkgcheck/LICENSE-MIT index c0f44fc630..b1694f86ae 100644 --- a/support/pkgcheck/LICENSE-MIT +++ b/support/pkgcheck/LICENSE-MIT @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018-2019 Manfred Lotz +Copyright (c) 2018-2020 Manfred Lotz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/pkgcheck/bin/pkgcheck b/support/pkgcheck/bin/pkgcheck Binary files differindex ebf41ce1b3..5ab0dfe212 100755 --- a/support/pkgcheck/bin/pkgcheck +++ b/support/pkgcheck/bin/pkgcheck diff --git a/support/pkgcheck/docs/pkgcheck.pdf b/support/pkgcheck/docs/pkgcheck.pdf Binary files differindex 5949a88fed..dd1f384a45 100644 --- a/support/pkgcheck/docs/pkgcheck.pdf +++ b/support/pkgcheck/docs/pkgcheck.pdf diff --git a/support/pkgcheck/docs/title.tex b/support/pkgcheck/docs/title.tex index 1b5df7c036..5840449306 100644 --- a/support/pkgcheck/docs/title.tex +++ b/support/pkgcheck/docs/title.tex @@ -1 +1 @@ -\title{pkgcheck Utility, v2.0.0} +\title{pkgcheck Utility, v2.0.1} diff --git a/support/pkgcheck/src/main.rs b/support/pkgcheck/src/main.rs index 88b9323692..de0d3b3cb6 100644 --- a/support/pkgcheck/src/main.rs +++ b/support/pkgcheck/src/main.rs @@ -542,7 +542,7 @@ fn check_tds_archive_name(tds_zip: &Option<String>) -> Option<String> { } fn unzip_tds_archive(tds_zip: &str, tmp_dir: &str) { - match run_cmd("/usr/bin/unzip", &["-q", "-d", tmp_dir, &tds_zip]) { + match run_cmd("/usr/bin/unzip", &["-a", "-q", "-d", tmp_dir, &tds_zip]) { CmdReturn { status: true, .. } => (), CmdReturn { status: false, |