-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add makedepf90 package for flexpart-cosmo (#907)
* Add makedepf90 package for flexpart-cosmo * GitHub Action: Apply Pep8-formatting * Remove part of header * Incorporate review * GitHub Action: Apply Pep8-formatting * Add homepage again * spack install for system-test * Remove tsa system test * Update repos/c2sm/packages/makedepf90/package.py Co-authored-by: Dominic Hofer <6570912+dominichofer@users.noreply.github.com> * Simplify package Co-authored-by: Dominic Hofer <6570912+dominichofer@users.noreply.github.com> * Activate system test on tsa Co-authored-by: Dominic Hofer <6570912+dominichofer@users.noreply.github.com> * Update repos/c2sm/packages/makedepf90/package.py * Fix indent --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Dominic Hofer <6570912+dominichofer@users.noreply.github.com>
- Loading branch information
1 parent
1726698
commit 743a9e5
Showing
4 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# 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 Makedepf90(AutotoolsPackage): | ||
""" Makedepf90 is a program for automatic creation of | ||
Makefile-style dependency lists for Fortran source code.""" | ||
|
||
homepage = "https://salsa.debian.org/science-team/makedepf90" | ||
git = "https://salsa.debian.org/science-team/makedepf90.git" | ||
url = "https://salsa.debian.org/science-team/makedepf90/-/archive/debian/3.0.1-1/makedepf90-debian-3.0.1-1.tar.gz" | ||
parallel = False # Makefile is not thread-safe. | ||
|
||
maintainers("mjaehn") | ||
|
||
depends_on("gmake@4:") | ||
|
||
version('3.0.1', branch='debian/3.0.1-1') | ||
|
||
def configure_args(self): | ||
return ['--bindir={0}'.format(self.prefix.bin)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters