Commit Graph

20 Commits

Author SHA1 Message Date
Michael Forney
79e60e5e95 ffmpeg: Update to 3.4 2017-10-15 21:03:10 -07:00
Michael Forney
a9df93edd0 ffmpeg: Enable vorbis decoder 2017-09-25 19:36:41 -07:00
Michael Forney
7d03265749 ffmpeg: Enable VP9 decoder 2017-09-25 19:36:41 -07:00
Michael Forney
b8ca98186a ffmpeg: Add libavcodec/x86 to nasm includes
This is needed for some codecs.
2017-09-25 19:36:41 -07:00
Michael Forney
70859aff39 ffmpeg: Use texi2mdoc to build man pages 2017-09-25 19:36:41 -07:00
Michael Forney
89ed7abb97 ffmpeg: Update to 3.3.4 2017-09-25 19:23:06 -07: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
e1af70ac39 ffmpeg: Update to 3.3.3 2017-08-04 00:19:39 -07:00
Michael Forney
9958c5cd38 ffmpeg: Update to 3.3.2 2017-06-28 23:19:15 -07:00
Michael Forney
2f16df1442 ffmpeg: Enable options necessary for blind 2017-06-14 23:52:54 -07:00
Michael Forney
9231c3c26e ffmpeg: Update to 3.3.1 2017-06-05 21:45:55 -07:00
Michael Forney
e69b01ff82 ffmpeg: Enable MP4 muxer 2017-06-05 21:45:55 -07:00
Michael Forney
817f528448 ffmpeg: Update to 3.2.4 2017-02-10 17:12:43 -08:00
Michael Forney
fa47936948 ffmpeg: Update to 3.2.3 2017-02-07 14:36:26 -08:00
Michael Forney
22e90c9882 ffmpeg: Enable opus decoder 2017-02-07 14:36:26 -08:00
Michael Forney
3ef188a7b4 ffmpeg: Update to 3.2.2 2017-01-22 20:56:27 -08:00
Michael Forney
222af496ef ffmpeg: Enable MJPEG support 2017-01-01 05:36:10 -08:00
Michael Forney
36835fdbd9 Declare some missing dependencies 2016-12-13 23:10:30 -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