-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add script to generate podspec (#22)
motivation: distribute the library via podspec changes: * add build_podspec.sh script * adjust sanity check to support more types of copyright years format
- Loading branch information
Showing
3 changed files
with
119 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
#!/bin/bash | ||
##===----------------------------------------------------------------------===## | ||
## | ||
## This source file is part of the Swift Metrics API open source project | ||
## | ||
## Copyright (c) 2019 Apple Inc. and the Swift Metrics API project authors | ||
## Licensed under Apache License v2.0 | ||
## | ||
## See LICENSE.txt for license information | ||
## See CONTRIBUTORS.txt for the list of Swift Metrics API project authors | ||
## | ||
## SPDX-License-Identifier: Apache-2.0 | ||
## | ||
##===----------------------------------------------------------------------===## | ||
|
||
##===----------------------------------------------------------------------===## | ||
## | ||
## This source file is part of the SwiftNIO open source project | ||
## | ||
## Copyright (c) 2017-2018 Apple Inc. and the SwiftNIO project authors | ||
## Licensed under Apache License v2.0 | ||
## | ||
## See LICENSE.txt for license information | ||
## See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
## | ||
## SPDX-License-Identifier: Apache-2.0 | ||
## | ||
##===----------------------------------------------------------------------===## | ||
|
||
set -eu | ||
|
||
function usage() { | ||
echo "$0 [-u] version" | ||
echo | ||
echo "OPTIONS:" | ||
echo " -u: Additionally upload the podspec" | ||
} | ||
|
||
upload=false | ||
while getopts ":u" opt; do | ||
case $opt in | ||
u) | ||
upload=true | ||
;; | ||
\?) | ||
usage | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
shift "$((OPTIND-1))" | ||
|
||
if [[ $# -eq 0 ]]; then | ||
echo "Must provide target version" | ||
exit 1 | ||
fi | ||
|
||
version=$1 | ||
name="SwiftMetrics" | ||
|
||
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
tmpdir=$(mktemp -d /tmp/.build_podspecsXXXXXX) | ||
echo "Building podspec in $tmpdir" | ||
|
||
cat >> "${tmpdir}/${name}.podspec" <<- EOF | ||
Pod::Spec.new do |s| | ||
s.name = '$name' | ||
s.version = '$version' | ||
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' } | ||
s.summary = 'A Metrics API for Swift.' | ||
s.homepage = 'https://github.com/apple/swift-metrics' | ||
s.author = 'Apple Inc.' | ||
s.source = { :git => 'https://github.com/apple/swift-metrics.git', :tag => s.version.to_s } | ||
s.documentation_url = 'https://apple.github.io/swift-metrics' | ||
s.module_name = '$name' | ||
s.swift_version = '4.2' | ||
s.cocoapods_version = '>=1.6.0' | ||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.9' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '2.0' | ||
s.source_files = 'Sources/CoreMetrics/**/*.swift' | ||
end | ||
EOF | ||
|
||
if $upload; then | ||
echo "Uploading ${tmpdir}/${name}.podspec" | ||
pod trunk push "${tmpdir}/${name}.podspec" | ||
else | ||
echo "Linting ${tmpdir}/${name}.podspec" | ||
pod spec lint "${tmpdir}/${name}.podspec" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters