Gentoo Archives: gentoo-commits

From: Slawek Lis <slis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/munch/
Date: Tue, 30 May 2017 10:32:27
Message-Id: 1496140487.c17ea7fc3402e22338bfdb0019b1d51b2b34716d.slis@gentoo
1 commit: c17ea7fc3402e22338bfdb0019b1d51b2b34716d
2 Author: Slawomir Lis <slis <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 30 09:09:31 2017 +0000
4 Commit: Slawek Lis <slis <AT> gentoo <DOT> org>
5 CommitDate: Tue May 30 10:34:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c17ea7fc
7
8 dev-python/munch: package added
9
10 Needed by sci-libs/Fiona
11
12 Package-Manager: Portage-2.3.6, Repoman-2.3.2
13
14 dev-python/munch/Manifest | 1 +
15 dev-python/munch/metadata.xml | 11 +++++++++++
16 dev-python/munch/munch-2.1.1.ebuild | 23 +++++++++++++++++++++++
17 3 files changed, 35 insertions(+)
18
19 diff --git a/dev-python/munch/Manifest b/dev-python/munch/Manifest
20 new file mode 100644
21 index 00000000000..b3b97c7efa8
22 --- /dev/null
23 +++ b/dev-python/munch/Manifest
24 @@ -0,0 +1 @@
25 +DIST munch-2.1.1.tar.gz 6565 SHA256 648b650d1eb0173bd83c29f2eea2568b7591c1e05c87971387d170c71c6397e8 SHA512 5ffd78b1e062f71c73047a03949e6cddcd0eeae3a0ccccf36687140d12de9eb29161d2891a0fa2f1e70dfbc2b33c4ddab5d8a3611990718330c280ea769e85c0 WHIRLPOOL 8c5419758ed5e405fcf035fa32fb12be5291fac0658df4498fe6c570af5c4a099957c63f0d13320d213e8bd802738c000eb460f4b4c5349aee849c72b4e72613
26
27 diff --git a/dev-python/munch/metadata.xml b/dev-python/munch/metadata.xml
28 new file mode 100644
29 index 00000000000..91b51b7d902
30 --- /dev/null
31 +++ b/dev-python/munch/metadata.xml
32 @@ -0,0 +1,11 @@
33 +<?xml version='1.0' encoding='UTF-8'?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 + <maintainer type="person">
37 + <email>slis@g.o</email>
38 + </maintainer>
39 + <upstream>
40 + <remote-id type="pypi">munch</remote-id>
41 + <remote-id type="github">Infinidat/munch</remote-id>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/dev-python/munch/munch-2.1.1.ebuild b/dev-python/munch/munch-2.1.1.ebuild
46 new file mode 100644
47 index 00000000000..aa25405c3e0
48 --- /dev/null
49 +++ b/dev-python/munch/munch-2.1.1.ebuild
50 @@ -0,0 +1,23 @@
51 +# Copyright 1999-2017 Gentoo Foundation
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI="6"
55 +
56 +PYTHON_COMPAT=( python{2_{5,6,7},3_{3,4,5}} )
57 +
58 +inherit distutils-r1
59 +
60 +DESCRIPTION="A dot-accessible dictionary (a la JavaScript objects)"
61 +HOMEPAGE="https://github.com/Infinidat/munch"
62 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63 +
64 +LICENSE="BSD"
65 +KEYWORDS="~amd64 ~x86"
66 +SLOT="0"
67 +IUSE=""
68 +
69 +RDEPEND=""
70 +DEPEND="
71 + ${RDEPEND}
72 + dev-python/setuptools[${PYTHON_USEDEP}]
73 +"