Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/pwman3/
Date: Thu, 23 Apr 2020 06:37:15
Message-Id: 1587623780.09cc7ad0e31e252baad162072fdb6779b5468c83.juippis@gentoo
1 commit: 09cc7ad0e31e252baad162072fdb6779b5468c83
2 Author: Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Thu Apr 23 05:40:01 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 06:36:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09cc7ad0
7
8 app-admin/pwman3: add python3.7 and python3.8
9
10 Closes: https://bugs.gentoo.org/718186
11 Package-Manager: Portage-2.3.89, Repoman-2.3.20
12 Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
13 Closes: https://github.com/gentoo/gentoo/pull/15419
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 app-admin/pwman3/pwman3-0.10.0-r1.ebuild | 31 +++++++++++++++++++++++++++++++
17 1 file changed, 31 insertions(+)
18
19 diff --git a/app-admin/pwman3/pwman3-0.10.0-r1.ebuild b/app-admin/pwman3/pwman3-0.10.0-r1.ebuild
20 new file mode 100644
21 index 00000000000..fac9659b89f
22 --- /dev/null
23 +++ b/app-admin/pwman3/pwman3-0.10.0-r1.ebuild
24 @@ -0,0 +1,31 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +PYTHON_COMPAT=( python3_{6,7,8} )
31 +PYTHON_REQ_USE="sqlite"
32 +inherit distutils-r1 eutils
33 +
34 +DESCRIPTION="A lightweight password-manager with multiple database backends"
35 +HOMEPAGE="https://pwman3.github.io/pwman3/"
36 +SRC_URI="https://github.com/pwman3/pwman3/archive/v${PV}.tar.gz -> ${P}.tar.gz"
37 +
38 +LICENSE="GPL-3+"
39 +SLOT="0"
40 +KEYWORDS="~amd64"
41 +RESTRICT="!test? ( test )"
42 +
43 +RDEPEND="
44 + >=dev-python/cryptography-2.3[${PYTHON_USEDEP}]
45 + >=dev-python/colorama-0.3.0[${PYTHON_USEDEP}]
46 + test? ( dev-python/pexpect[${PYTHON_USEDEP}] )
47 + "
48 +
49 +distutils_enable_tests setup.py
50 +
51 +pkg_postinst() {
52 + optfeature "Support for mongodb" dev-python/pymongo
53 + optfeature "Support for postgresql" dev-python/psycopg
54 + optfeature "Support for mysql" dev-python/pymysql
55 +}