[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/09: gnu: bowtie1: Update to 1.3.1.
From: |
guix-commits |
Subject: |
06/09: gnu: bowtie1: Update to 1.3.1. |
Date: |
Wed, 28 Feb 2024 05:26:57 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit aa1d419586c387ba07f323196bfb92b6237b032e
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Feb 28 11:34:03 2024 +0200
gnu: bowtie1: Update to 1.3.1.
* gnu/packages/bioinformatics.scm (bowtie1): Update to 1.3.1.
[arguments]: Add test-target.
[inputs]: Use newer tbb.
Change-Id: I7af6aa248e5db9f91ce84fba9ba741621b110479
---
gnu/packages/bioinformatics.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 3f12b28058..1613961c64 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4,7 +4,7 @@
;;; Copyright © 2015, 2016, 2018, 2019, 2020 Pjotr Prins
<pjotr.guix@thebird.nl>
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016, 2020, 2021 Roel Janssen <roel@gnu.org>
-;;; Copyright © 2016-2023 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016-2024 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016, 2020, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2016, 2018 Raoul Bonnal <ilpuccio.febo@gmail.com>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
@@ -3756,14 +3756,14 @@ gapped, local, and paired-end alignment modes.")
(define-public bowtie1
(package
(name "bowtie1")
- (version "1.3.0")
+ (version "1.3.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/bowtie-bio/bowtie/"
version "/bowtie-" version "-src.zip"))
(sha256
(base32
- "11dbihdnrizc6qhx9xsw77w3q5ssx642alaqzvhxx32ak9glvq04"))
+ "0q87nhgj9wrnbazcpvqp4594hmyh1isi3s9b2wlghvl4afm1fdg2"))
(modules '((guix build utils)))
(snippet
'(substitute* "Makefile"
@@ -3772,7 +3772,8 @@ gapped, local, and paired-end alignment modes.")
(("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\"")))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; no "check" target
+ `(#:tests? #f ; Tests need various perl modules
+ #:test-target "simple-test"
#:make-flags
,#~(list "CC=gcc" "all"
(string-append "prefix=" #$output))
@@ -3780,7 +3781,7 @@ gapped, local, and paired-end alignment modes.")
(modify-phases %standard-phases
(delete 'configure))))
(inputs
- (list python-wrapper tbb-2020 zlib))
+ (list python-wrapper tbb zlib))
(supported-systems '("x86_64-linux"))
(home-page "https://bowtie-bio.sourceforge.net/index.shtml")
(synopsis "Fast aligner for short nucleotide sequence reads")
- branch master updated (8c0282cf54 -> f29f80c194), guix-commits, 2024/02/28
- 01/09: gnu: python-graph-tool: Limit build to 1 core., guix-commits, 2024/02/28
- 05/09: gnu: gnucash: Update to 5.5., guix-commits, 2024/02/28
- 03/09: gnu: python-databind-json: Allow newer versions of typing-extensions., guix-commits, 2024/02/28
- 02/09: gnu: python-databind-core: Allow newer versions of typing-extensions., guix-commits, 2024/02/28
- 06/09: gnu: bowtie1: Update to 1.3.1.,
guix-commits <=
- 07/09: gnu: bowtie1: Enable building on more systems., guix-commits, 2024/02/28
- 04/09: gnu: gst-plugins-bad: Skip camerabin test on aarch64-linux., guix-commits, 2024/02/28
- 09/09: Merge branch 'rust-team', guix-commits, 2024/02/28
- 08/09: gnu: bowtie1: Enable cross-compiling., guix-commits, 2024/02/28