2015-09-14 14:35:58 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
function usage {
|
2016-06-15 16:44:30 +00:00
|
|
|
echo "usage: sync-css-layout.sh <pathToGithubRepo> <pathToFbSourceRepo>";
|
2015-09-14 14:35:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function patchfile {
|
|
|
|
# Add React Native copyright
|
2016-12-07 13:12:11 +00:00
|
|
|
printf "/**\n" > /tmp/yogasync.tmp
|
|
|
|
printf " * Copyright (c) 2014-present, Facebook, Inc.\n" >> /tmp/yogasync.tmp
|
|
|
|
printf " * All rights reserved.\n" >> /tmp/yogasync.tmp
|
|
|
|
printf " * This source code is licensed under the BSD-style license found in the\n" >> /tmp/yogasync.tmp
|
|
|
|
printf " * LICENSE file in the root directory of this source tree. An additional grant\n" >> /tmp/yogasync.tmp
|
|
|
|
printf " * of patent rights can be found in the PATENTS file in the same directory.\n" >> /tmp/yogasync.tmp
|
|
|
|
printf " */\n\n" >> /tmp/yogasync.tmp
|
|
|
|
printf "// NOTE: this file is auto-copied from https://github.com/facebook/css-layout\n" >> /tmp/yogasync.tmp
|
2015-09-14 14:35:58 +00:00
|
|
|
# The following is split over four lines so Phabricator doesn't think this file is generated
|
2016-12-07 13:12:11 +00:00
|
|
|
printf "// @g" >> /tmp/yogasync.tmp
|
|
|
|
printf "enerated <<S" >> /tmp/yogasync.tmp
|
|
|
|
printf "ignedSource::*O*zOeWoEQle#+L" >> /tmp/yogasync.tmp
|
|
|
|
printf "!plEphiEmie@IsG>>\n\n" >> /tmp/yogasync.tmp
|
|
|
|
tail -n +9 $1 >> /tmp/yogasync.tmp
|
|
|
|
mv /tmp/yogasync.tmp $1
|
2016-06-15 16:44:30 +00:00
|
|
|
$ROOT/fbandroid/scripts/signedsource.py sign $1
|
2015-09-14 14:35:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ -z $1 ]; then
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z $2 ]; then
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
GITHUB=$1
|
|
|
|
ROOT=$2
|
|
|
|
|
|
|
|
set -e # exit if any command fails
|
|
|
|
|
|
|
|
echo "Making github project..."
|
|
|
|
pushd $GITHUB
|
|
|
|
COMMIT_ID=$(git rev-parse HEAD)
|
|
|
|
popd
|
|
|
|
|
2016-06-15 16:44:30 +00:00
|
|
|
C_SRC=$GITHUB/src/
|
2016-12-07 13:12:11 +00:00
|
|
|
JAVA_SRC=$GITHUB/src/java/src/com/facebook/yoga
|
|
|
|
TESTS=$GITHUB/src/java/tests/com/facebook/yoga
|
|
|
|
FBA_SRC=$ROOT/fbandroid/java/com/facebook/catalyst/js/react-native-github/ReactAndroid/src/main/java/com/facebook/yoga/
|
|
|
|
FBA_TESTS=$ROOT/fbandroid/javatests/com/facebook/yoga/
|
2016-06-15 16:44:30 +00:00
|
|
|
FBO_SRC=$ROOT/fbobjc/Libraries/FBReactKit/js/react-native-github/React/Layout/
|
2015-09-14 14:35:58 +00:00
|
|
|
|
2016-06-15 16:44:30 +00:00
|
|
|
echo "Copying fbandroid src files over..."
|
|
|
|
cp $JAVA_SRC/*.java $FBA_SRC
|
|
|
|
echo "Copying fbandroid test files over..."
|
2015-09-14 14:35:58 +00:00
|
|
|
cp $TESTS/*.java $FBA_TESTS
|
2016-06-15 16:44:30 +00:00
|
|
|
echo "Copying fbobjc src files over..."
|
|
|
|
cp $C_SRC/Layout.{c,h} $FBO_SRC
|
2015-09-14 14:35:58 +00:00
|
|
|
|
|
|
|
echo "Patching files..."
|
|
|
|
for sourcefile in $FBA_SRC/*.java; do
|
|
|
|
patchfile $sourcefile
|
|
|
|
done
|
|
|
|
for testfile in $FBA_TESTS/*.java; do
|
|
|
|
patchfile $testfile
|
|
|
|
done
|
2016-06-15 16:44:30 +00:00
|
|
|
for sourcefile in $FBO_SRC/Layout.{c,h}; do
|
|
|
|
patchfile $sourcefile
|
|
|
|
done
|
2015-09-14 14:35:58 +00:00
|
|
|
|
|
|
|
echo "Writing README"
|
|
|
|
|
|
|
|
echo "The source of truth for css-layout is: https://github.com/facebook/css-layout
|
|
|
|
|
|
|
|
The code here should be kept in sync with GitHub.
|
|
|
|
HEAD at the time this code was synced: https://github.com/facebook/css-layout/commit/$COMMIT_ID
|
|
|
|
|
|
|
|
There is generated code in:
|
|
|
|
- README (this file)
|
2016-12-07 13:12:11 +00:00
|
|
|
- fbandroid/java/com/facebook/yoga
|
|
|
|
- fbandroid/javatests/com/facebook/yoga
|
2016-06-15 16:44:30 +00:00
|
|
|
- fbobjc/Libraries/FBReactKit/js/react-native-github/React/Layout
|
|
|
|
|
|
|
|
The code was generated by running 'make' in the css-layout folder and running:
|
2015-09-14 14:35:58 +00:00
|
|
|
|
2016-06-15 16:44:30 +00:00
|
|
|
scripts/sync-css-layout.sh <pathToGithubRepo> <pathToFbSourceRepo>
|
2016-12-07 13:12:11 +00:00
|
|
|
" > /tmp/yogasync.tmp
|
2015-09-14 14:35:58 +00:00
|
|
|
|
2016-12-07 13:12:11 +00:00
|
|
|
cp /tmp/yogasync.tmp "$FBA_SRC/README"
|
|
|
|
cp /tmp/yogasync.tmp "$FBO_SRC/README"
|