The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Kinetics, reference main (d40356), with Swift 6.1 for macOS (SPM) on 5 Sep 2025 08:03:26 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/roberthein/Kinetics.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/roberthein/Kinetics
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d403567 Cleanup demo.
Cloned https://github.com/roberthein/Kinetics.git
Revision (git rev-parse @):
d40356797fcd047287c69fb3521dff31e75ff619
SUCCESS checkout https://github.com/roberthein/Kinetics.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "kinetics",
      "name": "Kinetics",
      "url": "https://github.com/roberthein/Kinetics.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Kinetics",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/roberthein/Kinetics.git
[1/120] Fetching kinetics
Fetched https://github.com/roberthein/Kinetics.git from cache (2.20s)
Creating working copy for https://github.com/roberthein/Kinetics.git
Working copy of https://github.com/roberthein/Kinetics.git resolved at main (d403567)
warning: '.resolve-product-dependencies': dependency 'kinetics' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/roberthein/Kinetics.git
https://github.com/roberthein/Kinetics.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Kinetics",
  "name" : "Kinetics",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "18.0"
    },
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "18.0"
    },
    {
      "name" : "watchos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "Kinetics",
      "targets" : [
        "Kinetics"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Kinetics",
      "module_type" : "SwiftTarget",
      "name" : "Kinetics",
      "path" : "Sources/Kinetics",
      "product_memberships" : [
        "Kinetics"
      ],
      "sources" : [
        "Kinetics+Animatable.swift",
        "Kinetics+Animator.swift",
        "Kinetics+Bounce.swift",
        "Kinetics+Clock.swift",
        "Kinetics+Drag.swift",
        "Kinetics+Projection.swift",
        "Kinetics+Rotation.swift",
        "Kinetics+RubberBand.swift",
        "Kinetics+Sugar.swift",
        "Kinetics.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/12] Compiling Kinetics Kinetics+Rotation.swift
[4/13] Compiling Kinetics Kinetics+Bounce.swift
[5/13] Compiling Kinetics Kinetics+Animator.swift
[6/13] Emitting module Kinetics
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:19:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
17 | /// Extends CGPoint to conform to KineticsValue for 2D point animations.
18 | /// Maps x,y coordinates to/from a two-element components array.
19 | extension CGPoint: KineticsValue, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 |     public typealias FloatType = Double
21 |     public var components: [Double] {
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:38:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
36 | /// Extends CGSize to conform to KineticsValue for 2D size animations.
37 | /// Maps width,height dimensions to/from a two-element components array.
38 | extension CGSize: KineticsValue, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
39 |     public typealias FloatType = Double
40 |     public var components: [Double] {
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:57:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
55 | /// Extends CGRect to conform to KineticsValue for 2D rectangle animations.
56 | /// Maps origin.x, origin.y, size.width, size.height to/from a four-element components array.
57 | extension CGRect: KineticsValue, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
58 |     public typealias FloatType = Double
59 |     public var components: [Double] {
[7/13] Compiling Kinetics Kinetics+Animatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:19:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
17 | /// Extends CGPoint to conform to KineticsValue for 2D point animations.
18 | /// Maps x,y coordinates to/from a two-element components array.
19 | extension CGPoint: KineticsValue, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 |     public typealias FloatType = Double
21 |     public var components: [Double] {
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:38:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
36 | /// Extends CGSize to conform to KineticsValue for 2D size animations.
37 | /// Maps width,height dimensions to/from a two-element components array.
38 | extension CGSize: KineticsValue, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
39 |     public typealias FloatType = Double
40 |     public var components: [Double] {
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:57:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
55 | /// Extends CGRect to conform to KineticsValue for 2D rectangle animations.
56 | /// Maps origin.x, origin.y, size.width, size.height to/from a four-element components array.
57 | extension CGRect: KineticsValue, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
58 |     public typealias FloatType = Double
59 |     public var components: [Double] {
[8/13] Compiling Kinetics Kinetics+Clock.swift
[9/13] Compiling Kinetics Kinetics+Drag.swift
[10/13] Compiling Kinetics Kinetics+Projection.swift
[11/13] Compiling Kinetics Kinetics+Sugar.swift
[12/13] Compiling Kinetics Kinetics+RubberBand.swift
[13/13] Compiling Kinetics Kinetics.swift
Build complete! (10.51s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Kinetics",
  "name" : "Kinetics",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "18.0"
    },
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "18.0"
    },
    {
      "name" : "watchos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "Kinetics",
      "targets" : [
        "Kinetics"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Kinetics",
      "module_type" : "SwiftTarget",
      "name" : "Kinetics",
      "path" : "Sources/Kinetics",
      "product_memberships" : [
        "Kinetics"
      ],
      "sources" : [
        "Kinetics+Animatable.swift",
        "Kinetics+Animator.swift",
        "Kinetics+Bounce.swift",
        "Kinetics+Clock.swift",
        "Kinetics+Drag.swift",
        "Kinetics+Projection.swift",
        "Kinetics+Rotation.swift",
        "Kinetics+RubberBand.swift",
        "Kinetics+Sugar.swift",
        "Kinetics.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.