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/potr | |
parent | 30a9caf154332f12ca60756e1b75d2f0e3e1822d (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-python/potr')
-rw-r--r-- | dev-python/potr/Manifest | 3 | ||||
-rw-r--r-- | dev-python/potr/metadata.xml | 15 | ||||
-rw-r--r-- | dev-python/potr/potr-1.0.1.ebuild | 28 |
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/potr/Manifest b/dev-python/potr/Manifest new file mode 100644 index 000000000000..0af047791741 --- /dev/null +++ b/dev-python/potr/Manifest @@ -0,0 +1,3 @@ +DIST python-potr-1.0.1.zip 30200 BLAKE2B 9dddad5cc902bcbdc5c674487e9f75d50dc711d9e2dcb24bc96abf6638628f22cd50ea2674efc2079e904668eef5cc92accce707811f922beb1453c1aa636a0c SHA512 d38f2fc68ce9f72ccee18923183f8640ee51f079da1e79e1f2f22e37383c99da7a6336a8538e28bd90b483fe8e227956ebc052e9c03aa6d7b49e9fc4e8df5281 +EBUILD potr-1.0.1.ebuild 602 BLAKE2B 09b6034c5d003b8db6c6a2c984345fbc8363716dad9ef3e7f4e1c1a5c8f44074acc98b48a348959a3c1783380af673ad3eb66c8c15031df48123dc03b7a2c2a6 SHA512 c3148205d882499ddaca3f4fc311dadac0047347361438cf8d895e936edd59a025048f570846031c2c2c353139b1aef101ef060153cb19888868587d0e991086 +MISC metadata.xml 515 BLAKE2B 4d576b7dca605ae1433a370cc03c569ebc3d27991e59ed75395100f75f787c3d5a69bb6d47f4b4fef68aa4f4b1a5a8b3fda4cbde678c1de5b5504df2f51c620a SHA512 3cbc182032fa1e1d868fc1348271840feab79629611316eb3433f11500552c57e1a04cee0b333f9cb6edfb93f9091c3aba25750b64a18ec62f59c5d4fc07da38 diff --git a/dev-python/potr/metadata.xml b/dev-python/potr/metadata.xml new file mode 100644 index 000000000000..0bfe99d903ae --- /dev/null +++ b/dev-python/potr/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>aidecoe@gentoo.org</email> + <name>Amadeusz Żołnowski</name> + </maintainer> + <longdescription lang="en"> + This is a pure Python OTR implementation; it does not bind to libotr. + </longdescription> + <upstream> + <remote-id type="pypi">python-potr</remote-id> + <remote-id type="github">python-otr/pure-python-otr</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/potr/potr-1.0.1.ebuild b/dev-python/potr/potr-1.0.1.ebuild new file mode 100644 index 000000000000..9c8c7e030d8a --- /dev/null +++ b/dev-python/potr/potr-1.0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +MY_PN="python-${PN}" +MY_P="${MY_PN}-${PV}" + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Pure Python OTR implementation" +HOMEPAGE="https://github.com/python-otr/pure-python-otr" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +CDEPEND=">=dev-python/pycrypto-2.1[${PYTHON_USEDEP}]" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND}" + +S="${WORKDIR}/${MY_P}" |