Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python3-openid/
Date: Fri, 11 Sep 2020 10:43:02
Message-Id: 1599820965.30ec5e66f4abdf324d39a517e4e8eba1591b9830.hanno@gentoo
1 commit: 30ec5e66f4abdf324d39a517e4e8eba1591b9830
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 11 10:42:45 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 11 10:42:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ec5e66
7
8 dev-python/python3-openid: Initial commit
9
10 Needed for mailman 3.
11
12 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
13 Package-Manager: Portage-3.0.6, Repoman-3.0.1
14
15 dev-python/python3-openid/Manifest | 1 +
16 dev-python/python3-openid/metadata.xml | 10 ++++++++++
17 .../python3-openid/python3-openid-3.2.0.ebuild | 22 ++++++++++++++++++++++
18 3 files changed, 33 insertions(+)
19
20 diff --git a/dev-python/python3-openid/Manifest b/dev-python/python3-openid/Manifest
21 new file mode 100644
22 index 00000000000..62c1b143f24
23 --- /dev/null
24 +++ b/dev-python/python3-openid/Manifest
25 @@ -0,0 +1 @@
26 +DIST python3-openid-3.2.0.tar.gz 305600 BLAKE2B d793eb61335d7240d5c25324b8377d19781df15012c8da6d5d0d7445c8a7fcb31711156b48d32efae8b6de27509e8f9112535ece7820779ca9b7f2e7be04fb0f SHA512 54412820fef21928e1bf30d16c9bc73d454e9ff41df028a12047c08abdb4c2c9e1d9053daebab8b0327cb0fe0f67e364c2506a47509fef6db5bff42f8399b799
27
28 diff --git a/dev-python/python3-openid/metadata.xml b/dev-python/python3-openid/metadata.xml
29 new file mode 100644
30 index 00000000000..4c9521c7cf1
31 --- /dev/null
32 +++ b/dev-python/python3-openid/metadata.xml
33 @@ -0,0 +1,10 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="person">
38 + <email>hanno@g.o</email>
39 + </maintainer>
40 + <upstream>
41 + <remote-id type="pypi">python3-openid</remote-id>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/dev-python/python3-openid/python3-openid-3.2.0.ebuild b/dev-python/python3-openid/python3-openid-3.2.0.ebuild
46 new file mode 100644
47 index 00000000000..dbb072652b9
48 --- /dev/null
49 +++ b/dev-python/python3-openid/python3-openid-3.2.0.ebuild
50 @@ -0,0 +1,22 @@
51 +# Copyright 1999-2020 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=7
55 +
56 +PYTHON_COMPAT=( python3_{6,7,8,9} )
57 +
58 +inherit distutils-r1
59 +
60 +DESCRIPTION="OpenID support for modern servers and consumers"
61 +HOMEPAGE="https://github.com/necaris/python3-openid"
62 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63 +
64 +LICENSE="Apache-2.0"
65 +SLOT="0"
66 +KEYWORDS="~amd64"
67 +IUSE=""
68 +
69 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
70 +RDEPEND="dev-python/defusedxml[${PYTHON_USEDEP}]"
71 +
72 +DOCS=( NEWS.md README.md )