dev-python/speaklater: Bump to 1.4 (fork)

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2022-05-21 10:56:16 +02:00
parent 7372586f3e
commit 9aa4273129
3 changed files with 26 additions and 1 deletions

View File

@@ -1 +1,2 @@
DIST speaklater-1.3.tar.gz 3582 BLAKE2B cddf87583670ae185336b73631b28da3dc26b74b75df82224da23df6c528ee074ca31c95d5fbe2971eb87c50480be022493164de62f02f1987a5768d7ae69092 SHA512 ae137d94c497cd4214e230c8906f3ba40e092f248206d37b61de2571567e39e27b7f58bcf2145bd0c81c195c3c5ed03fc0428e0a50c657c5c909ec82719454ef
DIST speaklater3-1.4.tar.gz 4309 BLAKE2B 6ba32926a81c978c7d001d0ebe39c74779e05dd0275ee4f0b9d06fb9cc8bdd8502417ff6b9adefd5df3d6030a2f1b26d461ba2a8afcff383af294f634a68dec3 SHA512 7603bc5852b870a9ada6d730857de32ff47b842dabe8cb2310bbcdefceaf3bc5021a02cab058e646ba38d5a46e831ad9ec7bb4db75f91e07e999a9917ac24251

View File

@@ -7,7 +7,7 @@
</maintainer>
<upstream>
<remote-id type="pypi">speaklater</remote-id>
<remote-id type="pypi">speaklater3</remote-id>
<remote-id type="github">mitsuhiko/speaklater</remote-id>
<bugs-to>https://github.com/mitsuhiko/speaklater/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,24 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
MY_P=speaklater3-${PV}
DESCRIPTION="Lazy strings for Python"
HOMEPAGE="https://pypi.org/project/speaklater3/"
SRC_URI="mirror://pypi/s/speaklater3/${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~riscv ~x86"
python_test() {
"${EPYTHON}" -m doctest -v speaklater.py ||
die "tests failed with ${EPYTHON}"
}