summaryrefslogtreecommitdiff
path: root/pkg/gen.rc
AgeCommit message (Collapse)Author
2017-09-25Rewrite ninja generation scripts in LuaMichael Forney
2017-08-13Add dosfstools 4.1Michael Forney
2017-08-11Add openntpd 6.2p1Michael Forney
2017-08-04Add mandoc 1.14.2 (renamed from mdocml)Michael Forney
2017-07-28Delete ninjaMichael Forney
It has been replaced with samurai.
2017-07-23Remove ccid and pcscMichael Forney
This was an early, but incomplete attempt to get yubikeys to work. I'll revisit this later.
2017-07-22Add discount 2.2.2Michael Forney
2017-07-22Add samurai gitMichael Forney
2017-07-08Add scron 0.4Michael Forney
2017-07-06Add acme-client 0.1.16Michael Forney
2017-06-14Add blind 1.1Michael Forney
2017-06-11Add utf8proc 2.1.0Michael Forney
2017-06-07Add mupdf 1.11Michael Forney
2017-06-06Add jbig2dec 0.13Michael Forney
2017-06-03Add farbfeld 3Michael Forney
2017-05-25Add bearssl 0.4Michael Forney
2017-03-26Add nginx 1.10.3Michael Forney
2017-03-11Add libinput 1.6.3Michael Forney
2017-03-02Add syslinux 6.03Michael Forney
For now just use the pre-compiled binaries, but build our own static extlinux.
2017-02-25Add strace 4.16Michael Forney
2017-02-22Add mtdev 1.1.5Michael Forney
2016-12-29Add netsurf 3.6Michael Forney
{nsgenbind,webidl}-{lexer,parser}.{c,h} were generated using flex and bison on unmodified 0.4 sources.
2016-12-29Add libjpeg-turbo 1.5.1Michael Forney
2016-12-29Add adobe-source-fontsMichael Forney
2016-12-29Add libpng 1.6.26Michael 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