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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 162F0158011 for ; Mon, 20 Sep 2021 14:15:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6849FE085A; Mon, 20 Sep 2021 14:15:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48655E085A for ; Mon, 20 Sep 2021 14:15:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 145DD3430D4 for ; Mon, 20 Sep 2021 14:15:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD4DBA7 for ; Mon, 20 Sep 2021 14:15:51 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1632147307.e7a2791f27d826179d33fe0afd4b7abf148c7413.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/resolve-march-native/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/resolve-march-native/resolve-march-native-1.0.0-r1.ebuild X-VCS-Directories: app-misc/resolve-march-native/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: e7a2791f27d826179d33fe0afd4b7abf148c7413 X-VCS-Branch: master Date: Mon, 20 Sep 2021 14:15:51 +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: dfb1b529-dc73-4fd1-81dc-315091d0b2c4 X-Archives-Hash: 46866d317005d6070a86937753468315 commit: e7a2791f27d826179d33fe0afd4b7abf148c7413 Author: Sebastian Pipping gentoo org> AuthorDate: Mon Sep 20 14:15:07 2021 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Mon Sep 20 14:15:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a2791f app-misc/resolve-march-native: py3.10 + DISTUTILS_USE_SETUPTOOLS Closes: https://bugs.gentoo.org/814032 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.23, Repoman-3.0.3 .../resolve-march-native-1.0.0-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app-misc/resolve-march-native/resolve-march-native-1.0.0-r1.ebuild b/app-misc/resolve-march-native/resolve-march-native-1.0.0-r1.ebuild new file mode 100644 index 00000000000..351eb554727 --- /dev/null +++ b/app-misc/resolve-march-native/resolve-march-native-1.0.0-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{7..10} ) + +inherit distutils-r1 + +DESCRIPTION="Resolve GCC flag -march=native" +HOMEPAGE="https://github.com/hartwork/resolve-march-native" +SRC_URI="https://github.com/hartwork/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=sys-devel/gcc-4.2" + +distutils_enable_tests pytest