diff options
author | Jeffery To <jeffery.to@gmail.com> | 2023-05-30 03:24:54 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2023-06-02 21:39:58 +0800 |
commit | 9390bd0262ad9f0775b76984d1c8f29b9a35584e (patch) | |
tree | 138b1e3a2e246b38e2d89abfbe209b79735790a9 /lang/python/micropython-lib/files/micropython-unix | |
parent | a4ae38494f0c12799b343eb521ca13123c0bb4e3 (diff) |
micropython-lib: Update to master, split target package
The package has been reworked to install the same files that are
available to be downloaded/installed by mip, the package manager new to
MicroPython 1.20.0.
This also splits the original target package into four:
* micropython-lib
* Includes packages common to all MicroPython ports (python-stdlib,
python-ecosys, micropython)
* Contains mpy bytecode files
* micropython-lib-src
* Includes packages common to all MicroPython ports (python-stdlib,
python-ecosys, micropython)
* Contains py source files
* micropython-lib-unix
* Includes packages specific to the MicroPython Unix port (unix-ffi)
* Contains mpy bytecode files
* Installs a specific launcher (micropython-unix) that adds the Unix
package directory into MicroPython's library path
* micropython-lib-unix-src
* Includes packages specific to the MicroPython Unix port (unix-ffi)
* Contains py source files
This also updates the package license, title, and description.
Patches:
* 001-build-unix-ffi.patch
This enables the repo build script to also build the Unix-specific
packages. Not sure if upstream is open to accepting this since the
Unix-specific packages don't fit well into the existing package
distribution mechanism.
* 002-add-unix-ffi-os-path.patch and 003-add-unix-ffi-uu.patch
These fix instances where the unix-ffi version of the os package is
overridden by the python-stdlib version. These have been submitted to
upstream: https://github.com/micropython/micropython-lib/pull/672
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'lang/python/micropython-lib/files/micropython-unix')
-rw-r--r-- | lang/python/micropython-lib/files/micropython-unix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/python/micropython-lib/files/micropython-unix b/lang/python/micropython-lib/files/micropython-unix new file mode 100644 index 000000000..a0c372cf4 --- /dev/null +++ b/lang/python/micropython-lib/files/micropython-unix @@ -0,0 +1,3 @@ +#!/bin/sh +export MICROPYPATH=".frozen:~/.micropython/lib:/usr/lib/micropython/unix:/usr/lib/micropython" +exec micropython "$@" |