Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
Date: Tue, 20 Apr 2021 15:44:28
Message-Id: 1618933455.176df3f084611fef1febe14957b3a4532d6291f4.epsilon-0@gentoo
1 commit: 176df3f084611fef1febe14957b3a4532d6291f4
2 Author: band-a-prend <torokhov-s-a <AT> yandex <DOT> ru>
3 AuthorDate: Tue Mar 16 15:41:27 2021 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Tue Apr 20 15:44:15 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=176df3f0
7
8 dev-cpp/blitz: drop replaced blitz-1.0.2_p20200524.ebuild
9
10 Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
11 Closes: https://github.com/gentoo/sci/pull/1065
12 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
13
14 dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild | 40 ------------------------------
15 1 file changed, 40 deletions(-)
16
17 diff --git a/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild b/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild
18 deleted file mode 100644
19 index 47a9e5d25..000000000
20 --- a/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild
21 +++ /dev/null
22 @@ -1,40 +0,0 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -inherit cmake
29 -CMAKE_MAKEFILE_GENERATOR=emake
30 -
31 -DESCRIPTION="multi-dimensional array library for C++"
32 -HOMEPAGE="https://github.com/blitzpp/blitz"
33 -
34 -if [[ ${PV} == 9999 ]] ; then
35 - inherit git-r3
36 - EGIT_REPO_URI="https://github.com/blitzpp/blitz"
37 -else
38 - COMMIT=39f885951a9b8b11f931f917935a16066a945056
39 - SRC_URI="https://github.com/blitzpp/blitz/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
40 - S="${WORKDIR}"/${PN}-${COMMIT}
41 - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
42 -fi
43 -
44 -LICENSE="BSD LGPL-3+"
45 -SLOT="0"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -src_configure() {
50 - local mycmakeargs=(
51 - -DBUILD_TESTING=$(usex test)
52 - )
53 - cmake_src_configure
54 -}
55 -
56 -src_compile() {
57 - if use test; then
58 - cmake_build check-testsuite check-benchmarks check-examples
59 - else
60 - cmake build
61 - fi
62 -}