mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
python-ptrace: new ebuild (https://github.com/pentoo/pentoo-overlay/issues/521)
This commit is contained in:
parent
00caa8bd83
commit
4a01304cf9
3 changed files with 32 additions and 0 deletions
1
dev-python/python-ptrace/Manifest
Normal file
1
dev-python/python-ptrace/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST python-ptrace-0.9.4.tar.gz 98367 BLAKE2B 926a1e5efe37e56be06ee76ab060568b5c01f4fc5b46b48dc7b040b35a344eb1f2361da9f4d7b84bff606cca3adeae98cdc9b45b1cc8756cd2ab99688c85f19b SHA512 71c190d5de6ec8e76793daaeeecde2415ae452847726024a5adf6a5587ba1aa1f492e830e1519057b48636aa33f8483a77037bfaf2db57bbf4785638f2e7af3e
|
||||
8
dev-python/python-ptrace/metadata.xml
Normal file
8
dev-python/python-ptrace/metadata.xml
Normal 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>
|
||||
23
dev-python/python-ptrace/python-ptrace-0.9.4.ebuild
Normal file
23
dev-python/python-ptrace/python-ptrace-0.9.4.ebuild
Normal 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
|
||||
}
|
||||
Loading…
Reference in a new issue