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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 699BE15ACFC for ; Tue, 2 May 2023 12:15:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA377E0894; Tue, 2 May 2023 12:15:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 90DCCE0894 for ; Tue, 2 May 2023 12:15:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A464C340A7B for ; Tue, 2 May 2023 12:15:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28C73A6D for ; Tue, 2 May 2023 12:15:41 +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: <1683029726.96fb0e4d71b642b34b1431d23ba73b03dd4688c4.andrewammerlaan@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 sci-libs/pydicom/pydicom-1.4.2.ebuild X-VCS-Directories: sci-libs/pydicom/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 96fb0e4d71b642b34b1431d23ba73b03dd4688c4 X-VCS-Branch: master Date: Tue, 2 May 2023 12:15:41 +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: 39314829-92d9-444b-b21c-c9a9e3075ccb X-Archives-Hash: 0f9c2cdc899aefb50f0290b5154e5d82 commit: 96fb0e4d71b642b34b1431d23ba73b03dd4688c4 Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue May 2 12:13:22 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue May 2 12:15:26 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=96fb0e4d sci-libs/pydicom: drop 1.1.0, 1.4.2 Signed-off-by: Andrew Ammerlaan gentoo.org> sci-libs/pydicom/pydicom-1.1.0.ebuild | 27 --------------------------- sci-libs/pydicom/pydicom-1.4.2.ebuild | 26 -------------------------- 2 files changed, 53 deletions(-) diff --git a/sci-libs/pydicom/pydicom-1.1.0.ebuild b/sci-libs/pydicom/pydicom-1.1.0.ebuild deleted file mode 100644 index 523da2654..000000000 --- a/sci-libs/pydicom/pydicom-1.1.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) - -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 -} diff --git a/sci-libs/pydicom/pydicom-1.4.2.ebuild b/sci-libs/pydicom/pydicom-1.4.2.ebuild deleted file mode 100644 index f02b71a97..000000000 --- a/sci-libs/pydicom/pydicom-1.4.2.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) - -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 -}