diff options
author | Slawomir Lis <slis@gentoo.org> | 2017-05-30 11:09:31 +0200 |
---|---|---|
committer | Slawomir Lis <slis@gentoo.org> | 2017-05-30 12:34:47 +0200 |
commit | c17ea7fc3402e22338bfdb0019b1d51b2b34716d (patch) | |
tree | 082b9f2e5c206d768db3fc600b8ac78645e20983 /dev-python/munch | |
parent | dev-python/cligj: package added (diff) | |
download | gentoo-c17ea7fc3402e22338bfdb0019b1d51b2b34716d.tar.gz gentoo-c17ea7fc3402e22338bfdb0019b1d51b2b34716d.tar.bz2 gentoo-c17ea7fc3402e22338bfdb0019b1d51b2b34716d.zip |
dev-python/munch: package added
Needed by sci-libs/Fiona
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-python/munch')
-rw-r--r-- | dev-python/munch/Manifest | 1 | ||||
-rw-r--r-- | dev-python/munch/metadata.xml | 11 | ||||
-rw-r--r-- | dev-python/munch/munch-2.1.1.ebuild | 23 |
3 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/munch/Manifest b/dev-python/munch/Manifest new file mode 100644 index 000000000000..b3b97c7efa86 --- /dev/null +++ b/dev-python/munch/Manifest @@ -0,0 +1 @@ +DIST munch-2.1.1.tar.gz 6565 SHA256 648b650d1eb0173bd83c29f2eea2568b7591c1e05c87971387d170c71c6397e8 SHA512 5ffd78b1e062f71c73047a03949e6cddcd0eeae3a0ccccf36687140d12de9eb29161d2891a0fa2f1e70dfbc2b33c4ddab5d8a3611990718330c280ea769e85c0 WHIRLPOOL 8c5419758ed5e405fcf035fa32fb12be5291fac0658df4498fe6c570af5c4a099957c63f0d13320d213e8bd802738c000eb460f4b4c5349aee849c72b4e72613 diff --git a/dev-python/munch/metadata.xml b/dev-python/munch/metadata.xml new file mode 100644 index 000000000000..91b51b7d902b --- /dev/null +++ b/dev-python/munch/metadata.xml @@ -0,0 +1,11 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>slis@gentoo.org</email> + </maintainer> + <upstream> + <remote-id type="pypi">munch</remote-id> + <remote-id type="github">Infinidat/munch</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/munch/munch-2.1.1.ebuild b/dev-python/munch/munch-2.1.1.ebuild new file mode 100644 index 000000000000..aa25405c3e0b --- /dev/null +++ b/dev-python/munch/munch-2.1.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +PYTHON_COMPAT=( python{2_{5,6,7},3_{3,4,5}} ) + +inherit distutils-r1 + +DESCRIPTION="A dot-accessible dictionary (a la JavaScript objects)" +HOMEPAGE="https://github.com/Infinidat/munch" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +RDEPEND="" +DEPEND=" + ${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] +" |