Skip to content

Commit ce66e70

Browse files
jimmodpgeorge
authored andcommitted
all: Replace metadata.txt with manifest.py.
Uses the new require()/package()/module() functions from manifestfile.py. Add manifest.py for iperf3 and pyjwt. Signed-off-by: Jim Mussared <[email protected]>
1 parent 8d7753d commit ce66e70

File tree

200 files changed

+573
-372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+573
-372
lines changed

micropython/bluetooth/aioble/manifest.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import os
2-
31
_files = (
42
"__init__.py",
53
"core.py",
@@ -26,8 +24,4 @@
2624
if options.security:
2725
_files += ("security.py",)
2826

29-
freeze(
30-
".",
31-
tuple(os.path.join("aioble", f) for f in _files),
32-
opt=3,
33-
)
27+
package("aioble", files=_files)

micropython/test.support/manifest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
metadata(version="0.1.3")
2+
3+
package("test")

micropython/test.support/metadata.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
metadata(description="HTTP client module for MicroPython uasyncio module", version="0.5.1")
2+
3+
# Originally written by Paul Sokolovsky.
4+
5+
module("uaiohttpclient.py")

micropython/uaiohttpclient/metadata.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

micropython/ucontextlib/manifest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
metadata(
2+
description="Minimal subset of contextlib for MicroPython low-memory ports", version="0.1.1"
3+
)
4+
5+
module("ucontextlib.py")

micropython/ucontextlib/metadata.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

micropython/udnspkt/manifest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
metadata(description="Make and parse DNS packets (Sans I/O approach).", version="0.1")
2+
3+
# Originally written by Paul Sokolovsky.
4+
5+
module("udnspkt.py")

micropython/udnspkt/metadata.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

micropython/umqtt.robust/manifest.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
metadata(
2+
description='Lightweight MQTT client for MicroPython ("robust" version).', version="1.0.1"
3+
)
4+
5+
# Originally written by Paul Sokolovsky.
6+
7+
package("umqtt")

0 commit comments

Comments
 (0)