Skip to content
This repository has been archived by the owner on Nov 15, 2019. It is now read-only.

Adds sources download information for all projects except Brave #17

Merged
merged 2 commits into from
Jun 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions _data/downloads.yml
Original file line number Diff line number Diff line change
@@ -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
28 changes: 28 additions & 0 deletions pages/downloads.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: Source Downloads
weight: 4
---
{% 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}