Skip to content

Commit 65ce3f1

Browse files
Jason W. BaconJason W. Bacon
authored andcommitted
biology/bowtie2: Update to 2.5.1
A few minor fixes and enhancements Changes: https://github.com/BenLangmead/bowtie2/tags Reported by: portscout
1 parent b4a0643 commit 65ce3f1

File tree

3 files changed

+9
-27
lines changed

3 files changed

+9
-27
lines changed

‎biology/bowtie2/Makefile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PORTNAME= bowtie2
22
DISTVERSIONPREFIX= v
3-
DISTVERSION= 2.5.0
3+
DISTVERSION= 2.5.1
44
CATEGORIES= biology perl5 python
55

66
MAINTAINER= jwb@FreeBSD.org

‎biology/bowtie2/distinfo‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
TIMESTAMP = 1667400686
2-
SHA256 (BenLangmead-bowtie2-v2.5.0_GH0.tar.gz) = 55dedeba8bea240d3ce3f46211d6e14310035c1de5a3e9ac33f72f739165fea0
3-
SIZE (BenLangmead-bowtie2-v2.5.0_GH0.tar.gz) = 10598633
1+
TIMESTAMP = 1674338476
2+
SHA256 (BenLangmead-bowtie2-v2.5.1_GH0.tar.gz) = 3fe00f4f89b5dd85fd9317e2168ec93f30dbb75d7950a08516c767d21eca7c27
3+
SIZE (BenLangmead-bowtie2-v2.5.1_GH0.tar.gz) = 10598627
44
SHA256 (simd-everywhere-simde-no-tests-f6a0b3b_GH0.tar.gz) = 9874f22afe8a6cd92770aa194df47db3d0963d80ea233a502b0d557f59763eb8
55
SIZE (simd-everywhere-simde-no-tests-f6a0b3b_GH0.tar.gz) = 397743
Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,11 @@
1-
--- Makefile.orig 2022-11-01 01:53:08 UTC
1+
--- Makefile.orig 2023-01-21 21:59:18 UTC
22
+++ Makefile
3-
@@ -32,7 +32,7 @@ BOWTIE_SHARED_MEM :=
4-
5-
CXXFLAGS += -std=c++11
6-
7-
-ARCH = $(shell uname -m)
8-
+ARCH = $(shell uname -p)
9-
NGS_VER ?= 2.9.2
10-
VDB_VER ?= 2.9.2-1
11-
12-
@@ -62,7 +62,7 @@ ifneq (,$(findstring Darwin,$(shell uname)))
3+
@@ -61,7 +61,7 @@ ifneq (,$(findstring Darwin,$(shell uname)))
134
endif
145

156
BITS := 32
16-
-ifneq (,$(findstring $(shell uname -m), x86_64 amd64))
17-
+ifneq (,$(findstring $(shell uname -p), x86_64 amd64))
7+
-ARCH ?= $(shell uname -m)
8+
+ARCH ?= $(shell uname -p)
9+
ifneq (,$(findstring $(ARCH), x86_64 amd64))
1810
BITS := 64
1911
ifeq (1, $(SSE_AVX2))
20-
SSE_FLAG := -mavx2 -faligned-new -DSSE_AVX2
21-
@@ -71,7 +71,7 @@ ifneq (,$(findstring $(shell uname -m), x86_64 amd64))
22-
endif
23-
24-
POPCNT_CAPABILITY ?= 1
25-
-else ifneq (,$(findstring $(shell uname -m), aarch64 arm64 s390x ppc64 ppc64le))
26-
+else ifneq (,$(findstring $(shell uname -p), aarch64 arm64 s390x powerpc64 powerpc64le ppc64 ppc64le))
27-
BITS := 64
28-
SSE_FLAG :=
29-
CXXFLAGS += -fopenmp-simd

0 commit comments

Comments
 (0)