annotate src/python-mpmath.mk @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents c3ad8279a506
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5299
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
1 # This file is part of MXE.
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
2 # See index.html for further information.
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
3
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
4 PKG := python-mpmath
5891
c3ad8279a506 python-mpmath: Update to version 1.2.1 (bug #61134).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5493
diff changeset
5 $(PKG)_VERSION := 1.2.1
c3ad8279a506 python-mpmath: Update to version 1.2.1 (bug #61134).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5493
diff changeset
6 $(PKG)_CHECKSUM := ce8bd24606eeb02218b26304e6d99228919021f8
5299
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
7 $(PKG)_SUBDIR :=
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
8 $(PKG)_FILE := mpmath-$($(PKG)_VERSION).tar.gz
5891
c3ad8279a506 python-mpmath: Update to version 1.2.1 (bug #61134).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5493
diff changeset
9 $(PKG)_URL := https://files.pythonhosted.org/packages/95/ba/7384cb4db4ed474d4582944053549e02ec25da630810e4a23454bc9fa617/$($(PKG)_FILE)
5493
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
10 $(PKG)_DEPS :=
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
11
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
12 ifeq ($(MXE_WINDOWS_BUILD),yes)
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
13 $(PKG)_DEPS += msys2-python
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
14 $(PKG)_PYTHON_PKG_DIR := $(MSYS2_DIR)/usr/lib/python$(call SHORT_PKG_VERSION,msys2-python)/site-packages/
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
15 else
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
16 $(PKG)_PYTHON_PKG_DIR := $(3)$(HOST_PREFIX)/python
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
17 endif
5299
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
18
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
19 define $(PKG)_UPDATE
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
20 echo $($(PKG)_VERSION)
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
21 endef
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
22
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
23 define $(PKG)_BUILD
5493
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
24 mkdir -p '$($(PKG)_PYTHON_PKG_DIR)'
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
25 cd '$(1)/mpmath-$($(PKG)_VERSION)' && tar cf - mpmath | ( cd '$($(PKG)_PYTHON_PKG_DIR)'; tar xpf - )
dace3d372190 Use msys2 python3
John Donoghue <john.donoghue@ieee.org>
parents: 5299
diff changeset
26 cd '$(1)' && tar cf - --exclude=mpmath-$($(PKG)_VERSION)/mpmath . | ( cd '$($(PKG)_PYTHON_PKG_DIR)'; tar xpf - )
5299
47b1ea174cb0 Add python mppath package
John Donoghue
parents:
diff changeset
27 endef