Package: Don't warn for missing source on bundle packages without code (#30913)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
# Copyright 2013-2022 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 NosourceBundle(BundlePackage):
|
||||
"""Simple bundle package with one dependency"""
|
||||
|
||||
homepage = "http://www.example.com"
|
||||
|
||||
version('1.0')
|
||||
|
||||
depends_on('dependency-install')
|
@@ -7,8 +7,8 @@
|
||||
from spack.package import *
|
||||
|
||||
|
||||
class Nosource(BundlePackage):
|
||||
"""Simple bundle package with one dependency"""
|
||||
class Nosource(Package):
|
||||
"""Simple package with no source and one dependency"""
|
||||
|
||||
homepage = "http://www.example.com"
|
||||
|
||||
|
Reference in New Issue
Block a user