summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2022-08-03 11:22:05 -0500
committerGitHub <noreply@github.com>2022-08-03 10:22:05 -0600
commit26ec46e834ceb8125b3f176c4d49ee148736f7c8 (patch)
tree6ec09c2fd3877e35e3b44a9a4fefe153cca99beb /var
parentd93c0744916a6dfd44f6672be0eb4cb562a8f8d0 (diff)
downloadspack-26ec46e834ceb8125b3f176c4d49ee148736f7c8.tar.gz
spack-26ec46e834ceb8125b3f176c4d49ee148736f7c8.tar.bz2
spack-26ec46e834ceb8125b3f176c4d49ee148736f7c8.tar.xz
spack-26ec46e834ceb8125b3f176c4d49ee148736f7c8.zip
r-rhtslib: fix issue with git commit for v1.28 (#31653)
There is a problem with the git repo for rhtslib that apparently led to a bad version entry during the previous round of package updates. A git checkout on the commit also fails so use branch for most recent version.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-rhtslib/package.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-rhtslib/package.py b/var/spack/repos/builtin/packages/r-rhtslib/package.py
index c5d882abfc..f2bc370896 100644
--- a/var/spack/repos/builtin/packages/r-rhtslib/package.py
+++ b/var/spack/repos/builtin/packages/r-rhtslib/package.py
@@ -17,7 +17,17 @@ class RRhtslib(RPackage):
bioc = "Rhtslib"
- version("1.99.5", commit="a5335e1fea92ea06c33d42c7e290b6d8b4245ad3")
+ # There is a problem with the git repository where the commit for
+ # version 1.28.0 pulls changes to a file that blocks checking out the
+ # commit. Use the branch instead.
+ # error: Your local changes to the following files would be overwritten by
+ # checkout:
+ # src/htslib-1.15.1/htscodecs/tests/names/tok3/nv.names.1
+ # Please, commit your changes or stash them before you can switch
+ # branches.
+ # Aborting
+ # version("1.28.0", commit='214fde2218bdbca89f1e12a30d2e081e76915aef')
+ version("1.28.0", branch="RELEASE_3_15")
version("1.26.0", commit="f5b20e97b283942877529f750b28398782552655")
version("1.22.0", commit="899b79faa54d42c7c9b9a2bc49972109637d367f")
version("1.18.1", commit="751a2ebaed43b7991204b27bd6c7870645001d82")