summaryrefslogtreecommitdiff
path: root/pkg/pcre
AgeCommit message (Collapse)Author
2021-11-05pcre: Use sourceforge mirroradrln
ftp.pcre.org is no longer available, and the new github repository only contains pcre2 releases.
2021-06-29pcre: Missed ver bumpMichael Forney
2021-06-27pcre: Update to 8.45Michael Forney
2020-02-21pcre: Add missing version bump for 8.44Michael Forney
2020-02-20pcre: Update to 8.44Michael Forney
2020-02-01pcre: Disable JIT on non-GNU compilersMichael 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-03-19pcre: Update to 8.43Michael Forney
2019-03-19Rename rev to ver, and keep track of package versions as wellMichael Forney
2018-04-12pcre: Update to 8.42Michael Forney
2017-09-25Rewrite ninja generation scripts in LuaMichael Forney
2017-08-04pcre: Fix version in pcre.hMichael Forney
2017-08-04pcre: Update to 8.41Michael Forney
2017-02-07pcre: Update to 8.40Michael 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