Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build babelized projects with meson #90

Merged
merged 39 commits into from
Mar 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
08170fa
Move zest.releaser config to pyproject.toml
mdpiper Mar 5, 2024
78aaec3
Set up Meson build for a single Fortran component
mdpiper Mar 5, 2024
109a9a0
Remove setuptools config from pyproject.toml
mdpiper Mar 6, 2024
4fe09ad
Set version, but not readme, in dynamic metadata
mdpiper Mar 6, 2024
ef17988
Merge branch 'develop' into mdpiper/build-with-meson
mdpiper Mar 6, 2024
731111a
Read package dependencies from babel.toml file
mdpiper Mar 6, 2024
1e5a1a1
Filter dependencies on default empty string
mdpiper Mar 7, 2024
af3f7e5
Update bmi-example-fortran
mdpiper Mar 7, 2024
1632c48
Get the name of the first component to babelize
mdpiper Mar 7, 2024
e421ff0
Set --no-build-isolation for editable installs
mdpiper Mar 7, 2024
3fb374b
Include package requirements for example
mdpiper Mar 8, 2024
f764837
use conda; install bmiheatf in _inst; create bmiheatf.pc
mcflugen Mar 9, 2024
87c4650
add bmiheatf as a dependency
mcflugen Mar 9, 2024
1e36265
Merge branch 'mdpiper/build-with-meson' of github.com:csdms/babelizer…
mcflugen Mar 9, 2024
5ae3a8f
remove requirements from babel.toml
mcflugen Mar 9, 2024
a88ff05
install build tools on a per language basis
mcflugen Mar 10, 2024
6feaaa9
add bmi-tester as a testing dependency
mcflugen Mar 11, 2024
5ce7b93
install language-specific build tools
mcflugen Mar 11, 2024
170623c
create a pkg-config file for heatf; back to using conda
mcflugen Mar 11, 2024
9bd8139
add c and cpp to builds
mcflugen Mar 11, 2024
91a3704
update setup-miniconda
mcflugen Mar 11, 2024
c795a9d
install pkg-config in test environment
mcflugen Mar 11, 2024
a16ef56
fix heatf pkg-config file and bmic, bmicxx pkg-config names
mcflugen Mar 11, 2024
74852c2
update c, cxx submodules
mcflugen Mar 11, 2024
b3210a9
back to lowercase for pkg-config names
mcflugen Mar 11, 2024
b7f33b6
use setuptools for pure-python projects
mcflugen Mar 11, 2024
ec29a4b
build multiple extension; remove bmiheat dependency
mcflugen Mar 11, 2024
3c3a1aa
remove setup.py, setup_utils.py
mcflugen Mar 12, 2024
227bbf9
bump versions of setup-miniconda, checkout
mcflugen Mar 12, 2024
4b66408
remove meson.build for python projects
mcflugen Mar 12, 2024
367ea4c
Merge branch 'develop' into mdpiper/build-with-meson
mcflugen Mar 12, 2024
016c13e
remove setup.py setup_utils.py from prettification
mcflugen Mar 12, 2024
a32086a
Update bmi-example-fortran to tip of mdpiper/use-pkgconfig branch
mdpiper Mar 13, 2024
06d2544
Remove hardcoded pkg-config files
mdpiper Mar 13, 2024
9839e43
Clean lint
mdpiper Mar 13, 2024
ef40631
Add a news fragment
mdpiper Mar 13, 2024
e717535
Update bmi-example-fortran to v2.1.3
mdpiper Mar 14, 2024
1848402
Remove Makefile; trim .gitignore
mdpiper Mar 14, 2024
4d7dbb2
Include brief instructions for installing from source
mdpiper Mar 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clean lint
mdpiper committed Mar 13, 2024
commit 9839e43c37e297d7790cf61b88ead71ebc1303f7
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ def test_langs(session: nox.session, lang) -> None:
session.debug(library)
session.debug(config_file)

instdir = build_examples(session, lang)
build_examples(session, lang)

session.install(".[testing]")