Check-in [9cf20b8bbd]
Overview
Comment:Upgraded to latest version of TclTLS and LibreSSL
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9cf20b8bbdab718bef6b84f7ade00bfee7fbdce7
User & Date: rkeene on 2018-02-07 15:50:35
Other Links: manifest | tags
Context
2018-02-19
18:26
Added Linux/AArch64 build support check-in: a37fff0c69 user: rkeene tags: trunk
2018-02-07
15:50
Upgraded to latest version of TclTLS and LibreSSL check-in: 9cf20b8bbd user: rkeene tags: trunk
2018-01-31
20:48
Add support for Tcl 8.6.8 check-in: 67690779ba user: rkeene tags: trunk
Changes

Modified tls/build.sh from [2a9819bfef] to [9d27d48086].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env bash

# BuildCompatible: KitCreator

version="1.7.13"
url="http://tcltls.rkeene.org/uv/tcltls-${version}.tar.gz"
sha256='40f874140f5f2210593a14dd22bdfee3b61fa46cb2edb662b25ec60653853eed'
configure_extra=('--enable-deterministic')

function buildSSLLibrary() {
	local version url hash
	local archive

	version='2.5.0'
	url="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${version}.tar.gz"
	hash='8652bf6b55ab51fb37b686a3f604a2643e0e8fde2c56e6a936027d12afda6eae'

	archive="src/libressl-${version}.tar.gz"

	echo " *** Building LibreSSL v${version}" >&2

	if [ ! -e "${pkgdir}/${archive}" ]; then
		"${_download}" "${url}" "${pkgdir}/${archive}" "${hash}" || return 1




|

|






|

|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env bash

# BuildCompatible: KitCreator

version="1.7.16"
url="http://tcltls.rkeene.org/uv/tcltls-${version}.tar.gz"
sha256='6845000732bedf764e78c234cee646f95bb68df34e590c39434ab8edd6f5b9af'
configure_extra=('--enable-deterministic')

function buildSSLLibrary() {
	local version url hash
	local archive

	version='2.6.4'
	url="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${version}.tar.gz"
	hash='638a20c2f9e99ee283a841cd787ab4d846d1880e180c4e96904fc327d419d11f'

	archive="src/libressl-${version}.tar.gz"

	echo " *** Building LibreSSL v${version}" >&2

	if [ ! -e "${pkgdir}/${archive}" ]; then
		"${_download}" "${url}" "${pkgdir}/${archive}" "${hash}" || return 1