Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests_pkcs12/
Date: Thu, 28 Mar 2019 08:26:29
Message-Id: 1553761569.66c1cbb0a799c7263a6da4f757cc3240cb9a2fb9.gyakovlev@gentoo
1 commit: 66c1cbb0a799c7263a6da4f757cc3240cb9a2fb9
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 28 08:21:41 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 08:26:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66c1cbb0
7
8 dev-python/requests_pkcs12: new package
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 dev-python/requests_pkcs12/Manifest | 1 +
14 dev-python/requests_pkcs12/metadata.xml | 15 ++++++++++++++
15 .../requests_pkcs12/requests_pkcs12-1.4.ebuild | 24 ++++++++++++++++++++++
16 3 files changed, 40 insertions(+)
17
18 diff --git a/dev-python/requests_pkcs12/Manifest b/dev-python/requests_pkcs12/Manifest
19 new file mode 100644
20 index 00000000000..0595f75eac2
21 --- /dev/null
22 +++ b/dev-python/requests_pkcs12/Manifest
23 @@ -0,0 +1 @@
24 +DIST requests_pkcs12-1.4.tar.gz 3884 BLAKE2B ebeb89349163d4f9995c00dfe3d725036a76660870d36203f47029f225698fe7a15993a9dd756e0b6b33011726ad26323962609bb94f223f4478096658f20a3c SHA512 f77703b7b0ba1f13aa095fcf4955f119c34a20e0601e0d6888a29932d8d4289548cf2b7b0e065abfea2ebcda542d48a4d9a3ded32974c1d24bdae223893f0241
25
26 diff --git a/dev-python/requests_pkcs12/metadata.xml b/dev-python/requests_pkcs12/metadata.xml
27 new file mode 100644
28 index 00000000000..0a878536db0
29 --- /dev/null
30 +++ b/dev-python/requests_pkcs12/metadata.xml
31 @@ -0,0 +1,15 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>gyakovlev@g.o</email>
37 + <name>Georgy Yakovlev</name>
38 + </maintainer>
39 + <longdescription lang="en">
40 + Adds PKCS#12 support to the Python requests library in a clean way, without monkey patching or temporary files.
41 + </longdescription>
42 + <upstream>
43 + <remote-id type="github">m-click/requests_pkcs12</remote-id>
44 + <remote-id type="pypi">requests-pkcs12</remote-id>
45 + </upstream>
46 +</pkgmetadata>
47
48 diff --git a/dev-python/requests_pkcs12/requests_pkcs12-1.4.ebuild b/dev-python/requests_pkcs12/requests_pkcs12-1.4.ebuild
49 new file mode 100644
50 index 00000000000..717b7c6e3fa
51 --- /dev/null
52 +++ b/dev-python/requests_pkcs12/requests_pkcs12-1.4.ebuild
53 @@ -0,0 +1,24 @@
54 +# Copyright 1999-2019 Gentoo Authors
55 +# Distributed under the terms of the GNU General Public License v2
56 +
57 +EAPI=7
58 +
59 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
60 +inherit distutils-r1
61 +
62 +DESCRIPTION="Adds PKCS#12 support to the Python requests library in a clean way"
63 +HOMEPAGE="https://github.com/m-click/requests_pkcs12"
64 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
65 +
66 +LICENSE="ISC"
67 +SLOT="0"
68 +KEYWORDS="~amd64 ~x86"
69 +
70 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
71 +
72 +DEPEND=""
73 +
74 +RDEPEND="
75 + dev-python/pyopenssl[${PYTHON_USEDEP}]
76 + >=dev-python/requests-2.18.4[${PYTHON_USEDEP}]
77 +"