commit: dccae4532438e54dc5d5c2e2733e25216ee02297
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 27 04:49:09 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct 27 04:49:09 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dccae453
dev-python/serpent: Bump to 1.42
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/serpent/Manifest | 1 +
dev-python/serpent/serpent-1.42.ebuild | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-python/serpent/Manifest b/dev-python/serpent/Manifest
index fec16e65087b..21088242dc31 100644
--- a/dev-python/serpent/Manifest
+++ b/dev-python/serpent/Manifest
@@ -1 +1,2 @@
DIST serpent-1.41.tar.gz 88927 BLAKE2B
738c0e3ff3ff908514a54523aa41bcda3aa4426d0426037a0223ddb744995bf9175de96df2372506aaf45de664897e35cd7292b9aa58beab146f225ce02864f1
SHA512
cab6f9e36d2f777e58cd5f3d1dd6e11626e0f222ecb2adb8e5997338c76ed357c461dadd00010cfd43ffc6a0b1addd7de06d86b7a82ca796719e4bde2d9f4813
+DIST serpent-1.42.tar.gz 90352 BLAKE2B
1b1f8eb284c395134f48ebf5d5db3816f91e06bc8b2333971d71b4ec9ba0d883e6ecd999afa8a857f91a9559bd828378fe24cfc8c217f38f6274583d66c5f7af
SHA512
a01b68ccb59d8f4b2b6d2dad031429ce7ffc81c6f64bc7fcc464e38205f2caba3be879facefe0f6e33d1c66e515c7dc19b7cb5d68d829d01dd488b3bccdb2596
diff --git a/dev-python/serpent/serpent-1.42.ebuild
b/dev-python/serpent/serpent-1.42.ebuild
new file mode 100644
index 000000000000..b76ba19a0c92
--- /dev/null
+++ b/dev-python/serpent/serpent-1.42.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A simple serialization library based on ast.literal_eval"
+HOMEPAGE="
+ https://github.com/irmen/Serpent/
+ https://pypi.org/project/serpent/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ test? (
+ dev-python/attrs[${PYTHON_USEDEP}]
+ dev-python/pytz[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests unittest
+
+python_test() {
+ eunittest tests
+}