annotate src/msys2-python.mk @ 5502:beb3380b1665

* src/msys2-python.mk: remove 64bit dist tools
author John Donoghue <john.donoghue@ieee.org>
date Thu, 30 Jul 2020 10:11:45 -0400
parents dace3d372190
children 38d42e4346af
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5493
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := msys2-python
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_NAME := python
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6 $(PKG)_IGNORE :=
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 $(PKG)_VERSION := 3.8.2-1
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 $(PKG)_x86_64_CS := 338c9877b879a00b39d661a7513f62897413791d
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 $(PKG)_i686_CS := 551ce598052dc6bd1f8116f667c4856426545268
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 $(PKG)_CS := $($(PKG)_$(MSYS2_ARCH)_CS)
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 $(PKG)_CHECKSUM := $($(PKG)_CS)
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 $(PKG)_SUBDIR :=
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 $(PKG)_FILE := $($(PKG)_NAME)-$($(PKG)_VERSION)-$(MSYS2_ARCH).pkg.tar.xz
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 $(PKG)_URL := $(MSYS2_URL)/$($(PKG)_FILE)
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 $(PKG)_DEPS :=
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17
5502
beb3380b1665 * src/msys2-python.mk: remove 64bit dist tools
John Donoghue <john.donoghue@ieee.org>
parents: 5493
diff changeset
18 $(PKG)_PYTHON_PKG_DIR := $(MSYS2_DIR)/usr/lib/python$(call SHORT_PKG_VERSION,msys2-python)
beb3380b1665 * src/msys2-python.mk: remove 64bit dist tools
John Donoghue <john.donoghue@ieee.org>
parents: 5493
diff changeset
19
5493
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
20 define $(PKG)_UPDATE
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
21 $(MSYS2_PKG_UPDATE)
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
22 endef
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
23
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
24 define $(PKG)_BUILD
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
25 $(MSYS2_PKG_BUILD)
5502
beb3380b1665 * src/msys2-python.mk: remove 64bit dist tools
John Donoghue <john.donoghue@ieee.org>
parents: 5493
diff changeset
26 if [ "$(ENABLE_WINDOWS_64)" == "no" ]; then \
beb3380b1665 * src/msys2-python.mk: remove 64bit dist tools
John Donoghue <john.donoghue@ieee.org>
parents: 5493
diff changeset
27 rm -f "$($(PKG)_PYTHON_PKG_DIR)/distutils/command/"wininst*-amd64.exe; \
beb3380b1665 * src/msys2-python.mk: remove 64bit dist tools
John Donoghue <john.donoghue@ieee.org>
parents: 5493
diff changeset
28 fi
5493
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
29 endef