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 46EB7138350 for ; Fri, 13 Mar 2020 17:24:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0383CE0CB0; Fri, 13 Mar 2020 17:24:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D6194E0CB0 for ; Fri, 13 Mar 2020 17:24:14 +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 6593734EBFB for ; Fri, 13 Mar 2020 17:24:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F05D9C for ; Fri, 13 Mar 2020 17:24:11 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1584120239.93db1deef32d195a5ae05947b2eeed8e3e209d7c.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/pydicom/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/pydicom/pydicom-1.4.2.ebuild X-VCS-Directories: sci-libs/pydicom/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 93db1deef32d195a5ae05947b2eeed8e3e209d7c X-VCS-Branch: master Date: Fri, 13 Mar 2020 17:24:11 +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: 3a353cef-327d-49d0-94d2-b4c2bc31dafc X-Archives-Hash: 8046ade742d18f21832cc614d99cdb96 commit: 93db1deef32d195a5ae05947b2eeed8e3e209d7c Author: Horea Christian chymera eu> AuthorDate: Fri Mar 13 17:23:59 2020 +0000 Commit: Horea Christian gmail com> CommitDate: Fri Mar 13 17:23:59 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=93db1dee sci-libs/pydicom: version bump 1.4.2 with PYTHON_COMPAT 3_7 bump and test suite fix Package-Manager: Portage-2.3.92, Repoman-2.3.20 Signed-off-by: Horea Christian chymera.eu> sci-libs/pydicom/pydicom-1.4.2.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/sci-libs/pydicom/pydicom-1.4.2.ebuild b/sci-libs/pydicom/pydicom-1.4.2.ebuild new file mode 100644 index 000000000..2ab96e750 --- /dev/null +++ b/sci-libs/pydicom/pydicom-1.4.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{3_6,3_7} ) + +inherit distutils-r1 + +DESCRIPTION="A pure python package for parsing DICOM files" +HOMEPAGE="http://www.pydicom.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RESTRICT="!test? ( test )" + +DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +python_test() { + distutils-r1_install_for_testing + py.test -r sx --pyargs pydicom --verbose || die +}