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 C67D813835A for ; Thu, 20 May 2021 15:02:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8866E088A; Thu, 20 May 2021 15:02:37 +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 AD77AE0884 for ; Thu, 20 May 2021 15:02:37 +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 5DB0B340DBE for ; Thu, 20 May 2021 15:02:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F79C78E for ; Thu, 20 May 2021 15:02:34 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1621522950.659867b70765776d0ba2b87e7d1ba224d72efe42.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dictdiffer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dictdiffer/Manifest dev-python/dictdiffer/dictdiffer-0.8.1.ebuild dev-python/dictdiffer/metadata.xml X-VCS-Directories: dev-python/dictdiffer/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 659867b70765776d0ba2b87e7d1ba224d72efe42 X-VCS-Branch: master Date: Thu, 20 May 2021 15:02:34 +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: 75bcde7c-fe35-4fb6-b981-5cfe1c750063 X-Archives-Hash: d7ff689096a1988f4b95b938248036b8 commit: 659867b70765776d0ba2b87e7d1ba224d72efe42 Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu May 20 14:19:36 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu May 20 15:02:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=659867b7 dev-python/dictdiffer: add new dep of sphobjinv Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/dictdiffer/Manifest | 1 + dev-python/dictdiffer/dictdiffer-0.8.1.ebuild | 45 +++++++++++++++++++++++++++ dev-python/dictdiffer/metadata.xml | 14 +++++++++ 3 files changed, 60 insertions(+) diff --git a/dev-python/dictdiffer/Manifest b/dev-python/dictdiffer/Manifest new file mode 100644 index 00000000000..1b275b52ba2 --- /dev/null +++ b/dev-python/dictdiffer/Manifest @@ -0,0 +1 @@ +DIST dictdiffer-0.8.1.tar.gz 28555 BLAKE2B 0a6d330134c368e11e07b23d7fe592e72b64b02ede99eb2d52c2d7452b4d2505e7e3afa75ba76c30cbbd663d9cc4c073d8f236200fdfa2866c8beadd097d63b7 SHA512 e221bb0e25a35380519bf775a63fc0d692112dab15a46c8878ef2c9a6780932c8550a4486c4eab7803619a79c2f794a590a5c9ae0fbbccac04b5b11feaf38bbb diff --git a/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild b/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild new file mode 100644 index 00000000000..fb46f2e49d0 --- /dev/null +++ b/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Dictdiffer is a library that helps you to diff and patch dictionaries" +HOMEPAGE=" + https://github.com/inveniosoftware/dictdiffer/ + https://pypi.org/project/dictdiffer/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~amd64" +SLOT="0" + +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( + dev-python/isort[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest +# Requires self to be already installed +#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme + +python_prepare_all() { + # remove dep on pytest-runner + sed -i -e '/pytest-runner/d' setup.py || die + + # remove dep on pytest-pep8 and pytest-cov + sed -i -e '/addopts/d' pytest.ini || die + + distutils-r1_python_prepare_all +} diff --git a/dev-python/dictdiffer/metadata.xml b/dev-python/dictdiffer/metadata.xml new file mode 100644 index 00000000000..86e09fd12fa --- /dev/null +++ b/dev-python/dictdiffer/metadata.xml @@ -0,0 +1,14 @@ + + + + + + andrewammerlaan@gentoo.org + Andrew Ammerlaan + + + inveniosoftware/dictdiffer + dictdiffer + + +