Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/pydicom/
Date: Tue, 31 Jul 2018 18:36:53
Message-Id: 1533062199.eada628c39c5c56447fab296d318155f957bc416.chymera@gentoo
1 commit: eada628c39c5c56447fab296d318155f957bc416
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Tue Jul 31 18:36:39 2018 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Tue Jul 31 18:36:39 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=eada628c
7
8 sci-libs/pydicom: version bump
9
10 Package-Manager: Portage-2.3.44, Repoman-2.3.10
11
12 sci-libs/pydicom/pydicom-1.1.0.ebuild | 27 +++++++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/sci-libs/pydicom/pydicom-1.1.0.ebuild b/sci-libs/pydicom/pydicom-1.1.0.ebuild
16 new file mode 100644
17 index 000000000..0c2e1b15e
18 --- /dev/null
19 +++ b/sci-libs/pydicom/pydicom-1.1.0.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="A pure python package for parsing DICOM files"
31 +HOMEPAGE="http://www.pydicom.org/"
32 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE="test"
38 +
39 +# Upstream bug: https://github.com/pydicom/pydicom/issues/663
40 +RESTRICT="test"
41 +
42 +DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
43 +
44 +python_test() {
45 + distutils-r1_install_for_testing
46 + py.test --cov=pydicom -r sx --pyargs pydicom --verbose || die
47 +}