-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sci-electronics/mpremote: add 1.22.0
Signed-off-by: Horea Christian <[email protected]>
- Loading branch information
1 parent
62a7fd8
commit b50e9da
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST mpremote-0.4.0.tar.gz 27266 BLAKE2B b31b6184d0f4fc5c525ea7d5d8d2722404e9ce82ce143ea9a14b8bdef28af3260514dd25ec756a0ac2507d5b206fa9d07ce67bd2228b1568d9495c9082bdace8 SHA512 580f0286d8973a93105a04c681428f798e0d72b4b75debbc43f8e49ea7a81da849987aeab795baff66c9cf40607fde27fb54b7b32ab311ae5e9fb3b8f8f976fc | ||
DIST mpremote-1.22.0.tar.gz 24042 BLAKE2B 8bd6df4b9a46c10a93d42974a569adb42577d2783cb78b5b76ac6a6750f8219611ca49106ed91cb7f69910e3dfb28bb07a4522dbd721af0baac94d3e793c0576 SHA512 a3135e3be347370c967b7dc936f112e1ed5898288fa2dda4c485d216ebf432cb9706e539299d6769c1982ac02e456e9594ed2a7a86cbac2a1c7d08f2ff8a980b |
12 changes: 12 additions & 0 deletions
12
sci-electronics/mpremote/files/mpremote-1.22.0-requirements_txt.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- a/pyproject.toml 2020-02-01 19:00:00.000000000 -0500 | ||
+++ b/pyproject.toml 2024-01-22 03:59:19.414593373 -0500 | ||
@@ -33,9 +33,6 @@ | ||
[project.scripts] | ||
mpremote = "mpremote.main:main" | ||
|
||
-[tool.hatch.metadata.hooks.requirements_txt] | ||
-files = ["requirements.txt"] | ||
- | ||
# This will be PEP-440 normalised into either: | ||
# mpremote-X.Y.Z (on vX.Y.Z release tag) | ||
# mpremote-X.Y.Zrc0 (on vX.Y.Z-preview tag, i.e. first commit in the cycle) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{10..12} ) | ||
DISTUTILS_USE_PEP517=hatchling | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="MicroPython remote control" | ||
HOMEPAGE="https://github.com/micropython/micropython/tree/master/tools/mpremote" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
RDEPEND=" | ||
dev-python/pyserial[${PYTHON_USEDEP}] | ||
dev-python/importlib-metadata[${PYTHON_USEDEP}] | ||
" | ||
|
||
PATCHES=( | ||
"${FILESDIR}/${P}-requirements_txt.patch" | ||
) | ||
|
||
# The package might not have a test suite: | ||
# https://github.com/orgs/micropython/discussions/11308 | ||
#distutils_enable_tests pytest |