Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Update GCDWebServer.podspec #529

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions GCDWebServer.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

Pod::Spec.new do |s|
s.name = 'GCDWebServer'
s.version = '3.5.4'
s.version = '3.5.5'
s.author = { 'Pierre-Olivier Latour' => '[email protected]' }
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.homepage = 'https://github.com/swisspol/GCDWebServer'
s.summary = 'Lightweight GCD based HTTP server for OS X & iOS (includes web based uploader & WebDAV server)'

s.source = { :git => 'https://github.com/swisspol/GCDWebServer.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
Expand Down
8 changes: 4 additions & 4 deletions GCDWebServer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = Frameworks/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = Frameworks/module.modulemap;
PRODUCT_NAME = GCDWebServers;
Expand All @@ -1278,7 +1278,7 @@
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = Frameworks/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = Frameworks/module.modulemap;
PRODUCT_NAME = GCDWebServers;
Expand Down Expand Up @@ -1412,7 +1412,7 @@
COPY_PHASE_STRIP = NO;
ENABLE_BITCODE = YES;
INFOPLIST_FILE = iOS/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_NAME = GCDWebServer;
SDKROOT = iphoneos;
Expand All @@ -1426,7 +1426,7 @@
COPY_PHASE_STRIP = NO;
ENABLE_BITCODE = YES;
INFOPLIST_FILE = iOS/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_NAME = GCDWebServer;
SDKROOT = iphoneos;
Expand Down
6 changes: 3 additions & 3 deletions Run-Tests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -exu -o pipefail

if [[ -f "/usr/local/bin/xcpretty" ]]; then
PRETTYFIER="xcpretty"
PRETTYFIER="xcpretty"
else
PRETTYFIER="tee" # Passthrough stdout
fi
Expand Down Expand Up @@ -32,7 +32,7 @@ function runTests {
MODE="$2"
TESTS="$3"
FILE="${4:-}"

rm -rf "$PAYLOAD_DIR"
ditto -x -k "$PAYLOAD_ZIP" "$PAYLOAD_DIR"
TZ=GMT find "$PAYLOAD_DIR" -type d -exec SetFile -d "1/1/2014 00:00:00" -m "1/1/2014 00:00:00" '{}' \; # ZIP archives do not preserve directories dates
Expand Down Expand Up @@ -69,7 +69,7 @@ xcodebuild build -sdk "$OSX_SDK" -target "$OSX_TARGET" -configuration "$CONFIGUR

# Build for iOS for oldest supported deployment target
rm -rf "$BUILD_DIR"
xcodebuild build -sdk "$IOS_SDK" -target "$IOS_TARGET" -configuration "$CONFIGURATION" "SYMROOT=$BUILD_DIR" "IPHONEOS_DEPLOYMENT_TARGET=8.0" | $PRETTYFIER
xcodebuild build -sdk "$IOS_SDK" -target "$IOS_TARGET" -configuration "$CONFIGURATION" "SYMROOT=$BUILD_DIR" "IPHONEOS_DEPLOYMENT_TARGET=9.0" | $PRETTYFIER

# Build for iOS for current deployment target
rm -rf "$BUILD_DIR"
Expand Down