[ANNOUNCEMENT] WindowMaker 0.95.8-1

2017-11-10 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * WindowMaker-0.95.8-1 * libwraster6-0.95.8-1 * libwraster-devel-0.95.8-1 * libWMaker1-0.95.8-1 * libWMaker-devel-0.95.8-1 * libWINGs3-0.95.8-1 * libWINGs-devel-0.95.8-1 Window Maker is an X11 window manager originally

WindowMaker 0.95.8-1

2017-11-10 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * WindowMaker-0.95.8-1 * libwraster6-0.95.8-1 * libwraster-devel-0.95.8-1 * libWMaker1-0.95.8-1 * libWMaker-devel-0.95.8-1 * libWINGs3-0.95.8-1 * libWINGs-devel-0.95.8-1 Window Maker is an X11 window manager originally

[ANNOUNCEMENT] dmtx-utils 0.7.4-3

2017-11-10 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * dmtx-utils-0.7.4-3 libdmtx is a software library that enables programs to read and write Data Matrix barcodes of the modern ECC200 variety. This package provides command line utilities that allow scripts to use libdmtx

[ANNOUNCEMENT] psiconv 0.9.9-1

2017-11-10 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * psiconv-0.9.9-1 * psiconv-doc-0.9.9-1 * libpsiconv6-0.9.9-1 * libpsiconv-devel-0.9.9-1 This package is meant to make the Psion 5 series of PDAs, as well as other small computers running EPOC 32, more usable to non-Windows

psiconv 0.9.9-1

2017-11-10 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * psiconv-0.9.9-1 * psiconv-doc-0.9.9-1 * libpsiconv6-0.9.9-1 * libpsiconv-devel-0.9.9-1 This package is meant to make the Psion 5 series of PDAs, as well as other small computers running EPOC 32, more usable to non-Windows

dmtx-utils 0.7.4-3

2017-11-10 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * dmtx-utils-0.7.4-3 libdmtx is a software library that enables programs to read and write Data Matrix barcodes of the modern ECC200 variety. This package provides command line utilities that allow scripts to use libdmtx

Re: EXTERNAL: Re: Requesting updated unzip for Zip64 Support

2017-11-10 Thread Wells, Roger K.
On 11/10/2017 10:04 AM, Brian Inglis wrote: On 2017-11-09 23:25, OwN-3m-All wrote: Any chance unzip can be updated to support Zip64? http://www.paehl.com/open_source/downloads/unzip.7z http://www.paehl.com/open_source/?ZIP_UNZIP Current zip has supported Zip64 since 2008 and unzip since 2009.

Re: Requesting updated unzip for Zip64 Support

2017-11-10 Thread OwN-3m-All
Strange, for some reason the current version would fail on some very large archives (8GB+), but the version I linked worked fine in these cases too. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation:

Re: Requesting updated unzip for Zip64 Support

2017-11-10 Thread Brian Inglis
On 2017-11-09 23:25, OwN-3m-All wrote: > Any chance unzip can be updated to support Zip64? > http://www.paehl.com/open_source/downloads/unzip.7z > http://www.paehl.com/open_source/?ZIP_UNZIP Current zip has supported Zip64 since 2008 and unzip since 2009. $ zip -v; unzip -v should both show

[PATCH setup 5/5] Limit the number of packages shown in the IDD_DOWNLOAD_ERROR listbox

2017-11-10 Thread Ken Brown
--- download.cc | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/download.cc b/download.cc index b059bf5..6e6d6e8 100644 --- a/download.cc +++ b/download.cc @@ -188,6 +188,7 @@ download_one (packagesource & pkgsource, HWND owner) static std::vector

[PATCH setup 2/5] Fix off-by-one error in download retry report

2017-11-10 Thread Ken Brown
'retries' was decremented after it was tested but before it was reported in the log, so the reported number was always 1 too low. --- download.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/download.cc b/download.cc index f6aa6fc..a430f7f 100644 --- a/download.cc +++

[PATCH setup 4/5] Query user after download error in interactive mode

2017-11-10 Thread Ken Brown
Instead of just giving the user a "Try again?" Yes/No choice that goes to IDD_SITE on Yes, create a dialog IDD_DOWNLOAD_ERROR with the following choices: 'Retry' (retry the download), 'Back' (return to IDD_CHOOSE), 'Continue' (ignore the errors), or 'Cancel' (exit). The dialog lists the packages

[PATCH setup 3/5] Remove "Try again?" from exit message.

2017-11-10 Thread Ken Brown
--- download.cc | 2 +- res.rc | 1 + resource.h | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/download.cc b/download.cc index a430f7f..841f680 100644 --- a/download.cc +++ b/download.cc @@ -266,7 +266,7 @@ do_download_thread (HINSTANCE h, HWND owner) if (source ==

[PATCH setup 1/5] Just retry download after error in unattended mode

2017-11-10 Thread Ken Brown
After a download error, setup was going back to IDD_SITE. This is pointless in unattended mode, since no changes in the mirrors or packages can be made. Change misleading comment about retries in unattended mode; the Yes/No dialog is not used in that case. --- download.cc | 9 +++-- 1 file

[PATCH setup 0/5] Improve behavior after download error, v2

2017-11-10 Thread Ken Brown
Currently setup goes back to the mirror selection page after a download error if the user answers "Yes" to "Download incomplete. Try again?". The same happens in unattended mode until the retries have been exhausted. And if the user answers "No", then installation continues, even though this

Re: [PATCH setup 0/2] Improve behavior after download error

2017-11-10 Thread Ken Brown
On 11/9/2017 11:42 AM, Ken Brown wrote: On 11/9/2017 8:21 AM, Jon Turney wrote: On 08/11/2017 18:52, Brian Inglis wrote: On 2017-11-08 07:35, Ken Brown wrote: On 11/7/2017 1:56 PM, Jon Turney wrote: On 07/11/2017 04:28, Brian Inglis wrote: On 2017-11-06 14:49, Ken Brown wrote: This is a

Updated: openssl-1.0.2m-1

2017-11-10 Thread Corinna Vinschen
Hi folks, I've updated the version of OpenSSL to 1.0.2m-1. This is a security bugfix release. OpenSSL Security Advisory [02 Nov 2017] bn_sqrx8x_internal carry bug on x86_64

[ANNOUNCEMENT] Updated: openssl-1.0.2m-1

2017-11-10 Thread Corinna Vinschen
Hi folks, I've updated the version of OpenSSL to 1.0.2m-1. This is a security bugfix release. OpenSSL Security Advisory [02 Nov 2017] bn_sqrx8x_internal carry bug on x86_64