Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New math packages: cddlib, singular
@ 2021-09-03 16:05 dkwo
  2021-09-03 16:12 ` dkwo
                   ` (52 more replies)
  0 siblings, 53 replies; 54+ messages in thread
From: dkwo @ 2021-09-03 16:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 421 bytes --]

There is a new pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages cdd
https://github.com/void-linux/void-packages/pull/32822

New math packages: cddlib, singular
New math packages, useful for sagemath

- New package: cddlib
- New package: singular

I built them on x86_64



A patch file from https://github.com/void-linux/void-packages/pull/32822.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cdd-32822.patch --]
[-- Type: text/x-diff, Size: 3302 bytes --]

From 400ca939f5e42d434be4e1c84af1e13ad9d251e1 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Fri, 3 Sep 2021 17:57:26 +0200
Subject: [PATCH 1/2] New package: cddlib

---
 common/shlibs           |  2 ++
 srcpkgs/cddlib/template | 12 ++++++++++++
 2 files changed, 14 insertions(+)
 create mode 100644 srcpkgs/cddlib/template

diff --git a/common/shlibs b/common/shlibs
index 87c27c459aad..00e40260fc2c 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -55,6 +55,8 @@ libcc1.so.0 gcc-6.2.1_1
 libcc1plugin.so.0 gcc-6.2.1_1
 libitm.so.1 libitm-4.7.3_1
 liblto_plugin.so.0 gcc-4.7.3_1
+libcddgmp.so.0 cddlib-0.94m_1
+libcdd.so.0 cddlib-0.94m_1
 libgcc_s.so.1 libgcc-4.4.0_1
 libgo.so.16 libgo-10.2.0_1
 libperl.so.5.34 perl-5.34.0_1
diff --git a/srcpkgs/cddlib/template b/srcpkgs/cddlib/template
new file mode 100644
index 000000000000..37759cf0361c
--- /dev/null
+++ b/srcpkgs/cddlib/template
@@ -0,0 +1,12 @@
+# Template file for 'cddlib'
+pkgname=cddlib
+version=0.94m
+revision=1
+build_style=gnu-configure
+hostmakedepends="gmp-devel"
+short_desc="Efficient implementation of the Double Description Method"
+maintainer="dkwo <nicolopiazzalunga@gmail.com>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/cddlib/cddlib"
+distfiles="https://github.com/cddlib/cddlib/releases/download/${version}/cddlib-${version}.tar.gz"
+checksum=70dffdb3369b8704dc75428a1b3c42ab9047b81ce039f12f427e2eb2b1b0dee2

From 2de389101ec0418c0b8b56a8ea88bc6fd089134c Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Fri, 3 Sep 2021 18:02:11 +0200
Subject: [PATCH 2/2] New package: singular

---
 common/shlibs             |  5 +++++
 srcpkgs/singular/template | 20 ++++++++++++++++++++
 2 files changed, 25 insertions(+)
 create mode 100644 srcpkgs/singular/template

diff --git a/common/shlibs b/common/shlibs
index 00e40260fc2c..1aa0344fe4e9 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -65,6 +65,11 @@ libgmpxx.so.4 gmpxx-6.0.0_2
 libmpfr.so.6 mpfr-4.0.0_1
 libppl.so.14 ppl-1.2_1
 libppl_c.so.4 ppl-0.11_1
+libSingular-4.2.1.so singular-4.2.1_1
+libpolys-4.2.1.so singular-4.2.1_1
+libfactory-4.2.1.so singular-4.2.1_1
+libomalloc-0.9.6.so singular-4.2.1_1
+libsingular_resources-4.2.1.so singular-4.2.1_1
 libstdc++.so.6 libstdc++-4.4.0_1
 libssp.so.0 libssp-4.4.0_1
 libncurses.so.6 ncurses-libs-6.0_1 ignore
diff --git a/srcpkgs/singular/template b/srcpkgs/singular/template
new file mode 100644
index 000000000000..edc5a41cfe72
--- /dev/null
+++ b/srcpkgs/singular/template
@@ -0,0 +1,20 @@
+# Template file for 'singular'
+pkgname=singular
+version=4.2.1
+revision=1
+_own_version=4-2-1
+build_style=gnu-configure
+configure_args="--enable-bigintm-module --enable-Order-module
+ --enable-python-module --enable-gfanlib-module --enable-polymake-module"
+hostmakedepends="automake libtool"
+makedepends="flintlib-devel cddlib doxygen"
+short_desc="Computer algebra system for polynomial computations"
+maintainer="dkwo <nicolopiazzalunga@gmail.com>"
+license="GPL-2.0-or-later"
+homepage="https://www.singular.uni-kl.de"
+distfiles="https://service.mathematik.uni-kl.de/ftp/pub/Math/Singular/src/${_own_version}/singular-${version}.tar.gz"
+checksum=28a56df84f85b116e0068ffecf92fbe08fc27bd4c5ba902997f1a367db0bfe8d
+
+pre_configure() {
+	autoreconf -fi
+}

^ permalink raw reply	[flat|nested] 54+ messages in thread

end of thread, other threads:[~2021-11-09 16:02 UTC | newest]

Thread overview: 54+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-03 16:05 [PR PATCH] New math packages: cddlib, singular dkwo
2021-09-03 16:12 ` dkwo
2021-09-03 20:45 ` [PR REVIEW] " paper42
2021-09-03 21:34 ` tornaria
2021-09-03 21:38 ` tornaria
2021-09-03 21:38 ` tornaria
2021-09-03 22:12 ` tornaria
2021-09-03 22:21 ` tornaria
2021-09-06  9:01 ` [PR REVIEW] " dkwo
2021-09-06  9:43 ` dkwo
2021-09-06  9:44 ` dkwo
2021-09-06  9:45 ` [PR PATCH] [Updated] " dkwo
2021-09-06  9:50 ` dkwo
2021-09-06  9:52 ` [PR PATCH] [Updated] " dkwo
2021-09-06  9:53 ` dkwo
2021-09-06  9:55 ` [PR PATCH] [Updated] " dkwo
2021-09-06  9:55 ` dkwo
2021-09-06 11:09 ` dkwo
2021-09-06 11:20 ` dkwo
2021-09-06 11:50 ` tornaria
2021-09-06 11:59 ` tornaria
2021-09-06 12:31 ` dkwo
2021-09-06 12:44 ` dkwo
2021-09-11 15:20 ` dkwo
2021-09-11 15:20 ` dkwo
2021-09-11 16:08 ` [PR PATCH] [Updated] " dkwo
2021-09-12 13:50 ` tornaria
2021-09-13  7:35 ` dkwo
2021-09-20 15:57 ` [PR PATCH] [Updated] " dkwo
2021-09-20 16:13 ` dkwo
2021-09-20 16:33 ` tornaria
2021-09-20 16:47 ` [PR PATCH] [Updated] " dkwo
2021-09-20 17:02 ` dkwo
2021-09-21  8:21 ` dkwo
2021-09-23  9:28 ` [PR PATCH] [Updated] " dkwo
2021-09-23  9:38 ` dkwo
2021-10-07  8:38 ` dkwo
2021-10-13 17:11 ` [PR PATCH] [Updated] " dkwo
2021-10-13 17:15 ` dkwo
2021-10-22 12:45 ` dkwo
2021-11-08 23:04 ` leahneukirchen
2021-11-09 10:43 ` [PR PATCH] [Updated] " dkwo
2021-11-09 10:47 ` dkwo
2021-11-09 10:59 ` dkwo
2021-11-09 11:27 ` tornaria
2021-11-09 11:38 ` tornaria
2021-11-09 12:15 ` [PR PATCH] [Updated] " dkwo
2021-11-09 12:27 ` dkwo
2021-11-09 12:45 ` tornaria
2021-11-09 15:44 ` leahneukirchen
2021-11-09 15:44 ` leahneukirchen
2021-11-09 15:46 ` [PR PATCH] [Updated] " dkwo
2021-11-09 15:48 ` dkwo
2021-11-09 16:02 ` [PR PATCH] [Merged]: " leahneukirchen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).