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 34B9615802F for ; Sat, 4 Mar 2023 16:32:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DF38E07D4; Sat, 4 Mar 2023 16:32:18 +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 2867BE07D4 for ; Sat, 4 Mar 2023 16:32:18 +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 35D51341305 for ; Sat, 4 Mar 2023 16:32:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E771A8C9 for ; Sat, 4 Mar 2023 16:32:14 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1677947530.e3809191ac605c0a77ddfc4eefdb83c229e5cbb7.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/teakra/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/teakra/teakra-20220224.ebuild X-VCS-Directories: dev-libs/teakra/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: e3809191ac605c0a77ddfc4eefdb83c229e5cbb7 X-VCS-Branch: master Date: Sat, 4 Mar 2023 16:32:14 +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: 1bfbca9a-647f-4d27-8b91-baf51f1d95be X-Archives-Hash: 8edae0e90cc5851279476071d54de4fe commit: e3809191ac605c0a77ddfc4eefdb83c229e5cbb7 Author: Maciej Barć gentoo org> AuthorDate: Sat Mar 4 15:45:37 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Mar 4 16:32:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3809191 dev-libs/teakra: H -> COMMIT Signed-off-by: Maciej Barć gentoo.org> dev-libs/teakra/teakra-20220224.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-libs/teakra/teakra-20220224.ebuild b/dev-libs/teakra/teakra-20220224.ebuild index 9553e9149c97..faf0cf67592a 100644 --- a/dev-libs/teakra/teakra-20220224.ebuild +++ b/dev-libs/teakra/teakra-20220224.ebuild @@ -1,16 +1,17 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -H=01db7cdd00aabcce559a8dddce8798dabb71949b +[[ ${PV} == 20220224 ]] && COMMIT=01db7cdd00aabcce559a8dddce8798dabb71949b inherit cmake DESCRIPTION="Emulator, assembler, etc for XpertTeak, the DSP used by DSi/3DS" HOMEPAGE="https://github.com/wwylele/teakra/" -SRC_URI="https://github.com/wwylele/${PN}/archive/${H}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}"/${PN}-${H} +SRC_URI="https://github.com/wwylele/${PN}/archive/${COMMIT}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-${COMMIT} LICENSE="MIT" SLOT="0" @@ -23,8 +24,8 @@ src_prepare() { } src_configure() { - local mycmakeargs=( - -DCMAKE_SKIP_RPATH=ON + local -a mycmakeargs=( + -DCMAKE_SKIP_RPATCOMMIT=ON ) cmake_src_configure }