annotate src/build-setuptools.mk @ 7207:9ed6500e56d3 default tip @

maint: Merge release to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 17 May 2024 20:16:41 +0200
parents 3274f76b8b48
children
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 :=
7142
3274f76b8b48 * src/build-setuptools.mk: update to version 69.2.0
Markus Mützel <markus.muetzel@gmx.de>
parents: 5901
diff changeset
6 $(PKG)_VERSION := 69.2.0
3274f76b8b48 * src/build-setuptools.mk: update to version 69.2.0
Markus Mützel <markus.muetzel@gmx.de>
parents: 5901
diff changeset
7 $(PKG)_CHECKSUM := aebbbea52c78c80628559decae0cff7046a7f91d
4480
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)
5863
2ddae0f46cbc build-setuptools: Update to version 56.2.0.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5861
diff changeset
9 $(PKG)_FILE := setuptools-$($(PKG)_VERSION).tar.gz
7142
3274f76b8b48 * src/build-setuptools.mk: update to version 69.2.0
Markus Mützel <markus.muetzel@gmx.de>
parents: 5901
diff changeset
10 $(PKG)_URL := https://files.pythonhosted.org/packages/4d/5b/dc575711b6b8f2f866131a40d053e30e962e633b332acf7cd2c24843d83d/$($(PKG)_FILE)
5901
f062bdb4f0a3 Rename build-python3 to build-python.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5863
diff changeset
11 $(PKG)_DEPS := build-python
4480
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
5901
f062bdb4f0a3 Rename build-python3 to build-python.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5863
diff changeset
19 cd '$(1)' && $(MXE_PYTHON) setup.py install --prefix='$(BUILD_TOOLS_PREFIX)'
4480
67c0ec94a9eb New packages: build-setuptools, build-markupsafe, and build-mako
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 endef