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 68F0D15806E for ; Mon, 22 May 2023 11:03:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A876E0AC5; Mon, 22 May 2023 11:03:47 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52AA1E0AC5 for ; Mon, 22 May 2023 11:03:47 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 799A7340AF0 for ; Mon, 22 May 2023 11:03:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9170A76 for ; Mon, 22 May 2023 11:03:44 +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: <1684753399.4f301f7cc0b58c2f3eaf61c123c696a86d2046bb.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-2.2.2.ebuild X-VCS-Directories: sci-libs/pydicom/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 4f301f7cc0b58c2f3eaf61c123c696a86d2046bb X-VCS-Branch: master Date: Mon, 22 May 2023 11:03:44 +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: 127ece73-987a-441d-99cb-b057b0d9a18d X-Archives-Hash: 70dbfb4b72e824423b43070f07deb9ea commit: 4f301f7cc0b58c2f3eaf61c123c696a86d2046bb Author: Horea Christian chymera eu> AuthorDate: Mon May 22 11:03:19 2023 +0000 Commit: Horea Christian gmail com> CommitDate: Mon May 22 11:03:19 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4f301f7c sci-libs/pydicom: update SRC_URI Signed-off-by: Horea Christian chymera.eu> sci-libs/pydicom/pydicom-2.2.2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-libs/pydicom/pydicom-2.2.2.ebuild b/sci-libs/pydicom/pydicom-2.2.2.ebuild index 50e001227..a767c2d03 100644 --- a/sci-libs/pydicom/pydicom-2.2.2.ebuild +++ b/sci-libs/pydicom/pydicom-2.2.2.ebuild @@ -3,13 +3,13 @@ EAPI=8 +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..11} ) -inherit distutils-r1 +inherit distutils-r1 pypi 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" @@ -23,5 +23,5 @@ DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" python_test() { distutils-r1_install_for_testing - py.test --cov=pydicom -r sx --pyargs pydicom --verbose || die + py.test -r sx --pyargs pydicom --verbose || die }