| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-11-05 | pcre: Use sourceforge mirror | adrln | |
| ftp.pcre.org is no longer available, and the new github repository only contains pcre2 releases. | |||
| 2021-06-29 | pcre: Missed ver bump | Michael Forney | |
| 2021-06-27 | pcre: Update to 8.45 | Michael Forney | |
| 2020-02-21 | pcre: Add missing version bump for 8.44 | Michael Forney | |
| 2020-02-20 | pcre: Update to 8.44 | Michael Forney | |
| 2020-02-01 | pcre: Disable JIT on non-GNU compilers | Michael Forney | |
| 2020-01-29 | Add support for building multiple configurations | Michael Forney | |
| Now, you can build in separate directories per configuration: mkdir foo (cd foo && ../setup.lua) samu -C foo | |||
| 2019-03-19 | pcre: Update to 8.43 | Michael Forney | |
| 2019-03-19 | Rename rev to ver, and keep track of package versions as well | Michael Forney | |
| 2018-04-12 | pcre: Update to 8.42 | Michael Forney | |
| 2017-09-25 | Rewrite ninja generation scripts in Lua | Michael Forney | |
| 2017-08-04 | pcre: Fix version in pcre.h | Michael Forney | |
| 2017-08-04 | pcre: Update to 8.41 | Michael Forney | |
| 2017-02-07 | pcre: Update to 8.40 | Michael Forney | |
| 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 | |||
