1
0
Fork 0

updated in Gentoo main

This commit is contained in:
Horea Christian 2020-01-06 13:03:41 +01:00
parent 2e575ddf9b
commit 38eb7ca80b
4 changed files with 0 additions and 49 deletions

View File

@ -1,7 +0,0 @@
04 Nov 2019; <chymera@gentoo.org> typing-3.7.4.1.ebuild:
dev-python/typing: KEYWORDS
*typing-3.7.4.1 (09 Oct 2019)
09 Oct 2019; <chymera@gentoo.org> +metadata.xml, +typing-3.7.4.1.ebuild:
dev-python/typing: version bump 3.7.4.1 and PYTHON_COMPAT to 3 series

View File

@ -1 +0,0 @@
DIST typing-3.7.4.1.tar.gz 77982 SHA256 91dfe6f3f706ee8cc32d38edbbf304e9b7583fb37108fef38229617f8b3eba23 SHA512 5f5080bf66b1de094b7984ed3d1de22651de8ca018ffde927dfa67fe65b13f91602a877faa24e73d44558638b609be276b924b894d63999bb93b0657a2d5ec6e WHIRLPOOL 37b349c5be66a21b7cc433d8daa5f5648614f71cd50ec657c5fb1261ee73918c3c14aba7f4b5c3be2f2c571a2f6ef40fa0daaeb0c93581a748a732e582c36e4a

View File

@ -1,11 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">typing</remote-id>
</upstream>
</pkgmetadata>

View File

@ -1,30 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_6 pypy )
inherit distutils-r1
DESCRIPTION="Type Hints for Python"
HOMEPAGE="https://docs.python.org/3/library/typing.html https://pypi.org/project/typing/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND=""
python_test() {
if [[ ${EPYTHON} == python2* || ${EPYTHON} == pypy ]]; then
cd "${S}"/python2 || die
else
cd "${S}"/src || die
fi
"${PYTHON}" test_typing.py || die "tests failed under ${EPYTHON}"
}