diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
commit | 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 (patch) | |
tree | 7681bbd4e8b05407772df40a4bf04cbbc8afc3fa /dev-python/pysctp | |
parent | 30a9caf154332f12ca60756e1b75d2f0e3e1822d (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-python/pysctp')
-rw-r--r-- | dev-python/pysctp/Manifest | 3 | ||||
-rw-r--r-- | dev-python/pysctp/metadata.xml | 11 | ||||
-rw-r--r-- | dev-python/pysctp/pysctp-0.6.ebuild | 25 |
3 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/pysctp/Manifest b/dev-python/pysctp/Manifest new file mode 100644 index 000000000000..a1bde10051dd --- /dev/null +++ b/dev-python/pysctp/Manifest @@ -0,0 +1,3 @@ +DIST pysctp-0.6.tar.gz 29611 BLAKE2B 3295de491661e43076dd46572301d897c42f211aa3e4f34fe6dbdf07548702234cad10a166001ed2d9c76b75767df1ba12a06b20d03d9ed2e99ff011202bee89 SHA512 621ddeecaec9eb0114783e2103405ae3eb0c8950a3c76fafe4505ad5311e2c004dd10219d90216fd5f5e79e033e490695e7428ee7c7a5fba26dea7d253e50215 +EBUILD pysctp-0.6.ebuild 598 BLAKE2B 67a8c9ca021b7712d1a46b6a262f11b76845d8a40ae38dc6cc0508b7c04f5f6582d9d4c1db8c73992d127e322b4288bade425c5fe9da3625fd414f8797033d52 SHA512 b46e1af44eee7a14679319c7864b7724f0238b88197191918aeaabdf1a22b86dd864e6bdcfd0864117fc9384ab8973e04f201526730c6ed7b087a29a606c4927 +MISC metadata.xml 342 BLAKE2B 9dc7d51d25f5f3680d0b46debb6454c652a298670698737553760c082316c9e92236cfc4955b2f2e4c70e117ac387b64d6858ba76c832bbca4356f69333b8a77 SHA512 5ac1525b2c423b3c59d24aba13aa8fec6d2644ae5350577ef48da4fbcca348f84fc0b7494678ff6aa3a1637b53d944eba5bb3aaa1990f0b5399425b78472ef06 diff --git a/dev-python/pysctp/metadata.xml b/dev-python/pysctp/metadata.xml new file mode 100644 index 000000000000..0c8a742e9f4f --- /dev/null +++ b/dev-python/pysctp/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>zx2c4@gentoo.org</email> + <name>Jason A. Donenfeld</name> + </maintainer> + <upstream> + <remote-id type="github">philpraxis/pysctp</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/pysctp/pysctp-0.6.ebuild b/dev-python/pysctp/pysctp-0.6.ebuild new file mode 100644 index 000000000000..af155f705cc2 --- /dev/null +++ b/dev-python/pysctp/pysctp-0.6.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +inherit distutils-r1 + +DESCRIPTION="PySCTP gives access to the SCTP transport protocol from Python" +HOMEPAGE="https://github.com/philpraxis/pysctp" +SRC_URI="https://github.com/philpraxis/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="net-misc/lksctp-tools" +RDEPEND="${DEPEND}" + +src_install() { + distutils-r1_src_install + rm -v "${D}usr/_sctp.h" + dodoc test_local_cnx.py test_remote_cnx.py +} |