summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/bowtie/package.py
blob: b817ee49146df0101dd5af97f516f5768314adca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
class Bowtie(Package):
    """Mock package to test conflicts on compiler ranges"""

    homepage = "http://www.example.org"
    url = "http://bowtie-1.2.2.tar.bz2"

    version('1.3.0', '1c837ecd990bb022d07e7aab32b09847')
    version('1.2.2', '1c837ecd990bb022d07e7aab32b09847')
    version('1.2.0', '1c837ecd990bb022d07e7aab32b09847')

    conflicts('%gcc@:4.5.0', when='@1.2.2')