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 72FCE158009 for ; Tue, 20 Jun 2023 03:11:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96670E084F; Tue, 20 Jun 2023 03:11:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 7EA24E084F for ; Tue, 20 Jun 2023 03:11: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 5529C340F86 for ; Tue, 20 Jun 2023 03:11:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7CF3A9C for ; Tue, 20 Jun 2023 03:11:01 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1687229055.7db6a9f81096b8f900d6b50b06b6d4c2fa6a6162.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/cubeb/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/cubeb/cubeb-0.2_p20220922.ebuild X-VCS-Directories: media-libs/cubeb/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 7db6a9f81096b8f900d6b50b06b6d4c2fa6a6162 X-VCS-Branch: master Date: Tue, 20 Jun 2023 03:11: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: ae65351e-c21f-4835-abf2-94ae4be4a65c X-Archives-Hash: 3ea82bb2c9932c5969800b679231d42d commit: 7db6a9f81096b8f900d6b50b06b6d4c2fa6a6162 Author: Ionen Wolkens gentoo org> AuthorDate: Mon Jun 19 20:45:46 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Jun 20 02:44:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7db6a9f8 media-libs/cubeb: modernize cargo.eclass usage Signed-off-by: Ionen Wolkens gentoo.org> media-libs/cubeb/cubeb-0.2_p20220922.ebuild | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/media-libs/cubeb/cubeb-0.2_p20220922.ebuild b/media-libs/cubeb/cubeb-0.2_p20220922.ebuild index 527199948dbe..b818d00c8a95 100644 --- a/media-libs/cubeb/cubeb-0.2_p20220922.ebuild +++ b/media-libs/cubeb/cubeb-0.2_p20220922.ebuild @@ -1,21 +1,21 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 CARGO_OPTIONAL=1 CRATES=" - bitflags-1.3.2 - cache-padded-1.2.0 - cc-1.0.73 - cmake-0.1.48 - cubeb-backend-0.10.1 - cubeb-core-0.10.1 - cubeb-sys-0.10.1 - libc-0.2.133 - pkg-config-0.3.25 - ringbuf-0.2.8 - semver-1.0.14" + bitflags@1.3.2 + cache-padded@1.2.0 + cc@1.0.73 + cmake@0.1.48 + cubeb-backend@0.10.1 + cubeb-core@0.10.1 + cubeb-sys@0.10.1 + libc@0.2.133 + pkg-config@0.3.25 + ringbuf@0.2.8 + semver@1.0.14" inherit cargo cmake flag-o-matic HASH_CUBEB=93d1fa3fccdc22da37aa59f67b213591797db369 @@ -26,8 +26,9 @@ HOMEPAGE="https://github.com/mozilla/cubeb/" SRC_URI=" https://github.com/mozilla/cubeb/archive/${HASH_CUBEB}.tar.gz -> ${P}.tar.gz pulseaudio? ( rust? ( - https://github.com/mozilla/cubeb-pulse-rs/archive/${HASH_PULSERS}.tar.gz -> ${PN}-pulse-rs-${HASH_PULSERS::10}.tar.gz - $(cargo_crate_uris) + https://github.com/mozilla/cubeb-pulse-rs/archive/${HASH_PULSERS}.tar.gz + -> ${PN}-pulse-rs-${HASH_PULSERS::10}.tar.gz + ${CARGO_CRATE_URIS} ) )" S="${WORKDIR}/${PN}-${HASH_CUBEB}"