Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-boot/bmaptools/
Date: Thu, 08 Jul 2021 11:07:24
Message-Id: 1625741712.f602289a7ee063b18bf20dc30bd7bef28f8afb18.flow@gentoo
1 commit: f602289a7ee063b18bf20dc30bd7bef28f8afb18
2 Author: Marco Scardovi <marco <AT> scardovi <DOT> com>
3 AuthorDate: Thu Jul 8 10:55:12 2021 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 8 10:55:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f602289a
7
8 sys-boot/bmaptools: restrict test for the moment
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
12
13 sys-boot/bmaptools/bmaptools-3.6-r1.ebuild | 43 ++++++++++++++++++++++++++++++
14 1 file changed, 43 insertions(+)
15
16 diff --git a/sys-boot/bmaptools/bmaptools-3.6-r1.ebuild b/sys-boot/bmaptools/bmaptools-3.6-r1.ebuild
17 new file mode 100644
18 index 000000000..68303e83b
19 --- /dev/null
20 +++ b/sys-boot/bmaptools/bmaptools-3.6-r1.ebuild
21 @@ -0,0 +1,43 @@
22 +# Copyright 2020-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +DISTUTILS_USE_SETUPTOOLS=rdepend
29 +
30 +inherit distutils-r1
31 +
32 +MY_P="bmap-tools-${PV}"
33 +
34 +DESCRIPTION="Bmaptool is a tool for creating and copyng files using block maps"
35 +HOMEPAGE="https://github.com/intel/bmap-tools"
36 +
37 +SRC_URI="https://github.com/intel/bmap-tools/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +
43 +RESTRICT="test" # missing python slot fot backports-* packages
44 +
45 +S="${WORKDIR}/${MY_P}"
46 +
47 +RDEPEND="dev-python/six"
48 +
49 +# leave it here until backports-* are ported into python3.9 and 10
50 +
51 +#DEPEND="
52 +# ${RDEPEND}
53 +# test? (
54 +# dev-python/backports-tempfile[${PYTHON_USEDEP}]
55 +# dev-python/mock[${PYTHON_USEDEP}]
56 +# dev-python/nose[${PYTHON_USEDEP}]
57 +# )
58 +#"
59 +
60 +python_install_all() {
61 + distutils-r1_python_install_all
62 +}
63 +
64 +#distutils_enable_tests nose