Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/primesieve/
Date: Sat, 06 Aug 2022 13:14:36
Message-Id: 1659791602.04f2266c04d25ad22d14e22a5f10b75e5572e8c4.mjo@gentoo
1 commit: 04f2266c04d25ad22d14e22a5f10b75e5572e8c4
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 6 13:13:10 2022 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 6 13:13:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04f2266c
7
8 sci-mathematics/primesieve: drop 7.7
9
10 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
11
12 sci-mathematics/primesieve/Manifest | 1 -
13 sci-mathematics/primesieve/primesieve-7.7.ebuild | 50 ------------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/sci-mathematics/primesieve/Manifest b/sci-mathematics/primesieve/Manifest
17 index 97e69ce5c74d..cd41bbd1bc6f 100644
18 --- a/sci-mathematics/primesieve/Manifest
19 +++ b/sci-mathematics/primesieve/Manifest
20 @@ -1,2 +1 @@
21 -DIST primesieve-7.7.tar.gz 101558 BLAKE2B cfaa91ddcf661e265d403f8a93461fe297ac48db843b096d0dd7828c4e3d11cdba60cb102197248359c79950fe2ac66c8e9295ab17b0d6bd0eed5a6260c7d115 SHA512 bbcc141a12afdf54386d2408e067b1c6af2dd9b5c9f44d71290269ddefc7c46ba6794064cde6728c8356724553cb6bc2e765bf18c24a18b6d5d1f472d2c6e6dd
22 DIST primesieve-7.9.tar.gz 111361 BLAKE2B 8e227bd04a89dd5e8ea5dc5e79afa1c5254216863086fd6c3712fb45767ee7e5e23e72d166ada17295e56479e0c0e1ae7f215b72e124e5234a79fb20f340cb3f SHA512 fcfc3445e5becd555b66743f6d73dd4a0cbb48b1d4a3d0d22043261f1861e0631bdeb8702b1f942110f8b327a01173b231accd1f7595600308709832bbbafc06
23
24 diff --git a/sci-mathematics/primesieve/primesieve-7.7.ebuild b/sci-mathematics/primesieve/primesieve-7.7.ebuild
25 deleted file mode 100644
26 index 65d0b3d3e93a..000000000000
27 --- a/sci-mathematics/primesieve/primesieve-7.7.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit cmake
36 -
37 -DESCRIPTION="CLI and library for quickly generating prime numbers"
38 -HOMEPAGE="https://github.com/kimwalisch/primesieve"
39 -SRC_URI="https://github.com/kimwalisch/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
40 -LICENSE="BSD-2"
41 -SLOT="0/9" # subslot is first component of libprimesieve.so version
42 -KEYWORDS="amd64"
43 -IUSE="doc +executable test"
44 -RESTRICT="!test? ( test )"
45 -
46 -BDEPEND="doc? ( app-doc/doxygen app-text/texlive media-gfx/graphviz )"
47 -DEPEND=""
48 -RDEPEND=""
49 -
50 -DOCS=(
51 - ChangeLog
52 - README.md
53 - doc/ALGORITHMS.md
54 - doc/CPP_Examples.md
55 - doc/C_Examples.md
56 -)
57 -
58 -src_configure() {
59 - local mycmakeargs=(
60 - -DBUILD_DOC="$(usex doc)"
61 - -DBUILD_PRIMESIEVE="$(usex executable)"
62 - -DBUILD_STATIC_LIBS="OFF"
63 - -DBUILD_TESTS="$(usex test)"
64 - )
65 -
66 - if use doc; then
67 - DOCS+=(
68 - "${BUILD_DIR}/doc/html"
69 - "${BUILD_DIR}/doc/latex/refman.pdf"
70 - )
71 - fi
72 -
73 - cmake_src_configure
74 -}
75 -
76 -src_compile() {
77 - cmake_src_compile
78 - use doc && cmake_build doc
79 -}