Commit Graph

31 Commits

Author SHA1 Message Date
Michael Forney 147d5187fe msmtp: Update to 1.8.22 2022-09-09 13:54:16 -07:00
Michael Forney 6adce1752a msmtp: Update to 1.8.19 2022-02-18 02:58:00 -08:00
Michael Forney 6e32f7e6e8 msmtp: Update to 1.8.15 2021-04-17 14:22:30 -07:00
Michael Forney 9678f1aa25 msmtp: Update to 1.8.14 2021-01-07 23:08:33 -08:00
Michael Forney 0494732381 msmtp: Update to latest git 2020-12-14 18:28:10 -08:00
Michael Forney b127bffb6c msmtp: Switch to libtls-bearssl 2020-12-13 01:39:41 -08:00
Michael Forney af1e59d341 msmtp: Update to 1.8.13 2020-12-03 21:11:43 -08:00
Michael Forney 49146e3bdf msmtp: Update to 1.8.12 2020-09-04 22:42:34 -07:00
Michael Forney d4297a13c8 Use -isystem to include library headers
This way, warnings from headers that come from another package (in
particular linux-headers) won't show up when they get included.

To make sure we still track dependencies, use -MD instead of -MMD.
2020-06-05 03:01:44 -07:00
Michael Forney ab438ea71e msmtp: Update to 1.8.11 2020-06-05 03:01:44 -07:00
Michael Forney f0fb0e5177 Start to support configurable prefix 2020-05-25 21:11:21 -07:00
Michael Forney a39aeff817 msmtp: Update to 1.8.10 2020-04-27 17:21:24 -07:00
Michael Forney 575006e3d7 msmtp: Update to 1.8.8 2020-04-14 21:43:53 -07:00
Michael Forney 3502501b40 msmtp: Fast-forward one commit to drop patch 2020-02-20 20:52:38 -08:00
Michael Forney 35ec1d2143 msmtp: Add patch to silence warning 2020-01-29 15:41:37 -08:00
Michael Forney dcdd0cb6a7 msmtp: Update to 1.8.7 2020-01-03 23:30:40 -08:00
Michael Forney f0421ffc49 msmtp: Update to 1.8.6 2019-10-04 17:34:42 -07:00
Michael Forney a218279a45 msmtp: Update to 1.8.5 2019-07-17 10:05:44 -07:00
Michael Forney 2c9bdf4290 msmtp: Remove unnecessary VLA 2019-06-04 20:41:14 -07:00
Michael Forney 054b864900 msmtp: Update to 1.8.4 2019-04-30 14:36:56 -07:00
Michael Forney a95903c286 msmtp: Update to 1.8.3 2019-03-19 00:52:21 -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 5a16a03f71 msmtp: Update to 1.8.1 2018-12-23 13:40:49 -08:00
Michael Forney f1e33bc029 msmtp: Update to 1.8.0 2018-09-07 14:14:10 -07:00
Michael Forney fffc779c0e msmtp: Update to 1.6.8 2018-08-30 15:15:11 -07:00
Michael Forney f377442fbc Revert accidentally updated submodules in b99ef6bfc5
`git commit -a` with ignored submodules strikes again. I really
should report a bug about this.
2018-03-16 10:16:40 -07:00
Michael Forney b99ef6bfc5 libdrm: Check if config.video_drivers is set 2018-03-10 19:08:35 -08:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney 6fa5f88e60 Don't use -isystem
This way we can use -MMD to exclude system header files and still retain
dependency tracking within oasis.
2017-08-19 19:07:18 -07: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