summaryrefslogblamecommitdiff
path: root/var/spack/repos/builtin.mock/packages/bowtie/package.py
blob: 8afc6b3c528fcb383728d438d4b1f4a6447f007d (plain) (tree)
1
2
3
4
5
6
7
                                                                         


                                                                         


                           





                                                           
                                                        


                                                        
 
                                           
                                             
# Copyright 2013-2023 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)
from spack.package import *


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.4.0", "1c837ecd990bb022d07e7aab32b09847")
    version("1.3.0", "1c837ecd990bb022d07e7aab32b09847")
    version("1.2.2", "1c837ecd990bb022d07e7aab32b09847")
    version("1.2.0", "1c837ecd990bb022d07e7aab32b09847")

    conflicts("%gcc@:4.5.0", when="@1.2.2")
    conflicts("%gcc@:10.2.1", when="@:1.3.0")