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 A3885139347 for ; Thu, 8 Jul 2021 11:07:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D613DE0D5E; Thu, 8 Jul 2021 11:07:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEC1DE0D5E for ; Thu, 8 Jul 2021 11:07:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E37E7342ABC for ; Thu, 8 Jul 2021 11:07:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E62C7D1 for ; Thu, 8 Jul 2021 11:07:20 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1625741712.f602289a7ee063b18bf20dc30bd7bef28f8afb18.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-boot/bmaptools/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-boot/bmaptools/bmaptools-3.6-r1.ebuild X-VCS-Directories: sys-boot/bmaptools/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: f602289a7ee063b18bf20dc30bd7bef28f8afb18 X-VCS-Branch: master Date: Thu, 8 Jul 2021 11:07:20 +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: 45aed376-7b79-438a-a7d8-0808c8fc12cc X-Archives-Hash: 651d44267394417d1ada293b8af2709e commit: f602289a7ee063b18bf20dc30bd7bef28f8afb18 Author: Marco Scardovi scardovi com> AuthorDate: Thu Jul 8 10:55:12 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Thu Jul 8 10:55:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f602289a sys-boot/bmaptools: restrict test for the moment Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Marco Scardovi scardovi.com> sys-boot/bmaptools/bmaptools-3.6-r1.ebuild | 43 ++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/sys-boot/bmaptools/bmaptools-3.6-r1.ebuild b/sys-boot/bmaptools/bmaptools-3.6-r1.ebuild new file mode 100644 index 000000000..68303e83b --- /dev/null +++ b/sys-boot/bmaptools/bmaptools-3.6-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +MY_P="bmap-tools-${PV}" + +DESCRIPTION="Bmaptool is a tool for creating and copyng files using block maps" +HOMEPAGE="https://github.com/intel/bmap-tools" + +SRC_URI="https://github.com/intel/bmap-tools/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RESTRICT="test" # missing python slot fot backports-* packages + +S="${WORKDIR}/${MY_P}" + +RDEPEND="dev-python/six" + +# leave it here until backports-* are ported into python3.9 and 10 + +#DEPEND=" +# ${RDEPEND} +# test? ( +# dev-python/backports-tempfile[${PYTHON_USEDEP}] +# dev-python/mock[${PYTHON_USEDEP}] +# dev-python/nose[${PYTHON_USEDEP}] +# ) +#" + +python_install_all() { + distutils-r1_python_install_all +} + +#distutils_enable_tests nose