Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyscard/
Date: Thu, 17 Jun 2021 19:47:41
Message-Id: 1623958824.4712306e0e69941cfafe37792b85162c2d6e6876.mgorny@gentoo
1 commit: 4712306e0e69941cfafe37792b85162c2d6e6876
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 17 19:40:24 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 17 19:40:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4712306e
7
8 dev-python/pyscard: Bump to 2.0.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyscard/Manifest | 1 +
13 dev-python/pyscard/pyscard-2.0.1.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-python/pyscard/Manifest b/dev-python/pyscard/Manifest
17 index 500cb312d2b..823b07fa3f6 100644
18 --- a/dev-python/pyscard/Manifest
19 +++ b/dev-python/pyscard/Manifest
20 @@ -1 +1,2 @@
21 DIST pyscard-2.0.0.tar.gz 148326 BLAKE2B ea9e3fbe404dedd7e7290743da4dfe51196beaa7db7ce69ad47316c70afe044cbf3e32666d32786e0d68f225cc6d552b7bb5c79fc62132c6fbee502868d3a205 SHA512 cf2cda96cdbc8f1abc20f969355a9c07698c7c13d826482170f7114962cc683b3c9b8a39aa19b76b6ae1e6c6e8875407bb9fa04908a0b22c96d0b3cbd234fe0b
22 +DIST pyscard-2.0.1.tar.gz 149193 BLAKE2B f140e3e62635634de8125d88c69e4ac3657468eef04798b4ce5b20d73905189ced71f041ef7742233a185aff8b28cc0fcda5af175d6dff21afeff84f062afcce SHA512 c9292b9616f150e500b308c47b0d6ed6f869f2022149c99a7789f8fef8c145dec4db84d35b6df30fa31d4007dffff75fcc21c9846693eccd9bd3bc8ec77fce5a
23
24 diff --git a/dev-python/pyscard/pyscard-2.0.1.ebuild b/dev-python/pyscard/pyscard-2.0.1.ebuild
25 new file mode 100644
26 index 00000000000..f40381afb5e
27 --- /dev/null
28 +++ b/dev-python/pyscard/pyscard-2.0.1.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +
37 +inherit distutils-r1 optfeature
38 +
39 +DESCRIPTION="Smart card support in python"
40 +HOMEPAGE="https://pyscard.sourceforge.io/
41 + https://github.com/LudovicRousseau/pyscard
42 + https://pypi.org/project/pyscard/"
43 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="LGPL-2.1"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~x86"
48 +
49 +RDEPEND="sys-apps/pcsc-lite"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="dev-lang/swig"
52 +
53 +distutils_enable_tests setup.py
54 +
55 +pkg_postinst() {
56 + optfeature "Gui support" dev-python/wxpython
57 + optfeature "Support of remote readers with Pyro" dev-python/pyro
58 +}