diff options
| author | Tim Orling <tim.orling@konsulko.com> | 2024-06-11 08:55:14 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-06-13 09:11:17 +0100 |
| commit | 1ba3586bbe660600c48a2170cf615b9ccab749e2 (patch) | |
| tree | 899711e123d00ab18c8bf55c231438f10b53a5ee /meta-selftest/recipes-devtools/python/python3-guessing-game_git.bb | |
| parent | 5676d39218097ac78a3a2335fd4f6bedd9dcf150 (diff) | |
| download | poky-1ba3586bbe660600c48a2170cf615b9ccab749e2.tar.gz | |
meta-selftest: add python3-guessing-game
Add v0.1.0 of python3-guessing-game which is used as the baseline
for an upgrade to v0.2.0 in test_devtool_upgrade_recipe_update_extra_tasks
test case.
(From OE-Core rev: f62e74a00de892bf4c10f641f734b57c0017a871)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest/recipes-devtools/python/python3-guessing-game_git.bb')
| -rw-r--r-- | meta-selftest/recipes-devtools/python/python3-guessing-game_git.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-selftest/recipes-devtools/python/python3-guessing-game_git.bb b/meta-selftest/recipes-devtools/python/python3-guessing-game_git.bb new file mode 100644 index 0000000000..50246a8a11 --- /dev/null +++ b/meta-selftest/recipes-devtools/python/python3-guessing-game_git.bb | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | SUMMARY = "The guessing game from The Rust Book using pyo3." | ||
| 2 | DESCRIPTION = "Wrap a version of the guessing game from The Rust Book \ | ||
| 3 | to run in Python using pyo3." | ||
| 4 | HOMEPAGE = "https://www.maturin.rs/tutorial" | ||
| 5 | SECTION = "devel/python" | ||
| 6 | LICENSE = "MIT & Apache-2.0" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE-APACHE;md5=1836efb2eb779966696f473ee8540542 \ | ||
| 8 | file://LICENSE-MIT;md5=85fd3b67069cff784d98ebfc7d5c0797" | ||
| 9 | |||
| 10 | SRC_URI = "git://git.yoctoproject.org/guessing-game.git;protocol=https;branch=main" | ||
| 11 | |||
| 12 | PV = "0.1.0" | ||
| 13 | SRCREV = "469c9e2230ca4fa9e391c94be6e697733e769500" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/git" | ||
| 16 | |||
| 17 | inherit python_maturin cargo-update-recipe-crates | ||
| 18 | |||
| 19 | require ${BPN}-crates.inc | ||
