| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-07-29 | sbase: Update to latest git | Michael Forney | |
| 2022-11-27 | st: Update to latest git | Michael Forney | |
| 2021-07-28 | sbase: Update to latest git | Michael Forney | |
| 2021-06-27 | sbase: Update to latest git | Michael Forney | |
| 2020-10-30 | sbase: Update to latest git | Michael Forney | |
| 2020-05-24 | sbase: Update to latest git | Michael Forney | |
| 2020-05-12 | sbase: Update to latest git | Michael Forney | |
| 2020-04-28 | sbase: Add dd(1) | Michael Forney | |
| 2020-04-15 | sbase: Update to latest git | Michael Forney | |
| 2020-03-29 | sbase: Update to latest git | Michael Forney | |
| 2020-03-01 | Use mknod(1) from sbase | Michael Forney | |
| 2020-03-01 | sbase: Update to latest git | Michael Forney | |
| 2020-02-20 | sbase: Update to latest git | Michael Forney | |
| 2020-02-20 | Use -Wpedantic over -pedantic | Michael Forney | |
| 2020-01-29 | sbase: Update to latest git | Michael Forney | |
| 2020-01-10 | sbase: Update to latest git | Michael Forney | |
| 2019-12-22 | sbase: Add some proposed patches | Michael Forney | |
| 2019-11-17 | Update ninja requirement to 1.8.0 and don't bother with atomic outputs | Michael Forney | |
| Since ninja 1.8.0[0] and samurai 0.2[1], output mtime is always recorded after a job succeeds, and outputs are considered dirty if the recorded mtime is older than any input. This means that even if a command partially writes its output then fails (for example, if run with stdout redirected to a file), it will still get re-run during the next build. This means that outputs no longer have to be written atomically (i.e. renamed into place) in order to ensure a correct build, and we can drop the idiom `command >$out.tmp && mv $out.tmp $out`. [0] https://github.com/ninja-build/ninja/commit/04d886b11041bb59d01df794cce7a1e8cad2250d [1] https://github.com/michaelforney/samurai/commit/799bc5a4719b90a1026c129b55b92c0bccf97eeb | |||
| 2019-11-04 | sbase: Update to latest git | Michael Forney | |
| 2019-08-06 | sbase: Update to latest git | Michael Forney | |
| 2019-06-27 | sbase: Include sys/sysmacros.h unconditionally | Michael Forney | |
| 2019-06-14 | sbase: Update to latest git | Michael Forney | |
| 2019-04-23 | sbase: Update to latest git | Michael Forney | |
| 2019-03-19 | Rename rev to ver, and keep track of package versions as well | Michael Forney | |
| 2018-10-02 | sbase: Update to latest git | Michael Forney | |
| 2018-02-24 | sbase: Update to latest git | Michael Forney | |
| 2017-11-10 | sbase: Update to latest git | Michael Forney | |
| 2017-10-01 | sbase: Various cron improvements | Michael Forney | |
| 2017-10-01 | sbase: Update to latest git | Michael Forney | |
| 2017-09-25 | Rewrite ninja generation scripts in Lua | Michael Forney | |
| 2017-09-03 | sbase: Update to latest git | Michael Forney | |
| 2017-09-01 | sbase: Update to latest git | Michael Forney | |
| 2017-08-04 | sbase: Update to latest git | Michael Forney | |
| 2017-07-06 | sbase: Update to latest git | Michael Forney | |
| 2017-06-05 | Remove _FILE_OFFSET_BITS | Michael Forney | |
| This does nothing with musl. | |||
| 2017-03-24 | sbase: Update to latest git | Michael Forney | |
| 2017-03-07 | sbase: Update to latest git | Michael Forney | |
| This adds a few minor patches, one which fixes the build of musl-cross-make. | |||
| 2017-02-17 | sbase: Update to latest git | Michael Forney | |
| 2017-02-01 | sbase: Update to latest git | Michael Forney | |
| 2017-01-03 | sbase: Don't install strings | Michael Forney | |
| We'll get strings from binutils. | |||
| 2017-01-01 | sbase: Update to latest git | Michael Forney | |
| 2016-12-19 | Compress man pages | Michael Forney | |
| 2016-12-14 | sbase: Fix some issues with mkdir and du | Michael Forney | |
| 2016-12-14 | sbase: Switch URL to my git repository | Michael Forney | |
| I have been, and will likely continue to, fixing many issues with sbase. Since it is tedious to keep track of a patch set, and upstream is slow to apply, just use my sbase repository (at least for now). | |||
| 2016-12-13 | Move to flat package hierarchy | Michael 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 | |||
