| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-04-29 | openbsd: Update to 7.7 | Michael Forney | |
| 2024-10-10 | acme-client: Support certificate signatures with SHA384 and SHA512 | Michael Forney | |
| It seems letsencrypt is now using SHA384. Also, ignore expired certificates when extracting SAN entries. We want to trigger renewal in this case rather than exiting with failure. | |||
| 2023-08-25 | openbsd: Update to 7.3 | Michael Forney | |
| 2022-09-08 | openbsd: Add notime option to nc | Michael Forney | |
| 2022-09-06 | openbsd: Update to 7.1 | Michael Forney | |
| 2022-02-18 | openbsd: Update to 7.0 | Michael Forney | |
| 2021-05-14 | acme-client: Include PEM null terminator in buffer allocation | Michael Forney | |
| 2021-05-10 | x509cert: Update to 0.2 | Michael Forney | |
| 2021-05-06 | acme-client: Port to BearSSL and x509cert | Michael Forney | |
| 2021-05-01 | openbsd: Update to 6.9 | Michael Forney | |
| 2021-04-05 | openbsd: doas: Use == -1 for error checking for consistency | Michael Forney | |
| 2021-04-05 | openbsd: doas: Use PATH=/bin when cmd is not specified | Michael Forney | |
| This behavior matches what is documented doas(1) and was originally changed in OpenBSD 6.6. Take the opportunity to simplify handling of PATH a bit. | |||
| 2020-10-19 | openbsd: Update to 6.8 | Michael Forney | |
| 2020-06-05 | openbsd: Fix a few warnings | Michael Forney | |
| 2020-05-19 | openbsd: Update to 6.7 | Michael Forney | |
| 2020-04-15 | rsync: Add implementation of MD4 to drop libressl dependency | Michael Forney | |
| 2020-04-15 | acme-client: Fix build with old bison versions | Michael Forney | |
| 2020-01-17 | openbsd: Fix tar patch to default to stdin | Michael Forney | |
| This can cause a segfault. | |||
| 2020-01-10 | openbsd: Fix pax -p flag with symlinks | Michael Forney | |
| 2019-12-04 | Build nc from openbsd sources instead of libressl | Michael Forney | |
| 2019-10-17 | openbsd: Update to 6.6 | Michael Forney | |
| 2019-08-06 | openbsd: Include sys/sysmacros.h if necessary | Michael Forney | |
| 2019-06-15 | openbsd: Fix a few portability issues | Michael Forney | |
| 2019-06-14 | openbsd: Build rsync | Michael Forney | |
| 2019-04-28 | openbsd: Update to 6.5 | Michael Forney | |
| 2019-03-19 | Use acme-client from openbsd | Michael Forney | |
| The portable version is no longer maintained. | |||
| 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-06 | Use musl 1.1.20 getentropy | Michael Forney | |
| 2018-11-03 | openbsd: Update to 6.4 | Michael Forney | |
| 2018-08-21 | openbsd: Minor tweaks to doas port | Michael Forney | |
| Remove now unused login_caps.h include. Fix persist path formatting to support any size uid_t and dev_t (instead of assuming int). | |||
| 2018-05-10 | openbsd: Build m4 | Michael Forney | |
| 2018-04-10 | openbsd: Update to 6.3 | Michael Forney | |
| 2017-10-10 | openbsd: Update to 6.2 | Michael Forney | |
| 2017-10-07 | Check for negative snprintf return value | Michael Forney | |
| 2017-06-19 | openbsd: Build nc | Michael Forney | |
| 2017-05-27 | openbsd: Allow using BearSSL for SHA512 | 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-03-26 | openbsd/doas: Call openlog to set syslog identity | Michael Forney | |
| 2017-03-09 | openbsd/doas: Use CLOCK_BOOTTIME for timestamp files | Michael Forney | |
| This way, we take in to account time while the system is suspended. | |||
| 2017-02-28 | openbsd/doas: Implement persist feature | Michael Forney | |
| Pull some patches from openbsd-current, implementing persist using timestamp files in /run/doas. | |||
| 2017-02-26 | openbsd: Build doas | Michael Forney | |
| Use a simple sp_pwd comparison for now. Later, I might consider implementing something similar to BSD auth for oasis. | |||
| 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 | |||
