| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |
| 2018-08-26 | openbsd: Install libbsd.a | Michael Forney | |
| This is needed to link with libraries like libcrypto.a, which is used in the kernel build process in some configurations. | |||
| 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: Add missing dependency | Michael Forney | |
| 2018-05-10 | openbsd: Generate doas parser in doas directory | Michael Forney | |
| 2018-05-10 | openbsd: Remove redundant libressl include | Michael Forney | |
| 2018-05-10 | openbsd: Build m4 | Michael Forney | |
| 2018-04-10 | openbsd: Update to 6.3 | Michael Forney | |
| 2018-02-16 | Port build scripts to POSIX shell | Michael Forney | |
| Since we are now using Lua to generate ninja files, use of rc in build scripts seems unnecessary and adds an additional bootstrap dependency. None of them are too fancy, so just port to POSIX sh instead. | |||
| 2017-12-14 | loksh: Update to 6.2 | Michael Forney | |
| 2017-10-10 | openbsd: Update sha256 | Michael Forney | |
| Looks like they updated src.tar.gz and sys.tar.gz. Also, change mirror to fastly CDN. | |||
| 2017-10-10 | openbsd: Update to 6.2 | Michael Forney | |
| 2017-10-10 | fetch-curl: Allow overriding substitutions | Michael Forney | |
| 2017-10-07 | Check for negative snprintf return value | Michael Forney | |
| 2017-10-06 | openssh: Update to 7.6p1 | Michael Forney | |
| 2017-09-25 | Rewrite ninja generation scripts in Lua | Michael Forney | |
| 2017-08-19 | Don't use -isystem | Michael Forney | |
| This way we can use -MMD to exclude system header files and still retain dependency tracking within oasis. | |||
| 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. | |||
| 2017-02-22 | mdocml: Update to 1.14.1 | Michael Forney | |
| 2016-12-29 | fetch-curl: Specify -O at the end in case we want to specify an output name | Michael Forney | |
| 2016-12-19 | Compress man pages | 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 | |||
