Build Information
Failed to build AudioMarker, reference 0.1.0 (687bc3), with Swift 6.2 for Linux on 12 Feb 2026 13:24:07 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/atelier-socle/swift-audio-marker.git
Reference: 0.1.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/atelier-socle/swift-audio-marker
* tag 0.1.0 -> FETCH_HEAD
HEAD is now at 687bc30 ci: fix coverage binary lookup — exclude dSYM paths from find
Cloned https://github.com/atelier-socle/swift-audio-marker.git
Revision (git rev-parse @):
687bc30e3adcde9b65eac3caa43e9940d183b59d
SUCCESS checkout https://github.com/atelier-socle/swift-audio-marker.git at 0.1.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/atelier-socle/swift-audio-marker.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:257b0ae9749b4eea8553a58f7bf60a672611c061e9b845ccfee371e7c1138ce8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/apple/swift-argument-parser.git
[1/17171] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.87s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.7.0 (2.54s)
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.7.0
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/15] Write sources
[7/15] Write swift-version-24593BA9C3E375BF.txt
[9/91] Compiling ArgumentParserToolInfo ToolInfo.swift
[10/91] Emitting module ArgumentParserToolInfo
[11/92] Wrapping AST for ArgumentParserToolInfo for debugging
[13/138] Compiling ArgumentParser BashCompletionsGenerator.swift
[14/138] Compiling ArgumentParser CompletionsGenerator.swift
[15/138] Compiling ArgumentParser FishCompletionsGenerator.swift
[16/138] Compiling ArgumentParser ZshCompletionsGenerator.swift
[17/138] Compiling ArgumentParser Argument.swift
[18/138] Compiling ArgumentParser ArgumentDiscussion.swift
[19/138] Compiling ArgumentParser ArgumentHelp.swift
[20/138] Compiling ArgumentParser ArgumentVisibility.swift
[21/138] Compiling ArgumentParser CompletionKind.swift
[22/138] Compiling ArgumentParser Errors.swift
[23/138] Compiling ArgumentParser Flag.swift
[24/148] Compiling AudioMarker Configuration.swift
[25/148] Compiling AudioMarker ChapterExporter.swift
[26/148] Compiling AudioMarker CueSheetExporter.swift
[27/148] Compiling AudioMarker ExportError.swift
[28/148] Compiling AudioMarker ExportFormat.swift
[29/148] Compiling AudioMarker FFMetadataExporter.swift
[30/148] Compiling AudioMarker LRCParser.swift
[31/148] Compiling AudioMarker MP4ChapsExporter.swift
[32/148] Compiling AudioMarker MarkdownExporter.swift
[33/148] Compiling AudioMarker PodcastNamespaceParser.swift
[34/148] Compiling AudioMarker PodloveJSONExporter.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[35/148] Emitting module AudioMarker
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
[36/148] Compiling ArgumentParser CommandParser.swift
[37/148] Compiling ArgumentParser InputKey.swift
[38/148] Compiling ArgumentParser DumpHelpGenerator.swift
[39/148] Compiling ArgumentParser HelpCommand.swift
[40/148] Compiling ArgumentParser HelpGenerator.swift
[41/148] Compiling ArgumentParser MessageInfo.swift
[42/148] Compiling ArgumentParser UsageGenerator.swift
[43/148] Compiling ArgumentParser CollectionExtensions.swift
[44/148] Compiling ArgumentParser Foundation.swift
[45/148] Compiling ArgumentParser Mutex.swift
[46/148] Compiling AudioMarker PodloveXMLExporter.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[47/148] Compiling AudioMarker SRTExporter.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[48/148] Compiling AudioMarker TTMLAgent.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[49/148] Compiling AudioMarker TTMLDocument.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[50/148] Compiling AudioMarker TTMLExporter.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[51/148] Compiling AudioMarker TTMLParseError.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[52/148] Compiling AudioMarker TTMLParser.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[53/148] Compiling AudioMarker TTMLRegion.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[54/148] Compiling AudioMarker TTMLStyle.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[55/148] Compiling AudioMarker TTMLTimeParser.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[56/148] Compiling AudioMarker WebVTTExporter.swift
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:78:57: error: cannot find type 'XMLParserDelegate' in scope
76 | // MARK: - XML Parser Delegate
77 |
78 | private final class PodloveXMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
79 |
80 | var chapters = ChapterList()
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:84:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
82 |
83 | func parser(
84 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
85 | didStartElement elementName: String,
86 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:48:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
46 | }
47 | let delegate = PodloveXMLParserDelegate()
48 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
49 | parser.delegate = delegate
50 |
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:95:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
93 | guard let startString = attributes["start"] else {
94 | parseError = ExportError.invalidFormat("Missing 'start' attribute in chapter element.")
95 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
96 | return
97 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:100:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | guard let title = attributes["title"] else {
99 | parseError = ExportError.invalidFormat("Missing 'title' attribute in chapter element.")
100 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | return
102 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/PodloveXMLExporter.swift:110:20: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
108 | } catch {
109 | parseError = ExportError.invalidFormat("Invalid timestamp '\(startString)'.")
110 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
111 | }
112 | }
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:79:51: error: cannot find type 'XMLParserDelegate' in scope
77 | /// Uses `Foundation.XMLParser` (the only native Swift XML parser).
78 | /// This class is required because `XMLParserDelegate` is an `@objc` protocol.
79 | private final class TTMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
80 |
81 | // MARK: - State
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:183:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
181 |
182 | func parser(
183 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
184 | didStartElement elementName: String,
185 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:208:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
206 |
207 | func parser(
208 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
209 | didEndElement elementName: String,
210 | namespaceURI: String?,
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:229:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
227 | }
228 |
229 | func parser(_ parser: XMLParser, foundCharacters string: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
230 | if inSpan {
231 | currentSpanText += string
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:239:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
237 | }
238 |
239 | func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
240 | if self.parseError == nil {
241 | self.parseError = .invalidXML(parseError.localizedDescription)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
| `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AudioMarker/Exporter/TTMLParser.swift:43:25: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | public func parseDocument(from data: Data) throws -> TTMLDocument {
42 | let delegate = TTMLParserDelegate()
43 | let xmlParser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 | xmlParser.delegate = delegate
45 | xmlParser.shouldProcessNamespaces = true
[57/148] Compiling ArgumentParser InputOrigin.swift
[58/148] Compiling ArgumentParser Name.swift
[59/148] Compiling ArgumentParser Parsed.swift
[60/148] Compiling ArgumentParser ParsedValues.swift
[61/148] Compiling ArgumentParser ParserError.swift
[62/148] Compiling ArgumentParser SplitArguments.swift
[63/148] Compiling ArgumentParser ParsableCommand.swift
[64/148] Compiling ArgumentParser ArgumentDecoder.swift
[65/148] Compiling ArgumentParser ArgumentDefinition.swift
[66/148] Compiling ArgumentParser ArgumentSet.swift
[67/148] Compiling ArgumentParser Platform.swift
[68/148] Compiling ArgumentParser SequenceExtensions.swift
[69/148] Compiling ArgumentParser StringExtensions.swift
[70/148] Compiling ArgumentParser SwiftExtensions.swift
[71/148] Compiling AudioMarker MP4Writer.swift
[72/148] Compiling AudioMarker Artwork.swift
[73/148] Compiling AudioMarker ArtworkFormat.swift
[74/148] Compiling AudioMarker AudioFileInfo.swift
[75/148] Compiling AudioMarker AudioMetadata.swift
[76/148] Compiling AudioMarker AudioTimestamp.swift
[77/148] Compiling ArgumentParser NameSpecification.swift
[78/148] Compiling ArgumentParser Option.swift
[79/148] Compiling ArgumentParser OptionGroup.swift
[80/148] Compiling ArgumentParser ParentCommand.swift
[81/148] Compiling ArgumentParser AsyncParsableCommand.swift
[82/148] Compiling ArgumentParser CommandConfiguration.swift
[83/148] Compiling ArgumentParser CommandGroup.swift
[84/148] Compiling ArgumentParser EnumerableFlag.swift
[85/148] Compiling ArgumentParser ExpressibleByArgument.swift
[86/148] Compiling ArgumentParser ParsableArguments.swift
[87/148] Emitting module ArgumentParser
[101/154] Compiling ArgumentParser Tree.swift
[102/154] Compiling ArgumentParser CodingKeyValidator.swift
[103/154] Compiling ArgumentParser NonsenseFlagsValidator.swift
[104/154] Compiling ArgumentParser ParsableArgumentsValidation.swift
[105/154] Compiling ArgumentParser PositionalArgumentsValidator.swift
[106/154] Compiling ArgumentParser UniqueNamesValidator.swift
[107/154] Compiling AudioMarker FileReader.swift
[108/154] Compiling AudioMarker FileWriter.swift
[109/154] Compiling AudioMarker StreamingConstants.swift
[110/154] Compiling AudioMarker StreamingError.swift
[111/154] Compiling AudioMarker AudioValidator.swift
[112/154] Compiling AudioMarker ChapterValidationRules.swift
[113/154] Compiling AudioMarker MetadataValidationRules.swift
[114/154] Compiling AudioMarker ValidationIssue.swift
[115/154] Compiling AudioMarker ValidationResult.swift
[116/154] Compiling AudioMarker ValidationRule.swift
BUILD FAILURE 6.2 linux