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 D45711582ED for ; Wed, 12 Jun 2024 16:10:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34DD5E2B39; Wed, 12 Jun 2024 16:10:37 +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 EBB4EE2B39 for ; Wed, 12 Jun 2024 16:10:36 +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 6B5F533DF47 for ; Wed, 12 Jun 2024 16:10:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF5F61CB2 for ; Wed, 12 Jun 2024 16:10:32 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1718204853.692477967d510d0a6ce0d5754bcfa031c00dc7fc.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/dmd_core/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/dmd_core/dmd_core-0.6.2.ebuild X-VCS-Directories: dev-libs/dmd_core/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 692477967d510d0a6ce0d5754bcfa031c00dc7fc X-VCS-Branch: master Date: Wed, 12 Jun 2024 16:10:32 +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: 0ddaba64-6b41-4a83-8582-ddb12ef0f40e X-Archives-Hash: 8c55f4ce267a659678af001442cb6770 commit: 692477967d510d0a6ce0d5754bcfa031c00dc7fc Author: Lucio Sauer posteo net> AuthorDate: Wed Jun 12 14:49:24 2024 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Wed Jun 12 15:07:33 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=69247796 dev-libs/dmd_core: speed up cargo SRC_URI generation ac817be5fd5756bcd017e41321cf5731cd291c54 introduced the @ separator for crates and ${CARGO_CRATE_URIS} to speed up SRC_URI generation. Signed-off-by: Lucio Sauer posteo.net> dev-libs/dmd_core/dmd_core-0.6.2.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/dmd_core/dmd_core-0.6.2.ebuild b/dev-libs/dmd_core/dmd_core-0.6.2.ebuild index 88f107017..6ce331a76 100644 --- a/dev-libs/dmd_core/dmd_core-0.6.2.ebuild +++ b/dev-libs/dmd_core/dmd_core-0.6.2.ebuild @@ -4,8 +4,8 @@ EAPI=8 CRATES=" -lazy_static-1.4.0 -libc-0.2.103 +lazy_static@1.4.0 +libc@0.2.103 " inherit cargo toolchain-funcs @@ -13,7 +13,8 @@ inherit cargo toolchain-funcs DESCRIPTION="Core logic for an AT&T / Teletype DMD 5620 terminal emulator" HOMEPAGE="https://github.com/sethm/dmd_core" SRC_URI="https://github.com/sethm/dmd_core/archive/v${PV}.tar.gz -> ${P}.tar.gz - $(cargo_crate_uris ${CRATES})" + ${CARGO_CRATE_URIS} +" LICENSE="MIT" SLOT="0"