Skip to content

Commit

Permalink
feat(binaries): remove download information
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Dec 24, 2016
1 parent fc34337 commit e646898
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 63 deletions.
10 changes: 1 addition & 9 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: help deps regen-apis license ubuntu-build wheezy-build clean
.PHONY: help deps regen-apis license clean
.SUFFIXES:

VENV = .virtualenv/virtualenv.py
Expand All @@ -9,8 +9,6 @@ MAKO_RENDER := etc/bin/mako-render
API_VERSION_GEN := etc/bin/api_version_to_yaml.py
TPL := $(PYTHON) $(MAKO_RENDER)
MKDOCS := $(shell pwd)/$(VENV_DIR)/bin/mkdocs
WHEEZY_IMAGE := byron/rust-binaries.nightly.debian-wheezy
WHEEZY_BUILD_OUTPUT := build/wheezy-x64

MAKO_SRC = src/mako
RUST_SRC = src/rust
Expand Down Expand Up @@ -42,7 +40,6 @@ help:
$(info help-cli - show all cli targets to build individually)
$(info docs-all - cargo-doc on all APIs and associates, assemble them together and generate index)
$(info docs-all-clean - remove the entire set of generated documentation)
$(info wheezy-build - build --release all CLI on ubuntu using docker)
$(info github-pages - invoke ghp-import on all documentation)
$(info regen-apis - clear out all generated apis, and regenerate them)
$(info license - regenerate the main license file)
Expand Down Expand Up @@ -79,11 +76,6 @@ LICENSE.md: $(MAKO_SRC)/LICENSE.md.mako $(API_SHARED_INFO) $(MAKO_RENDER)

license: LICENSE.md

wheezy-build:
@-rm -Rf WHEEZY_BUILD_OUTPUT
@mkdir -p $(WHEEZY_BUILD_OUTPUT)
docker run -v $(PWD):/source -v $(PWD)/$(WHEEZY_BUILD_OUTPUT):/build-result $(WHEEZY_IMAGE) /source/src/bash/docker-build-cli.bash

regen-apis: | clean-all-api clean-all-cli gen-all-api gen-all-cli license

clean: clean-all-api clean-all-cli docs-all-clean
Expand Down
6 changes: 0 additions & 6 deletions src/bash/docker-build-cli.bash

This file was deleted.

9 changes: 0 additions & 9 deletions src/bash/linux-deploy.bash

This file was deleted.

19 changes: 0 additions & 19 deletions src/bash/linux-deployment-to-downloads.bash

This file was deleted.

13 changes: 0 additions & 13 deletions src/bash/osx-deploy.bash

This file was deleted.

8 changes: 1 addition & 7 deletions src/mako/cli/README.md.mako
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,7 @@ Everything else about the *${util.canonical_name()}* API can be found at the
[official documentation site](${documentationLink}).
% endif

# Downloads

You can download the pre-compiled 64bit binaries for the following platforms:

% for os_name in make.platforms:
* ![icon](${url_info.asset_urls.get('%s_img' % os_name)}) [${os_name}](${program_download_url(url_info.download_base_url, 'cli', cargo.build_version, os_name, name, version)})
% endfor
# Source Code

Find the source code [on github](${util.github_source_root_url()}).

Expand Down

0 comments on commit e646898

Please sign in to comment.