[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56729] [RFC PATCH 04/10] gnu: cliquer: Update to 1.22.
From: |
vicvbcun |
Subject: |
[bug#56729] [RFC PATCH 04/10] gnu: cliquer: Update to 1.22. |
Date: |
Sat, 23 Jul 2022 22:51:58 +0200 |
Switch to an autotoolized fork.
* gnu/packages/sagemath.scm (cliquer): Update to 1.22.
---
gnu/packages/sagemath.scm | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm
index 75720f31a5..b29620a946 100644
--- a/gnu/packages/sagemath.scm
+++ b/gnu/packages/sagemath.scm
@@ -101,19 +101,18 @@ (define-public python-gmpy2
(define-public cliquer
(package
(name "cliquer")
- (version "1.21")
- ;; The original source package is available from the home page and
- ;; has not seen any release since 2010; it comes with only a Makefile
- ;; without an "install" target. Instead, there is an autotoolized
- ;; tarball available from the Sage project.
- (source
- (origin
- (method url-fetch)
- (uri "http://users.ox.ac.uk/~coml0531/sage/cliquer-1.21.tar.gz";)
- (sha256
- (base32
- "1hdzrmrx0nvvj8kbwxrs8swqgkd284khzl623jizixcv28xb77aq"))))
+ (version "1.22")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dimpase/autocliquer";)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "00gcmrhi2fjn8b246w5a3b0pl7p6haxy5wjvd9kcqib1xanz59z4"))))
(build-system gnu-build-system)
+ (native-inputs (list autoconf automake libtool))
(synopsis "C routines for finding cliques in weighted graphs")
(description "Cliquer is a set of reentrant C routines for finding
cliques in a weighted or unweighted graph. It uses an exact
@@ -122,7 +121,7 @@ (define-public cliquer
search to maximal cliques, store cliques in memory and call a user-defined
function for every found clique.")
(license license:gpl2+)
- (home-page "https://users.aalto.fi/~pat/cliquer.html";)))
+ (home-page "https://github.com/dimpase/autocliquer";)))
(define-public libbraiding
(package
--
2.37.0
- [bug#56729] [RFC PATCH 00/10] Add sagemath., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 02/10] gnu: gap: Update to 4.11.1., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 03/10] gnu: Remove ecl-16., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 01/10] gnu: edge-addition-planarity-suite: Update to 3.0.2.0., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 07/10] gnu: eclib: Update to 20220621., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 08/10] gnu: Add python-memory-allocator., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 06/10] gnu: ntl: Update to 11.5.1., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 10/10] gnu: Add sagemath., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 04/10] gnu: cliquer: Update to 1.22.,
vicvbcun <=
- [bug#56729] [RFC PATCH 05/10] gnu: lcalc: Update to 2.0.5., vicvbcun, 2022/07/23
- [bug#56729] [RFC PATCH 09/10] gnu: Add python-pplpy., vicvbcun, 2022/07/23