From db97fc5cc5735a8ccf2d8dd2a8ab2637306aa498 Mon Sep 17 00:00:00 2001 From: WendelHime Date: Sun, 25 Jun 2023 22:08:13 -0300 Subject: [PATCH] micropython: update to 1.20.0 --- srcpkgs/micropython/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/micropython/template b/srcpkgs/micropython/template index b3501120e4584..fa1171c696812 100644 --- a/srcpkgs/micropython/template +++ b/srcpkgs/micropython/template @@ -1,6 +1,6 @@ # Template file for 'micropython' pkgname=micropython -version=1.14 +version=1.20.0 revision=1 build_wrksrc=ports/unix hostmakedepends="pkg-config python3" @@ -10,7 +10,7 @@ maintainer="Orphaned " license="MIT" homepage="https://micropython.org/" distfiles="https://github.com/micropython/micropython/releases/download/v${version}/micropython-${version}.tar.xz" -checksum=97306156fdeab120a1244626c75a929bb820722afdfc1317dbd5dadef388d94c +checksum=098ef8e40abdc62551b5460d0ffe9489074240c0cb5589ca3c3a425551beb9bf case "$XBPS_TARGET_MACHINE" in arm*-musl) nopie=yes ;; # building with PIE creates text relocations in the binary @@ -29,10 +29,10 @@ 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 + LDFLAGS_EXTRA="${LDFLAGS}" STRIP=echo ${makejobs} all } do_install() { - vbin micropython + vbin build-standard/micropython vlicense ../../LICENSE }