Closed sanderjo closed 9 years ago
That trick only worked half: yes, there is a openssl-1.0.1k.tar.gz, but it doesn't match a checksum :-(
make[3]: Entering directory '/home/openwrt/openwrt/package/libs/openssl'
WARNING: skipping libopenssl -- package not selected
mkdir -p /home/openwrt/openwrt/dl
/home/openwrt/openwrt/scripts/download.pl "/home/openwrt/openwrt/dl" "openssl-1.0.1k.tar.gz" "f7175c9cd3c39bb1907ac8bba9df8ed3" "http://www.openssl.org/source/" "ftp://ftp.funet.fi/pub/crypt/mirrors/ftp.openssl.org/source" "ftp://ftp.sunet.se/pub/security/tools/net/openssl/source/"
--2015-01-08 22:16:09-- http://www.openssl.org/source/openssl-1.0.1k.tar.gz
Resolving www.openssl.org (www.openssl.org)... 185.9.166.106
Connecting to www.openssl.org (www.openssl.org)|185.9.166.106|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4434910 (4.2M) [application/x-gzip]
Saving to: 'STDOUT'
100%[=====================================================================================================>] 4,434,910 4.78MB/s in 0.9s
2015-01-08 22:16:10 (4.78 MB/s) - written to stdout [4434910/4434910]
MD5 sum of the downloaded file does not match (file: d4f002bd22a56881340105028842ae1f, requested: f7175c9cd3c39bb1907ac8bba9df8ed3) - deleting download.
I had a look at the git source, and it seems 3 hours ago a change was made the openssl Makefile: from j to k. Maybe I just make a new container image.
index 36f0adb..70eb741 100644 (file)
--- a/package/libs/openssl/Makefile
+++ b/package/libs/openssl/Makefile
@@ -8,8 +8,8 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=openssl
-PKG_VERSION:=1.0.1j
-PKG_RELEASE:=4
+PKG_VERSION:=1.0.1k
+PKG_RELEASE:=1
PKG_USE_MIPS16:=0
PKG_BUILD_PARALLEL:=1
@@ -18,7 +18,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.openssl.org/source/ \
ftp://ftp.funet.fi/pub/crypt/mirrors/ftp.openssl.org/source \
ftp://ftp.sunet.se/pub/security/tools/net/openssl/source/
-PKG_MD5SUM:=f7175c9cd3c39bb1907ac8bba9df8ed3
+PKG_MD5SUM:=d4f002bd22a56881340105028842ae1f
PKG_LICENSE:=OpenSSL
PKG_LICENSE_FILES:=LICENSE
Do you still experience this issue?
No. Closed.
Probably something upstream, but I post it here anyway as the docker container is still not working for me. :-(
In the make, I have a problem with openssl. See logging below. Root cause seems to be the make is tyring to get openssl-1.0.1j.tar.gz on different URL, but that does not exist anymore; version is openssl-1.0.1k.tar.gz. That is availabe on ftp://ftp.openssl.org/source/openssl-1.0.1k.tar.gz
I don't know how to correct that.
EDIT:
... so changed that to 1.0.1k and trying make again. TBC.