aboutsummaryrefslogtreecommitdiff
path: root/biology/hisat2
diff options
context:
space:
mode:
authorJason W. Bacon <jwb@FreeBSD.org>2021-11-27 13:26:45 +0000
committerJason W. Bacon <jwb@FreeBSD.org>2021-11-27 13:26:45 +0000
commit5ed416aa0967ac4cf5153f9f7cae4b9f14c56966 (patch)
tree311a678cd7b80a2aca70abe40b7ed05a793c41b4 /biology/hisat2
parent44e33c70cbe1b41d6690c95ae496c68df2407a0d (diff)
downloadports-5ed416aa0967ac4cf5153f9f7cae4b9f14c56966.tar.gz
ports-5ed416aa0967ac4cf5153f9f7cae4b9f14c56966.zip
biology/hisat2: Remove patch causing quality scores of "-0"
Diffstat (limited to 'biology/hisat2')
-rw-r--r--biology/hisat2/Makefile1
-rw-r--r--biology/hisat2/files/patch-util.h11
2 files changed, 1 insertions, 11 deletions
diff --git a/biology/hisat2/Makefile b/biology/hisat2/Makefile
index ae0ad38fbe7d..33d56578fcf8 100644
--- a/biology/hisat2/Makefile
+++ b/biology/hisat2/Makefile
@@ -1,6 +1,7 @@
PORTNAME= hisat2
DISTVERSIONPREFIX= v
DISTVERSION= 2.2.1
+PORTREVISION= 1
CATEGORIES= biology perl5 python
MAINTAINER= jwb@FreeBSD.org
diff --git a/biology/hisat2/files/patch-util.h b/biology/hisat2/files/patch-util.h
deleted file mode 100644
index 43c3aa88400c..000000000000
--- a/biology/hisat2/files/patch-util.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- util.h.orig 2021-11-26 15:40:17 UTC
-+++ util.h
-@@ -43,7 +43,7 @@ char* itoa10(const T& value, char* result) {
- // Only apply negative sign for base 10
- if(std::numeric_limits<T>::is_signed) {
- // Avoid compiler warning in cases where T is unsigned
-- if (value <= 0 && value != 0) *out++ = '-';
-+ if (value <= 0) *out++ = '-';
- }
- reverse( result, out );
- *out = 0; // terminator