Secure URLs

This commit is contained in:
Viktor Szakats 2018-07-30 06:27:30 +00:00 committed by Tony Theodore
parent 510e097797
commit e467d9d1ec
15 changed files with 20 additions and 20 deletions

View File

@ -46,4 +46,4 @@ websites for further details.
[issue-tracker]: https://github.com/mxe/mxe/issues
[config.guess]: https://github.com/mxe/mxe/blob/master/ext/config.guess#L3-L27
[gmsl]: https://github.com/mxe/mxe/blob/master/ext/gmsl#L8-L40
[packages]: http://mxe.cc/#packages
[packages]: https://mxe.cc/#packages

View File

@ -41,4 +41,4 @@ various target platforms, which:
- i686: dw2
- x86_64: sjlj
Please see [mxe.cc](http://mxe.cc/) for further information and package support matrix.
Please see [mxe.cc](https://mxe.cc/) for further information and package support matrix.

View File

@ -2884,7 +2884,7 @@ endef</pre>
<ul class="compact-list">
<li>
<a href="https://mxe.cc">Website</a>
<a href="https://mxe.cc/">Website</a>
</li>
<li>
<a href="https://github.com/mxe/mxe">Project on GitHub</a>
@ -3034,7 +3034,7 @@ endef</pre>
<a href="https://www.nongnu.org/galois/">Galois</a>
</li>
<li>
<a href="http://gcompris.net/">GCompris</a>
<a href="https://www.gcompris.net/">GCompris</a>
</li>
<li>
<a href="https://www.nongnu.org/gta/">Generic Tagged Arrays</a>

View File

@ -19,7 +19,7 @@ function `require`.
Example:
```
$ luarocks install luasocket
$ lua -e 'http = require "socket.http"; print(http.request("http://mxe.cc"))'
$ lua -e 'http = require "socket.http"; print(http.request("https://mxe.cc/"))'
<!DOCTYPE html>
....
```

View File

@ -2,7 +2,7 @@ local lpeg = require 'lpeg'
assert(((lpeg.R('AZ'))^1):match("TEXT") == 5)
local http = require "socket.http"
assert(http.request("http://mxe.cc"):match('MXE'))
assert(http.request("https://mxe.cc/"):match('MXE'))
local ll = require 'llthreads2'
local thread = ll.new("return 123")

View File

@ -1,7 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := blas
$(PKG)_WEBSITE := http://www.netlib.org/blas/
$(PKG)_WEBSITE := https://www.netlib.org/blas/
$(PKG)_DESCR := Reference BLAS (Basic Linear Algebra Subprograms)
$(PKG)_IGNORE = $(lapack_IGNORE)
$(PKG)_VERSION = $(lapack_VERSION)

View File

@ -1,7 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cblas
$(PKG)_WEBSITE := http://www.netlib.org/blas/
$(PKG)_WEBSITE := https://www.netlib.org/blas/
$(PKG)_DESCR := C interface to Reference BLAS
$(PKG)_IGNORE = $(lapack_IGNORE)
$(PKG)_VERSION = $(lapack_VERSION)

View File

@ -1,7 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cc
$(PKG)_WEBSITE := https://mxe.cc
$(PKG)_WEBSITE := https://mxe.cc/
$(PKG)_DESCR := Dependency package for cross libraries
$(PKG)_VERSION := 1
$(PKG)_DEPS := gcc

View File

@ -1,7 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gdal
$(PKG)_WEBSITE := http://www.gdal.org/
$(PKG)_WEBSITE := https://www.gdal.org/
$(PKG)_DESCR := GDAL
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.2.3

View File

@ -1,7 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := icu4c
$(PKG)_WEBSITE := http://site.icu-project.org/
$(PKG)_WEBSITE := https://ssl.icu-project.org/
$(PKG)_DESCR := ICU4C
$(PKG)_IGNORE :=
$(PKG)_VERSION := 56.1
@ -9,7 +9,7 @@ $(PKG)_MAJOR := $(word 1,$(subst ., ,$($(PKG)_VERSION)))
$(PKG)_CHECKSUM := 3a64e9105c734dcf631c0b3ed60404531bce6c0f5a64bfe1a6402a4cc2314816
$(PKG)_SUBDIR := icu
$(PKG)_FILE := $(PKG)-$(subst .,_,$($(PKG)_VERSION))-src.tgz
$(PKG)_URL := http://download.icu-project.org/files/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_URL := https://ssl.icu-project.org/files/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS := cc
define $(PKG)_UPDATE

View File

@ -1,17 +1,17 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := jpeg
$(PKG)_WEBSITE := http://www.ijg.org/
$(PKG)_WEBSITE := https://www.ijg.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 9c
$(PKG)_CHECKSUM := 650250979303a649e21f87b5ccd02672af1ea6954b911342ea491f351ceb7122
$(PKG)_SUBDIR := jpeg-$($(PKG)_VERSION)
$(PKG)_FILE := jpegsrc.v$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://www.ijg.org/files/$($(PKG)_FILE)
$(PKG)_URL := https://www.ijg.org/files/$($(PKG)_FILE)
$(PKG)_DEPS := cc
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://www.ijg.org/' | \
$(WGET) -q -O- 'https://www.ijg.org/' | \
$(SED) -n 's,.*jpegsrc\.v\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef

View File

@ -1,7 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libshout
$(PKG)_WEBSITE := http://www.icecast.org/
$(PKG)_WEBSITE := https://icecast.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.4.1
$(PKG)_CHECKSUM := f3acb8dec26f2dbf6df778888e0e429a4ce9378a9d461b02a7ccbf2991bbf24d
@ -11,7 +11,7 @@ $(PKG)_URL := https://downloads.xiph.org/releases/$(PKG)/$($(PKG)_FILE)
$(PKG)_DEPS := cc ogg openssl speex theora vorbis
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://www.icecast.org/download.php' | \
$(WGET) -q -O- 'https://icecast.org/download/' | \
$(SED) -n 's,.*libshout-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef

View File

@ -12,7 +12,7 @@ $(PKG)_URL := https://storage.googleapis.com/downloads.webmproject.org/rele
$(PKG)_DEPS := cc pthreads yasm
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://downloads.webmproject.org/releases/webm/index.html' | \
$(WGET) -q -O- 'https://storage.googleapis.com/downloads.webmproject.org/releases/webm/index.html' | \
$(SED) -n 's,.*libvpx-\([0-9][^>]*\)\.tar.*,\1,p' | \
$(SORT) -Vr | \
head -1

View File

@ -7,7 +7,7 @@ $(PKG)_VERSION := 0.4.4
$(PKG)_CHECKSUM := c65d34edb57338e331ba4d622227a2b3179444cfca17d02c34f1ead63f603e86
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://downloads.webmproject.org/releases/webp/$($(PKG)_FILE)
$(PKG)_URL := https://storage.googleapis.com/downloads.webmproject.org/releases/webp/$($(PKG)_FILE)
$(PKG)_DEPS := cc
define $(PKG)_UPDATE

View File

@ -772,7 +772,7 @@ Priority: optional
Architecture: %s%s
Installed-Size: %d
Maintainer: Boris Nagaev <bnagaev@gmail.com>
Homepage: http://mxe.cc
Homepage: https://mxe.cc/
Description: %s
MXE (M cross environment) is a Makefile that compiles
a cross compiler and cross compiles many free libraries