public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Orlitzky" <mjo@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/primesieve/
Date: Fri, 24 Dec 2021 13:24:14 +0000 (UTC)	[thread overview]
Message-ID: <1640351142.e244f8cbcac97753cc33aa2cda2d1e0822b9fa97.mjo@gentoo> (raw)

commit:     e244f8cbcac97753cc33aa2cda2d1e0822b9fa97
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 23 20:26:01 2021 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Dec 24 13:05:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e244f8cb

sci-mathematics/primesieve: new CLI/library to quickly generate primes.

This package will soon be a dependency of SageMath, transitively via
the forthcoming sci-mathematics/primecount that uses it. Based on the
sage-on-gentoo ebuild by François Bissey.

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 sci-mathematics/primesieve/Manifest              |  1 +
 sci-mathematics/primesieve/metadata.xml          | 24 ++++++++++++
 sci-mathematics/primesieve/primesieve-7.7.ebuild | 50 ++++++++++++++++++++++++
 3 files changed, 75 insertions(+)

diff --git a/sci-mathematics/primesieve/Manifest b/sci-mathematics/primesieve/Manifest
new file mode 100644
index 000000000000..50af85cf5844
--- /dev/null
+++ b/sci-mathematics/primesieve/Manifest
@@ -0,0 +1 @@
+DIST primesieve-7.7.tar.gz 101558 BLAKE2B cfaa91ddcf661e265d403f8a93461fe297ac48db843b096d0dd7828c4e3d11cdba60cb102197248359c79950fe2ac66c8e9295ab17b0d6bd0eed5a6260c7d115 SHA512 bbcc141a12afdf54386d2408e067b1c6af2dd9b5c9f44d71290269ddefc7c46ba6794064cde6728c8356724553cb6bc2e765bf18c24a18b6d5d1f472d2c6e6dd

diff --git a/sci-mathematics/primesieve/metadata.xml b/sci-mathematics/primesieve/metadata.xml
new file mode 100644
index 000000000000..e2285b80a8b4
--- /dev/null
+++ b/sci-mathematics/primesieve/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>mjo@gentoo.org</email>
+  </maintainer>
+
+  <maintainer type="person" proxied="yes">
+    <email>frp.bissey@gmail.com</email>
+    <name>François Bissey</name>
+  </maintainer>
+  <maintainer type="project" proxied="proxy">
+    <email>proxy-maint@gentoo.org</email>
+    <name>Proxy Maintainers</name>
+  </maintainer>
+
+  <use>
+    <flag name="executable">Build the primesieve CLI executable</flag>
+  </use>
+
+  <upstream>
+    <remote-id type="github">kimwalisch/primesieve</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/sci-mathematics/primesieve/primesieve-7.7.ebuild b/sci-mathematics/primesieve/primesieve-7.7.ebuild
new file mode 100644
index 000000000000..5d26f8b6a858
--- /dev/null
+++ b/sci-mathematics/primesieve/primesieve-7.7.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="CLI and library for quickly generating prime numbers."
+HOMEPAGE="https://github.com/kimwalisch/primesieve"
+SRC_URI="https://github.com/kimwalisch/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="BSD-2"
+SLOT="0/9"  # subslot is first component of libprimesieve.so version
+KEYWORDS="~amd64"
+IUSE="doc +executable test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="doc? ( app-doc/doxygen app-text/texlive media-gfx/graphviz )"
+DEPEND=""
+RDEPEND=""
+
+DOCS=(
+	ChangeLog
+	README.md
+	doc/ALGORITHMS.md
+	doc/CPP_Examples.md
+	doc/C_Examples.md
+)
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_DOC="$(usex doc)"
+		-DBUILD_PRIMESIEVE="$(usex executable)"
+		-DBUILD_STATIC_LIBS="OFF"
+		-DBUILD_TESTS="$(usex test)"
+	)
+
+	if use doc; then
+		DOCS+=(
+			"${BUILD_DIR}/doc/html"
+			"${BUILD_DIR}/doc/latex/refman.pdf"
+		)
+	fi
+
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+	use doc && cmake_build doc
+}


             reply	other threads:[~2021-12-24 13:24 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-24 13:24 Michael Orlitzky [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-12-26  0:20 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/primesieve/ Sam James
2022-01-30 14:37 Michael Orlitzky
2022-06-13 11:31 Michael Orlitzky
2022-08-06 13:14 Michael Orlitzky
2022-08-06 13:14 Michael Orlitzky
2022-08-22 15:06 Michael Orlitzky
2022-10-20 20:02 Michael Orlitzky
2022-10-20 20:02 Michael Orlitzky
2022-12-20 21:18 Michael Orlitzky
2023-02-07 19:33 Michael Orlitzky
2023-02-07 19:33 Michael Orlitzky
2024-07-27 23:14 Michael Orlitzky
2024-07-28 16:20 Michael Orlitzky
2024-08-20 14:13 Michael Orlitzky
2024-12-31  8:15 Sam James
2025-01-01  8:56 Joonas Niilola
2025-01-04 16:17 Sam James
2025-01-04 16:35 Sam James
2025-01-06  7:08 WANG Xuerui

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1640351142.e244f8cbcac97753cc33aa2cda2d1e0822b9fa97.mjo@gentoo \
    --to=mjo@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox