[arch-commits] Commit in sympol/repos (4 files)
Felix Yan
felixonmars at archlinux.org
Sat Dec 12 15:47:17 UTC 2020
Date: Saturday, December 12, 2020 @ 15:47:16
Author: felixonmars
Revision: 773343
archrelease: copy trunk to community-staging-x86_64
Added:
sympol/repos/community-staging-x86_64/
sympol/repos/community-staging-x86_64/PKGBUILD
(from rev 773342, sympol/trunk/PKGBUILD)
sympol/repos/community-staging-x86_64/cddlib-0.94k.patch
(from rev 773342, sympol/trunk/cddlib-0.94k.patch)
sympol/repos/community-staging-x86_64/sympol-fix-headers.patch
(from rev 773342, sympol/trunk/sympol-fix-headers.patch)
--------------------------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++
cddlib-0.94k.patch | 14 +++++++++++++
sympol-fix-headers.patch | 47 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 100 insertions(+)
Copied: sympol/repos/community-staging-x86_64/PKGBUILD (from rev 773342, sympol/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-12-12 15:47:16 UTC (rev 773343)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=sympol
+pkgver=0.1.9
+pkgrel=8
+pkgdesc="A C++ tool to work with symmetric polyhedra"
+arch=(x86_64)
+url="http://www.math.uni-rostock.de/~rehn/software/sympol.html"
+license=(GPL2)
+source=($pkgname-$pkgver::"https://github.com/tremlin/SymPol/archive/v$pkgver.tar.gz"
+ cddlib-0.94k.patch
+ sympol-fix-headers.patch)
+depends=(boost-libs lrs cddlib)
+makedepends=(cmake permlib eigen bliss)
+sha256sums=('6753b8fb30745b66a0886e125c18b539417afcf62b804799eb220bd5a59ccc37'
+ '23f85255ad1acbaf9c63134c6d331e0f3b8d06230a05e3f63e57399863579649'
+ 'f3ed90e6b9af5dae0728c52ce4bb9107f3040481cac6c08116dbf8c19bfe3971')
+
+prepare() {
+ cd SymPol-$pkgver
+ sed -e '/(external/d' -i CMakeLists.txt # Don't use bundled cddlib and lrslib
+ sed -e 's|lrsgmp|lrs|' -i sympol/CMakeLists.txt # Fix linking to system lrs
+ rm -r external/{lrslib*,cddlib*}
+ sed -e '/lrs_mp_close/d' -i sympol/raycomputationlrs.cpp # Fix build with lrs 0.5 (Fedora)
+ patch -p1 -i ../cddlib-0.94k.patch # Fix build with cddlib 0.94k
+ patch -p1 -i ../sympol-fix-headers.patch # Keep headers directory structure
+}
+
+build() {
+ cmake -B build -S SymPol-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_CXX_FLAGS="${CXXFLAGS} -I/usr/include/lrslib -DMA -DGMP -DBLISS_USE_GMP"
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}
Copied: sympol/repos/community-staging-x86_64/cddlib-0.94k.patch (from rev 773342, sympol/trunk/cddlib-0.94k.patch)
===================================================================
--- community-staging-x86_64/cddlib-0.94k.patch (rev 0)
+++ community-staging-x86_64/cddlib-0.94k.patch 2020-12-12 15:47:16 UTC (rev 773343)
@@ -0,0 +1,14 @@
+diff -upr SymPol-0.1.9.orig/sympol/raycomputationcdd.cpp SymPol-0.1.9/sympol/raycomputationcdd.cpp
+--- SymPol-0.1.9.orig/sympol/raycomputationcdd.cpp 2016-05-08 22:52:35.000000000 +0300
++++ SymPol-0.1.9/sympol/raycomputationcdd.cpp 2020-12-07 01:19:11.840719385 +0200
+@@ -25,8 +25,8 @@
+ #include "polyhedron.h"
+
+ extern "C" {
+- #include <setoper.h>
+- #include <cdd.h>
++ #include <cddlib/setoper.h>
++ #include <cddlib/cdd.h>
+ }
+
+ #include <ctime>
Copied: sympol/repos/community-staging-x86_64/sympol-fix-headers.patch (from rev 773342, sympol/trunk/sympol-fix-headers.patch)
===================================================================
--- community-staging-x86_64/sympol-fix-headers.patch (rev 0)
+++ community-staging-x86_64/sympol-fix-headers.patch 2020-12-12 15:47:16 UTC (rev 773343)
@@ -0,0 +1,47 @@
+diff --git a/sympol/CMakeLists.txt b/sympol/CMakeLists.txt
+index de9b4a8..da759d6 100644
+--- a/sympol/CMakeLists.txt
++++ b/sympol/CMakeLists.txt
+@@ -99,11 +99,6 @@ install(FILES
+ configuration.h
+ facesuptosymmetrylist.h
+ facewithdata.h
+- matrix/algorithm.h
+- matrix/invert.h
+- matrix/matrix.h
+- matrix/rank.h
+- matrix/zmatrix.h
+ polyhedrondatastorage.h
+ polyhedron.h
+ polyhedronio.h
+@@ -122,6 +117,16 @@ install(FILES
+ symmetrycomputationidm.h
+ symmetrycomputationidmmemento.h
+ symmetrycomputationmemento.h
++ types.h
++ DESTINATION ${INCLUDE_INSTALL_DIR}/sympol)
++install(FILES
++ matrix/algorithm.h
++ matrix/invert.h
++ matrix/matrix.h
++ matrix/rank.h
++ matrix/zmatrix.h
++ DESTINATION ${INCLUDE_INSTALL_DIR}/sympol/matrix)
++install(FILES
+ symmetrygroupconstruction/computesymmetries.h
+ symmetrygroupconstruction/graphconstructionbliss.h
+ symmetrygroupconstruction/graphconstructiondefault.h
+@@ -129,10 +134,11 @@ install(FILES
+ symmetrygroupconstruction/matrixconstructiondefault.h
+ symmetrygroupconstruction/matrixconstructioneigen.h
+ symmetrygroupconstruction/matrixconstruction.h
+- types.h
++ DESTINATION ${INCLUDE_INSTALL_DIR}/sympol/symmetrygroupconstruction)
++install(FILES
+ yal/logger.h
+ yal/reportlevel.h
+ yal/usagestats.h
+- DESTINATION ${INCLUDE_INSTALL_DIR}/sympol)
++ DESTINATION ${INCLUDE_INSTALL_DIR}/sympol/yal)
+ install(FILES ../man/sympol.1
+ DESTINATION "share/man/man1")
More information about the arch-commits
mailing list