2006-12-31 17:02:08 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-01-05 17:28:52 +02:00
|
|
|
# Usage : $1 -> source feeds, space separated
|
|
|
|
# $2 -> other options (not used yet)
|
2006-12-31 17:02:08 +02:00
|
|
|
#
|
|
|
|
# Note : we do not yet resolve package name conflicts
|
|
|
|
#
|
2007-01-05 17:28:52 +02:00
|
|
|
|
|
|
|
# Directories
|
2006-12-31 17:02:08 +02:00
|
|
|
FEEDS_DIR=$TOPDIR/feeds
|
|
|
|
PACKAGE_DIR=$TOPDIR/package
|
|
|
|
|
2007-01-05 17:28:52 +02:00
|
|
|
# We work in the TOPDIR as defined in the caller Makefile
|
2006-12-31 17:02:08 +02:00
|
|
|
cd $TOPDIR
|
|
|
|
# This directory will be structured this way : feeds/feed-name
|
|
|
|
[ -d $FEEDS_DIR ] || mkdir -p $FEEDS_DIR
|
|
|
|
|
|
|
|
|
|
|
|
# Some functions we might call several times a run
|
|
|
|
delete_symlinks() {
|
2007-04-12 22:18:38 +03:00
|
|
|
find $1 -type l | xargs -r rm -f
|
2006-12-31 17:02:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
setup_symlinks() {
|
|
|
|
# We assume that feeds do reproduce the hierarchy : section/package
|
2007-01-05 17:28:52 +02:00
|
|
|
# so that we can make this structure be flat in $PACKAGE_DIR
|
2007-01-31 20:33:04 +02:00
|
|
|
for dir in $(ls $1/)
|
2006-12-31 17:02:08 +02:00
|
|
|
do
|
2007-07-16 03:01:40 +03:00
|
|
|
ln -s $1/$dir/* $2/
|
2006-12-31 17:02:08 +02:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
checkout_feed() {
|
2007-01-05 17:28:52 +02:00
|
|
|
# We ensure the feed has not already been checked out, if so, we just update the source feed
|
2006-12-31 17:02:08 +02:00
|
|
|
if [ -d $FEEDS_DIR/$2 ]; then
|
2007-07-26 18:28:59 +03:00
|
|
|
svn up ${3:+-r$3} $FEEDS_DIR/$2
|
2006-12-31 17:02:08 +02:00
|
|
|
echo "Updated to revision $(LANG=C svn info $FEEDS_DIR/$2 | awk '/^Revision:/ { print $2 }' )";
|
2007-01-05 17:28:52 +02:00
|
|
|
# Otherwise, we have to checkout in the $FEEDS_DIR
|
2006-12-31 17:02:08 +02:00
|
|
|
else
|
2007-07-26 18:28:59 +03:00
|
|
|
svn co ${3:+-r$3} $1 $FEEDS_DIR/$2
|
2006-12-31 17:02:08 +02:00
|
|
|
echo "Checked out revision $(LANG=C svn info $FEEDS_DIR/$2 | awk '/^Revision:/ { print $2 }' )";
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
extract_feed_name() {
|
2007-01-05 17:28:52 +02:00
|
|
|
# We extract the last name of the URL, maybe we should rename this as domain.tld.repository.name
|
2007-01-31 20:33:04 +02:00
|
|
|
echo "$(echo $1 | sed -e "s/[^A-Za-z\.]\+/_/g")"
|
2006-12-31 17:02:08 +02:00
|
|
|
}
|
|
|
|
|
2007-01-05 17:28:52 +02:00
|
|
|
# We can delete symlinks every time we start this script, since modifications have been made in the $FEEDS_DIR anyway
|
|
|
|
delete_symlinks "$PACKAGE_DIR"
|
2006-12-31 17:02:08 +02:00
|
|
|
# Now let's checkout feeds
|
|
|
|
for feed in $1
|
|
|
|
do
|
|
|
|
name=$(extract_feed_name "$feed")
|
2007-07-26 18:28:59 +03:00
|
|
|
checkout_feed "$feed" "$name" "$2"
|
2006-12-31 17:02:08 +02:00
|
|
|
done
|
|
|
|
# Finally setup symlinks
|
2007-01-05 17:28:52 +02:00
|
|
|
setup_symlinks "$FEEDS_DIR" "$PACKAGE_DIR"
|