Commit Graph

24 Commits

Author SHA1 Message Date
Michael Forney 4a91476f62 ubase: Fix some warnings 2020-06-05 03:01:44 -07:00
Michael Forney efafdd75aa ubase: Update to latest git 2020-05-12 20:24:57 -07:00
Michael Forney 2dfb6db807 Lua 5.1 compatibility 2020-05-10 02:15:55 -07:00
Michael Forney 02659ab48c sbase: Add dd(1) 2020-04-28 23:21:09 -07:00
Michael Forney 8f9daf4c30 ubase: Update to latest git 2020-03-01 20:48:09 -08:00
Michael Forney bf839c5260 Use mknod(1) from sbase 2020-03-01 20:48:09 -08:00
Michael Forney 3ff8532c91 Use -Wpedantic over -pedantic 2020-02-20 20:15:50 -08:00
Michael Forney 60fe481d65 ubase: Update to latest git 2019-11-17 15:24:13 -08:00
Michael Forney b8014340b0 ubase: Use table for build script 2019-11-17 15:24:07 -08:00
Michael Forney 66638a1f13 ubase: Include sys/sysmacros.h if necessary 2019-08-06 11:53:03 -07:00
Michael Forney 20f06d6979 ubase: Allow empty password in shadow(5) 2019-06-26 17:36:30 -07:00
Michael Forney e665f489ef ubase: Update to latest git 2019-06-04 20:41:14 -07:00
Michael Forney 4332740046 Rename rev to ver, and keep track of package versions as well 2019-03-19 00:14:12 -07:00
Michael Forney 7061b93e65 ubase: Update to latest git 2018-10-02 01:42:38 -07:00
Michael Forney 1f7373d6d4 ubase: Apply some patches for passwd from mailing list 2018-10-02 01:35:50 -07:00
Michael Forney 45cb29c706 ubase: Update to latest git 2017-10-13 01:29:02 -07:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney b393cf0aba ubase: Update to latest git 2017-09-01 17:59:36 -07:00
Michael Forney fa6a26b033 ubase: Set default hwclock device to /dev/rtc0 2017-08-11 23:11:18 -07:00
Michael Forney 1d6d4f345f Remove _FILE_OFFSET_BITS
This does nothing with musl.
2017-06-05 21:45:55 -07:00
Michael Forney 858e99ecdb ubase: Remove su
It has no restrictions about which users are allowed to become root.
doas does a better job.
2017-02-26 19:40:18 -08:00
Michael Forney 9f7d7c409f ubase: Set repository URL to my github branch
This also pulls in a tiny fix for mount (which also happens to silence a
gcc 6 warning).
2016-12-20 01:55:33 -08:00
Michael Forney 2420bcc6b1 Compress man pages 2016-12-19 00:05:57 -08:00
Michael Forney 293f5a93b7 Move to flat package hierarchy
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
2016-12-13 23:10:30 -08:00