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 B0FB5138334 for ; Tue, 31 Jul 2018 18:36:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6905E08C3; Tue, 31 Jul 2018 18:36:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 87A59E08C3 for ; Tue, 31 Jul 2018 18:36:51 +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 01B77335C9B for ; Tue, 31 Jul 2018 18:36:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DF10376 for ; Tue, 31 Jul 2018 18:36:47 +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: <1533062199.eada628c39c5c56447fab296d318155f957bc416.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.1.0.ebuild X-VCS-Directories: sci-libs/pydicom/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: eada628c39c5c56447fab296d318155f957bc416 X-VCS-Branch: master Date: Tue, 31 Jul 2018 18:36:47 +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: 66fb478a-6935-4cef-a24a-aa26f25a69a9 X-Archives-Hash: e9c391dc0882fd0fc113b62204fa13b1 commit: eada628c39c5c56447fab296d318155f957bc416 Author: Horea Christian yandex com> AuthorDate: Tue Jul 31 18:36:39 2018 +0000 Commit: Horea Christian gmail com> CommitDate: Tue Jul 31 18:36:39 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=eada628c sci-libs/pydicom: version bump Package-Manager: Portage-2.3.44, Repoman-2.3.10 sci-libs/pydicom/pydicom-1.1.0.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/sci-libs/pydicom/pydicom-1.1.0.ebuild b/sci-libs/pydicom/pydicom-1.1.0.ebuild new file mode 100644 index 000000000..0c2e1b15e --- /dev/null +++ b/sci-libs/pydicom/pydicom-1.1.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +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" + +# Upstream bug: https://github.com/pydicom/pydicom/issues/663 +RESTRICT="test" + +DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +python_test() { + distutils-r1_install_for_testing + py.test --cov=pydicom -r sx --pyargs pydicom --verbose || die +}