This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
forked from apache/cordova-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_podspec.sh
executable file
·88 lines (77 loc) · 2.87 KB
/
update_podspec.sh
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
set -e
SUBSPEC_NAME=""
function usage()
{
local appName=`basename $0`
echo "Usage:"
echo "$appName -s <Subspec Name>"
}
function parseOpts()
{
while getopts :s: commandLineOpt; do
case ${commandLineOpt} in
s)
SUBSPEC_NAME=${OPTARG};;
?)
echo "Unknown option '-${OPTARG}'."
usage
exit 1
esac
done
# Validate that we got the required command line arg(s).
if [ "${SUBSPEC_NAME}" == "" ]; then
echo "No option specified for Subspec Name."
usage
exit 2
fi
}
parseOpts "$@"
repoDir=$(cd "$(dirname ${BASH_SOURCE[0]})" && pwd)
publicHeaderDirectory="${TARGET_BUILD_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}"
podSpecFile="${repoDir}/Cordova.podspec"
projectDir=`echo "${PROJECT_DIR}" | sed "s#${repoDir}/##g"`
cd "$repoDir"
# Create the public header file list out of the public headers in the build folder.
publicHeaderFileList=""
isFirstFile=1
for headerFile in `ls -1 "${publicHeaderDirectory}"`; do
repoHeaderFile=`find ${projectDir} -name $headerFile`
if [ "$repoHeaderFile" != "" ]; then
if [ $isFirstFile -eq 1 ]; then
publicHeaderFileList="'$repoHeaderFile'"
isFirstFile=0
else
publicHeaderFileList=`echo "${publicHeaderFileList}, '$repoHeaderFile'"`
fi
fi
done
# Make sure none of the public header files are in the exclude files list
if grep -q "${SUBSPEC_NAME}.exclude_files" ${podSpecFile}
then
echo "${publicHeaderFileList}" | sed 's/ *//g' | tr , '\n' | sort > "${podSpecFile}.public_header_files_list"
cat "${podSpecFile}" | grep "${SUBSPEC_NAME}.exclude_files" | sed 's/.*=//' | sed 's/ *//g' | tr , '\n' | sort > "${podSpecFile}.exclude_files_list"
publicHeaderFileList=`comm -23 ${podSpecFile}.public_header_files_list ${podSpecFile}.exclude_files_list | tr '\n' , | sed 's/,$//'`
rm "${podSpecFile}.public_header_files_list" "${podSpecFile}.exclude_files_list"
fi
# Replace the old headers with the new ones.
searchPattern='^( *'"${SUBSPEC_NAME}"'\.public_header_files = ).*$'
replacementPattern='\1'"${publicHeaderFileList}"
sed -E "s#$searchPattern#$replacementPattern#g" "$podSpecFile" > "${podSpecFile}.new"
mv "${podSpecFile}.new" "${podSpecFile}"