1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-07-08 01:24:35 +03:00
openwrt-packages/nanonote-files/data/qi_lb60/scripts/get-feeds-revision.sh
2011-04-18 22:54:12 +08:00

34 lines
1002 B
Bash
Executable File

#!/bin/bash
cd $1
FEEDS_CONF="feeds.conf.default"
test -f "feeds.conf" && FEEDS_CONF="feeds.conf"
feeds="$(cat "${FEEDS_CONF}" | grep -v -E "^#")"
echo "# base :: openwrt [scm-protocol] [source] [branch] [revision]"
repo=$(git config -l | grep remote.origin.url | cut -d "=" -f 2)
rev=$(git log | head -n 1 | cut -b8-)
branch=$(git branch | grep "*" | cut -b3-)
echo "openwrt git ${repo} ${branch} ${rev}"
echo "# feeds :: [feedname] [scm-protocol] [revision]"
IFS=$'\n'
for feed in $feeds; do
IFS=' ' arr=(${feed:4})
proto=${arr[0]}
dir=${arr[1]}
if [ "$proto" = "svn" ]; then
cd feeds/${dir} && rev=`svn info | grep -E "^Revision" | cut -d " " -f2` && cd ../../
fi
if [ "$proto" = "git" ]; then
cd feeds/${dir} && rev=`git log | head -n 1 | cut -d " " -f2` && cd ../../
fi
if [ "$proto" = "link" ]; then
rev=`date "+%Y-%m-%d"`
fi
echo "${dir} ${proto} ${rev}"
done