The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of RCKML, reference main (04fe13), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 00:44:59 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/RCCoop/RCKML.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/RCCoop/RCKML
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 04fe13f Updated package and added podspec
Cloned https://github.com/RCCoop/RCKML.git
Revision (git rev-parse @):
04fe13fc8a409d9a1b12434f70d0c52562a6629f
SUCCESS checkout https://github.com/RCCoop/RCKML.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/RCCoop/RCKML.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[0/5] Copying PrivacyInfo.xcprivacy
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/33] Emitting module ZIPFoundation
[7/35] Compiling ZIPFoundation Date+ZIP.swift
[8/35] Compiling ZIPFoundation Entry+Serialization.swift
[9/35] Compiling AEXML Error.swift
[10/35] Compiling ZIPFoundation URL+ZIP.swift
[11/35] Compiling ZIPFoundation resource_bundle_accessor.swift
[12/35] Compiling ZIPFoundation Entry+ZIP64.swift
[13/35] Compiling ZIPFoundation Entry.swift
[14/35] Compiling ZIPFoundation Archive.swift
[15/35] Compiling ZIPFoundation Data+Compression.swift
[16/35] Compiling ZIPFoundation Archive+WritingDeprecated.swift
[17/35] Compiling ZIPFoundation Archive+ZIP64.swift
[18/35] Compiling ZIPFoundation FileManager+ZIP.swift
[19/35] Compiling ZIPFoundation FileManager+ZIPDeprecated.swift
[20/35] Compiling ZIPFoundation Archive+MemoryFile.swift
[21/35] Compiling ZIPFoundation Archive+Progress.swift
[22/35] Compiling ZIPFoundation Archive+Reading.swift
[23/35] Compiling ZIPFoundation Archive+BackingConfiguration.swift
[24/35] Compiling ZIPFoundation Archive+Deprecated.swift
[25/35] Compiling ZIPFoundation Archive+Helpers.swift
[26/35] Compiling ZIPFoundation Archive+ReadingDeprecated.swift
[27/35] Compiling ZIPFoundation Archive+Writing.swift
[28/35] Compiling ZIPFoundation Data+CompressionDeprecated.swift
[29/35] Compiling ZIPFoundation Data+Serialization.swift
[30/35] Compiling AEXML Options.swift
[31/35] Compiling AEXML Parser.swift
[32/35] Compiling AEXML Builders.swift
[33/35] Emitting module AEXML
[34/35] Compiling AEXML Document.swift
[35/35] Compiling AEXML Element.swift
[36/56] Compiling RCKML KMLGeometry.swift
[37/56] Compiling RCKML KMLKnownTypes.swift
[38/58] Compiling RCKML KMLStyle.swift
[39/58] Compiling RCKML KMLStyleMap.swift
[40/58] Compiling RCKML KMLLineStyle.swift
[41/58] Compiling RCKML KMLPolyStyle.swift
[42/58] Compiling RCKML KMLErrors.swift
[43/58] Compiling RCKML KMLContainer.swift
[44/58] Compiling RCKML KMLPoint.swift
[45/58] Compiling RCKML KMLPolygon.swift
[46/58] Compiling RCKML KMLCoordinates.swift
[47/58] Compiling RCKML KMLLineString.swift
[48/58] Compiling RCKML KMLMultiGeometry.swift
[49/58] Compiling RCKML KMLElement.swift
[50/58] Compiling RCKML KMLFeature.swift
[51/58] Compiling RCKML KMLDocument.swift
/Users/admin/builder/spi-builder-workspace/Sources/RCKML/Features/KMLDocument.swift:98:29: warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 96 |     /// Returns the file data representation as a KMZ file.
 97 |     func kmzData() throws -> Data {
 98 |         guard let archive = Archive(data: Data(), accessMode: .create, preferredEncoding: .utf8) else {
    |                             `- warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 99 |             throw KMLError.kmzWriteError
100 |         }
/Users/admin/builder/spi-builder-workspace/Sources/RCKML/Features/KMLDocument.swift:155:29: warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
153 |         var extractedData = Data()
154 |
155 |         guard let archive = Archive(data: kmzData, accessMode: .read, preferredEncoding: .utf8),
    |                             `- warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
156 |               let kmlEntry = archive.first(where: { $0.path.hasSuffix("kml") }),
157 |               let _ = try? archive.extract(kmlEntry, consumer: { extractedData += $0 }),
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[52/58] Compiling RCKML KMLFolder.swift
/Users/admin/builder/spi-builder-workspace/Sources/RCKML/Features/KMLDocument.swift:98:29: warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 96 |     /// Returns the file data representation as a KMZ file.
 97 |     func kmzData() throws -> Data {
 98 |         guard let archive = Archive(data: Data(), accessMode: .create, preferredEncoding: .utf8) else {
    |                             `- warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 99 |             throw KMLError.kmzWriteError
100 |         }
/Users/admin/builder/spi-builder-workspace/Sources/RCKML/Features/KMLDocument.swift:155:29: warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
153 |         var extractedData = Data()
154 |
155 |         guard let archive = Archive(data: kmzData, accessMode: .read, preferredEncoding: .utf8),
    |                             `- warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
156 |               let kmlEntry = archive.first(where: { $0.path.hasSuffix("kml") }),
157 |               let _ = try? archive.extract(kmlEntry, consumer: { extractedData += $0 }),
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[53/58] Compiling RCKML KMLPlacemark.swift
/Users/admin/builder/spi-builder-workspace/Sources/RCKML/Features/KMLDocument.swift:98:29: warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 96 |     /// Returns the file data representation as a KMZ file.
 97 |     func kmzData() throws -> Data {
 98 |         guard let archive = Archive(data: Data(), accessMode: .create, preferredEncoding: .utf8) else {
    |                             `- warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 99 |             throw KMLError.kmzWriteError
100 |         }
/Users/admin/builder/spi-builder-workspace/Sources/RCKML/Features/KMLDocument.swift:155:29: warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
153 |         var extractedData = Data()
154 |
155 |         guard let archive = Archive(data: kmzData, accessMode: .read, preferredEncoding: .utf8),
    |                             `- warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
156 |               let kmlEntry = archive.first(where: { $0.path.hasSuffix("kml") }),
157 |               let _ = try? archive.extract(kmlEntry, consumer: { extractedData += $0 }),
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[54/58] Compiling RCKML KMLStyleUrl.swift
[55/58] Compiling RCKML UTType+KML.swift
[56/58] Compiling RCKML KMLStyleProtocols.swift
[57/58] Compiling RCKML KMLColor.swift
[58/58] Emitting module RCKML
Build complete! (14.93s)
Fetching https://github.com/weichsel/ZIPFoundation.git
Fetching https://github.com/tadija/AEXML.git
[1/5576] Fetching zipfoundation
[113/7703] Fetching zipfoundation, aexml
Fetched https://github.com/tadija/AEXML.git from cache (1.18s)
Fetched https://github.com/weichsel/ZIPFoundation.git from cache (1.18s)
Computing version for https://github.com/tadija/AEXML.git
Computed https://github.com/tadija/AEXML.git at 4.7.0 (1.63s)
Computing version for https://github.com/weichsel/ZIPFoundation.git
Computed https://github.com/weichsel/ZIPFoundation.git at 0.9.19 (0.43s)
Creating working copy for https://github.com/tadija/AEXML.git
Working copy of https://github.com/tadija/AEXML.git resolved at 4.7.0
Creating working copy for https://github.com/weichsel/ZIPFoundation.git
Working copy of https://github.com/weichsel/ZIPFoundation.git resolved at 0.9.19
Build complete.
{
  "dependencies" : [
    {
      "identity" : "aexml",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.6.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tadija/AEXML.git"
    },
    {
      "identity" : "zipfoundation",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.9.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/weichsel/ZIPFoundation.git"
    }
  ],
  "manifest_display_name" : "RCKML",
  "name" : "RCKML",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "RCKML",
      "targets" : [
        "RCKML"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RCKMLTests",
      "module_type" : "SwiftTarget",
      "name" : "RCKMLTests",
      "path" : "Tests/RCKMLTests",
      "product_dependencies" : [
        "AEXML",
        "ZIPFoundation"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RCKMLTests/GoogleTest.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RCKMLTests/GoogleTest.kml",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "RCKMLTests.swift"
      ],
      "target_dependencies" : [
        "RCKML"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RCKML",
      "module_type" : "SwiftTarget",
      "name" : "RCKML",
      "path" : "Sources/RCKML",
      "product_dependencies" : [
        "AEXML",
        "ZIPFoundation"
      ],
      "product_memberships" : [
        "RCKML"
      ],
      "sources" : [
        "Features/KMLDocument.swift",
        "Features/KMLFolder.swift",
        "Features/KMLPlacemark.swift",
        "Geometries/KMLCoordinates.swift",
        "Geometries/KMLLineString.swift",
        "Geometries/KMLMultiGeometry.swift",
        "Geometries/KMLPoint.swift",
        "Geometries/KMLPolygon.swift",
        "KMLErrors.swift",
        "Protocols/KMLContainer.swift",
        "Protocols/KMLElement.swift",
        "Protocols/KMLFeature.swift",
        "Protocols/KMLGeometry.swift",
        "Protocols/KMLKnownTypes.swift",
        "Protocols/KMLStyleProtocols.swift",
        "Styles/KMLColor.swift",
        "Styles/KMLLineStyle.swift",
        "Styles/KMLPolyStyle.swift",
        "Styles/KMLStyle.swift",
        "Styles/KMLStyleMap.swift",
        "Styles/KMLStyleUrl.swift",
        "UTType+KML.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.