
* Bump the package API of the `builtin` repo to `v2.0` * Move `var/spack/repos/builtin` -> `var/spack/repos/spack_repo/builtin` * Move test repos `var/spack/repos/{builtin.mock,tutorial,...}` -> `var/spack/test_repos/` * Update package dir names to v2 format (`-` -> `_` etc) * Change absolute imports `from spack.pkg.builtin.my_pkg ...` to relative imports `from ..my_pkg.package ...` Users who have a repo on top of builtin should change imports from ```python from spack.pkg.builtin.my_pkg import MyPkg ``` to ```python from spack_repo.builtin.packages.my_pkg.package import MyPkg ``` and can configure their editors with ``` PYTHONPATH=$spack/lib/spack:$spack/var/spack/repos ``` [skip-verify-checksums]
24 lines
750 B
Python
24 lines
750 B
Python
# Copyright Spack Project Developers. See 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"
|
|
url = "https://deb.debian.org/debian/pool/main/m/makedepf90/makedepf90_3.0.1.orig.tar.xz"
|
|
|
|
maintainers("tukss")
|
|
|
|
license("GPL-2.0-only", checked_by="tukss")
|
|
|
|
version("3.0.1", sha256="a11601ea14ad793f23fca9c7e7df694b6337f962ccc930d995d72e172edf29ee")
|
|
|
|
depends_on("c", type="build")
|
|
depends_on("flex", type="build")
|
|
depends_on("bison", type="build")
|