git: 92b051a2909f - main - biology/diamond: Update to 2.1.9

From: Joseph Mingrone <jrm_at_FreeBSD.org>
Date: Sun, 04 Feb 2024 19:42:06 UTC
The branch main has been updated by jrm:

URL: https://cgit.FreeBSD.org/ports/commit/?id=92b051a2909f68d74d1bb641a08bdc09365e5083

commit 92b051a2909f68d74d1bb641a08bdc09365e5083
Author:     Joseph Mingrone <jrm@FreeBSD.org>
AuthorDate: 2024-02-04 19:39:24 +0000
Commit:     Joseph Mingrone <jrm@FreeBSD.org>
CommitDate: 2024-02-04 19:41:51 +0000

    biology/diamond: Update to 2.1.9
    
    Changelog:      https://github.com/bbuchfink/diamond/releases/tag/v2.1.9
    Sponsored by:   The FreeBSD Foundation
---
 biology/diamond/Makefile                                   |  3 +--
 biology/diamond/distinfo                                   |  6 +++---
 .../diamond/files/patch-src_util_data__structures_deque.h  | 14 --------------
 3 files changed, 4 insertions(+), 19 deletions(-)

diff --git a/biology/diamond/Makefile b/biology/diamond/Makefile
index d45e49fd8006..e6b69cfa7132 100644
--- a/biology/diamond/Makefile
+++ b/biology/diamond/Makefile
@@ -1,7 +1,6 @@
 PORTNAME=	diamond
 DISTVERSIONPREFIX=	v
-DISTVERSION=	2.1.8
-PORTREVISION=	1
+DISTVERSION=	2.1.9
 CATEGORIES=	biology
 
 MAINTAINER=	jrm@FreeBSD.org
diff --git a/biology/diamond/distinfo b/biology/diamond/distinfo
index e41c5047d693..7e27159cb67e 100644
--- a/biology/diamond/distinfo
+++ b/biology/diamond/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1688755811
-SHA256 (bbuchfink-diamond-v2.1.8_GH0.tar.gz) = b6088259f2bc92d1f9dc4add44590cff68321bcbf91eefbc295a3525118b9415
-SIZE (bbuchfink-diamond-v2.1.8_GH0.tar.gz) = 19027152
+TIMESTAMP = 1707069968
+SHA256 (bbuchfink-diamond-v2.1.9_GH0.tar.gz) = 4cde9df78c63e8aef9df1e3265cd06a93ce1b047d6dba513a1437719b70e9d88
+SIZE (bbuchfink-diamond-v2.1.9_GH0.tar.gz) = 5946668
diff --git a/biology/diamond/files/patch-src_util_data__structures_deque.h b/biology/diamond/files/patch-src_util_data__structures_deque.h
deleted file mode 100644
index efaa13f79a8a..000000000000
--- a/biology/diamond/files/patch-src_util_data__structures_deque.h
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/util/data_structures/deque.h.orig	2023-12-29 18:15:28 UTC
-+++ src/util/data_structures/deque.h
-@@ -186,6 +186,11 @@ struct Deque {
- 			return *this;
- 		}
- 
-+		Iterator& operator-=(ptrdiff_t i) {
-+			i_ -= i;
-+			return *this;
-+		}
-+
- 	private:
- 
- 		ptrdiff_t i_;