public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Thomas Kahle" <tomka@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/normaliz/
Date: Sun, 25 Sep 2016 12:01:43 +0000 (UTC)	[thread overview]
Message-ID: <1474804896.5b5bc3147b2ee4bfe4cde51d8b0e7e3bd5301720.tomka@gentoo> (raw)

commit:     5b5bc3147b2ee4bfe4cde51d8b0e7e3bd5301720
Author:     Thomas Kahle <tomka <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 12:01:21 2016 +0000
Commit:     Thomas Kahle <tomka <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 12:01:36 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5bc314

sci-mathematics/normaliz: bump to 3.1.2 and EAPI=6

Package-Manager: portage-2.3.0

 sci-mathematics/normaliz/Manifest              |  1 +
 sci-mathematics/normaliz/normaliz-3.1.2.ebuild | 65 ++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/sci-mathematics/normaliz/Manifest b/sci-mathematics/normaliz/Manifest
index 949d275..de4b6bf 100644
--- a/sci-mathematics/normaliz/Manifest
+++ b/sci-mathematics/normaliz/Manifest
@@ -1,2 +1,3 @@
 DIST Normaliz2.12.2.zip 6432949 SHA256 230772425b3c9964b9e144c0919c75fac0ec95260a1943c10a8a94eea9d7273e SHA512 fd42071cb87b8efbaf9af0885c173a0583e0b38dedb8821a83225eeebb44060a7b5748c44adfc4faeac20c3a1706071bcb9883cb4447e4a1ff3aeb770bd22038 WHIRLPOOL cb2974e02eac6e6d51c234214a719a24ad2e12d1400f0a6f8aee3e7a4ba3aa2ba053beec65c9032f42726e4dd4f1866820bb5b7b96f7c3d34cd132fcdbdb91af
 DIST Normaliz3.1.1.zip 5839858 SHA256 192e60d3671d4516c4904b166dec96c5b32c63c0fbaae15d067e25b8d9b6119e SHA512 efa75844542df45d3cff6b6f877f2d6132905b722468b3df5a89468798bf66cbaf33f359000fb462f4d24fb3414f4c293a8ba84112a6712862dd593bb5f314ba WHIRLPOOL 5f9b503899d2d7a8c0367d516b709e45e8d034a70c06a16bbfd680c7c2b070fcc3f686c37473c73ab96c4b99b669e767817190d4882fce2085b47a7bf57de51c
+DIST v3.1.2.tar.gz 3075459 SHA256 aa49b0a013014e79d521fc3e3950b2d7a1da44724fe1958bdaf620846cee4d2b SHA512 b903e8391e661685b840ecf85e5a159a274d6106b0151987d853e896fda44080546ccbafafdba253e05f0ce3c7810c90b802e7b9b9e546401deb1ef4641b283d WHIRLPOOL 2b27bd242799500840b9693330fb3d196fd7887877b404fcd3d57bec6b04297fbd03b4688c91bc852e8b173c9d42518dc4688a65631fb2f90a38034fbe87ce8e

diff --git a/sci-mathematics/normaliz/normaliz-3.1.2.ebuild b/sci-mathematics/normaliz/normaliz-3.1.2.ebuild
new file mode 100644
index 00000000..aa74f1f
--- /dev/null
+++ b/sci-mathematics/normaliz/normaliz-3.1.2.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs versionator
+
+MYP="Normaliz-${PV}"
+
+DESCRIPTION="Tool for computations in affine monoids and more"
+HOMEPAGE="www.mathematik.uni-osnabrueck.de/normaliz/"
+SRC_URI="https://github.com/Normaliz/Normaliz/archive/v${PV}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc extras openmp"
+
+RDEPEND="
+	dev-libs/gmp[cxx]
+"
+DEPEND="${RDEPEND}
+	doc? ( app-text/texlive )
+	dev-libs/boost"
+# Only a boost header is needed -> not RDEPEND
+
+S=${WORKDIR}/${MYP}
+
+src_prepare () {
+	./bootstrap.sh || die
+	default
+}
+
+src_configure () {
+	if use openmp && ! tc-has-openmp ; then
+		die "You requested openmp, but your toolchain does not support it."
+	fi
+	econf $(use_enable openmp)
+}
+
+src_install() {
+	default
+	if use doc ; then
+		pushd doc
+		pdflatex Normaliz || die
+		pdflatex Normaliz || die
+		dodoc "Normaliz.pdf"
+		pdflatex NmzIntegrate || die
+		pdflatex NmzIntegrate || die
+		dodoc "NmzIntegrate.pdf"
+		popd
+	fi
+	if use extras; then
+		elog "You have selected to install extras which consist of Macaulay2"
+		elog "and Singular packages. These have been installed into "
+		elog "/usr/share/${PN}, and cannot be used without additional setup. Please refer"
+		elog "to the homepages of the respective projects for additional information."
+		elog "Note however, Gentoo's versions of Singular and Macaulay2 bring their own"
+		elog "copies of these interface packages. Usually you don't need normaliz's versions."
+		insinto "/usr/share/${PN}"
+		doins Singular/normaliz.lib
+		doins Macaulay2/Normaliz.m2
+	fi
+}


             reply	other threads:[~2016-09-25 12:01 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-25 12:01 Thomas Kahle [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-12-16 16:17 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/normaliz/ Arthur Zamarin
2023-08-23 11:40 Michael Orlitzky
2023-06-09 15:06 Arthur Zamarin
2023-05-22  1:40 Michael Orlitzky
2022-08-16 11:37 Michael Orlitzky
2022-08-16  7:48 Agostino Sarubbo
2022-08-16  7:43 Agostino Sarubbo
2022-05-14 21:30 David Seifert
2022-05-08 16:35 Michael Orlitzky
2021-12-29 13:46 Yixun Lan
2021-06-18 13:15 David Seifert
2021-05-27 21:06 David Seifert
2021-05-27 21:06 David Seifert
2020-02-16  6:32 Michał Górny
2017-07-31 18:12 Sebastien Fabbro
2017-03-10 21:59 Mike Frysinger
2016-12-21 10:27 Tobias Klausmann
2016-11-08 23:52 Manuel Rüger
2016-10-26  7:26 Thomas Kahle
2016-10-26  7:26 Thomas Kahle
2016-06-08  7:35 Thomas Kahle
2016-05-13 14:51 Agostino Sarubbo
2016-04-08  8:22 Thomas Kahle
2016-03-22 14:32 Agostino Sarubbo
2016-03-21 11:19 Thomas Kahle
2016-03-21 11:19 Thomas Kahle
2016-03-02 19:30 Markus Meier
2016-02-20  9:26 Thomas Kahle

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=1474804896.5b5bc3147b2ee4bfe4cde51d8b0e7e3bd5301720.tomka@gentoo \
    --to=tomka@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