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 2FB85158094 for ; Fri, 24 Jun 2022 16:57:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52397E079E; Fri, 24 Jun 2022 16:57:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3915AE079E for ; Fri, 24 Jun 2022 16:57:04 +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 35D6D34127D for ; Fri, 24 Jun 2022 16:57:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8034F448 for ; Fri, 24 Jun 2022 16:57:01 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1656089811.c6aacbc0d139a0e7fbab17c9d44e084c7df08167.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vamp-aubio-plugins/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vamp-aubio-plugins/vamp-aubio-plugins-0.5.1-r2.ebuild X-VCS-Directories: media-plugins/vamp-aubio-plugins/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: c6aacbc0d139a0e7fbab17c9d44e084c7df08167 X-VCS-Branch: master Date: Fri, 24 Jun 2022 16:57:01 +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: f0228ebf-e76e-4045-86ad-6b7874993e54 X-Archives-Hash: 3ea86fbf40ac576df3a1f7c4d75d033d commit: c6aacbc0d139a0e7fbab17c9d44e084c7df08167 Author: Miroslav Šulc gentoo org> AuthorDate: Fri Jun 24 16:56:51 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Jun 24 16:56:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6aacbc0 media-plugins/vamp-aubio-plugins: eapi7, added python 3.10 & 3.11, deps cleanup Bug: https://bugs.gentoo.org/846044 Signed-off-by: Miroslav Šulc gentoo.org> .../vamp-aubio-plugins-0.5.1-r2.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/media-plugins/vamp-aubio-plugins/vamp-aubio-plugins-0.5.1-r2.ebuild b/media-plugins/vamp-aubio-plugins/vamp-aubio-plugins-0.5.1-r2.ebuild new file mode 100644 index 000000000000..a0f66b81af30 --- /dev/null +++ b/media-plugins/vamp-aubio-plugins/vamp-aubio-plugins-0.5.1-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( pypy3 python3_{8..11} ) +PYTHON_REQ_USE='threads(+)' + +inherit python-any-r1 waf-utils + +WAF_PV='2.0.20' + +DESCRIPTION="Onset detection, pitch tracking, note tracking and tempo tracking plugins" +HOMEPAGE="https://www.vamp-plugins.org/" +SRC_URI="https://aubio.org/pub/vamp-aubio-plugins/${P}.tar.bz2 + https://waf.io/waf-${WAF_PV}" + +LICENSE="GPL-2" +SLOT="0" +# bug #748057, configure script only allows amd64/x86 +KEYWORDS="-* ~amd64 -x86" +IUSE="" + +DEPEND="media-libs/aubio + media-libs/vamp-plugin-sdk + =sci-libs/fftw-3*" +RDEPEND="${DEPEND}" +DEPEND="${DEPEND} + ${PYTHON_DEPS}" + +src_prepare() { + rm -r "${S}"/waflib && cp "${DISTDIR}/waf-${WAF_PV}" "${S}"/waf || die 'Failed to update waf' + default +}