From 386ab99d7fd1c480de9084fe45b6359789f478c0 Mon Sep 17 00:00:00 2001 From: Jim Mussared Date: Thu, 6 Apr 2023 12:05:04 +1000 Subject: [PATCH] python-ecosys: Add pypi= to metadata. This is so the package knows the "upstream" name of the corresponding PyPI package that it's based on. Signed-off-by: Jim Mussared --- python-ecosys/cbor2/manifest.py | 2 +- python-ecosys/iperf3/manifest.py | 2 +- python-ecosys/pyjwt/manifest.py | 2 +- python-ecosys/urequests/manifest.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/python-ecosys/cbor2/manifest.py b/python-ecosys/cbor2/manifest.py index 5a7ff9dc..b94ecc88 100644 --- a/python-ecosys/cbor2/manifest.py +++ b/python-ecosys/cbor2/manifest.py @@ -1,3 +1,3 @@ -metadata(version="0.1.0") +metadata(version="0.1.0", pypi="cbor2") package("cbor2") diff --git a/python-ecosys/iperf3/manifest.py b/python-ecosys/iperf3/manifest.py index 23113692..3f2e2623 100644 --- a/python-ecosys/iperf3/manifest.py +++ b/python-ecosys/iperf3/manifest.py @@ -1,3 +1,3 @@ -metadata(version="0.1.3") +metadata(version="0.1.3", pypi="iperf3", pypi_publish="uiperf3") module("iperf3.py") diff --git a/python-ecosys/pyjwt/manifest.py b/python-ecosys/pyjwt/manifest.py index 8e9b22c1..e0443328 100644 --- a/python-ecosys/pyjwt/manifest.py +++ b/python-ecosys/pyjwt/manifest.py @@ -1,4 +1,4 @@ -metadata(version="0.1") +metadata(version="0.1", pypi="pyjwt") require("hmac") diff --git a/python-ecosys/urequests/manifest.py b/python-ecosys/urequests/manifest.py index 5fd2e8a2..4c134081 100644 --- a/python-ecosys/urequests/manifest.py +++ b/python-ecosys/urequests/manifest.py @@ -1,3 +1,3 @@ -metadata(version="0.7.0") +metadata(version="0.7.0", pypi="requests") module("urequests.py")