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 A9FC6158093 for ; Sat, 2 Jul 2022 12:20:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB087E0C56; Sat, 2 Jul 2022 12:20:42 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8D01E0C56 for ; Sat, 2 Jul 2022 12:20:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8414F3414A8 for ; Sat, 2 Jul 2022 12:20:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74020326 for ; Sat, 2 Jul 2022 12:20:34 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1656764413.28c3726f57a31b2df2476493aec799775c8cae94.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/eyeD3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/eyeD3/eyeD3-0.9.6.ebuild X-VCS-Directories: dev-python/eyeD3/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 28c3726f57a31b2df2476493aec799775c8cae94 X-VCS-Branch: master Date: Sat, 2 Jul 2022 12:20:34 +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: cf581f74-dd0c-4304-97e5-1ff8655e8cc0 X-Archives-Hash: b8ee0de91865bb4cd4aa8da8d036cd20 commit: 28c3726f57a31b2df2476493aec799775c8cae94 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Jul 2 12:20:13 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Jul 2 12:20:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28c3726f dev-python/eyeD3: drop 0.9.6 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/eyeD3/eyeD3-0.9.6.ebuild | 45 ------------------------------------- 1 file changed, 45 deletions(-) diff --git a/dev-python/eyeD3/eyeD3-0.9.6.ebuild b/dev-python/eyeD3/eyeD3-0.9.6.ebuild deleted file mode 100644 index 8245a9dc9755..000000000000 --- a/dev-python/eyeD3/eyeD3-0.9.6.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Module for manipulating ID3 (v1 + v2) tags in Python" -HOMEPAGE="https://eyed3.nicfit.net/" -SRC_URI="https://github.com/nicfit/eyeD3/archive/v${PV}.tar.gz -> ${P}.tar.gz - test? ( https://eyed3.nicfit.net/releases/eyeD3-test-data.tgz )" - -LICENSE="GPL-2" -SLOT="0.7" -KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" - -RDEPEND=" - dev-python/deprecation[${PYTHON_USEDEP}] - dev-python/filetype[${PYTHON_USEDEP}]" -# note: most of the deps are optional runtime deps / plugin deps -BDEPEND=" - test? ( - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/pylast[${PYTHON_USEDEP}] - dev-python/ruamel-yaml[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -src_prepare() { - # requires unpackaged factory-boy, doesn't seem to relevant - # to anything but eyeD3 usage with factory-boy - rm tests/test_factory.py || die - # requires unpackaged grako - rm tests/test_display_plugin.py || die - - if use test; then - mv "${WORKDIR}"/eyeD3-test-data tests/data || die - fi - - distutils-r1_src_prepare -}