diff options
author | Göktürk Yüksek <gokturk@gentoo.org> | 2018-11-07 15:58:20 -0500 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2018-11-07 17:47:14 -0500 |
commit | 2149ad07590c1310da9e83c7fde27258f2de1d88 (patch) | |
tree | 93bfe1d460cb3b68bdf4a5cf6dd1fb77ee232540 /dev-python/fido2 | |
parent | media-plugins/gst-plugins-chromaprint: keyworded 1.14.3 for ppc, bug #661280 (diff) | |
download | gentoo-2149ad07590c1310da9e83c7fde27258f2de1d88.tar.gz gentoo-2149ad07590c1310da9e83c7fde27258f2de1d88.tar.bz2 gentoo-2149ad07590c1310da9e83c7fde27258f2de1d88.zip |
dev-python/fido2: bump to 0.4.0
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
Diffstat (limited to 'dev-python/fido2')
-rw-r--r-- | dev-python/fido2/Manifest | 1 | ||||
-rw-r--r-- | dev-python/fido2/fido2-0.4.0.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/dev-python/fido2/Manifest b/dev-python/fido2/Manifest index ef3b3d41a76f..7098c33fcc20 100644 --- a/dev-python/fido2/Manifest +++ b/dev-python/fido2/Manifest @@ -1 +1,2 @@ DIST fido2-0.3.0.tar.gz 125907 BLAKE2B 95054f258c775ac3b4f65608fd3b62ec4165a568c237064ebb66da1ca6ae899a3d88b5613e9dd4be87c05068ebd698be452dd3467800317e5894092216196e12 SHA512 c6ea83e104d77350413156eba4c1aa2635b77ae00d157dce61e5a8539c65aca4dd1dfc5303f9d408359582eeb98ae558aa1e2043a9b1dfcb23415eb8bc9c6a09 +DIST fido2-0.4.0.tar.gz 141714 BLAKE2B 3d57ef1598d2c84cea8a98e75cdef96b77807d4eb5951515560b43655a48bb0816c4e05ef39314b13b6bad84509e09145aeab5727a9fc6cba65ddf42f588b007 SHA512 4eb95a95e1f5b8b49267bc0a11e5501bd041a211ac8a6249ff9cc26ebb0b155b9d16494c18391a14feecb197d61dc50c8530b2ab38ba7e9dc600276abd6f8bcf diff --git a/dev-python/fido2/fido2-0.4.0.ebuild b/dev-python/fido2/fido2-0.4.0.ebuild new file mode 100644 index 000000000000..e3b1dae4364b --- /dev/null +++ b/dev-python/fido2/fido2-0.4.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) +inherit distutils-r1 + +DESCRIPTION="Python based FIDO 2.0 library" +HOMEPAGE="https://github.com/Yubico/python-fido2" +SRC_URI="https://github.com/Yubico/python-fido2/releases/download/${PV}/${P}.tar.gz" + +LICENSE="Apache-2.0 BSD-2 MIT MPL-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="examples test" + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7) + examples? ( + dev-python/flask[${PYTHON_USEDEP}] + dev-python/pyopenssl[${PYTHON_USEDEP}] + ) +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pyfakefs[${PYTHON_USEDEP}] + ) +" + +python_test() { + touch "${S}"/test/__init__.py || die + esetup.py test +} + +python_install_all() { + distutils-r1_python_install_all + + if use examples; then + docinto examples + dodoc -r "${S}"/examples/. + docompress -x "/usr/share/doc/${PF}/examples" + fi +} |