The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CoreGraphicsGeometrySupport, reference main (1d97fd), with Swift 6.3 for macOS (SPM) on 20 Apr 2026 19:41:17 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/schwa/CoreGraphicsGeometrySupport.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/schwa/CoreGraphicsGeometrySupport
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1d97fdf Update README.md
Cloned https://github.com/schwa/CoreGraphicsGeometrySupport.git
Revision (git rev-parse @):
1d97fdf43d983d66766589920ba2376ac2a4832e
SUCCESS checkout https://github.com/schwa/CoreGraphicsGeometrySupport.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",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "coregraphicsgeometrysupport",
      "name": "CoreGraphicsGeometrySupport",
      "url": "https://github.com/schwa/CoreGraphicsGeometrySupport.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CoreGraphicsGeometrySupport",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/schwa/CoreGraphicsGeometrySupport.git
[1/101] Fetching coregraphicsgeometrysupport
Fetched https://github.com/schwa/CoreGraphicsGeometrySupport.git from cache (0.59s)
Creating working copy for https://github.com/schwa/CoreGraphicsGeometrySupport.git
Working copy of https://github.com/schwa/CoreGraphicsGeometrySupport.git resolved at main (1d97fdf)
warning: '.resolve-product-dependencies': dependency 'coregraphicsgeometrysupport' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/schwa/CoreGraphicsGeometrySupport.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/8] Compiling CoreGraphicsGeometrySupport CGRect.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreGraphicsGeometrySupport/CGRect.swift:29:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 27 | }
 28 |
 29 | extension CGRect: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 30 |     public init(arrayLiteral elements: CGFloat...) {
 31 |         assert(elements.count == 4)
[4/8] Compiling CoreGraphicsGeometrySupport CGAffineTransform+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreGraphicsGeometrySupport/CGAffineTransform+Extensions.swift:152:19: warning: 'concat(other:)' is deprecated: Deprecated [#DeprecatedDeclaration]
150 |
151 |     static func *= (lhs: inout CGAffineTransform, rhs: CGAffineTransform) {
152 |         lhs = lhs.concat(other: rhs)
    |                   `- warning: 'concat(other:)' is deprecated: Deprecated [#DeprecatedDeclaration]
153 |     }
154 | }
/Users/admin/builder/spi-builder-workspace/Sources/CoreGraphicsGeometrySupport/CGAffineTransform+Extensions.swift:189:31: warning: 'concat(other:)' is deprecated: Deprecated [#DeprecatedDeclaration]
187 |         var current = CGAffineTransform.identity
188 |         for transform in transforms {
189 |             current = current.concat(other: transform)
    |                               `- warning: 'concat(other:)' is deprecated: Deprecated [#DeprecatedDeclaration]
190 |         }
191 |         self = current
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[5/8] Emitting module CoreGraphicsGeometrySupport
/Users/admin/builder/spi-builder-workspace/Sources/CoreGraphicsGeometrySupport/CGPoint+CGize.swift:45:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 43 | // MARK: ExpressibleByArrayLiteral
 44 |
 45 | extension CGPoint: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(arrayLiteral elements: CGFloat...) {
 47 |         self.init(elements)
/Users/admin/builder/spi-builder-workspace/Sources/CoreGraphicsGeometrySupport/CGPoint+CGize.swift:51:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 49 | }
 50 |
 51 | extension CGSize: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(arrayLiteral elements: CGFloat...) {
 53 |         self.init(elements)
/Users/admin/builder/spi-builder-workspace/Sources/CoreGraphicsGeometrySupport/CGRect.swift:29:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 27 | }
 28 |
 29 | extension CGRect: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 30 |     public init(arrayLiteral elements: CGFloat...) {
 31 |         assert(elements.count == 4)
[6/8] Compiling CoreGraphicsGeometrySupport Lerp.swift
[7/8] Compiling CoreGraphicsGeometrySupport Clamp.swift
[8/8] Compiling CoreGraphicsGeometrySupport CGPoint+CGize.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreGraphicsGeometrySupport/CGPoint+CGize.swift:45:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 43 | // MARK: ExpressibleByArrayLiteral
 44 |
 45 | extension CGPoint: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(arrayLiteral elements: CGFloat...) {
 47 |         self.init(elements)
/Users/admin/builder/spi-builder-workspace/Sources/CoreGraphicsGeometrySupport/CGPoint+CGize.swift:51:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 49 | }
 50 |
 51 | extension CGSize: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(arrayLiteral elements: CGFloat...) {
 53 |         self.init(elements)
Build complete! (3.97s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CoreGraphicsGeometrySupport",
  "name" : "CoreGraphicsGeometrySupport",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CoreGraphicsGeometrySupport",
      "targets" : [
        "CoreGraphicsGeometrySupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CoreGraphicsGeometrySupportTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreGraphicsGeometrySupportTests",
      "path" : "Tests/CoreGraphicsGeometrySupportTests",
      "sources" : [
        "CoreGraphicsGeometrySupportTests.swift"
      ],
      "target_dependencies" : [
        "CoreGraphicsGeometrySupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreGraphicsGeometrySupport",
      "module_type" : "SwiftTarget",
      "name" : "CoreGraphicsGeometrySupport",
      "path" : "Sources/CoreGraphicsGeometrySupport",
      "product_memberships" : [
        "CoreGraphicsGeometrySupport"
      ],
      "sources" : [
        "CGAffineTransform+Extensions.swift",
        "CGPoint+CGize.swift",
        "CGRect.swift",
        "Clamp.swift",
        "Lerp.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.