diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2025-02-13 11:04:28 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-02-13 07:44:15 -0800 |
commit | dd96370cfca30fd69342ba71dc5094426d188d1b (patch) | |
tree | 7fdedc38860e3cb9ba9631ca15607f7757b2c1c6 /meta-python | |
parent | 4f84db8d2771fb586c7d85faba0c165f9380af53 (diff) | |
download | meta-openembedded-dd96370cfca30fd69342ba71dc5094426d188d1b.tar.gz |
python3-changelog-chug: Add recipe
Add recipe for release 0.0.3:
- Correct the programmer representation of a `ChangeLogEntry`
object.
- Refine specification of valid `ChangeLogEntry` fields.
- Use explicit default values for entry fields.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-changelog-chug_0.0.3.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-changelog-chug_0.0.3.bb b/meta-python/recipes-devtools/python/python3-changelog-chug_0.0.3.bb new file mode 100644 index 0000000000..a34cbebe91 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-changelog-chug_0.0.3.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "Parser library for project Change Log documents." | ||
2 | HOMEPAGE = "https://git.sr.ht/~bignose/changelog-chug" | ||
3 | LICENSE = "AGPL-3.0-only" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=7a9d97a1655c1051f8a9351e15ea3122" | ||
5 | |||
6 | SRC_URI[sha256sum] = "98ee1e8be75b6e9d512c35292c3c293a124541a4ec2014a6ec3cf33a3d265d2d" | ||
7 | |||
8 | inherit pypi python_setuptools_build_meta | ||
9 | |||
10 | PYPI_PACKAGE = "changelog_chug" | ||
11 | |||
12 | DEPENDS += " \ | ||
13 | python3-semver-native \ | ||
14 | python3-docutils-native \ | ||
15 | " | ||
16 | |||
17 | RDEPENDS:${PN} += "\ | ||
18 | python3-core \ | ||
19 | python3-semver \ | ||
20 | python3-docutils \ | ||
21 | " | ||
22 | |||
23 | BBCLASSEXTEND = "native nativesdk" | ||