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 C16DF158091 for ; Tue, 7 Jun 2022 07:15:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7DF0E08CE; Tue, 7 Jun 2022 07:15:39 +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 104ABE08CE for ; Tue, 7 Jun 2022 07:15:37 +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 EE76B3418A1 for ; Tue, 7 Jun 2022 07:15:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 681EC471 for ; Tue, 7 Jun 2022 07:15:05 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1654586101.7bf1473e6f41937c3f0a2dba69ffd0ffc539f0af.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tagpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tagpy/tagpy-2018.1-r2.ebuild X-VCS-Directories: dev-python/tagpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7bf1473e6f41937c3f0a2dba69ffd0ffc539f0af X-VCS-Branch: master Date: Tue, 7 Jun 2022 07:15:05 +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: e1c626b8-63dd-408e-b883-190c8dc35e00 X-Archives-Hash: e581d4321b1a50d8969bc6635a54ce73 commit: 7bf1473e6f41937c3f0a2dba69ffd0ffc539f0af Author: Michał Górny gentoo org> AuthorDate: Tue Jun 7 07:09:31 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 7 07:15:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bf1473e dev-python/tagpy: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/tagpy/tagpy-2018.1-r2.ebuild | 55 --------------------------------- 1 file changed, 55 deletions(-) diff --git a/dev-python/tagpy/tagpy-2018.1-r2.ebuild b/dev-python/tagpy/tagpy-2018.1-r2.ebuild deleted file mode 100644 index 1d343447f936..000000000000 --- a/dev-python/tagpy/tagpy-2018.1-r2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -DISTUTILS_IN_SOURCE_BUILD=1 -inherit distutils-r1 - -DESCRIPTION="Python Bindings for TagLib" -HOMEPAGE=" - https://mathema.tician.de//software/tagpy - https://pypi.org/project/tagpy/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 ~sparc x86" -IUSE="examples" - -RDEPEND=" - >=dev-libs/boost-1.70:=[python,threads(+),${PYTHON_USEDEP}] - >=media-libs/taglib-1.8" -DEPEND="${RDEPEND}" - -distutils_enable_tests pytest - -PATCHES=( "${FILESDIR}"/${P}-taglib-1.8.patch ) - -python_prepare_all() { - cp "${FILESDIR}"/${P}-readme.rst README.rst || die - distutils-r1_python_prepare_all -} - -python_configure() { - local boostpy_ver="${EPYTHON#python}" - - "${EPYTHON}" configure.py \ - --taglib-inc-dir="${ESYSROOT}"/usr/include/taglib \ - --boost-python-libname="boost_python${boostpy_ver/\.}" -} - -python_test() { - cd test || die - "${EPYTHON}" *.py || die "Testsuite failed under ${EPYTHON}" -} - -python_install_all() { - if use examples; then - docinto examples - dodoc -r test/. - fi - - distutils-r1_python_install_all -}