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 C7CFF138334 for ; Fri, 12 Apr 2019 05:01:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F6F1E089A; Fri, 12 Apr 2019 05:01:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54302E089A for ; Fri, 12 Apr 2019 05:01:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B03F4335C9C for ; Fri, 12 Apr 2019 05:01:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 965A757E for ; Fri, 12 Apr 2019 05:01:48 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1555044534.ebc72a2ebd0831e8fc99f736074b0b178fb8a722.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xmltodict/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xmltodict/Manifest dev-python/xmltodict/xmltodict-0.12.0.ebuild X-VCS-Directories: dev-python/xmltodict/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: ebc72a2ebd0831e8fc99f736074b0b178fb8a722 X-VCS-Branch: master Date: Fri, 12 Apr 2019 05:01:48 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 90398f6b-87d0-4ed9-aec5-51f337eb8c89 X-Archives-Hash: 66a3f255b7d3429ff9a4aa7fecb88d15 commit: ebc72a2ebd0831e8fc99f736074b0b178fb8a722 Author: Tim Harder gentoo org> AuthorDate: Fri Apr 12 04:24:47 2019 +0000 Commit: Tim Harder gentoo org> CommitDate: Fri Apr 12 04:48:54 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebc72a2e dev-python/xmltodict: version bump to 0.12.0 Signed-off-by: Tim Harder gentoo.org> dev-python/xmltodict/Manifest | 1 + dev-python/xmltodict/xmltodict-0.12.0.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-python/xmltodict/Manifest b/dev-python/xmltodict/Manifest index c4f9109cd4f..b498770a048 100644 --- a/dev-python/xmltodict/Manifest +++ b/dev-python/xmltodict/Manifest @@ -1 +1,2 @@ DIST xmltodict-0.11.0.tar.gz 26589 BLAKE2B 29498ac9c2f80828aa24d6cc4866aa6846fe10eb411a3e3617d85989c88628cc7c87ab80adb9ded492545fa2b4796a14b540479da75bfe464d1dfd811bbe1dc9 SHA512 d42ef146a40f386a5389958f890605c560ce9db2da4447099b8725edc1998339b77ea732576fc7e77fbe5a755a2dc3239dfae4a82fc6593c5f977145ab445295 +DIST xmltodict-0.12.0.tar.gz 18481 BLAKE2B f7b7b71a6eaacc833a54369be38aa988b5c27845b19001c1d13e955df1f3a26c04dd2a1b45f0c0e704c4df6f4d380abdda7189944cc45b001eeef55405c43299 SHA512 1ec3de3ebd05adbe032ca569a71048e72097c0f5fc864b63f168d661f72d13d0981e6e62bb9ca2ffe925a3b2f7c2fb90a44177427d4bdf68137842342a9cd2c8 diff --git a/dev-python/xmltodict/xmltodict-0.12.0.ebuild b/dev-python/xmltodict/xmltodict-0.12.0.ebuild new file mode 100644 index 00000000000..12e48727d09 --- /dev/null +++ b/dev-python/xmltodict/xmltodict-0.12.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Makes working with XML feel like you are working with JSON" +HOMEPAGE="https://github.com/martinblech/xmltodict/ https://pypi.org/project/xmltodict/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + nosetests -v || die "Tests fail with ${EPYTHON}" +}