mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
testing/micropython: fix build with python3
This commit is contained in:
parent
492988e0ee
commit
c460687f37
2 changed files with 53 additions and 1 deletions
|
@ -15,6 +15,7 @@ makedepends="libffi-dev python3"
|
|||
subpackages="$pkgname-cross"
|
||||
source="${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz
|
||||
0000-unix-mpconfigport.patch
|
||||
python3.patch
|
||||
"
|
||||
builddir="${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
|
@ -46,4 +47,5 @@ cross() {
|
|||
}
|
||||
|
||||
sha512sums="d276dc9a300e400f5fd5742bfc8c641c0af2d3b7f3ae9221b811100d85e9c2a6c6c558775183c58dd4be39a31284c596c0e98c9bb2c8e60ce4cf0d83434d0a47 micropython-1.9.3.tar.gz
|
||||
4c1de6a6477453e846998565402c69d1dd716cf692a3bb55aa16b6991722a94d8364c05f0603b981a7dd9e9af577a3f46910a60d501513af547ebbf3ed574711 0000-unix-mpconfigport.patch"
|
||||
4c1de6a6477453e846998565402c69d1dd716cf692a3bb55aa16b6991722a94d8364c05f0603b981a7dd9e9af577a3f46910a60d501513af547ebbf3ed574711 0000-unix-mpconfigport.patch
|
||||
8dbdc52e09f70b5eea461257ebc00031ab9d2c91a9bdbd7522e4ffd1eddddcd0dab3a171361e776543abca827a2f5d6ad01b06c10c8635db861bf79bfa065338 python3.patch"
|
||||
|
|
50
testing/micropython/python3.patch
Normal file
50
testing/micropython/python3.patch
Normal file
|
@ -0,0 +1,50 @@
|
|||
diff --git a/lib/memzip/make-memzip.py b/lib/memzip/make-memzip.py
|
||||
index 9730f5e..3a1f7a5 100755
|
||||
--- a/lib/memzip/make-memzip.py
|
||||
+++ b/lib/memzip/make-memzip.py
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/env python3
|
||||
#
|
||||
# Takes a directory of files and zips them up (as uncompressed files).
|
||||
# This then gets converted into a C data structure which can be read
|
||||
diff --git a/ports/teensy/make-pins.py b/ports/teensy/make-pins.py
|
||||
index 0f6c5f2..5d21d8f 100755
|
||||
--- a/ports/teensy/make-pins.py
|
||||
+++ b/ports/teensy/make-pins.py
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/env python3
|
||||
"""Creates the pin file for the Teensy."""
|
||||
|
||||
from __future__ import print_function
|
||||
diff --git a/tools/make-frozen.py b/tools/make-frozen.py
|
||||
index 1051b52..06ee7a3 100755
|
||||
--- a/tools/make-frozen.py
|
||||
+++ b/tools/make-frozen.py
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/env python3
|
||||
#
|
||||
# Create frozen modules structure for MicroPython.
|
||||
#
|
||||
diff --git a/tools/pyboard.py b/tools/pyboard.py
|
||||
index 16ee41f..17b7f98 100755
|
||||
--- a/tools/pyboard.py
|
||||
+++ b/tools/pyboard.py
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/env python3
|
||||
#
|
||||
# This file is part of the MicroPython project, http://micropython.org/
|
||||
#
|
||||
diff --git a/tools/pydfu.py b/tools/pydfu.py
|
||||
index 8c0220d..55ea952 100755
|
||||
--- a/tools/pydfu.py
|
||||
+++ b/tools/pydfu.py
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/env python3
|
||||
# This file is part of the OpenMV project.
|
||||
# Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com>
|
||||
# This work is licensed under the MIT license, see the file LICENSE for
|
Loading…
Add table
Add a link
Reference in a new issue