commit: fa150907fc1cd7f23beb65a57a919c4a4f3cf496
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 1 03:15:06 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct 1 03:22:49 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa150907
dev-python/fastimport: Bump to 0.9.16
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/fastimport/Manifest | 1 +
dev-python/fastimport/fastimport-0.9.16.ebuild | 24 ++++++++++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/dev-python/fastimport/Manifest b/dev-python/fastimport/Manifest
index af9e8c2c4d52..c29a08a12f83 100644
--- a/dev-python/fastimport/Manifest
+++ b/dev-python/fastimport/Manifest
@@ -1 +1,2 @@
DIST fastimport-0.9.14.tar.gz 41791 BLAKE2B
b0becb3de319c44e60cf8575afd9b19ad69ca8715d9eae8ced079136dccadda82ac340ad7e01f8a556bde07fbecfbbe6f9eb841909ee2e6b6bbe8e808f463e43
SHA512
cbf8f0bf5b66e847d4482b6af29ee26a69a2aadefe22c4a2f17d976a94fce86b016b61b17d0a7f4be82ceb7824d0bc12b509b8148c18f9dc8888304158a7c266
+DIST fastimport-0.9.16.tar.gz 50475 BLAKE2B
ba68ff09b35c2cb56cabe3fb06f7f55424f43650476ec85056955cdd741be5abaf7654815b1734a8cf04ac18f826419cdf4c16a88c5eb3100723719e846211ea
SHA512
b1e570679dc64c1f75f064fd13e40da4b02c6f3620ee5369eee8e63d7d8c22ae1be6973a1dda34c2935625640d3348fbfb3de3d1059ef8b5ff16da1152661c50
diff --git a/dev-python/fastimport/fastimport-0.9.16.ebuild
b/dev-python/fastimport/fastimport-0.9.16.ebuild
new file mode 100644
index 000000000000..06526d51281e
--- /dev/null
+++ b/dev-python/fastimport/fastimport-0.9.16.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Library for parsing the fastimport VCS serialization format"
+HOMEPAGE="
+ https://github.com/jelmer/python-fastimport/
+ https://pypi.org/project/fastimport/
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~x86
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+
+python_test() {
+ "${EPYTHON}" -m unittest -v fastimport.tests.test_suite ||
+ die "Tests fail with ${EPYTHON}"
+}