[arch-commits] Commit in sympol/repos (3 files)

Antonio Rojas arojas at archlinux.org
Thu Jun 4 11:01:14 UTC 2020


    Date: Thursday, June 4, 2020 @ 11:01:08
  Author: arojas
Revision: 638889

archrelease: copy trunk to community-staging-x86_64

Added:
  sympol/repos/community-staging-x86_64/
  sympol/repos/community-staging-x86_64/PKGBUILD
    (from rev 638888, sympol/trunk/PKGBUILD)
  sympol/repos/community-staging-x86_64/sympol-fix-headers.patch
    (from rev 638888, sympol/trunk/sympol-fix-headers.patch)

--------------------------+
 PKGBUILD                 |   36 ++++++++++++++++++++++++++++++++++
 sympol-fix-headers.patch |   47 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

Copied: sympol/repos/community-staging-x86_64/PKGBUILD (from rev 638888, sympol/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-06-04 11:01:08 UTC (rev 638889)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=sympol
+pkgver=0.1.9
+pkgrel=6
+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"
+        sympol-fix-headers.patch)
+depends=(boost-libs lrs cddlib)
+makedepends=(cmake permlib eigen bliss)
+sha256sums=('6753b8fb30745b66a0886e125c18b539417afcf62b804799eb220bd5a59ccc37'
+            '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 ../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/sympol-fix-headers.patch (from rev 638888, 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-06-04 11:01:08 UTC (rev 638889)
@@ -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