gnu: nauty: Update to 2.8.6.

* gnu/packages/maths.scm (nauty): Update to 2.8.6.
[arguments]<#:phases>: Remove unnecessary phases. Add a phase to fix location
of installed ".pc" files.

Change-Id: I65db0b2dde6e7a9dda396598d744e21ce7c78200
This commit is contained in:
Nicolas Goaziou 2023-10-23 21:11:35 +02:00
parent db31cbc59e
commit be223a9451
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -8518,15 +8518,15 @@ (define-public mlucas
(define-public nauty (define-public nauty
(package (package
(name "nauty") (name "nauty")
(version "2.7r4") (version "2.8.6")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"https://pallini.di.uniroma1.it/" "https://pallini.di.uniroma1.it/"
"nauty" (string-join (string-split version #\.) "") ".tar.gz")) "nauty" (string-join (string-split version #\.) "_") ".tar.gz"))
(sha256 (sha256
(base32 "19j8i10cgnqavphj0p7kq939azxckj9ayjpjr6sg76g2dxdch45q")))) (base32 "1yp6wpz2drq0viww8px1vl4pw919nq3xgxrmrrdhycx8bhi9ikpj"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(outputs '("out" "lib")) (outputs '("out" "lib"))
(arguments (arguments
@ -8535,37 +8535,11 @@ (define-public nauty
#:configure-flags #~(list "--enable-generic") ;prevent -march-native #:configure-flags #~(list "--enable-generic") ;prevent -march-native
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
;; Default make target does not build all available (add-after 'unpack 'normalize-pkgconfig-files-location
;; executables. Create them now.
(add-after 'build 'build-extra-programs
(lambda _ (lambda _
(for-each (lambda (target) (invoke "make" target)) (substitute* "makefile.in"
'("blisstog" "bliss2dre" "checks6" "sumlines")))) (("^(pkgconfigexecdir=).*" _ prefix)
;; Upstream does not provide any install target. (string-append prefix "${libdir}/pkgconfig\n"))))))))
(replace 'install
(lambda _
(let* ((bin (string-append #$output "/bin"))
(doc (string-append #$output "/share/doc/nauty/"))
(include (string-append #$output:lib "/include/nauty"))
(lib (string-append #$output:lib "/lib/nauty")))
(for-each (lambda (f) (install-file f bin))
'("addedgeg" "amtog" "assembleg" "biplabg" "blisstog"
"bliss2dre" "catg" "checks6" "complg" "converseg"
"copyg" "countg" "cubhamg" "deledgeg" "delptg"
"directg" "dreadnaut" "dretodot" "dretog" "genbg"
"genbgL" "geng" "genquarticg" "genrang" "genspecialg"
"gentourng" "gentreeg" "hamheuristic" "labelg"
"linegraphg" "listg" "multig" "newedgeg" "pickg"
"planarg" "ranlabg" "shortg" "showg" "subdivideg"
"sumlines" "twohamg" "underlyingg" "vcolg"
"watercluster2" "NRswitchg"))
(for-each (lambda (f) (install-file f include))
(find-files "." "\\.h$"))
(for-each (lambda (f) (install-file f lib))
(find-files "." "\\.a$"))
(for-each (lambda (f) (install-file f doc))
(append '("formats.txt" "README" "schreier.txt")
(find-files "." "\\.pdf$")))))))))
(inputs (inputs
(list gmp)) ;for sumlines (list gmp)) ;for sumlines
(home-page "https://pallini.di.uniroma1.it/") (home-page "https://pallini.di.uniroma1.it/")