From 5351806cde46a6d7b28c22cc69d1da6378da63ec Mon Sep 17 00:00:00 2001
From: Cem Keylan <cem@ckyln.com>
Date: Thu, 11 Jun 2020 01:59:57 +0300
Subject: libressl: move to extra

---
 extra/libressl/build                    | 13 +++++++++++++
 extra/libressl/checksums                |  2 ++
 extra/libressl/files/update-certdata.sh | 14 ++++++++++++++
 extra/libressl/post-install             |  3 +++
 extra/libressl/sources                  |  2 ++
 extra/libressl/version                  |  1 +
 6 files changed, 35 insertions(+)
 create mode 100755 extra/libressl/build
 create mode 100644 extra/libressl/checksums
 create mode 100755 extra/libressl/files/update-certdata.sh
 create mode 100755 extra/libressl/post-install
 create mode 100644 extra/libressl/sources
 create mode 100644 extra/libressl/version

(limited to 'extra/libressl')

diff --git a/extra/libressl/build b/extra/libressl/build
new file mode 100755
index 00000000..86ade623
--- /dev/null
+++ b/extra/libressl/build
@@ -0,0 +1,13 @@
+#!/bin/sh -e
+
+./configure \
+    --prefix=/usr \
+    --sysconfdir=/etc
+
+make
+make DESTDIR="$1" install
+
+install -Dm 755 update-certdata.sh "$1/etc/ssl"
+
+# Link ca-certificates to cert.pem
+ln -sfv ../cert.pem "$1/etc/ssl/certs/ca-certificates.crt"
diff --git a/extra/libressl/checksums b/extra/libressl/checksums
new file mode 100644
index 00000000..98276761
--- /dev/null
+++ b/extra/libressl/checksums
@@ -0,0 +1,2 @@
+47bd2eb4b4503e47c02efa7e67d2fcd95c7eac6bc9d06b343a1b4705793ed1d5  libressl-3.2.0.tar.gz
+670cb63624d1829a396d2a41399ab9a1124c81a26d48d3c9284a30c669cc14fe  update-certdata.sh
diff --git a/extra/libressl/files/update-certdata.sh b/extra/libressl/files/update-certdata.sh
new file mode 100755
index 00000000..5283c329
--- /dev/null
+++ b/extra/libressl/files/update-certdata.sh
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+#
+# update-certdata.sh
+
+[ -w "$KISS_ROOT/etc/ssl" ] || {
+    printf '%s\n' "${0##*/}: root required to update cert." >&2
+    exit 1
+}
+
+cd "$KISS_ROOT/etc/ssl" && {
+    wget https://curl.haxx.se/ca/cacert.pem
+    mv -f cacert.pem cert.pem
+    printf '%s\n' "${0##*/}: updated cert.pem"
+}
diff --git a/extra/libressl/post-install b/extra/libressl/post-install
new file mode 100755
index 00000000..8f76be97
--- /dev/null
+++ b/extra/libressl/post-install
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+"$KISS_ROOT/etc/ssl/update-certdata.sh"
diff --git a/extra/libressl/sources b/extra/libressl/sources
new file mode 100644
index 00000000..ee5ee89f
--- /dev/null
+++ b/extra/libressl/sources
@@ -0,0 +1,2 @@
+https://fossies.org/linux/misc/libressl-3.2.0.tar.gz
+files/update-certdata.sh
diff --git a/extra/libressl/version b/extra/libressl/version
new file mode 100644
index 00000000..cd6c136c
--- /dev/null
+++ b/extra/libressl/version
@@ -0,0 +1 @@
+3.2.0 1
-- 
cgit v1.2.3