summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorOwen Solberg <odoublewen@users.noreply.github.com>2019-09-08 08:46:08 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2019-09-08 10:46:08 -0500
commit8fd8b54e9702dc972189e4def0fe60692a1dce47 (patch)
tree2b13c12f28cc2cc226e2ad2c34685aa730d9435e /var
parentfe26678299e101738d66426508633ce90c95ad4d (diff)
downloadspack-8fd8b54e9702dc972189e4def0fe60692a1dce47.tar.gz
spack-8fd8b54e9702dc972189e4def0fe60692a1dce47.tar.bz2
spack-8fd8b54e9702dc972189e4def0fe60692a1dce47.tar.xz
spack-8fd8b54e9702dc972189e4def0fe60692a1dce47.zip
py-cutadapt: Updated version checksum (#12741)
* add new cutadapt release 2.5, and adjust dependencies conditional on version * use https, not ssh, for git url Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-cutadapt/package.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-cutadapt/package.py b/var/spack/repos/builtin/packages/py-cutadapt/package.py
index e88a7f7707..bcf0592910 100644
--- a/var/spack/repos/builtin/packages/py-cutadapt/package.py
+++ b/var/spack/repos/builtin/packages/py-cutadapt/package.py
@@ -13,9 +13,14 @@ class PyCutadapt(PythonPackage):
homepage = "https://cutadapt.readthedocs.io"
url = "https://pypi.io/packages/source/c/cutadapt/cutadapt-1.13.tar.gz"
+ git = "https://github.com/marcelm/cutadapt.git"
+ version('2.5', sha256='ced79e49b93e922e579d0bb9d21298dcb2d7b7b1ea721feed484277e08b1660b')
version('1.13', '2d2d14e0c20ad53d7d84b57bc3e63b4c')
- depends_on('python@2.6:', type=('build', 'run'))
+ depends_on('python@2.7:', type=('build', 'run'), when='@1.13')
+ depends_on('python@3.4:', type=('build', 'run'), when='@2.5:')
depends_on('py-setuptools', type=('build', 'run'))
- depends_on('py-xopen@0.1.1:', type=('build', 'run'))
+ depends_on('py-xopen@0.1.1:', type=('build', 'run'), when='@1.13')
+ depends_on('py-xopen@0.8.1:', type=('build', 'run'), when='@2.5:')
+ depends_on('py-dnaio', type=('build', 'run'), when='@2.5:')