summaryrefslogtreecommitdiff
path: root/gen.rc
AgeCommit message (Collapse)Author
2017-09-25Rewrite ninja generation scripts in LuaMichael Forney
2017-02-27Move util -> srcMichael Forney
2016-12-29Allow using /.git as output repositoryMichael Forney
2016-12-13Move {cc,cxx,ld}flags settings from toolchain to configMichael Forney
2016-12-13Move to flat package hierarchyMichael Forney
Note to self: never try to move submodules again To migrate your existing submodules (more or less): set -x set -e mkdir .git/modules/pkg for old in */*/src ; do new="pkg/${old#*/}" if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then continue fi git -C ".git/modules/$old" config core.worktree "../../../../../$new" rmdir "$new" mv "$old" "$new" sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp" mv "$new/.git.tmp" "$new/.git" mkdir ".git/modules/${new%/src}" mv ".git/modules/$old" ".git/modules/$new" rm "${old%/src}"/*.ninja mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/" rmdir "${old%/src}" || true done sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp mv .git/config.tmp .git/config
2016-11-19Move some programming languages from devel to langMichael Forney
2016-08-03Make root.tree the default target, and add commit aliasMichael Forney
2016-07-16Don't list git repository files as outputsMichael Forney
This way, ninja -t clean will work as expected.
2016-07-02Add alsa-lib 1.1.1Michael Forney
2016-06-17Only build git repository by defaultMichael Forney
2016-06-17template: Use symlinks for perms-hookMichael Forney
By the time these hooks are run, we will have checked-out /libexec/oasis/perms-hook, and can just run that. This way, we can keep track of updates to perms-hook.
2016-06-11Add git template directoryMichael Forney
2016-06-06Build perms-hook for host systemMichael Forney
2016-06-04Add pcre 8.38Michael Forney
2016-06-04Add make 4.2Michael Forney
2016-05-19Add terminus from plan9fontsMichael Forney
2016-04-23Add commit script to generate commit historyMichael Forney
This will make it easier for users to merge changes into their trees.
2016-04-23Move tag used in repository to config.ninjaMichael Forney
2016-04-15Allow independent generation of ninja filesMichael Forney
2016-04-15Move ninja helpers to ninja.rcMichael Forney
2016-04-15Add yacc helperMichael Forney
2016-04-15Simplify adding variables to rule and build linesMichael Forney
2016-04-15Add sinit-scmMichael Forney
2016-04-15githash: Depend on scripts/hash.rcMichael Forney
2016-04-15Add gitarchive rule to create tar archive of root filesystemMichael Forney
2016-04-15gittree: Depend on scripts/tree.rcMichael Forney
2016-04-15Use git tag file as gittree outputMichael Forney
2016-04-15Set status=() rather than running trueMichael Forney
2016-04-15Add some initial packagesMichael Forney