summaryrefslogtreecommitdiff
path: root/update_source.sh
blob: 9526801a6d39dc0bdb9499a2fc6abc8b139eeab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/bash
#
# Copyright 2013 The Android Open Source Project.
#
# Retrieves the current Objenesis source code into the current directory.
# Does not create a GIT commit.

# Force stop on first error.
set -e

if [ $# -ne 1 ]; then
    echo "$0 <version>" >&2
    exit 1;
fi

if [ -z "$ANDROID_BUILD_TOP" ]; then
    echo "Missing environment variables. Did you run build/envsetup.sh and lunch?" >&2
    exit 1
fi

VERSION=${1}

SOURCE="https://github.com/easymock/objenesis"
INCLUDE="
    LICENSE.txt
    main
    tck
    tck-android
    "

EXCLUDE="
    main/.settings/
    tck-android/.settings
    tck-android/lint.xml
    tck-android/project.properties
    "

working_dir="$(mktemp -d)"
#trap "echo \"Removing temporary directory\"; rm -rf $working_dir" EXIT

echo "Fetching Objenesis source into $working_dir"
git clone $SOURCE $working_dir/source
(cd $working_dir/source; git checkout $VERSION)

for include in ${INCLUDE}; do
  echo "Updating $include"
  rm -rf $include
  cp -R $working_dir/source/$include .
done;

for exclude in ${EXCLUDE}; do
  echo "Excluding $exclude"
  rm -r $exclude
done;

# Move the tck-android AndroidManifest.xml into the correct position.
mv tck-android/src/main/AndroidManifest.xml tck-android/AndroidManifest.xml

# Update the version and binary JAR URL.
perl -pi -e "s|^Version: .*$|Version: ${VERSION}|" "README.version"

# Remove any documentation about local modifications.
mv README.version README.tmp
grep -B 100 "Local Modifications" README.tmp > README.version
echo "        None" >> README.version
rm README.tmp

echo "Done"