Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boxfort/
Date: Mon, 31 May 2021 20:22:20
Message-Id: 1622492454.3aa924aeb90ddef4cef9606eb9adc8003cc0a965.mgorny@gentoo
1 commit: 3aa924aeb90ddef4cef9606eb9adc8003cc0a965
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:20:54 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:20:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aa924ae
7
8 dev-libs/boxfort: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-libs/boxfort/Manifest | 1 -
13 dev-libs/boxfort/boxfort-0.0.1_pre20200110.ebuild | 44 -----------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-libs/boxfort/Manifest b/dev-libs/boxfort/Manifest
17 index a8d3b99e093..ba384f8f2aa 100644
18 --- a/dev-libs/boxfort/Manifest
19 +++ b/dev-libs/boxfort/Manifest
20 @@ -1,2 +1 @@
21 DIST boxfort-0.0.1_pre20200902.tar.gz 41643 BLAKE2B 6ac53b632f604ffd6b790a026703a2d64da65fc03cc71ebc3e4da3463e7c5a44ec99e85e3cdac8e5756afaf7d98785955815e194929bbc8dd6b6fd90bfb3fd52 SHA512 96090372f3e546f53f82c515c3f9e557fdd67eb7bc735683b30d8a66c2536cf21261b0467e449ccbd13e914b7cf4ea3da1a37c4108b215d6d0d08cdb68944b1e
22 -DIST boxfort-1456d9a3a3bcb506cdcd1b5d4b852e967deb5e57.tar.gz 41705 BLAKE2B 89644ecf64e5a5df718fa4f873d21e281c777c893af5a8f71c8a1913270ca6c67dc36113e5d219540bb04c7f9e26be22f7e778bd9bdce230df8c0edf3a707612 SHA512 249b0bd0048c53c74d2b50f1b7caf84b0ac0823679bb6adaade095a2ff26586f14f58cee960610d99dbc38c8196cbdb99143815b14d10b7f13a12f96d309e302
23
24 diff --git a/dev-libs/boxfort/boxfort-0.0.1_pre20200110.ebuild b/dev-libs/boxfort/boxfort-0.0.1_pre20200110.ebuild
25 deleted file mode 100644
26 index f7d59bb7efe..00000000000
27 --- a/dev-libs/boxfort/boxfort-0.0.1_pre20200110.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_7 )
36 -
37 -inherit meson python-any-r1
38 -
39 -BOXFORT_COMMIT="1456d9a3a3bcb506cdcd1b5d4b852e967deb5e57"
40 -
41 -DESCRIPTION="Convenient & cross-platform sandboxing C library"
42 -HOMEPAGE="https://github.com/Snaipe/BoxFort"
43 -SRC_URI="https://github.com/Snaipe/BoxFort/archive/${BOXFORT_COMMIT}.tar.gz -> boxfort-${BOXFORT_COMMIT}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="amd64 ~arm ~arm64"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -DEPEND="test? (
52 - $(python_gen_any_dep 'dev-util/cram[${PYTHON_USEDEP}]')
53 - )"
54 -BDEPEND="virtual/pkgconfig"
55 -
56 -S="${WORKDIR}/BoxFort-${BOXFORT_COMMIT}"
57 -
58 -python_check_deps() {
59 - has_version "dev-util/cram[${PYTHON_USEDEP}]"
60 -}
61 -
62 -pkg_setup() {
63 - use test && python-any-r1_pkg_setup
64 -}
65 -
66 -src_configure() {
67 - local emesonargs=(
68 - -Dsamples=$(usex test true false)
69 - -Dtests=$(usex test true false)
70 - )
71 -
72 - meson_src_configure
73 -}