dev-python/zope-i18nmessageid: Bump to 8.1

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-10-30 07:23:28 +01:00
parent 21f6133045
commit 709393bb6c
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST zope_i18nmessageid-8.0.tar.gz 26924 BLAKE2B 929b5df9de131ca5c5951a35f48b1092aa768c7a67cb9608dddf51bd2b7d1db4702d70591af3fb3fcdd9ac7db881245c89b69460d4a438ac3c0a3bdb8483d807 SHA512 a996ff5cc03c48fd8d203e7a67fce463958d404bbaa31d27103de2b60b847217f5f5e53e8fe4887cf8df36bf3854c5700466630eb5958c20eab7079874ad2285
DIST zope_i18nmessageid-8.1.tar.gz 26697 BLAKE2B 5f0911d91479ad608c2ce0365401a50dfeb2878564152e264e03bf7d191eea6aae9bd0aa291d786db08e54914846bda8ff4a212b862ac53cdfe3ce217c24221e SHA512 682f127f6f026a281ed9aefe68c3dd1b00d0e5c63b418d6ab399994335298148a08e7d788da20859405a42ce51c5895baa8c5e6f82875ed7f948ca37e0ee13b1

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYPI_PN=${PN/-/.}
PYTHON_COMPAT=( python3_{11..14} python3_{13..14}t pypy3_11 )
inherit distutils-r1 pypi
DESCRIPTION="Zope support for i18nmessageid (tagging source of i18n strings)"
HOMEPAGE="
https://pypi.org/project/zope.i18nmessageid/
https://github.com/zopefoundation/zope.i18nmessageid/
"
LICENSE="ZPL"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
distutils_enable_tests unittest
src_prepare() {
distutils-r1_src_prepare
# force failure if extension build fails
sed -i -e "/'build_ext':/d" setup.py || die
}
python_test() {
eunittest -s "${BUILD_DIR}/install$(python_get_sitedir)/zope"
}