summaryrefslogtreecommitdiff
path: root/pkg/pixman
AgeCommit message (Collapse)Author
2020-04-23pixman: Update to 0.40.0Michael Forney
2020-03-01pixman: Add support for aarch64Michael Forney
2020-01-29Add support for building multiple configurationsMichael Forney
Now, you can build in separate directories per configuration: mkdir foo (cd foo && ../setup.lua) samu -C foo
2019-11-17Start to document patch upstream statusMichael Forney
2019-07-11pixman: Prevent empty top-level declarationMichael Forney
2019-07-10pixman: Probe for TLSMichael Forney
2019-07-10pixman, nasm: Probe for __builtin_clzMichael Forney
2019-04-24pixman: Update to 0.38.4Michael Forney
2019-04-09pixman: Update to 0.38.2Michael Forney
2019-03-19pixman: Update to 0.38.0Michael Forney
2019-03-19Rename rev to ver, and keep track of package versions as wellMichael Forney
2018-12-23pixman: Update to 0.36.0Michael Forney
2018-08-30pixman: Don't use config-posix.hMichael Forney
2017-09-25Rewrite ninja generation scripts in LuaMichael Forney
2016-12-13Declare some missing dependenciesMichael 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