| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-04-29 | openbsd: Update to 7.7 | Michael Forney | |
| 2024-10-10 | openbsd: Use _Noreturn instead of attribute for __dead | Michael Forney | |
| 2022-09-08 | openssh: Update to 9.0 | Michael Forney | |
| 2022-09-06 | openbsd: Update to 7.1 | Michael Forney | |
| 2021-05-02 | openbsd: Use reallocarray from musl | Michael Forney | |
| 2018-11-07 | Build nc from libressl | Michael Forney | |
| This way we don't have to maintain the nc linux port patch ourselves. It also avoids a circular dependency between the libressl and openbsd packages. | |||
| 2018-11-07 | openssh: Use readpassphrase from libbsd | Michael Forney | |
| 2018-11-06 | openbsd: Use explicit_bzero from musl 1.1.20 | Michael Forney | |
| 2018-11-06 | Use musl 1.1.20 getentropy | Michael Forney | |
| 2018-11-06 | libressl: Update to 2.8.2 | Michael Forney | |
| 2018-11-03 | openbsd: Update to 6.4 | Michael Forney | |
| 2017-12-14 | loksh: Update to 6.2 | Michael Forney | |
| 2017-10-10 | openbsd: Update to 6.2 | Michael Forney | |
| 2017-10-06 | openssh: Update to 7.6p1 | Michael Forney | |
| 2017-06-19 | openbsd: Build nc | Michael Forney | |
| 2017-05-02 | openbsd: Use provided recallocarray instead of patching with explicit_bzero | Michael Forney | |
| When I originally looked at this, I only saw the malloc-internal implementation, but it looks like they have left the original standalone recallocarray.c implementation. | |||
| 2017-04-14 | openbsd: Update to 6.1 | Michael Forney | |
| 2017-02-22 | mdocml: Update to 1.14.1 | 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 | |||
