2
0
mirror of https://github.com/gentoo-mirror/gentoo.git synced 2026-01-16 00:00:25 +03:00
Files
gentoo/dev-python/python3-openid/python3-openid-3.0.4_p1.ebuild
Repository QA checks a637bd65b7 2015-06-19 16:35:30 UTC
2015-06-19 12:38:33 -04:00

36 lines
982 B
Bash

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python3-openid/python3-openid-3.0.4_p1.ebuild,v 1.3 2015/04/08 08:05:24 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{3_3,3_4} )
inherit vcs-snapshot distutils-r1
DESCRIPTION="Python 3 port of the python-openid library"
HOMEPAGE="https://github.com/necaris/python3-openid https://pypi.python.org/pypi/python3-openid"
SRC_URI="https://github.com/necaris/${PN}/archive/47a15d30b962a4316473ae9909b3405773d78181.tar.gz -> ${P}.tar.gz"
#https://github.com/necaris/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64"
IUSE="examples test"
DEPEND=""
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/django-tests.patch
)
python_test() {
"${S}"/run_tests.sh || die "tests fail on ${EPYTHON}"
}
python_install_all() {
use examples && local EXAMPLES="examples/."
distutils-r1_python_install_all
}