Add files via upload

This commit is contained in:
KronoZed 2017-02-27 13:48:13 +03:00 committed by GitHub
parent 8a59f3fbaf
commit 8a73fb1afc
2 changed files with 39 additions and 0 deletions

View File

@ -1 +1,3 @@
DIST slixmpp-1.2.4.tar.gz 863718 SHA256 32c92696e46221b25659b11d482baac480f141c496c93ca68591b81d938cf494 SHA512 e6d7fff434676cce441683f5bbd70431d84a8e8b72582c60555a2df6297b39b07249768e150bd23eefa16a2c30d449f0ebd0bd7c5d966b86c90f5da2f812bdf3 WHIRLPOOL fd43cf48b4721423f5a38ad5c66347625b1bf62846a55a52d12d160816287c604b92ac1b78b4a8f3f72a9b07dab44f3a1cc587d17d3e2fc43c7b707807e3ddde
EBUILD slixmpp-1.2.4.ebuild 797 SHA256 afbb80453e1b80e64693ab66d183ded8a705f8fd7dddee3e706d86d00d7eead2 SHA512 f54f0bfc265ffb237e116b589a46e8c4b32e025fc2863c327bfae0f1497a877b6ccc2364cba92a08177b51c551e2bcaafc8d0c7e20a902d7d4b1b35b024d8da6 WHIRLPOOL fef91602faf1f39d4b6a4e2dd6e617ed3a99ba69a23466148ce5c31b6b04772c73cf3498a20cd8430a0223fcccd8d45f0a6e3bb92453ba70ad6b0e6923bc3aa4
EBUILD slixmpp-9999.ebuild 821 SHA256 647293a04e70fe465ac9e6049b104ddc52c441c25c69255801b521724aa22ad0 SHA512 5b15428a631ee2f3557e74e387bb1e59bf6d23aeeefeb6c00a946c03f823fb11ffd7eac42575d84439be6682a31dab7366e0d46b1d3b2013e9ee01867f7c878d WHIRLPOOL 2c1c20a6da1036c96c142c864d35333c35f6d4d8ec178270475023640ffdbc03aae4b9cdd0ade3465cf05b6e3b188045338b19f631edfdb3e3f60f56b369e6e8

View File

@ -0,0 +1,37 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python{3_4,3_5} )
inherit eutils distutils-r1
DESCRIPTION="Python library for XMPP - asyncio fork"
HOMEPAGE="https://dev.louiz.org/projects/slixmpp"
DOWNLOAD_ID="117"
SRC_URI="https://dev.louiz.org/attachments/download/${DOWNLOAD_ID}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="crypt cython"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="
dev-python/aiodns[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
dev-python/pyasn1-modules[${PYTHON_USEDEP}]
crypt? (
dev-python/python-gnupg[${PYTHON_USEDEP}]
)
cython? (
dev-python/cython[${PYTHON_USEDEP}]
net-dns/libidn
)
"
python_test() {
esetup.py test
}