commit: 2c577f82a2c31221f79936f4642ef3684f80536a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 6 06:49:41 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 6 07:01:05 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c577f82
dev-python/setproctitle: Bump to 1.3.7
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/setproctitle/Manifest | 1 +
dev-python/setproctitle/setproctitle-1.3.7.ebuild | 32 +++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-python/setproctitle/Manifest b/dev-python/setproctitle/Manifest
index 64d9d10b6ce2..0e06c2d06081 100644
--- a/dev-python/setproctitle/Manifest
+++ b/dev-python/setproctitle/Manifest
@@ -1 +1,2 @@
DIST setproctitle-1.3.5.tar.gz 26737 BLAKE2B
fccb12f651bdf8d8d585465ae56f7e37358692d8361fba77936513d19a395b196d15821ce4a902eba80f22fc84bc9ad919d730aebcbe53ded039b559238368dd
SHA512
ab1dc0c22506d8c43b626e39fbad754aa0115faf592d011f84ae28dee31a3797fff61c236c80864eb2749a2e585c46678beb87c63334c55a53c31540e76eea3b
+DIST setproctitle-1.3.7.tar.gz 27002 BLAKE2B
4c750e871ab1e68ee1cfe2c575b99b94dd3d3bd99e6ee1c934c7b9b23f73bee09dcd207d665eeec79182a25295c4ade1e15107808fce911433be4d2c26017731
SHA512
b801a6291bf0b29c3b73f0fa3ce5e34949626abdd45a785c8806be582383525a576876c0b37f41fd6fa809256bd70cfcb64ba6a3609bb83a5387b4a4cf0a191d
diff --git a/dev-python/setproctitle/setproctitle-1.3.7.ebuild
b/dev-python/setproctitle/setproctitle-1.3.7.ebuild
new file mode 100644
index 000000000000..522ead0c69c2
--- /dev/null
+++ b/dev-python/setproctitle/setproctitle-1.3.7.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# The package has a fallback implementation which is a noop but warns
+# if the extensions weren't built, so we always build them.
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Allow customization of the process title"
+HOMEPAGE="
+ https://github.com/dvarrazzo/py-setproctitle/
+ https://pypi.org/project/setproctitle/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # remove the override that makes extension builds non-fatal
+ sed -i -e '/cmdclass/d' setup.py || die
+}