holgersson-overlay/dev-python/axolotl-curve25519/axolotl-curve25519-20180206.ebuild
Nils Freydank 19f8d5ffe7
dev-python/axolotl-curve25519: Add version 20180206.
This ebuild is based on a version from mva overlay.

Package-Manager: Portage-2.3.24, Repoman-2.3.6
Manifest-Sign-Key: 766B8122134269123401492A8B54D7A3FF3CDB17
2018-02-14 21:29:22 +01:00

33 lines
770 B
Bash

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="Python wrapper for the curve25519 library"
HOMEPAGE="https://github.com/gsahbi/python-axolotl-curve25519"
if [[ "${PV}" == *9999 ]]
then
inherit git-r3
EGIT_REPO_URI="https://github.com/gsahbi/${PN}.git"
KEYWORDS=""
else
COMMIT_ID="2080fe76fa163ce76408bb8a95e17ac1cd5c3f7c"
SRC_URI="https://github.com/gsahbi/python-${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/python-${PN}-${COMMIT_ID}"
KEYWORDS="~x86 ~amd64"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
DOCS=( README.md )