-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
102 lines (93 loc) · 2.82 KB
/
Copy pathPackage.swift
File metadata and controls
102 lines (93 loc) · 2.82 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// swift-tools-version:6.4
import PackageDescription
let package = Package(
name: "HTTP",
platforms: [
.iOS(.v26),
.macOS(.v26),
],
products: [
.library(
name: "HTTP",
targets: ["HTTP"]),
],
dependencies: [
.package(
name: "ASCII"),
.package(
name: "Stream"),
.package(
name: "Network"),
.package(
name: "Compression"),
.package(
name: "JSON"),
.package(
name: "URL"),
.package(
url: "https://github.com/apple/swift-log.git",
from: "1.0.0"),
],
targets: [
.target(
name: "HTTP",
dependencies: [
.product(name: "ASCII", package: "ascii"),
.product(name: "Stream", package: "stream"),
.product(name: "Network", package: "network"),
.product(name: "Compression", package: "Compression"),
.product(name: "AsyncJSON", package: "json"),
.product(name: "JSON", package: "json"),
.product(name: "URL", package: "url"),
.product(name: "Logging", package: "swift-log"),
]),
.testTarget(
name: "Tests",
dependencies: [
.target(name: "HTTP"),
]),
.executableTarget(
name: "Benchmarks",
dependencies: ["HTTP"],
path: "./Benchmarks",
),
]
)
// MARK: - custom package source
#if canImport(ObjectiveC)
import Darwin.C
#else
import Glibc
#endif
extension Package.Dependency {
enum Source: String {
case local, remote, github
static var `default`: Self { .github }
var baseUrl: String {
switch self {
case .local: return "../"
case .remote: return "https://swiftstack.io/"
case .github: return "https://github.com/swiftstack/"
}
}
func url(for name: String) -> String {
return self == .local
? baseUrl + name.lowercased()
: baseUrl + name.lowercased() + ".git"
}
}
static func package(name: String) -> Package.Dependency {
guard let pointer = getenv("SWIFTSTACK") else {
return .package(name: name, source: .default)
}
guard let source = Source(rawValue: String(cString: pointer)) else {
fatalError("Invalid source. Use local, remote or github")
}
return .package(name: name, source: source)
}
static func package(name: String, source: Source) -> Package.Dependency {
return source == .local
? .package(name: name, path: source.url(for: name))
: .package(url: source.url(for: name), branch: "dev")
}
}