haskell.org not sending intermediate certs

2016-12-17 Thread Edward Z. Yang
See: https://www.sslshopper.com/ssl-checker.html#hostname=www.haskell.org

This is causing curl to fail to download it:

ezyang@sabre:~/Downloads$ curl  
https://www.haskell.org/cabal/release/cabal-install-1.24.0.0/cabal-install-1.24.0.0-x86_64-unknown-mingw32.zip
curl: (60) server certificate verification failed. CAfile: 
/etc/ssl/certs/ca-certificates.crt CRLfile: none
More details here: http://curl.haxx.se/docs/sslcerts.html

curl performs SSL certificate verification by default, using a "bundle"
 of Certificate Authority (CA) public keys (CA certs). If the default
 bundle file isn't adequate, you can specify an alternate file
 using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
 the bundle, the certificate verification probably failed due to a
 problem with the certificate (it might be expired, or the name might
 not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
 the -k (or --insecure) option.

Apologies if this is the wrong list.

Thanks,
Edward
___
ghc-devs mailing list
ghc-devs@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs


Patch for time repository

2016-12-17 Thread Edward Z. Yang
Hi all,

I'd like to push the following patch (see bottom of email)
to GHC's time repository, but I do not seem to have permissions.
Upstream has already taken the fix but the version we currently
have in the repo is quite a bit older than upstream.

Can someone do it for me / give me bits? Thanks.

Edward

commit 44c23839f964592946c889626f8acbd1f4f72e55
Author: Edward Z. Yang 
Date:   Sat Dec 17 20:05:11 2016 -0800

Remove useless internal library version bounds.

These bounds never do anything, and in Cabal HEAD cause
errors which cause GHC's build system to choke.

Signed-off-by: Edward Z. Yang 

diff --git a/time.cabal b/time.cabal
index 4a6eb02..28f2c21 100644
--- a/time.cabal
+++ b/time.cabal
@@ -100,7 +100,7 @@ test-suite ShowDefaultTZAbbreviations
 ghc-options: -Wall -fwarn-tabs
 build-depends:
 base,
-time == 1.6.0.1
+time
 main-is: ShowDefaultTZAbbreviations.hs
 
 test-suite tests
@@ -122,7 +122,7 @@ test-suite tests
 build-depends:
 base,
 deepseq,
-time == 1.6.0.1,
+time,
 QuickCheck >= 2.5.1,
 test-framework >= 0.8,
 test-framework-quickcheck2 >= 0.3,
___
ghc-devs mailing list
ghc-devs@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs