Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fido2/
Date: Mon, 25 Nov 2019 20:18:29
Message-Id: 1574713091.0e171cc6223b6050bb43aab5c8ea093d67d9156a.gokturk@gentoo
1 commit: 0e171cc6223b6050bb43aab5c8ea093d67d9156a
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 25 20:13:52 2019 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 25 20:18:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e171cc6
7
8 dev-python/fido2: bump to 0.8.1
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.18
11 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
12
13 dev-python/fido2/Manifest | 1 +
14 dev-python/fido2/fido2-0.8.1.ebuild | 49 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/dev-python/fido2/Manifest b/dev-python/fido2/Manifest
18 index 54a3de6ec62..694eece0c15 100644
19 --- a/dev-python/fido2/Manifest
20 +++ b/dev-python/fido2/Manifest
21 @@ -5,3 +5,4 @@ DIST fido2-0.6.0.tar.gz 163137 BLAKE2B 3a30d4267a1aae00eac8fa8c05065163f992b7289
22 DIST fido2-0.7.0.tar.gz 171787 BLAKE2B 6458a606ecbbd22ac7c49b2e32b46e43c0ca184645fff4c54e0204f044a415db05b3e7187b6138e4d1b67dad9ed5faf3eb561b11b391b5105bac4299481bd95d SHA512 65fdaeeb1932873fb2ae86257182eb6098d6bf4ce5ed45336327bd3e9040eddccd7f7559ece58d9bdcbfe8c98c2eb8646069556a6d00035fef5eade4907a45d8
23 DIST fido2-0.7.1.tar.gz 176790 BLAKE2B d6e800b750902ad26ea6fc0634b37215ac57a65c18d0139b38263d7b97fdf0aaa41070abd5da35891a0dee0c788e43cc7c3bf47e8c1328e292352612ad719c9b SHA512 07024a4076d88bd9ec5d5dbfd924c88e314906668444d96aa9177c373309e90e33c18fd5313943fd83eb28b6d40f0c16a8f64c5d9a2aa50f2fc5115c1967ae3a
24 DIST fido2-0.7.3.tar.gz 188262 BLAKE2B c1d832229ce741be3b81e4cded65b77e57c008aaba8ccbdf640bae1c27f4d86f2c0ce7ffc83405e3693646a8f2868030619c958ecbaa58a6a6328ece2cf6d3de SHA512 715779ecc9dba19de0e45df13d018e7dd223f20f5662860874aa8aa6f811c1df71c07656d21b49a4b6f14a149134d8af6bac076a7f71cb7392ca2fef70b173e1
25 +DIST fido2-0.8.1.tar.gz 201198 BLAKE2B 33411dd05d7f513445afa8a6fc4bb90f3989a655fa05d2ba9da411aa7eea3b30ffa253fae6586f76c416115e5bec90f6f120472a49a0acfbd91020d2cba8f74d SHA512 fc0753ea694f2170d529129764cd9f9c5439cd2f467e4f384d7a698266ee8391a5c9c7c6e51d2dc2a99b93fca1c7d5288d5236e302672a87b8ca7704f328c0b5
26
27 diff --git a/dev-python/fido2/fido2-0.8.1.ebuild b/dev-python/fido2/fido2-0.8.1.ebuild
28 new file mode 100644
29 index 00000000000..311a481c34f
30 --- /dev/null
31 +++ b/dev-python/fido2/fido2-0.8.1.ebuild
32 @@ -0,0 +1,49 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python{2_7,3_{5,6}} )
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python based FIDO 2.0 library"
42 +HOMEPAGE="https://github.com/Yubico/python-fido2"
43 +SRC_URI="https://github.com/Yubico/python-fido2/releases/download/${PV}/${P}.tar.gz"
44 +
45 +LICENSE="Apache-2.0 BSD-2 MIT MPL-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="examples test"
49 +
50 +RDEPEND="
51 + dev-python/six[${PYTHON_USEDEP}]
52 + dev-python/cryptography[${PYTHON_USEDEP}]
53 + dev-python/pyscard[${PYTHON_USEDEP}]
54 + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7)
55 + examples? (
56 + dev-python/flask[${PYTHON_USEDEP}]
57 + dev-python/pyopenssl[${PYTHON_USEDEP}]
58 + )
59 +"
60 +DEPEND="
61 + dev-python/setuptools[${PYTHON_USEDEP}]
62 + test? (
63 + ${RDEPEND}
64 + dev-python/mock[${PYTHON_USEDEP}]
65 + >=dev-python/pyfakefs-3.4[${PYTHON_USEDEP}]
66 + )
67 +"
68 +
69 +python_test() {
70 + esetup.py test
71 +}
72 +
73 +python_install_all() {
74 + distutils-r1_python_install_all
75 +
76 + if use examples; then
77 + docinto examples
78 + dodoc -r "${S}"/examples/.
79 + docompress -x "/usr/share/doc/${PF}/examples"
80 + fi
81 +}