441: fix: use gnu sed in shell tests for cross-platform compatibility r=montchr a=montchr
Darwin's use of BSD `sed` breaks here because BSD `sed` has a different
argument signature.
Spun off from #438 as suggested in https://github.com/divnix/digga/pull/438#discussion_r815551027
Co-authored-by: Chris Montgomery <chris@alley.co>
439: Remove suites, profiles, and old importer code r=blaggacao a=Pacman99
I'm keeping the deprecation code for `externalModules` still, since there hasn't been a proper release that included that code.
Co-authored-by: Parthiv Seetharaman <pachum99@myrdd.info>
435: Merge devos docs and README into top-level r=blaggacao a=Pacman99
I think some more work needs to be done to get the docs to flow better, but for now this puts everything in one place so we have a starting point to improve everything.
The new readme is a mix of what I thought were the best parts of both readmes.
Co-authored-by: Parthiv Seetharaman <pachum99@myrdd.info>
431: Make this repository digga r=Pacman99 a=Pacman99
closes: #430
This is just some git hacking to preserve both project's commit histories.
Commands that I ran:
```sh
git remote add digga git@github.com:divnix/digga
git checkout -b digga-main digga/main
git checkout -b merge-digga upstream/main
mkdir ../devos
mv * .editorconfig .envrc .gitignore ../devos/
mkdir examples
mv ../devos examples/
git add . && git commit -m "tree: move everything into examples/devos"
git checkout digga-main
git rebase merge-digga # there were 3 merge conflicts with src/pkgs-lib/shell, not sure why but that file has been deleted so I just delt with them
git checkout merge-digga
git merge digga-main --ff-only
git push upstream merge-digga
```
There are a lot of changes, so it'll be easier to review what exactly I did with git to get it this way.
The only actual changes I personally made:
- removed .gitmodules and downstream submodule
- move devos into examples/devos
- removed bud template from devos and added `devos` template to digga
This doesn't cover devos docs, I think we will need a separate effort to merge devos docs into digga docs. Probably as a digga usage section or something. For now devos docs are just sitting in `examples/devos`.
This PR should theoretically have the same amount of commits being added as the number of commits in digga itself. I think it ended up being around 50 less because bors commits aren't included for some reason.
Co-authored-by: Parthiv Seetharaman <pachum99@myrdd.info>
Co-authored-by: Pacman99 <pachum99@gmail.com>
Co-authored-by: David Arnold <dar@xoe.solutions>
Co-authored-by: Pacman99 <pachum99@myrdd.info>
Co-authored-by: Dusk Banks <me@bb010g.com>
Co-authored-by: Pacman99 <Pacman99@users.noreply.github.com>