Commit Graph

26 Commits

Author SHA1 Message Date
Michael Forney 18ca169d2c util-linux: Update to 2.41.3
Also, switch to tar archive for pre-generated man pages.
2026-03-12 23:47:05 -07:00
Michael Forney d4a2a386d5 util-linux: Build libblkid 2023-01-21 16:59:42 -08:00
Michael Forney a71f3be4f5 util-linux: Update config.h for current musl and linux-headers 2023-01-17 13:16:50 -08:00
Michael Forney 57dd586471 util-linux: Update to 2.37 2021-06-06 03:04:01 -07:00
Michael Forney 1072840971 util-linux: Update to 2.36.2 2021-03-02 16:20:18 -08:00
Michael Forney d92bc2d3a1 util-linux: Update to 2.36.1 2020-12-03 21:11:43 -08:00
Michael Forney 97fe1fc955 util-linux: Update to 2.36 2020-08-14 01:07:03 -07:00
Michael Forney 99da1a5c89 util-linux: Update to 2.35.2 2020-05-21 18:10:24 -07:00
Michael Forney 74afdae59e util-linux: Update to 2.35.1 2020-02-03 10:48:20 -08:00
Michael Forney ea88d8b06b util-linux: Update to 2.35 2020-01-21 15:40:06 -08:00
Michael Forney 1acbd4da02 Detect TLS support in compiler 2019-06-27 18:18:34 -07:00
Michael Forney ce9ba02aa5 util-linux: Update to 2.34 2019-06-14 13:22:20 -07:00
Michael Forney 8e81e027c8 util-linux: Update to 2.33.2 2019-04-09 20:44:42 -07:00
Michael Forney 3db8d56ee3 util-linux: Update to 2.33.1 2019-03-04 00:15:33 -08:00
Michael Forney c4e6d4bbad util-linux: Update to 2.33 2018-11-07 14:57:31 -08:00
Michael Forney f32ede30b8 util-linux: Update config.h for musl 1.1.20 and linux 4.19 2018-11-06 00:00:25 -08:00
Michael Forney 3c53b723a7 util-linux: Remove unnecessary HAVE_IOPERM and HAVE_IOPL 2018-10-18 15:27:53 -07:00
Michael Forney 71690454fd util-linux: Update to 2.32.1 2018-08-17 16:25:37 -07:00
Michael Forney 3f7f393525 util-linux: Update to 2.32 2018-03-23 21:09:56 -07:00
Michael Forney 6b99f50a6e util-linux: Update to 2.31.1 2017-12-24 09:38:45 -08:00
Michael Forney 1a79b14516 util-linux: Update to 2.31 2017-10-23 21:43:52 -07:00
Michael Forney c52e0947a5 util-linux: Update to 2.30.2 2017-09-25 19:36:41 -07:00
Michael Forney 22f8463ca4 util-linux: Update to 2.30.1 2017-08-04 00:19:39 -07:00
Michael Forney e48c2d3331 util-linux: Update to 2.30 2017-06-05 21:45:55 -07:00
Michael Forney 6d36518df1 util-linux: Update to 2.29.2 2017-02-22 18:47:49 -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