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 Kinetics, reference main (d40356), with Swift 6.2 (beta) for macOS (SPM) on 5 Sep 2025 08:04:31 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.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
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/roberthein/Kinetics.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/12] Compiling Kinetics Kinetics+Projection.swift
[4/13] Compiling Kinetics Kinetics+Bounce.swift
[5/13] Compiling Kinetics Kinetics+RubberBand.swift
[6/13] Compiling Kinetics Kinetics+Clock.swift
[7/13] Compiling Kinetics Kinetics+Sugar.swift
[8/13] Compiling Kinetics Kinetics+Rotation.swift
[9/13] Compiling Kinetics Kinetics+Drag.swift
[10/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] {
[11/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] {
[12/13] Compiling Kinetics Kinetics+Animator.swift
[13/13] Compiling Kinetics Kinetics.swift
Build complete! (10.01s)
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.