-
Notifications
You must be signed in to change notification settings - Fork 184
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
[FPM] add fpm support #437
Conversation
|
||
# cd stdlib && make dev -f Makefile.manual && fpm build | ||
[library] | ||
source-dir="src/fpm" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
attention: src/fpm
Thank you @zoziha. Nice and highly needed proposition. After a quick look, I wonder if Note that @LKedward proposed another (but similar) solution for |
Yes,
Because I don’t really know whether it’s wise to modify the files directly under
I’m sorry I don’t know that solution also has an implementation of |
Thanks @zoziha - yes as Jeremie pointed out, my solution is to generate the source files automatically in the CI. This is generally more robust than checking the preprocessed files into git. To have everything in one place, I'd like to implement the same workflow here to deploy the generated files to a separate branch. For the time being, you can use my stdlib fpm package linked above for testing the two together - I'm using it myself more and more as stdlib grows and it's a really quick way to spin up an stdlib project and test its functionality. |
Thanks @LKedward , I agree with you. I think [dependencies]
stdlib = { git = "https://github.com/fortran-lang/stdlib", branch = "stdlib-fpm" } #279 (comment) |
I likes this plan! |
Yes, fpm already allows you to specify a branch for git dependencies. I believe I can just copy the CI workflow from my stdlib-fpm repo with a few small changes - hopefully I can find some time soon to get it working for a PR. |
I imagine in many cases, users will only need one or two modules from I am not sure what would be the best way to address this long term. Maybe add more control over stdlib directly to fpm? |
User efficiencyIn order to improve the efficiency of users of [dependencies]
stdlib = { git = "https://github.com/fortran-lang/stdlib", branch = "stdlib-fpm" } Developer efficiencyHowever, the efficiency of developers has not been improved. Possible solutionFor developers:Like zoziha/forlab, mete-programming source codes in make # use makefile convert fypp to f90
fpm test <test_name> # easy-to-test Gradually use For users:Users can use the following reference to use [dependencies]
stdlib = { git = "https://github.com/fortran-lang/stdlib", branch = "stdlib-fpm" } If |
Hello, I am very happy to announce that I have implemented
That we can use [dependencies]
stdlib = { git = "https://github.com/fortran-lang/stdlib", branch = "stdlib-fpm" } Before that, I need an administrator with permission for fortran-lang to set up an empty |
Initial support
fpm
:I don't know if this is feasible, but I want
stdlib
to supportfpm
as soon as possible so that the two can feed back to each other.My method:
make dev -f Makefile.manual
to generatef90
files from thesrc
folder to thesrc/fpm
folder;fpm.toml
to build thefpm
version ofstdlib.
I added a
src/fpm
folder and subordinate files, and addedstdlib
's initial support forfpm
. I don't know if this is very feasible, but it has passed thefpm build
.