Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/frozendict/
Date: Tue, 11 Feb 2020 11:42:51
Message-Id: 1581421285.85f80e509615f50cc313c91094a54938913e97b5.alexxy@gentoo
1 commit: 85f80e509615f50cc313c91094a54938913e97b5
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 11 09:39:10 2020 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 11 11:41:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f80e50
7
8 dev-python/frozendict: initial impiort
9
10 Package-Manager: Portage-2.3.86, Repoman-2.3.20
11 Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
12
13 dev-python/frozendict/Manifest | 1 +
14 dev-python/frozendict/frozendict-1.2.ebuild | 18 ++++++++++++++++++
15 dev-python/frozendict/metadata.xml | 16 ++++++++++++++++
16 3 files changed, 35 insertions(+)
17
18 diff --git a/dev-python/frozendict/Manifest b/dev-python/frozendict/Manifest
19 new file mode 100644
20 index 00000000000..e28118e5c9e
21 --- /dev/null
22 +++ b/dev-python/frozendict/Manifest
23 @@ -0,0 +1 @@
24 +DIST frozendict-1.2.tar.gz 2650 BLAKE2B 8c2e10055d60a1fcec76be993c7fa1ba2b445a4880b1f7cc2e1a1be4010912da20bba2e7481fd861445d386814b3523993c9d73786b3f95d3f9e2444c44472ce SHA512 095cf5f6f8b02bf5666e04200431992bf4b3160aae3464d528bc256b1ab643e29dda78fe94d9e8c983dbfe66cd2459e0559122e17b6b8660c0552adc5318b3da
25
26 diff --git a/dev-python/frozendict/frozendict-1.2.ebuild b/dev-python/frozendict/frozendict-1.2.ebuild
27 new file mode 100644
28 index 00000000000..21b2884c4f7
29 --- /dev/null
30 +++ b/dev-python/frozendict/frozendict-1.2.ebuild
31 @@ -0,0 +1,18 @@
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_{5,6,7,8} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A simple immutable mapping for python"
42 +HOMEPAGE="https://github.com/slezica/python-frozendict"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
47 +
48 +BDEPEND=""
49 +RDEPEND=""
50
51 diff --git a/dev-python/frozendict/metadata.xml b/dev-python/frozendict/metadata.xml
52 new file mode 100644
53 index 00000000000..c66317b286d
54 --- /dev/null
55 +++ b/dev-python/frozendict/metadata.xml
56 @@ -0,0 +1,16 @@
57 +<?xml version="1.0" encoding="UTF-8"?>
58 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
59 +<pkgmetadata>
60 + <maintainer type="person">
61 + <email>alexxy@g.o</email>
62 + <name>Alexey Shvetsov</name>
63 + </maintainer>
64 + <maintainer type="project">
65 + <email>python@g.o</email>
66 + <name>Python</name>
67 + </maintainer>
68 + <upstream>
69 + <remote-id type="pypi">frozendict</remote-id>
70 + <remote-id type="github">slezica/python-frozendict</remote-id>
71 + </upstream>
72 +</pkgmetadata>