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

Evangelos Foutras foutrelis at archlinux.org
Fri Nov 9 23:47:40 UTC 2018


    Date: Friday, November 9, 2018 @ 23:47:39
  Author: foutrelis
Revision: 405388

archrelease: copy trunk to community-staging-x86_64

Added:
  bliss-graphs/repos/community-staging-x86_64/
  bliss-graphs/repos/community-staging-x86_64/PKGBUILD
    (from rev 405387, bliss-graphs/trunk/PKGBUILD)
  bliss-graphs/repos/community-staging-x86_64/digraph_heuristic.patch
    (from rev 405387, bliss-graphs/trunk/digraph_heuristic.patch)

-------------------------+
 PKGBUILD                |   35 +++++++++++++++++++++++++++++++++++
 digraph_heuristic.patch |   12 ++++++++++++
 2 files changed, 47 insertions(+)

Copied: bliss-graphs/repos/community-staging-x86_64/PKGBUILD (from rev 405387, bliss-graphs/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2018-11-09 23:47:39 UTC (rev 405388)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=bliss-graphs
+pkgver=0.73
+pkgrel=4
+pkgdesc="A library for computing automorphism groups and canonical forms of graphs"
+arch=(x86_64)
+url="http://www.tcs.tkk.fi/Software/bliss/index.html"
+license=(GPL3)
+depends=(gcc-libs)
+source=("http://www.tcs.hut.fi/Software/bliss/bliss-$pkgver.zip" 'digraph_heuristic.patch')
+md5sums=('72f2e310786923b5c398ba0fc40b42ce'
+         '242e9ffffff299178681a211c417c2db')
+
+prepare() {
+  cd bliss-$pkgver
+# Fix splitting heuristics for digraphs
+  patch -p1 -i ../digraph_heuristic.patch
+}
+
+build() {
+  cd bliss-$pkgver
+
+  make
+}
+
+package() {
+  cd bliss-$pkgver
+
+  mkdir -p "$pkgdir"/usr/{include/bliss,lib,bin}
+  cp *.hh "$pkgdir"/usr/include/bliss/
+  cp libbliss.a "$pkgdir"/usr/lib/
+  cp bliss "$pkgdir"/usr/bin/
+}
+

Copied: bliss-graphs/repos/community-staging-x86_64/digraph_heuristic.patch (from rev 405387, bliss-graphs/trunk/digraph_heuristic.patch)
===================================================================
--- community-staging-x86_64/digraph_heuristic.patch	                        (rev 0)
+++ community-staging-x86_64/digraph_heuristic.patch	2018-11-09 23:47:39 UTC (rev 405388)
@@ -0,0 +1,12 @@
+--- bliss-0.72/graph.hh	2011-05-12 15:29:46.000000000 +0200
++++ /home/azi/bliss-0.72/graph.hh	2014-12-30 11:14:20.917059666 +0100
+@@ -843,7 +843,7 @@
+   bool is_equitable() const;
+ 
+   /* Splitting heuristics, documented in more detail in the cc-file. */
+-  SplittingHeuristic sh;
++  SplittingHeuristic sh = shs_f;
+   Partition::Cell* find_next_cell_to_be_splitted(Partition::Cell *cell);
+   Partition::Cell* sh_first();
+   Partition::Cell* sh_first_smallest();
+



More information about the arch-commits mailing list