micropython: update to 1.21.0.

Closes 
This commit is contained in:
m3tav3rse 2023-10-11 12:12:18 +02:00 committed by classabbyamp
parent 9ef4d94174
commit bb65429153

View file

@ -1,16 +1,16 @@
# Template file for 'micropython'
pkgname=micropython
version=1.14
version=1.21.0
revision=1
build_wrksrc=ports/unix
hostmakedepends="pkg-config python3"
makedepends="libffi-devel"
short_desc="Implementation of Python 3.x for microcontrollers"
short_desc="Python implementation for microcontrollers and constrained systems"
maintainer="Orphaned <orphan@voidlinux.org>"
license="MIT"
homepage="https://micropython.org/"
distfiles="https://github.com/micropython/micropython/releases/download/v${version}/micropython-${version}.tar.xz"
checksum=97306156fdeab120a1244626c75a929bb820722afdfc1317dbd5dadef388d94c
checksum=abd2152613559d3f44728668346e78be9d93458133a03b700baf222c322fd4d5
case "$XBPS_TARGET_MACHINE" in
arm*-musl) nopie=yes ;; # building with PIE creates text relocations in the binary
@ -26,13 +26,12 @@ pre_configure() {
}
do_build() {
unset CPP
make -C ../../mpy-cross V=1 STRIP=echo ${makejobs}
make V=1 CC=${CC} CFLAGS_EXTRA="${CPPFLAGS} ${CFLAGS}" \
LDFLAGS_EXTRA="${LDFLAGS}" STRIP=echo ${makejobs} axtls all
CFLAGS= make -C ../../mpy-cross V=1 CFLAGS_EXTRA=${HOST_CFLAGS} STRIP= ${makejobs}
make V=1 CC=${CC} CFLAGS_EXTRA="${CFLAGS}" \
LDFLAGS_EXTRA="${LDFLAGS}" STRIP= ${makejobs} all
}
do_install() {
vbin micropython
vbin build-standard/micropython
vlicense ../../LICENSE
}