Commit 06b28464 authored by Vitaly Lipatov's avatar Vitaly Lipatov

add list_git_package and test for it

parent 5bdc3532
......@@ -25,3 +25,19 @@ is_girar_name()
{
echo "$1" | grep -q "^git\."
}
_list_git_package()
{
while [ -n "$1" ] ; do
printf "%50s " $GIRARHOST:$1
shift
date -d@$1
shift
done
}
# TODO: make world better, please
list_git_package()
{
_list_git_package $(ssh $GIRARHOST find-package $1)
}
. `dirname $0`/../share/eterbuild/functions/common
load_mod git
list_git_package libmathgl
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment