summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorvejnar2022-11-01 16:21:06 -0400
committervejnar2022-11-01 16:21:06 -0400
commit3386648d7d397c7e0cddb3ba0c7cc89f2360fc81 (patch)
tree0d48cddabda8922de2cc7b2f3582c23250d01bb0
parent64f8fe75a296642e7e7e5e95ab1e7d57567247b7 (diff)
downloadaur-3386648d7d397c7e0cddb3ba0c7cc89f2360fc81.tar.gz
upgpkg: star-cshl 2.7.10b-3
Update to 2.7.10b
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD13
-rw-r--r--STAR-2.7.10a-missing-include.patch22
3 files changed, 6 insertions, 37 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5898b942fbb0..f9d6fa63449e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,12 @@
pkgbase = star-cshl
pkgdesc = STAR aligns RNA-seq reads to a reference genome using uncompressed suffix arrays
- pkgver = 2.7.10a
+ pkgver = 2.7.10b
pkgrel = 3
url = https://github.com/alexdobin/STAR
arch = x86_64
license = GPL3
makedepends = vim
- source = star-cshl-2.7.10a.tar.gz::https://github.com/alexdobin/STAR/archive/2.7.10a.tar.gz
- source = STAR-2.7.10a-missing-include.patch
- sha1sums = daaa3b889d7b38927df5c8e80a9bc032b0a4560f
- sha1sums = fd09f494e1d6c5a474e41c610a355bf7a46f1aaf
+ source = star-cshl-2.7.10b.tar.gz::https://github.com/alexdobin/STAR/archive/2.7.10b.tar.gz
+ sha1sums = 6ecdc8a287863b6b95ee5fa4f57331cb466c1745
pkgname = star-cshl
diff --git a/PKGBUILD b/PKGBUILD
index d423ec40a412..e352d97f0078 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,22 +1,15 @@
# Maintainer: Charles Vejnar <first name [dot] last name [at] gmail [dot] com>
pkgname=star-cshl
-pkgver=2.7.10a
+pkgver=2.7.10b
pkgrel=3
pkgdesc="STAR aligns RNA-seq reads to a reference genome using uncompressed suffix arrays"
arch=("x86_64")
url="https://github.com/alexdobin/STAR"
license=("GPL3")
makedepends=('vim')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/alexdobin/STAR/archive/${pkgver}.tar.gz"
- "STAR-2.7.10a-missing-include.patch")
-sha1sums=('daaa3b889d7b38927df5c8e80a9bc032b0a4560f'
- 'fd09f494e1d6c5a474e41c610a355bf7a46f1aaf')
-
-prepare() {
- cd "$srcdir/STAR-${pkgver}"
- patch -p1 -i "${srcdir}/STAR-2.7.10a-missing-include.patch"
-}
+source=("$pkgname-$pkgver.tar.gz::https://github.com/alexdobin/STAR/archive/${pkgver}.tar.gz")
+sha1sums=('6ecdc8a287863b6b95ee5fa4f57331cb466c1745')
build() {
cd "$srcdir/STAR-${pkgver}/source"
diff --git a/STAR-2.7.10a-missing-include.patch b/STAR-2.7.10a-missing-include.patch
deleted file mode 100644
index c056a8aad887..000000000000
--- a/STAR-2.7.10a-missing-include.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From f5ad94329db4fd81fc6ae30684c298772002e30b Mon Sep 17 00:00:00 2001
-From: David Seifert <soap@gentoo.org>
-Date: Sat, 7 May 2022 15:06:11 +0200
-Subject: [PATCH] Add missing `#include <array>` (GCC 12)
-
-Bug: https://bugs.gentoo.org/840586
----
- source/SoloCommon.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/source/SoloCommon.h b/source/SoloCommon.h
-index 2a1d5fcf..5adc5040 100644
---- a/source/SoloCommon.h
-+++ b/source/SoloCommon.h
-@@ -1,6 +1,7 @@
- #ifndef H_SoloCommon
- #define H_SoloCommon
-
-+#include <array>
- #include <unordered_map>
-
- typedef struct{