[arch-commits] Commit in (bliss-graphs)

2019-01-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 15, 2019 @ 18:13:19
  Author: arojas
Revision: 423359

Renamed to bliss

Deleted:
  bliss-graphs/


[arch-commits] Commit in bliss-graphs/trunk (PKGBUILD)

2018-11-09 Thread Evangelos Foutras via arch-commits
Date: Friday, November 9, 2018 @ 23:47:31
  Author: foutrelis
Revision: 405387

PIE/BUILDINFO rebuild

Modified:
  bliss-graphs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-09 23:47:00 UTC (rev 405386)
+++ PKGBUILD2018-11-09 23:47:31 UTC (rev 405387)
@@ -2,7 +2,7 @@
 
 pkgname=bliss-graphs
 pkgver=0.73
-pkgrel=3
+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;


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

2018-11-09 Thread Evangelos Foutras via arch-commits
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 
+
+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'
+ '242e9ff299178681a211c417c2db')
+
+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.patch2018-11-09 23:47:39 UTC 
(rev 405388)
@@ -0,0 +1,12 @@
+--- bliss-0.72/graph.hh2011-05-12 15:29:46.0 +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();
+


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

2017-07-10 Thread Antonio Rojas
Date: Monday, July 10, 2017 @ 19:43:03
  Author: arojas
Revision: 243780

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bliss-graphs/repos/community-i686/PKGBUILD
(from rev 243779, bliss-graphs/trunk/PKGBUILD)
  bliss-graphs/repos/community-i686/digraph_heuristic.patch
(from rev 243779, bliss-graphs/trunk/digraph_heuristic.patch)
  bliss-graphs/repos/community-x86_64/PKGBUILD
(from rev 243779, bliss-graphs/trunk/PKGBUILD)
  bliss-graphs/repos/community-x86_64/digraph_heuristic.patch
(from rev 243779, bliss-graphs/trunk/digraph_heuristic.patch)
Deleted:
  bliss-graphs/repos/community-i686/PKGBUILD
  bliss-graphs/repos/community-i686/digraph_heuristic.patch
  bliss-graphs/repos/community-x86_64/PKGBUILD
  bliss-graphs/repos/community-x86_64/digraph_heuristic.patch

--+
 /PKGBUILD|   72 +
 /digraph_heuristic.patch |   24 +
 community-i686/PKGBUILD  |   36 --
 community-i686/digraph_heuristic.patch   |   12 
 community-x86_64/PKGBUILD|   36 --
 community-x86_64/digraph_heuristic.patch |   12 
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-10 19:42:20 UTC (rev 243779)
+++ community-i686/PKGBUILD 2017-07-10 19:43:03 UTC (rev 243780)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=bliss-graphs
-pkgver=0.73
-pkgrel=2
-pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
-arch=(i686 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'
- '242e9ff299178681a211c417c2db')
-
-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-i686/PKGBUILD (from rev 243779, 
bliss-graphs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-10 19:43:03 UTC (rev 243780)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=bliss-graphs
+pkgver=0.73
+pkgrel=3
+pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
+arch=(i686 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'
+ '242e9ff299178681a211c417c2db')
+
+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/
+}
+

Deleted: community-i686/digraph_heuristic.patch
===
--- community-i686/digraph_heuristic.patch  2017-07-10 19:42:20 UTC (rev 
243779)
+++ community-i686/digraph_heuristic.patch  2017-07-10 19:43:03 UTC (rev 
243780)
@@ -1,12 +0,0 @@
 bliss-0.72/graph.hh2011-05-12 15:29:46.0 +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();
-

Copied: bliss-graphs/repos/community-i686/digraph_heuristic.patch (from rev 
243779, bliss-graphs/trunk/digraph_heuristic.patch)
===
--- community-i686/digraph_heuristic.patch  (rev 0)
+++ community-i686/digraph_heuristic.patch  2017-07-10 19:43:03 UTC (rev 
243780)
@@ -0,0 +1,12 @@
+--- bliss-0.72/graph.hh2011-05-12 15:29:46.0 +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 

[arch-commits] Commit in bliss-graphs/trunk (PKGBUILD)

2017-07-10 Thread Antonio Rojas
Date: Monday, July 10, 2017 @ 19:42:20
  Author: arojas
Revision: 243779

PIE rebuild

Modified:
  bliss-graphs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-10 19:23:59 UTC (rev 243778)
+++ PKGBUILD2017-07-10 19:42:20 UTC (rev 243779)
@@ -3,7 +3,7 @@
 
 pkgname=bliss-graphs
 pkgver=0.73
-pkgrel=2
+pkgrel=3
 pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
 arch=(i686 x86_64)
 url="http://www.tcs.tkk.fi/Software/bliss/index.html;


[arch-commits] Commit in bliss-graphs/trunk (PKGBUILD)

2015-12-05 Thread Allan McRae
Date: Saturday, December 5, 2015 @ 16:36:24
  Author: allan
Revision: 148491

C++11 ABI rebuild

Modified:
  bliss-graphs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-05 15:34:31 UTC (rev 148490)
+++ PKGBUILD2015-12-05 15:36:24 UTC (rev 148491)
@@ -3,7 +3,7 @@
 
 pkgname=bliss-graphs
 pkgver=0.73
-pkgrel=1
+pkgrel=2
 pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
 arch=(i686 x86_64)
 url="http://www.tcs.tkk.fi/Software/bliss/index.html;


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

2015-12-05 Thread Allan McRae
Date: Saturday, December 5, 2015 @ 16:37:22
  Author: allan
Revision: 148494

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

--+
 community-staging-i686/PKGBUILD  |   36 +
 community-staging-i686/digraph_heuristic.patch   |   12 +++
 community-staging-x86_64/PKGBUILD|   36 +
 community-staging-x86_64/digraph_heuristic.patch |   12 +++
 4 files changed, 96 insertions(+)

Copied: bliss-graphs/repos/community-staging-i686/PKGBUILD (from rev 148493, 
bliss-graphs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-05 15:37:22 UTC (rev 148494)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=bliss-graphs
+pkgver=0.73
+pkgrel=2
+pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
+arch=(i686 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'
+ '242e9ff299178681a211c417c2db')
+
+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-i686/digraph_heuristic.patch (from 
rev 148493, bliss-graphs/trunk/digraph_heuristic.patch)
===
--- community-staging-i686/digraph_heuristic.patch  
(rev 0)
+++ community-staging-i686/digraph_heuristic.patch  2015-12-05 15:37:22 UTC 
(rev 148494)
@@ -0,0 +1,12 @@
+--- bliss-0.72/graph.hh2011-05-12 15:29:46.0 +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();
+

Copied: bliss-graphs/repos/community-staging-x86_64/PKGBUILD (from rev 148493, 
bliss-graphs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-05 15:37:22 UTC (rev 148494)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=bliss-graphs
+pkgver=0.73
+pkgrel=2
+pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
+arch=(i686 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'
+ '242e9ff299178681a211c417c2db')
+
+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 148493, bliss-graphs/trunk/digraph_heuristic.patch)
===
--- community-staging-x86_64/digraph_heuristic.patch
(rev 0)
+++ community-staging-x86_64/digraph_heuristic.patch2015-12-05 15:37:22 UTC 
(rev 148494)
@@ -0,0 +1,12 @@
+--- bliss-0.72/graph.hh2011-05-12 15:29:46.0 +0200
 /home/azi/bliss-0.72/graph.hh  2014-12-30 11:14:20.917059666 +0100
+@@ -843,7 +843,7 @@
+   bool 

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

2015-09-28 Thread Antonio Rojas
Date: Monday, September 28, 2015 @ 18:22:54
  Author: arojas
Revision: 142098

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bliss-graphs/repos/community-i686/PKGBUILD
(from rev 142097, bliss-graphs/trunk/PKGBUILD)
  bliss-graphs/repos/community-i686/digraph_heuristic.patch
(from rev 142097, bliss-graphs/trunk/digraph_heuristic.patch)
  bliss-graphs/repos/community-x86_64/PKGBUILD
(from rev 142097, bliss-graphs/trunk/PKGBUILD)
  bliss-graphs/repos/community-x86_64/digraph_heuristic.patch
(from rev 142097, bliss-graphs/trunk/digraph_heuristic.patch)
Deleted:
  bliss-graphs/repos/community-i686/PKGBUILD
  bliss-graphs/repos/community-i686/digraph_heuristic.patch
  bliss-graphs/repos/community-x86_64/PKGBUILD
  bliss-graphs/repos/community-x86_64/digraph_heuristic.patch

--+
 /PKGBUILD|   72 +
 /digraph_heuristic.patch |   24 +
 community-i686/PKGBUILD  |   36 --
 community-i686/digraph_heuristic.patch   |   12 
 community-x86_64/PKGBUILD|   36 --
 community-x86_64/digraph_heuristic.patch |   12 
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-28 16:22:03 UTC (rev 142097)
+++ community-i686/PKGBUILD 2015-09-28 16:22:54 UTC (rev 142098)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=bliss-graphs
-pkgver=0.72
-pkgrel=2
-pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
-arch=(i686 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=('6f0e114944fa0863870b7f631850abb2'
- '242e9ff299178681a211c417c2db')
-
-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-i686/PKGBUILD (from rev 142097, 
bliss-graphs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-28 16:22:54 UTC (rev 142098)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=bliss-graphs
+pkgver=0.73
+pkgrel=1
+pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
+arch=(i686 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'
+ '242e9ff299178681a211c417c2db')
+
+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/
+}
+

Deleted: community-i686/digraph_heuristic.patch
===
--- community-i686/digraph_heuristic.patch  2015-09-28 16:22:03 UTC (rev 
142097)
+++ community-i686/digraph_heuristic.patch  2015-09-28 16:22:54 UTC (rev 
142098)
@@ -1,12 +0,0 @@
 bliss-0.72/graph.hh2011-05-12 15:29:46.0 +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();
-

Copied: bliss-graphs/repos/community-i686/digraph_heuristic.patch (from rev 
142097, bliss-graphs/trunk/digraph_heuristic.patch)
===
--- community-i686/digraph_heuristic.patch  (rev 0)
+++ community-i686/digraph_heuristic.patch  2015-09-28 16:22:54 UTC (rev 
142098)
@@ -0,0 +1,12 @@
+--- bliss-0.72/graph.hh2011-05-12 15:29:46.0 +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 

[arch-commits] Commit in bliss-graphs/trunk (PKGBUILD)

2015-09-28 Thread Antonio Rojas
Date: Monday, September 28, 2015 @ 18:22:03
  Author: arojas
Revision: 142097

Update to 0.73

Modified:
  bliss-graphs/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-28 16:00:56 UTC (rev 142096)
+++ PKGBUILD2015-09-28 16:22:03 UTC (rev 142097)
@@ -2,8 +2,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=bliss-graphs
-pkgver=0.72
-pkgrel=2
+pkgver=0.73
+pkgrel=1
 pkgdesc="A library for computing automorphism groups and canonical forms of 
graphs"
 arch=(i686 x86_64)
 url="http://www.tcs.tkk.fi/Software/bliss/index.html;
@@ -10,7 +10,7 @@
 license=(GPL3)
 depends=(gcc-libs)
 source=("http://www.tcs.hut.fi/Software/bliss/bliss-$pkgver.zip; 
'digraph_heuristic.patch')
-md5sums=('6f0e114944fa0863870b7f631850abb2'
+md5sums=('72f2e310786923b5c398ba0fc40b42ce'
  '242e9ff299178681a211c417c2db')
 
 prepare() {


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

2015-07-27 Thread Antonio Rojas
Date: Monday, July 27, 2015 @ 16:10:19
  Author: arojas
Revision: 137504

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bliss-graphs/repos/community-i686/PKGBUILD
(from rev 137503, bliss-graphs/trunk/PKGBUILD)
  bliss-graphs/repos/community-i686/digraph_heuristic.patch
(from rev 137503, bliss-graphs/trunk/digraph_heuristic.patch)
  bliss-graphs/repos/community-x86_64/PKGBUILD
(from rev 137503, bliss-graphs/trunk/PKGBUILD)
  bliss-graphs/repos/community-x86_64/digraph_heuristic.patch
(from rev 137503, bliss-graphs/trunk/digraph_heuristic.patch)
Deleted:
  bliss-graphs/repos/community-i686/PKGBUILD
  bliss-graphs/repos/community-x86_64/PKGBUILD

--+
 /PKGBUILD|   72 +
 community-i686/PKGBUILD  |   29 ---
 community-i686/digraph_heuristic.patch   |   12 
 community-x86_64/PKGBUILD|   29 ---
 community-x86_64/digraph_heuristic.patch |   12 
 5 files changed, 96 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-27 14:09:18 UTC (rev 137503)
+++ community-i686/PKGBUILD 2015-07-27 14:10:19 UTC (rev 137504)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-
-pkgname=bliss-graphs
-pkgver=0.72
-pkgrel=1
-pkgdesc=A library for computing automorphism groups and canonical forms of 
graphs
-arch=(i686 x86_64)
-url=http://www.tcs.tkk.fi/Software/bliss/index.html;
-license=(GPL3)
-depends=(glibc)
-source=(http://www.tcs.hut.fi/Software/bliss/bliss-$pkgver.zip;)
-md5sums=('6f0e114944fa0863870b7f631850abb2')
-
-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-i686/PKGBUILD (from rev 137503, 
bliss-graphs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-27 14:10:19 UTC (rev 137504)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=bliss-graphs
+pkgver=0.72
+pkgrel=2
+pkgdesc=A library for computing automorphism groups and canonical forms of 
graphs
+arch=(i686 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=('6f0e114944fa0863870b7f631850abb2'
+ '242e9ff299178681a211c417c2db')
+
+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-i686/digraph_heuristic.patch (from rev 
137503, bliss-graphs/trunk/digraph_heuristic.patch)
===
--- community-i686/digraph_heuristic.patch  (rev 0)
+++ community-i686/digraph_heuristic.patch  2015-07-27 14:10:19 UTC (rev 
137504)
@@ -0,0 +1,12 @@
+--- bliss-0.72/graph.hh2011-05-12 15:29:46.0 +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();
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-27 14:09:18 UTC (rev 137503)
+++ community-x86_64/PKGBUILD   2015-07-27 14:10:19 UTC (rev 137504)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-
-pkgname=bliss-graphs
-pkgver=0.72
-pkgrel=1
-pkgdesc=A library for computing automorphism groups and canonical forms of 
graphs
-arch=(i686 x86_64)
-url=http://www.tcs.tkk.fi/Software/bliss/index.html;
-license=(GPL3)
-depends=(glibc)
-source=(http://www.tcs.hut.fi/Software/bliss/bliss-$pkgver.zip;)
-md5sums=('6f0e114944fa0863870b7f631850abb2')
-
-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-x86_64/PKGBUILD (from rev 

[arch-commits] Commit in bliss-graphs/trunk (PKGBUILD digraph_heuristic.patch)

2015-07-27 Thread Antonio Rojas
Date: Monday, July 27, 2015 @ 16:09:18
  Author: arojas
Revision: 137503

Fix splitting heuristics for digraphs

Added:
  bliss-graphs/trunk/digraph_heuristic.patch
Modified:
  bliss-graphs/trunk/PKGBUILD

-+
 PKGBUILD|   15 +++
 digraph_heuristic.patch |   12 
 2 files changed, 23 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-27 11:42:04 UTC (rev 137502)
+++ PKGBUILD2015-07-27 14:09:18 UTC (rev 137503)
@@ -3,15 +3,22 @@
 
 pkgname=bliss-graphs
 pkgver=0.72
-pkgrel=1
+pkgrel=2
 pkgdesc=A library for computing automorphism groups and canonical forms of 
graphs
 arch=(i686 x86_64)
 url=http://www.tcs.tkk.fi/Software/bliss/index.html;
 license=(GPL3)
-depends=(glibc)
-source=(http://www.tcs.hut.fi/Software/bliss/bliss-$pkgver.zip;)
-md5sums=('6f0e114944fa0863870b7f631850abb2')
+depends=(gcc-libs)
+source=(http://www.tcs.hut.fi/Software/bliss/bliss-$pkgver.zip; 
'digraph_heuristic.patch')
+md5sums=('6f0e114944fa0863870b7f631850abb2'
+ '242e9ff299178681a211c417c2db')
 
+prepare() {
+  cd bliss-$pkgver
+# Fix splitting heuristics for digraphs
+  patch -p1 -i ../digraph_heuristic.patch
+}
+
 build() {
   cd bliss-$pkgver
 

Added: digraph_heuristic.patch
===
--- digraph_heuristic.patch (rev 0)
+++ digraph_heuristic.patch 2015-07-27 14:09:18 UTC (rev 137503)
@@ -0,0 +1,12 @@
+--- bliss-0.72/graph.hh2011-05-12 15:29:46.0 +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();
+


[arch-commits] Commit in bliss-graphs (5 files)

2015-05-15 Thread Antonio Rojas
Date: Friday, May 15, 2015 @ 11:06:48
  Author: arojas
Revision: 133485

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bliss-graphs/repos/
  bliss-graphs/repos/community-i686/
  bliss-graphs/repos/community-i686/PKGBUILD
(from rev 133484, bliss-graphs/trunk/PKGBUILD)
  bliss-graphs/repos/community-x86_64/
  bliss-graphs/repos/community-x86_64/PKGBUILD
(from rev 133484, bliss-graphs/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   29 +
 community-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: bliss-graphs/repos/community-i686/PKGBUILD (from rev 133484, 
bliss-graphs/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-05-15 09:06:48 UTC (rev 133485)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=bliss-graphs
+pkgver=0.72
+pkgrel=1
+pkgdesc=A library for computing automorphism groups and canonical forms of 
graphs
+arch=(i686 x86_64)
+url=http://www.tcs.tkk.fi/Software/bliss/index.html;
+license=(GPL3)
+depends=(glibc)
+source=(http://www.tcs.hut.fi/Software/bliss/bliss-$pkgver.zip;)
+md5sums=('6f0e114944fa0863870b7f631850abb2')
+
+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-x86_64/PKGBUILD (from rev 133484, 
bliss-graphs/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2015-05-15 09:06:48 UTC (rev 133485)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=bliss-graphs
+pkgver=0.72
+pkgrel=1
+pkgdesc=A library for computing automorphism groups and canonical forms of 
graphs
+arch=(i686 x86_64)
+url=http://www.tcs.tkk.fi/Software/bliss/index.html;
+license=(GPL3)
+depends=(glibc)
+source=(http://www.tcs.hut.fi/Software/bliss/bliss-$pkgver.zip;)
+md5sums=('6f0e114944fa0863870b7f631850abb2')
+
+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/
+}
+