mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
9f5a842922
Change-Id: Iaba422aa5dec30c3a4953907d9d73e018206e0e6 Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Thu Oct 16 01:35:19 CEST 2014 on sn-devel-104
40 lines
1.4 KiB
Bash
Executable File
40 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
# Pull in a new snapshot of external projects that are included in
|
|
# our source tree for users that don't have them installed on their system
|
|
|
|
# Third party directory
|
|
THIRD_PARTY_DIR="`dirname $0`/../third_party"
|
|
# Library directory where projects live that haven't been migrated to
|
|
# $THIRD_PARTY_DIR yet.
|
|
LIBDIR="`dirname $0`"
|
|
WORKDIR="`mktemp -d`"
|
|
|
|
echo "Updating subunit..."
|
|
git clone git://github.com/testing-cabal/subunit "$WORKDIR/subunit"
|
|
rm -rf "$WORKDIR/subunit/.git"
|
|
# Preserve wscript file
|
|
cp "$LIBDIR/subunit/c/wscript" "$WORKDIR/subunit/c/wscript"
|
|
rsync -avz --delete "$WORKDIR/subunit/" "$LIBDIR/subunit/"
|
|
|
|
echo "Updating testtools..."
|
|
git clone git://github.com/testing-cabal/testtools "$WORKDIR/testtools"
|
|
rm -rf "$WORKDIR/testtools/.git"
|
|
rsync -avz --delete "$WORKDIR/testtools/" "$LIBDIR/testtools/"
|
|
|
|
echo "Updating dnspython..."
|
|
git clone git://www.dnspython.org/dnspython.git "$WORKDIR/dnspython"
|
|
rm -rf "$WORKDIR/dnspython/.git"
|
|
rsync -avz --delete "$WORKDIR/dnspython/" "$LIBDIR/dnspython/"
|
|
|
|
echo "Updating pep8..."
|
|
git clone git://github.com/jcrocholl/pep8 "$WORKDIR/pep8"
|
|
rm -rf "$WORKDIR/pep8/.git"
|
|
rsync -avz --delete "$WORKDIR/pep8/" "$LIBDIR/pep8/"
|
|
|
|
echo "Updating zlib..."
|
|
git clone git://github.com/madler/zlib "$WORKDIR/zlib"
|
|
rm -rf "$WORKDIR/zlib/.git"
|
|
rsync --exclude=wscript -avz --delete "$WORKDIR/zlib/" "$THIRD_PARTY_DIR/zlib/"
|
|
|
|
rm -rf "$WORKDIR"
|