This is an automated email from the ASF dual-hosted git repository.

feiwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 74666dd  [KYUUBI # 1110] Fix Kyuubi download page issue  (#12)
74666dd is described below

commit 74666dd68b924e6677d594e5c6488a9e651217f3
Author: Fei Wang <[email protected]>
AuthorDate: Mon Sep 20 10:46:15 2021 +0800

    [KYUUBI # 1110] Fix Kyuubi download page issue  (#12)
---
 layouts/custompage/release.html | 39 +++++++++++++++++++++++++++++++++++++++
 src/release/1.3.0-incubating.md |  1 +
 src/releases.md                 | 22 +++++++++++++++++++++-
 3 files changed, 61 insertions(+), 1 deletion(-)

diff --git a/layouts/custompage/release.html b/layouts/custompage/release.html
index 3b37e77..760e9d9 100644
--- a/layouts/custompage/release.html
+++ b/layouts/custompage/release.html
@@ -16,6 +16,45 @@
 
   <h1>Download</h1>
 
+  <p>Kyuubi is released as source code tarballs with corresponding binary
+    tarballs for convenience. The downloads are distributed via mirror sites
+    and should be checked for tampering using GPG or SHA-512.</p>
+
+  <p>
+  <table class="table table-striped">
+    <thead>
+    <tr>
+      <th>Version</th>
+      <th>Release date</th>
+      <th>Source download</th>
+      <th>Binary download</th>
+      <th>Release notes</th>
+    </tr>
+    </thead>
+  {{range first 5 (where (where .Site.Pages "Section" "release") 
".Params.linked" true) }}
+    <tr>
+      <td>{{.File.BaseFileName }}</td>
+      <td>{{dateFormat "2006 Jan 2 " .Date}}</td>
+      <td>
+        <a 
href="https://www.apache.org/dyn/closer.lua/incubator/kyuubi/kyuubi-{{.File.BaseFileName}}/apache-kyuubi-{{.File.BaseFileName}}-bin.tgz";>Binary
 Download</a>
+        (
+        <a 
href="https://downloads.apache.org/incubator/kyuubi/kyuubi-{{.File.BaseFileName}}/apache-kyuubi-{{.File.BaseFileName}}-bin.tgz.sha512";>checksum</a>
+        <a 
href="https://downloads.apache.org/incubator/kyuubi/kyuubi-{{.File.BaseFileName}}/apache-kyuubi-{{.File.BaseFileName}}-bin.tgz.asc";>signature</a>
+        )
+      </td>
+      <td>
+        <a 
href="https://www.apache.org/dyn/closer.lua/incubator/kyuubi/kyuubi-{{.File.BaseFileName}}/apache-kyuubi-{{.File.BaseFileName}}-source.tgz";>Source
 Download</a>
+        (
+        <a 
href="https://downloads.apache.org/incubator/kyuubi/kyuubi-{{.File.BaseFileName}}/apache-kyuubi-{{.File.BaseFileName}}-source.tgz.sha512";>checksum</a>
+        <a 
href="https://downloads.apache.org/incubator/kyuubi/kyuubi-{{.File.BaseFileName}}/apache-kyuubi-{{.File.BaseFileName}}-source.tgz.asc";>signature</a>)
+      </td>
+      <td>
+        <a href="/release/{{.File.BaseFileName }}.html">Announcement</a>
+      </td>
+    </tr>
+  {{end}}
+  </table>
+  </p>
   {{.Content}}
 </div>
 {{partial "footer.html" .}}
diff --git a/src/release/1.3.0-incubating.md b/src/release/1.3.0-incubating.md
index 3e36592..7df40f5 100644
--- a/src/release/1.3.0-incubating.md
+++ b/src/release/1.3.0-incubating.md
@@ -1,6 +1,7 @@
 ---
 title: Apache Kyuubi(Incubating) 1.3.0-incubating Release Notes
 date: 2021-09-14
+linked: true
 meta:
 _edit_last: '4'
 _wpas_done_all: '1'
diff --git a/src/releases.md b/src/releases.md
index 289aafd..7b2d847 100644
--- a/src/releases.md
+++ b/src/releases.md
@@ -18,7 +18,27 @@ type: custompage
   limitations under the License. See accompanying LICENSE file.
 -->
 
-- [1.3.0-incubating](/release/1.3.0-incubating.html)
+## To verify Kyuubi releases using GPG:
+
+1.  Download the release apache-kyuubi-X.Y.Z-incubating-source.tgz from a 
[mirror
+    site](https://www.apache.org/dyn/closer.lua/incubator/kyuubi/).
+2.  Download the signature file apache-kyuubi-X.Y.Z-incubating-source.tgz.asc 
from
+    [Apache](https://www.apache.org/dyn/closer.lua/incubator/kyuubi/).
+3.  Download the [Kyuubi
+    KEYS](https://www.apache.org/dyn/closer.lua/incubator/kyuubi/KEYS/KEYS) 
file.
+4.  gpg --import KEYS
+5.  gpg --verify apache-kyuubi-X.Y.Z-incubating-source.tgz.asc
+
+## To perform a quick check using SHA-512:
+
+1.  Download the release apache-kyuubi-X.Y.Z-incubating-source.tgz from a 
[mirror
+    site](https://www.apache.org/dyn/closer.lua/incubator/kyuubi/).
+2.  Download the checksum apache-kyuubi-X.Y.Z-incubating-source.tgz.sha512 from
+    [Apache](https://www.apache.org/dyn/closer.lua/incubator/kyuubi/).
+3.  shasum -a 512 apache-kyuubi-X.Y.Z-incubating-source.tgz
+
+All previous releases of Kyuubi are available from the [Apache release
+archive](https://archive.apache.org/dist/incubator/kyuubi/) site.
 
 ## License
 

Reply via email to