The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of CGPointVector, reference 0.4.1 (f6bed1), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 20:39:47 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/koher/cgpointvector.git
Reference: 0.4.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/koher/cgpointvector
 * tag               0.4.1      -> FETCH_HEAD
HEAD is now at f6bed1d Merge pull request #8 from koher/dev-0.4.1
Cloned https://github.com/koher/cgpointvector.git
Revision (git rev-parse @):
f6bed1d89d200cd639bf1284bf762fbb41835855
SUCCESS checkout https://github.com/koher/cgpointvector.git at 0.4.1
========================================
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": "cgpointvector",
      "name": "CGPointVector",
      "url": "https://github.com/koher/cgpointvector.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/cgpointvector",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/koher/cgpointvector.git
[1/568] Fetching cgpointvector
Fetched https://github.com/koher/cgpointvector.git from cache (0.76s)
Creating working copy for https://github.com/koher/cgpointvector.git
Working copy of https://github.com/koher/cgpointvector.git resolved at 0.4.1 (f6bed1d)
warning: '.resolve-product-dependencies': dependency 'cgpointvector' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/koher/cgpointvector.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CGPointVector",
  "name" : "CGPointVector",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "CGPointVector",
      "targets" : [
        "CGPointVector"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CGPointVectorTests",
      "module_type" : "SwiftTarget",
      "name" : "CGPointVectorTests",
      "path" : "Tests/CGPointVectorTests",
      "sources" : [
        "CGAffineTransformTests.swift",
        "CGPointTests.swift",
        "CGPointVectorTests.swift",
        "CGRectTests.swift",
        "CGSizeTests.swift",
        "CGVectorTests.swift"
      ],
      "target_dependencies" : [
        "CGPointVector"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CGPointVector",
      "module_type" : "SwiftTarget",
      "name" : "CGPointVector",
      "path" : "Sources",
      "product_memberships" : [
        "CGPointVector"
      ],
      "sources" : [
        "CGPointVector/CGAffineTransform.swift",
        "CGPointVector/CGPoint.swift",
        "CGPointVector/CGRect.swift",
        "CGPointVector/CGSize.swift",
        "CGPointVector/CGVector.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/8] Compiling CGPointVector CGRect.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGRect.swift:16:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
14 | }
15 |
16 | extension CGRect: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |     public var description: String {
18 |         return "(\(origin.description), \(size.description))"
[4/8] Compiling CGPointVector CGVector.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGVector.swift:50:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGVector: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(dx), \(dy))"
[5/8] Compiling CGPointVector CGAffineTransform.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGAffineTransform.swift:9:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 7 | }
 8 |
 9 | extension CGAffineTransform: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |     public var description: String {
11 |         return "(\(a), \(b), \(c), \(d), \(tx), \(ty))"
[6/8] Compiling CGPointVector CGSize.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGSize.swift:50:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGSize: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(width), \(height))"
[7/8] Emitting module CGPointVector
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGAffineTransform.swift:9:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 7 | }
 8 |
 9 | extension CGAffineTransform: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |     public var description: String {
11 |         return "(\(a), \(b), \(c), \(d), \(tx), \(ty))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGPoint.swift:50:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGPoint: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(x), \(y))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGRect.swift:16:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
14 | }
15 |
16 | extension CGRect: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |     public var description: String {
18 |         return "(\(origin.description), \(size.description))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGSize.swift:50:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGSize: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(width), \(height))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGVector.swift:50:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGVector: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(dx), \(dy))"
[8/8] Compiling CGPointVector CGPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGPoint.swift:50:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGPoint: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(x), \(y))"
Build complete! (5.27s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CGPointVector",
  "name" : "CGPointVector",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "CGPointVector",
      "targets" : [
        "CGPointVector"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CGPointVectorTests",
      "module_type" : "SwiftTarget",
      "name" : "CGPointVectorTests",
      "path" : "Tests/CGPointVectorTests",
      "sources" : [
        "CGAffineTransformTests.swift",
        "CGPointTests.swift",
        "CGPointVectorTests.swift",
        "CGRectTests.swift",
        "CGSizeTests.swift",
        "CGVectorTests.swift"
      ],
      "target_dependencies" : [
        "CGPointVector"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CGPointVector",
      "module_type" : "SwiftTarget",
      "name" : "CGPointVector",
      "path" : "Sources",
      "product_memberships" : [
        "CGPointVector"
      ],
      "sources" : [
        "CGPointVector/CGAffineTransform.swift",
        "CGPointVector/CGPoint.swift",
        "CGPointVector/CGRect.swift",
        "CGPointVector/CGSize.swift",
        "CGPointVector/CGVector.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.