Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/k5test/
Date: Thu, 03 Dec 2020 04:18:16
Message-Id: 1606969090.3d48864941b96d59ca599e90fcb299d1a6e2b774.Alessandro-Barbieri@gentoo
1 commit: 3d48864941b96d59ca599e90fcb299d1a6e2b774
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Thu Dec 3 03:38:03 2020 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Thu Dec 3 04:18:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3d488649
7
8 dev-python/k5test: new package
9
10 Package-Manager: Portage-3.0.10, Repoman-3.0.2
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 dev-python/k5test/Manifest | 1 +
14 dev-python/k5test/k5test-0.9.2.ebuild | 23 +++++++++++++++++++++++
15 dev-python/k5test/metadata.xml | 18 ++++++++++++++++++
16 3 files changed, 42 insertions(+)
17
18 diff --git a/dev-python/k5test/Manifest b/dev-python/k5test/Manifest
19 new file mode 100644
20 index 00000000..c16461c1
21 --- /dev/null
22 +++ b/dev-python/k5test/Manifest
23 @@ -0,0 +1 @@
24 +DIST k5test-0.9.2.tar.gz 8216 BLAKE2B 7a4864c6c37725f87b0c4b6263093ac01a190bfd769a288c4f47c5590b42fa452af56150e89fa867b7a5b1ea56204f54b769b31b49113c5921a5209336ac9a36 SHA512 0feb0335da75c6201f43760834c723b82428838791f9adddd75a7259e55d9d74e752ce11fdfad9a2964abf9ca2cfe03e4914127af5f3d421fe78966cbeab647e
25
26 diff --git a/dev-python/k5test/k5test-0.9.2.ebuild b/dev-python/k5test/k5test-0.9.2.ebuild
27 new file mode 100644
28 index 00000000..572259b7
29 --- /dev/null
30 +++ b/dev-python/k5test/k5test-0.9.2.ebuild
31 @@ -0,0 +1,23 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="7"
36 +
37 +PYTHON_COMPAT=( python3_{6..9} pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A library for setting up self-contained Kerberos 5 environments"
42 +HOMEPAGE="https://github.com/pythongssapi/k5test"
43 +SRC_URI="https://github.com/pythongssapi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="ISC MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +
50 +DEPEND="dev-python/six[${PYTHON_USEDEP}]"
51 +RDEPEND="
52 + ${DEPEND}
53 + virtual/krb5
54 +"
55
56 diff --git a/dev-python/k5test/metadata.xml b/dev-python/k5test/metadata.xml
57 new file mode 100644
58 index 00000000..047a794c
59 --- /dev/null
60 +++ b/dev-python/k5test/metadata.xml
61 @@ -0,0 +1,18 @@
62 +<?xml version="1.0" encoding="UTF-8"?>
63 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
64 +<pkgmetadata>
65 + <maintainer type="person">
66 + <email>lssndrbarbieri@×××××.com</email>
67 + <name>Alessandro Barbieri</name>
68 + </maintainer>
69 + <longdescription lang="en">
70 + A library for setting up self-contained Kerberos 5 environments,
71 + and running Python unit tests inside those environments.
72 + It is based on the file of the same name found alongside the MIT
73 + Kerberos 5 unit tests.
74 + </longdescription>
75 + <upstream>
76 + <remote-id type="github">pythongssapi/k5test</remote-id>
77 + <remote-id type="pypi">k5test</remote-id>
78 + </upstream>
79 +</pkgmetadata>