From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7BC62139695 for ; Tue, 30 May 2017 10:32:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9668DE0E9B; Tue, 30 May 2017 10:32:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 725E3E0E9B for ; Tue, 30 May 2017 10:32:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BD3E234168E for ; Tue, 30 May 2017 10:31:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63F977466 for ; Tue, 30 May 2017 10:31:52 +0000 (UTC) From: "Slawek Lis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Slawek Lis" Message-ID: <1496140487.c17ea7fc3402e22338bfdb0019b1d51b2b34716d.slis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/munch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/munch/Manifest dev-python/munch/metadata.xml dev-python/munch/munch-2.1.1.ebuild X-VCS-Directories: dev-python/munch/ X-VCS-Committer: slis X-VCS-Committer-Name: Slawek Lis X-VCS-Revision: c17ea7fc3402e22338bfdb0019b1d51b2b34716d X-VCS-Branch: master Date: Tue, 30 May 2017 10:31:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: aac8b4a1-aa4c-45b7-94b5-ee9014c0de91 X-Archives-Hash: 6b2e76bc991048fcce6d4e42ad81736e commit: c17ea7fc3402e22338bfdb0019b1d51b2b34716d Author: Slawomir Lis gentoo org> AuthorDate: Tue May 30 09:09:31 2017 +0000 Commit: Slawek Lis gentoo org> CommitDate: Tue May 30 10:34:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c17ea7fc dev-python/munch: package added Needed by sci-libs/Fiona Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-python/munch/Manifest | 1 + dev-python/munch/metadata.xml | 11 +++++++++++ dev-python/munch/munch-2.1.1.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/dev-python/munch/Manifest b/dev-python/munch/Manifest new file mode 100644 index 00000000000..b3b97c7efa8 --- /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 00000000000..91b51b7d902 --- /dev/null +++ b/dev-python/munch/metadata.xml @@ -0,0 +1,11 @@ + + + + + slis@gentoo.org + + + munch + Infinidat/munch + + 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 00000000000..aa25405c3e0 --- /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}] +"