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 9CD1C158064 for ; Wed, 8 May 2024 17:23:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D23C2E2D3C; Wed, 8 May 2024 17:23:48 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A0807E2D3C for ; Wed, 8 May 2024 17:23:48 +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 92E73343090 for ; Wed, 8 May 2024 17:23:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 027D11355 for ; Wed, 8 May 2024 17:23:46 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1715188959.6f18120fbca9824a1d9480e1d98ae563c66fd807.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/QNNPACK/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/QNNPACK/QNNPACK-2019.08.28-r1.ebuild sci-libs/QNNPACK/QNNPACK-2019.08.28.ebuild X-VCS-Directories: sci-libs/QNNPACK/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 6f18120fbca9824a1d9480e1d98ae563c66fd807 X-VCS-Branch: master Date: Wed, 8 May 2024 17:23:46 +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: 956d1795-8e8d-4d1d-83f4-fc286bf377d3 X-Archives-Hash: 4b875e1d42177bc33f877caddefcbaaf commit: 6f18120fbca9824a1d9480e1d98ae563c66fd807 Author: Alfredo Tupone gentoo org> AuthorDate: Wed May 8 17:22:39 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Wed May 8 17:22:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f18120f sci-libs/QNNPACK: deps on clog Closes: https://bugs.gentoo.org/931517 Signed-off-by: Alfredo Tupone gentoo.org> .../{QNNPACK-2019.08.28.ebuild => QNNPACK-2019.08.28-r1.ebuild} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sci-libs/QNNPACK/QNNPACK-2019.08.28.ebuild b/sci-libs/QNNPACK/QNNPACK-2019.08.28-r1.ebuild similarity index 94% rename from sci-libs/QNNPACK/QNNPACK-2019.08.28.ebuild rename to sci-libs/QNNPACK/QNNPACK-2019.08.28-r1.ebuild index 11fde064e65b..aa539b84c440 100644 --- a/sci-libs/QNNPACK/QNNPACK-2019.08.28.ebuild +++ b/sci-libs/QNNPACK/QNNPACK-2019.08.28-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -11,6 +11,8 @@ HOMEPAGE="https://github.com/pytorch/QNNPACK/" SRC_URI="https://github.com/pytorch/${PN}/archive/${CommitId}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-${CommitId} + LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" @@ -23,14 +25,13 @@ RDEPEND=" DEPEND="${RDEPEND} dev-libs/FP16 dev-libs/FXdiv + dev-libs/clog " BDEPEND="test? ( dev-cpp/gtest )" RESTRICT="!test? ( test )" REQUIRED_USE="test? ( static-libs )" -S="${WORKDIR}"/${PN}-${CommitId} - PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )