diff mbox series

[meta-python,3/5] python3-changelog-chug: Add recipe

Message ID 20250213090430.3750793-3-leon.anavi@konsulko.com
State Accepted
Headers show
Series [meta-python,1/5] python3-isort: Upgrade 5.13.2 -> 6.0.0 | expand

Commit Message

Leon Anavi Feb. 13, 2025, 9:04 a.m. UTC
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>
---
 .../python/python3-changelog-chug_0.0.3.bb    | 23 +++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-changelog-chug_0.0.3.bb
diff mbox series

Patch

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 @@ 
+SUMMARY = "Parser library for project Change Log documents."
+HOMEPAGE = "https://git.sr.ht/~bignose/changelog-chug"
+LICENSE = "AGPL-3.0-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=7a9d97a1655c1051f8a9351e15ea3122"
+
+SRC_URI[sha256sum] = "98ee1e8be75b6e9d512c35292c3c293a124541a4ec2014a6ec3cf33a3d265d2d"
+
+inherit pypi python_setuptools_build_meta
+
+PYPI_PACKAGE = "changelog_chug"
+
+DEPENDS += " \
+    python3-semver-native \
+    python3-docutils-native \
+"
+
+RDEPENDS:${PN} += "\
+    python3-core \
+    python3-semver \
+    python3-docutils \
+"
+
+BBCLASSEXTEND = "native nativesdk"