annotate src/build-setuptools.mk @ 4480:67c0ec94a9eb

New packages: build-setuptools, build-markupsafe, and build-mako * src/build-mako.mk, src/build-markupsafe.mk, src/build-setuptools.mk: New files. * index.html: Update.
author John W. Eaton <jwe@octave.org>
date Fri, 29 Sep 2017 16:30:49 -0400
parents
children fb50ae69121c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4480
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-setuptools
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 $(PKG)_VERSION := 36.5.0
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(PKG)_CHECKSUM := 4edca327d0666d6956d05cef8fd6dfcce6e701db
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := setuptools-$($(PKG)_VERSION)
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := setuptools-$($(PKG)_VERSION).zip
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := https://pypi.python.org/packages/a4/c8/9a7a47f683d54d83f648d37c3e180317f80dc126a304c45dc6663246233a/$($(PKG)_FILE)
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS := build-python
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo $($(PKG)_VERSION)
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 endef
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_BUILD
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 cd '$(1)' && python setup.py install
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 endef