2009-06-13 12:53:24 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-05-01 18:52:24 +00:00
|
|
|
# display the latest commit in the current branch of all gstreamer modules.
|
2009-06-13 12:53:24 +00:00
|
|
|
# run this from a directory that contains the checkouts for each of the
|
|
|
|
# modules
|
|
|
|
|
|
|
|
for m in \
|
|
|
|
gstreamer gst-plugins-base \
|
|
|
|
gst-plugins-good gst-plugins-ugly gst-plugins-bad \
|
2014-05-01 18:52:24 +00:00
|
|
|
gst-ffmpeg gst-libav \
|
|
|
|
gst-editing-services \
|
|
|
|
gst-python gstreamer-sharp \
|
2009-06-13 12:53:24 +00:00
|
|
|
gnonlin \
|
2014-05-01 18:52:24 +00:00
|
|
|
gst-rtsp-server \
|
|
|
|
gst-omx \
|
|
|
|
gst-devtools \
|
2009-06-13 12:53:24 +00:00
|
|
|
; do
|
|
|
|
if test -d $m; then
|
|
|
|
cd $m
|
|
|
|
echo $m
|
|
|
|
git branch | grep '*'
|
2014-05-01 18:52:24 +00:00
|
|
|
git log | head -n 3 | sed -n '1p;3p'
|
|
|
|
echo ""
|
2009-06-13 12:53:24 +00:00
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
done
|