From afc9d0a541c2d12adfcf04aa1dfb7aed58a39ff7 Mon Sep 17 00:00:00 2001 From: Jim Mussared Date: Thu, 6 Apr 2023 12:05:44 +1000 Subject: [PATCH] micropython: Add missing metadata for packages. Signed-off-by: Jim Mussared --- micropython/drivers/bus/onewire/manifest.py | 2 ++ micropython/drivers/codec/wm8960/manifest.py | 2 ++ micropython/drivers/display/lcd160cr/manifest.py | 2 ++ micropython/drivers/display/ssd1306/manifest.py | 2 ++ micropython/drivers/led/neopixel/manifest.py | 2 ++ micropython/drivers/radio/nrf24l01/manifest.py | 2 ++ micropython/drivers/sensor/dht/manifest.py | 2 ++ micropython/drivers/sensor/ds18x20/manifest.py | 2 ++ micropython/drivers/sensor/hts221/manifest.py | 2 ++ micropython/drivers/sensor/lps22h/manifest.py | 2 ++ micropython/drivers/storage/sdcard/manifest.py | 2 ++ micropython/net/ntptime/manifest.py | 2 ++ micropython/net/webrepl/manifest.py | 2 ++ 13 files changed, 26 insertions(+) diff --git a/micropython/drivers/bus/onewire/manifest.py b/micropython/drivers/bus/onewire/manifest.py index 44edcac6..32e2b57d 100644 --- a/micropython/drivers/bus/onewire/manifest.py +++ b/micropython/drivers/bus/onewire/manifest.py @@ -1 +1,3 @@ +metadata(description="Onewire driver.", version="0.1.0") + module("onewire.py", opt=3) diff --git a/micropython/drivers/codec/wm8960/manifest.py b/micropython/drivers/codec/wm8960/manifest.py index 4ff5d9fc..2184ba54 100644 --- a/micropython/drivers/codec/wm8960/manifest.py +++ b/micropython/drivers/codec/wm8960/manifest.py @@ -1 +1,3 @@ +metadata(description="WM8960 codec.", version="0.1.0") + module("wm8960.py", opt=3) diff --git a/micropython/drivers/display/lcd160cr/manifest.py b/micropython/drivers/display/lcd160cr/manifest.py index 62a19eb2..5ce05571 100644 --- a/micropython/drivers/display/lcd160cr/manifest.py +++ b/micropython/drivers/display/lcd160cr/manifest.py @@ -1,3 +1,5 @@ +metadata(description="LCD160CR driver.", version="0.1.0") + options.defaults(test=False) module("lcd160cr.py", opt=3) diff --git a/micropython/drivers/display/ssd1306/manifest.py b/micropython/drivers/display/ssd1306/manifest.py index 51580080..80253be4 100644 --- a/micropython/drivers/display/ssd1306/manifest.py +++ b/micropython/drivers/display/ssd1306/manifest.py @@ -1 +1,3 @@ +metadata(description="SSD1306 OLED driver.", version="0.1.0") + module("ssd1306.py", opt=3) diff --git a/micropython/drivers/led/neopixel/manifest.py b/micropython/drivers/led/neopixel/manifest.py index 561d1957..02a31900 100644 --- a/micropython/drivers/led/neopixel/manifest.py +++ b/micropython/drivers/led/neopixel/manifest.py @@ -1 +1,3 @@ +metadata(description="WS2812/NeoPixel driver.", version="0.1.0") + module("neopixel.py", opt=3) diff --git a/micropython/drivers/radio/nrf24l01/manifest.py b/micropython/drivers/radio/nrf24l01/manifest.py index babdb7a5..474d422f 100644 --- a/micropython/drivers/radio/nrf24l01/manifest.py +++ b/micropython/drivers/radio/nrf24l01/manifest.py @@ -1 +1,3 @@ +metadata(description="nrf24l01 2.4GHz radio driver.", version="0.1.0") + module("nrf24l01.py", opt=3) diff --git a/micropython/drivers/sensor/dht/manifest.py b/micropython/drivers/sensor/dht/manifest.py index 72a4e0d2..964e8e25 100644 --- a/micropython/drivers/sensor/dht/manifest.py +++ b/micropython/drivers/sensor/dht/manifest.py @@ -1 +1,3 @@ +metadata(description="DHT11 & DHT22 temperature/humidity sensor driver.", version="0.1.0") + module("dht.py", opt=3) diff --git a/micropython/drivers/sensor/ds18x20/manifest.py b/micropython/drivers/sensor/ds18x20/manifest.py index 01f7ae03..6ced882f 100644 --- a/micropython/drivers/sensor/ds18x20/manifest.py +++ b/micropython/drivers/sensor/ds18x20/manifest.py @@ -1,2 +1,4 @@ +metadata(description="DS18x20 temperature sensor driver.", version="0.1.0") + require("onewire") module("ds18x20.py", opt=3) diff --git a/micropython/drivers/sensor/hts221/manifest.py b/micropython/drivers/sensor/hts221/manifest.py index 5f179266..d85edaac 100644 --- a/micropython/drivers/sensor/hts221/manifest.py +++ b/micropython/drivers/sensor/hts221/manifest.py @@ -1 +1,3 @@ +metadata(description="HTS221 temperature/humidity sensor driver.", version="0.1.0") + module("hts221.py", opt=3) diff --git a/micropython/drivers/sensor/lps22h/manifest.py b/micropython/drivers/sensor/lps22h/manifest.py index d30108d9..971cbfdc 100644 --- a/micropython/drivers/sensor/lps22h/manifest.py +++ b/micropython/drivers/sensor/lps22h/manifest.py @@ -1 +1,3 @@ +metadata(description="LPS22H temperature/pressure sensor driver.", version="0.1.0") + module("lps22h.py", opt=3) diff --git a/micropython/drivers/storage/sdcard/manifest.py b/micropython/drivers/storage/sdcard/manifest.py index e584b97d..cb4647ee 100644 --- a/micropython/drivers/storage/sdcard/manifest.py +++ b/micropython/drivers/storage/sdcard/manifest.py @@ -1 +1,3 @@ +metadata(description="SDCard block device driver.", version="0.1.0") + module("sdcard.py", opt=3) diff --git a/micropython/net/ntptime/manifest.py b/micropython/net/ntptime/manifest.py index fa444ec7..97e3c14a 100644 --- a/micropython/net/ntptime/manifest.py +++ b/micropython/net/ntptime/manifest.py @@ -1 +1,3 @@ +metadata(description="NTP client.", version="0.1.0") + module("ntptime.py", opt=3) diff --git a/micropython/net/webrepl/manifest.py b/micropython/net/webrepl/manifest.py index 6d1a3142..20527db4 100644 --- a/micropython/net/webrepl/manifest.py +++ b/micropython/net/webrepl/manifest.py @@ -1,2 +1,4 @@ +metadata(description="WebREPL server.", version="0.1.0") + module("webrepl.py", opt=3) module("webrepl_setup.py", opt=3)