Compare commits
27 Commits
Author | SHA256 | Date | |
---|---|---|---|
040d2aca98 | |||
c9e59fe971 | |||
8f53efdcfb | |||
67eb298778 | |||
479ad3f4b3 | |||
494d61ca63 | |||
bcb6d6a664 | |||
4cb58cf646 | |||
e9f68f91df | |||
a143fb3542 | |||
6993c0f7f6 | |||
af622f8333 | |||
f48c9863a9 | |||
64d6dbbb6a | |||
c9a3a55fa5 | |||
7f27bebe07 | |||
adade8a593 | |||
d735501d4a | |||
6df9150b08 | |||
9955417dbe | |||
b3240a1079 | |||
1b94672148 | |||
fe4b3a5d6d | |||
9cdda4c07a | |||
368e053cd0 | |||
677e47e685 | |||
01a6cb8fe1 |
BIN
micropython-1.22.2.tar.xz
(Stored with Git LFS)
BIN
micropython-1.22.2.tar.xz
(Stored with Git LFS)
Binary file not shown.
3
micropython-1.26.0.tar.xz
Normal file
3
micropython-1.26.0.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c43e4512fb2ada940a1d7808c84f313a161339b39c921292706b2f0163818062
|
||||||
|
size 16178748
|
@@ -1,3 +1,96 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 15 08:13:39 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||||
|
|
||||||
|
- Version 1.26.0
|
||||||
|
* Added machine.I2CTarget for creating I2C target devices on multiple ports.
|
||||||
|
* New MCU support: STM32N6xx (800 MHz, ML accel) & ESP32-C2 (WiFi + BLE).
|
||||||
|
* Major float accuracy boost (~28% → ~98%), constant folding in compiler.
|
||||||
|
* Optimized native/Viper emitters; reduced heap use for slices.
|
||||||
|
* Time functions standardized (1970–2099); new boards across ESP32, SAMD, STM32, Zephyr.
|
||||||
|
* ESP32: ESP-IDF 5.4.2, flash auto-detect, PCNT class, LAN8670 PHY.
|
||||||
|
* RP2: compressed errors, better lightsleep, hard IRQ timers.
|
||||||
|
* Zephyr v4.0.0: PWM, SoftI2C/SPI, BLE runtime services, boot.py/main.py support.
|
||||||
|
* mpremote adds fs tree, improved df, portable config paths.
|
||||||
|
* Updated lwIP, LittleFS, libhydrogen, stm32lib; expanded hardware/CI tests.
|
||||||
|
- Removed micropython-gcc15-string-initialization.patch as included upstream
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 10 20:22:14 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
|
||||||
|
|
||||||
|
- Add micropython-gcc15-string-initialization.patch: Refactor
|
||||||
|
string literal as array initializer
|
||||||
|
(gh#micropython/micropython#17269).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 26 11:53:07 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||||
|
|
||||||
|
- Add script to delete some 3rd party libraries from the src tar
|
||||||
|
that are not needed to build the unix port in order to
|
||||||
|
make the legal review easier
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 16 11:59:42 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||||
|
|
||||||
|
- Update to 1.25.0
|
||||||
|
* Add ROMFS support (see also "mpremote romfs" cmd with "query", "build", and "deploy" sub-commands)
|
||||||
|
ROMFS defines a read-only, memory-mappable, extensible filesystem that can contain arbitrary resources,
|
||||||
|
including precompiled mpy files, and allows executing bytecode directly from the filesystem.
|
||||||
|
This makes importing significantly faster and use a lot less memory.
|
||||||
|
* Inline assembler now supports 32-bit RISC-V assembly code via the newly implemented @micropython.asm_rv32 decorator.
|
||||||
|
* Datagram TLS (DTLS) is now supported by the tls module and enabled on the alif, mimxrt, renesas-ra, rp2, stm32 and unix ports.
|
||||||
|
* mpremote command-line tool now supports recursive remove via the new "rm -r"
|
||||||
|
* mpremote now supports relative URLs in the package.json for installing from the local filesystem
|
||||||
|
* "mpremote mount" has optimised readline support
|
||||||
|
* full support for tuples and start/end arguments in str.startswith() and str.endswith() methods
|
||||||
|
* vfs.mount() with no arguments now returns a list of mounted filesystems
|
||||||
|
* marshal module has been added with dumps() and loads() functions
|
||||||
|
* MicroPython native linker mpy_ld.py now includes support for linking in static libraries automatically
|
||||||
|
* native modules now support 32-bit RISC-V code
|
||||||
|
* force _FILE_OFFSET_BITS=64 to fix 32-bit file ABI
|
||||||
|
* enable VfsRom on standard and coverage variants
|
||||||
|
* use the bare metal mbedTLS config in the coverage buiid
|
||||||
|
* add recursive mutex support
|
||||||
|
* main: add coverage test for mounting ROMFS filesystem at startup
|
||||||
|
- Drop fix_re_sub_test_on_python3.13.patch as not needed anymore
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 17 12:24:36 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||||
|
|
||||||
|
- Add fix_re_sub_test_on_python3.13.patch to fix re_sub test
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 18 11:48:17 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||||
|
|
||||||
|
- Add subpackage mpy-tools which contains mpy-cross and mpy-tool
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 7 10:33:24 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||||
|
|
||||||
|
- Fix build for 15.6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 5 23:17:33 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||||
|
|
||||||
|
- Build mpremote tool
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 30 19:36:52 UTC 2024 - Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
|
||||||
|
|
||||||
|
- Update to 1.24.1:
|
||||||
|
* https://github.com/micropython/micropython/releases/tag/v1.24.1
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 29 18:46:03 UTC 2024 - Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
|
||||||
|
|
||||||
|
- Update to 1.24.0:
|
||||||
|
* https://github.com/micropython/micropython/releases/tag/v1.24.0
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 18 11:48:47 UTC 2024 - Yunus Acar <yunus.acar@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.23.0:
|
||||||
|
* https://github.com/micropython/micropython/releases/tag/v1.23.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 21 09:06:25 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
|
Tue May 21 09:06:25 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package micropython
|
# spec file for package micropython
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,24 +16,54 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define pythons python3
|
||||||
|
%{?sle15_python_module_pythons}
|
||||||
|
|
||||||
Name: micropython
|
Name: micropython
|
||||||
Version: 1.22.2
|
Version: 1.26.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Implementation of Python 3 with very low memory footprint
|
Summary: Implementation of Python 3 with very low memory footprint
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://micropython.org/
|
URL: https://micropython.org/
|
||||||
Source: https://micropython.org/resources/source/%{name}-%{version}.tar.xz
|
Source0: %{name}-%{version}.tar.xz
|
||||||
|
Source1: prepare.sh
|
||||||
BuildRequires: openssl
|
BuildRequires: openssl
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: python3
|
BuildRequires: python3
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
BuildRequires: pkgconfig(libffi)
|
BuildRequires: pkgconfig(libffi)
|
||||||
|
|
||||||
Recommends: micropython-lib
|
Recommends: micropython-lib
|
||||||
ExcludeArch: %{ix86} %{arm} ppc64 ppc64le
|
ExcludeArch: %{ix86} %{arm} ppc64 ppc64le
|
||||||
|
|
||||||
|
%package -n mpremote
|
||||||
|
Summary: MicroPython remote control
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: %{python_module hatch-requirements-txt}
|
||||||
|
BuildRequires: %{python_module hatchling}
|
||||||
|
Requires: python3-pyserial >= 3.3
|
||||||
|
BuildRequires: %{python_module base >= 3.6}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
|
|
||||||
|
%package -n mpy-tools
|
||||||
|
Summary: Tools for creating and handling precompiled .mpy files for MicroPython
|
||||||
|
Provides: mpy-cross
|
||||||
|
Provides: mpy-tool
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A lean and efficient Python implementation for microcontrollers and constrained systems
|
A lean and efficient Python implementation for microcontrollers and constrained systems
|
||||||
|
|
||||||
|
%description -n mpremote
|
||||||
|
This CLI tool provides an integrated set of utilities to remotely interact with
|
||||||
|
and automate a MicroPython device over a serial connection.
|
||||||
|
|
||||||
|
%description -n mpy-tools
|
||||||
|
MicroPython tools like the mpy-cross compiler for compiling.py files to .mpy files.
|
||||||
|
Also mpy-tool for inspecting .mpy files.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
|
|
||||||
@@ -42,14 +72,37 @@ sed -i -e "s:/usr/lib/micropython:%{_prefix}/lib/micropython:g" "ports/unix/main
|
|||||||
%define make_flags V=1 MICROPY_PY_BTREE=0 MICROPY_PY_USSL=0
|
%define make_flags V=1 MICROPY_PY_BTREE=0 MICROPY_PY_USSL=0
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
# micropython
|
||||||
export CFLAGS="%optflags -Wno-dangling-pointer"
|
export CFLAGS="%optflags -Wno-dangling-pointer"
|
||||||
%make_build -C mpy-cross
|
%make_build -C mpy-cross
|
||||||
%make_build -C ports/unix STRIP=true
|
%make_build -C ports/unix STRIP=true
|
||||||
|
pushd tools/mpremote
|
||||||
|
# inject version info as there is no git checkout to get tags from
|
||||||
|
echo "VERSION = '%{version}'" > version.py
|
||||||
|
sed -i -e 's/source = "vcs"/path = "version.py"/' pyproject.toml
|
||||||
|
# remove useless shebang lines
|
||||||
|
sed -i -e 's_#!/usr/bin/env python3__' mpremote/{__main__,transport,transport_serial}.py
|
||||||
|
%pyproject_wheel
|
||||||
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
# micropython
|
||||||
install -d %{buildroot}%{_bindir}
|
install -d %{buildroot}%{_bindir}
|
||||||
install -t %{buildroot}%{_bindir} ports/unix/build-standard/micropython
|
install -t %{buildroot}%{_bindir} ports/unix/build-standard/micropython
|
||||||
|
|
||||||
|
# mpremote
|
||||||
|
pushd tools/mpremote
|
||||||
|
%pyproject_install
|
||||||
|
popd
|
||||||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
# remove pycache to get rid of rpmlint "W: python-bytecode-inconsistent-mtime" warnings
|
||||||
|
%python_expand rm -rf %{buildroot}%{$python_sitelib}/mpremote/__pycache__
|
||||||
|
|
||||||
|
# mpy-tools
|
||||||
|
install -m755 -D -v mpy-cross/build/mpy-cross %{buildroot}%{_bindir}/mpy-cross
|
||||||
|
install -m755 -D -v tools/mpy-tool.py %{buildroot}%{_bindir}/mpy-tool
|
||||||
|
%python3_fix_shebang
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%ifnarch x86_64
|
%ifnarch x86_64
|
||||||
# 2 tests fail: float_parse float_parse_doubleprec
|
# 2 tests fail: float_parse float_parse_doubleprec
|
||||||
@@ -57,12 +110,25 @@ install -t %{buildroot}%{_bindir} ports/unix/build-standard/micropython
|
|||||||
rm -f tests/float/float_parse.py
|
rm -f tests/float/float_parse.py
|
||||||
rm -f tests/float/float_parse_doubleprec.py
|
rm -f tests/float/float_parse_doubleprec.py
|
||||||
%endif
|
%endif
|
||||||
export MICROPY_CPYTHON3=python3
|
export MICROPY_CPYTHON3=python%python_version
|
||||||
make -C ports/unix PYTHON=%{_bindir}/python3 V=1 test
|
make -C ports/unix PYTHON=%{_bindir}/python%python_version V=1 test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc docs/unix/*
|
%doc docs/unix/*
|
||||||
%{_bindir}/micropython
|
%{_bindir}/micropython
|
||||||
|
|
||||||
|
%files -n mpremote
|
||||||
|
%license tools/mpremote/LICENSE
|
||||||
|
%doc tools/mpremote/README.md
|
||||||
|
%{_prefix}/lib/python%{python_version}/site-packages/mpremote
|
||||||
|
%{_prefix}/lib/python%{python_version}/site-packages/mpremote-%{version}.dist-info
|
||||||
|
%{_bindir}/mpremote
|
||||||
|
|
||||||
|
%files -n mpy-tools
|
||||||
|
%doc mpy-cross/README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{_bindir}/mpy-cross
|
||||||
|
%{_bindir}/mpy-tool
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
36
prepare.sh
Normal file
36
prepare.sh
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# this removes some 3rd party libraries from the src tar that are not needed to build the unix port
|
||||||
|
# in order to make the legal review easier
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
version=$(rpmspec --query micropython.spec | head -1 | cut -d- -f2)
|
||||||
|
|
||||||
|
rm -fv micropython-*.tar.xz
|
||||||
|
wget "https://micropython.org/resources/source/micropython-${version}.tar.xz" -O "micropython-${version}.tar.xz"
|
||||||
|
tar xf "micropython-${version}.tar.xz"
|
||||||
|
pushd "micropython-${version}"
|
||||||
|
rm -rv "lib/fsp"
|
||||||
|
rm -rv "lib/alif-security-toolkit"
|
||||||
|
rm -rv "lib/alif_ensemble-cmsis-dfp"
|
||||||
|
rm -rv "lib/asf4"
|
||||||
|
rm -rv "lib/cyw43-driver"
|
||||||
|
rm -rv "lib/axtls"
|
||||||
|
rm -rv "lib/tinyusb"
|
||||||
|
rm -rv "lib/stm32lib"
|
||||||
|
rm -rv "lib/btstack"
|
||||||
|
rm -rv "lib/pico-sdk"
|
||||||
|
rm -rv "lib/nrfx"
|
||||||
|
rm -rv "lib/lwip"
|
||||||
|
rm -rv "lib/libffi"
|
||||||
|
rm -rv "lib/protobuf-c"
|
||||||
|
rm -rv "lib/nxp_driver"
|
||||||
|
rm -rv "lib/arduino-lib"
|
||||||
|
rm -rv "lib/mynewt-nimble"
|
||||||
|
pushd "ports"
|
||||||
|
find . -maxdepth 1 -type d | grep -v unix | grep -v esp | grep -v rp2 | grep -v minimal | grep -v qemu | grep -v webassembly | xargs rm -rv || :
|
||||||
|
popd
|
||||||
|
popd
|
||||||
|
tar caf "micropython-${version}.tar.xz" "micropython-${version}"
|
||||||
|
rm -r "micropython-${version}"
|
Reference in New Issue
Block a user