This commit is contained in:
Yury Martynov 2019-11-01 18:51:17 +03:00
parent 00caa8bd83
commit 4a01304cf9
No known key found for this signature in database
GPG key ID: EBE62DD0CCEAE19E
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST python-ptrace-0.9.4.tar.gz 98367 BLAKE2B 926a1e5efe37e56be06ee76ab060568b5c01f4fc5b46b48dc7b040b35a344eb1f2361da9f4d7b84bff606cca3adeae98cdc9b45b1cc8756cd2ab99688c85f19b SHA512 71c190d5de6ec8e76793daaeeecde2415ae452847726024a5adf6a5587ba1aa1f492e830e1519057b48636aa33f8483a77037bfaf2db57bbf4785638f2e7af3e

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>email@linxon.ru</email>
<name>Yury Martynov</name>
</maintainer>
</pkgmetadata>

View file

@ -0,0 +1,23 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A Python binding of ptrace library"
HOMEPAGE="https://github.com/vstinner/python-ptrace"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~mips ~x86"
LICENSE="GPL-2"
SLOT=0
RDEPEND="${PYTHON_DEPS}
dev-python/six[${PYTHON_USEDEP}]"
src_test() {
./runtests.py --tests tests/ || die
}