This is an automated email from the ASF dual-hosted git repository. adriancole pushed a commit to branch downloads in repository https://gitbox.apache.org/repos/asf/incubator-zipkin-website.git
commit 43eb12180cf2c54badb0417efc1f720ed957f26d Author: Adrian Cole <[email protected]> AuthorDate: Thu Jun 6 13:11:16 2019 +0800 Adds sources download information for all projects except Brave This adds download details for all releases. Brave isn't yet released, but as this was escalated we are making this page now. --- _data/downloads.yml | 29 +++++++++++++++++++++++++++++ pages/downloads.md | 30 ++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) diff --git a/_data/downloads.yml b/_data/downloads.yml new file mode 100644 index 0000000..5627ee7 --- /dev/null +++ b/_data/downloads.yml @@ -0,0 +1,29 @@ +- friendlyName: Zipkin Api + module: zipkin-api + version: 0.2.1 + repo: zipkin-api +- friendlyName: Zipkin Brave for Apache Cassandra + module: brave-cassandra + version: 0.10.2 + repo: zipkin-brave-cassandra +- friendlyName: Zipkin Brave for Apache Karaf + module: brave-karaf + version: 0.1.2 + repo: zipkin-brave-karaf +- friendlyName: Zipkin Dependencies + module: zipkin-dependencies + version: 2.2.0 + repo: zipkin-dependencies +- friendlyName: Zipkin Reporter Java + module: zipkin-reporter-java + version: 2.8.3 + repo: zipkin-reporter-java +- friendlyName: Zipkin Server and Core Library + module: zipkin + version: 2.14.0 + repo: zipkin +- friendlyName: Zipkin Layout Factory + module: zipkin-layout-factory + version: 0.0.5 + repo: zipkin-layout-factory + type: internal diff --git a/pages/downloads.md b/pages/downloads.md new file mode 100644 index 0000000..50402d6 --- /dev/null +++ b/pages/downloads.md @@ -0,0 +1,30 @@ +--- +title: Source Downloads +weight: 4 +--- + +## Source Downloads +{% assign baseUrl = 'https://www.apache.org/dyn/closer.cgi?path=incubator/zipkin' %} +{% assign downloads = site.data.downloads | where_exp: "download", "download.type != 'internal'" %} + +Apache Software Foundation (ASF) requires projects to have a downloads page, used in release announcements. Below are the locations of the official voted source releases per-project. + +If you like, you can [verify](https://www.apache.org/info/verification) the source downloads using Zipkin's [KEYS file](https://www.apache.org/dist/incubator/zipkin/KEYS). + +| Name | Version | Source | Signature | Checksum | +|:---- |:--------|:-------|:----------|:-------- |{% for download in downloads %}{% capture zip %}{{ baseUrl }}/{{ download.module }}/{{ download.version }}/apache-{{ download.repo }}-incubating-{{ download.version }}-source-release.zip{% endcapture %}{% capture releaseNotes %}https://github.com/apache/incubator-{{ download.repo }}/releases/tag/v{{ download.version }}{% endcapture %} +| {{ download.friendlyName }} | [{{ download.version }}]({{ releaseNotes }}) | [zip]({{ zip }}) | [asc]({{ zip }}.asc) | [sha512]({{ zip }}.sha512) |{% endfor %} +{: .wide-table} + +### Internal Tools +The following tools are not for general use, but are listed in order to comply with Apache Software Foundation (ASF) release policy. + +{% assign internalDownloads = site.data.downloads | where_exp: "download", "download.type == 'internal'" %} + +| Name | Version | Source | Signature | Checksum | +|:---- |:--------|:-------|:----------|:-------- |{% for download in internalDownloads %}{% capture zip %}{{ baseUrl }}/{{ download.module }}/{{ download.version }}/apache-{{ download.repo }}-incubating-{{ download.version }}-source-release.zip{% endcapture %}{% capture releaseNotes %}https://github.com/apache/incubator-{{ download.repo }}/releases/tag/v{{ download.version }}{% endcapture %} +| {{ download.friendlyName }} | [{{ download.version }}]({{ releaseNotes }}) | [zip]({{ zip }}) | [asc]({{ zip }}.asc) | [sha512]({{ zip }}.sha512) |{% endfor %} +{: .wide-table} + + +
