Skip to content

Commit e646898

Browse files
committed
feat(binaries): remove download information
1 parent fc34337 commit e646898

6 files changed

Lines changed: 2 additions & 63 deletions

File tree

Makefile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: help deps regen-apis license ubuntu-build wheezy-build clean
1+
.PHONY: help deps regen-apis license clean
22
.SUFFIXES:
33

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

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

8077
license: LICENSE.md
8178

82-
wheezy-build:
83-
@-rm -Rf WHEEZY_BUILD_OUTPUT
84-
@mkdir -p $(WHEEZY_BUILD_OUTPUT)
85-
docker run -v $(PWD):/source -v $(PWD)/$(WHEEZY_BUILD_OUTPUT):/build-result $(WHEEZY_IMAGE) /source/src/bash/docker-build-cli.bash
86-
8779
regen-apis: | clean-all-api clean-all-cli gen-all-api gen-all-cli license
8880

8981
clean: clean-all-api clean-all-cli docs-all-clean

src/bash/docker-build-cli.bash

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/bash/linux-deploy.bash

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/bash/linux-deployment-to-downloads.bash

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/bash/osx-deploy.bash

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/mako/cli/README.md.mako

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,7 @@ Everything else about the *${util.canonical_name()}* API can be found at the
2121
[official documentation site](${documentationLink}).
2222
% endif
2323

24-
# Downloads
25-
26-
You can download the pre-compiled 64bit binaries for the following platforms:
27-
28-
% for os_name in make.platforms:
29-
* ![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)})
30-
% endfor
24+
# Source Code
3125

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

0 commit comments

Comments
 (0)