2018-11-22 21:05:20 +01:00
|
|
|
# Copyright 1999-2018 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python3_6 )
|
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
MY_PN="Mastodon"
|
|
|
|
DESCRIPTION="Python wrapper for the Mastodon API"
|
|
|
|
HOMEPAGE="https://github.com/halcy/Mastodon.py"
|
|
|
|
SRC_URI="https://github.com/halcy/Mastodon.py/archive/${PV}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
dev-python/decorator
|
|
|
|
dev-python/six
|
|
|
|
dev-python/pytz
|
|
|
|
dev-python/requests
|
|
|
|
dev-python/python-dateutil
|
|
|
|
dev-python/cryptography
|
2018-11-22 21:15:24 +01:00
|
|
|
dev-python/http_ece
|
2018-11-22 21:05:20 +01:00
|
|
|
"
|
|
|
|
DEPEND="
|
|
|
|
${RDEPEND}
|
|
|
|
dev-python/wheel
|
|
|
|
"
|
|
|
|
|
|
|
|
S="${WORKDIR}/${MY_PN}.py-${PV}"
|