The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Aperture, reference 0.0.0 (695d08), with Swift 6.2 for macOS (SPM) on 29 Dec 2025 16:43:54 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/LiYanan2004/Aperture.git
Reference: 0.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/LiYanan2004/Aperture
 * tag               0.0.0      -> FETCH_HEAD
HEAD is now at 695d087 Update namings and source file structures
Cloned https://github.com/LiYanan2004/Aperture.git
Revision (git rev-parse @):
695d08772dc76516517a7093be26464c66f0e5f4
SUCCESS checkout https://github.com/LiYanan2004/Aperture.git at 0.0.0
========================================
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": "aperture",
      "name": "Aperture",
      "url": "https://github.com/LiYanan2004/Aperture.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Aperture",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/LiYanan2004/Aperture.git
[1/576] Fetching aperture
Fetched https://github.com/LiYanan2004/Aperture.git from cache (1.55s)
Creating working copy for https://github.com/LiYanan2004/Aperture.git
Working copy of https://github.com/LiYanan2004/Aperture.git resolved at 0.0.0 (695d087)
warning: '.resolve-product-dependencies': dependency 'aperture' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/LiYanan2004/Aperture.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-49B95AFC49DCD68C.txt
[3/33] Emitting module Aperture
[4/36] Compiling Aperture ZeroShutterLag.swift
[5/36] Compiling Aperture ResponsiveButtonStyle.swift
[6/36] Compiling Aperture SpinningProgressView.swift
[7/36] Compiling Aperture CameraZoomLevelPicker.swift
[8/36] Compiling Aperture FocusIndicator.swift
[9/36] Compiling Aperture CameraPreviewFlip.swift
[10/36] Compiling Aperture CameraTapToFocus.swift
[11/36] Compiling Aperture PhotoProcessor.swift
[12/36] Compiling Aperture AutoDeferredPhotoDelivery.swift
[13/36] Compiling Aperture AutoSwitchingLens.swift
[14/36] Compiling Aperture MultiTasking.swift
[15/36] Compiling Aperture ResponsiveCapture.swift
[16/36] Compiling Aperture StabilizationMode.swift
[17/36] Compiling Aperture AppOrientationDelegate.swift
[18/36] Compiling Aperture DeviceType.swift
[19/36] Compiling Aperture PlatformView.swift
[20/36] Compiling Aperture Camera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Model/Camera.swift:518:13: warning: capture of 'videoPreviewLayer' with non-Sendable type 'AVCaptureVideoPreviewLayer' in a '@Sendable' closure [#SendableClosureCaptures]
516 |         videoRotationAngleForHorizonLevelPreviewObservation = videoDeviceRotationCoordinator.observe(\.videoRotationAngleForHorizonLevelPreview, options: .new) { _, change in
517 |             guard let videoRotationAngleForHorizonLevelPreview = change.newValue else { return }
518 |             videoPreviewLayer.connection?.videoRotationAngle = videoRotationAngleForHorizonLevelPreview
    |             `- warning: capture of 'videoPreviewLayer' with non-Sendable type 'AVCaptureVideoPreviewLayer' in a '@Sendable' closure [#SendableClosureCaptures]
519 |         }
520 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVCaptureVideoPreviewLayer.h:33:12: note: class 'AVCaptureVideoPreviewLayer' does not conform to the 'Sendable' protocol
 31 |  */
 32 | API_AVAILABLE(macos(10.7), ios(4.0), macCatalyst(14.0), tvos(17.0)) API_UNAVAILABLE(visionos) API_UNAVAILABLE(watchos)
 33 | @interface AVCaptureVideoPreviewLayer : CALayer
    |            `- note: class 'AVCaptureVideoPreviewLayer' does not conform to the 'Sendable' protocol
 34 | {
 35 | @private
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[21/36] Compiling Aperture CameraCaptureConfiguration+SwiftUI.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Model/Camera.swift:518:13: warning: capture of 'videoPreviewLayer' with non-Sendable type 'AVCaptureVideoPreviewLayer' in a '@Sendable' closure [#SendableClosureCaptures]
516 |         videoRotationAngleForHorizonLevelPreviewObservation = videoDeviceRotationCoordinator.observe(\.videoRotationAngleForHorizonLevelPreview, options: .new) { _, change in
517 |             guard let videoRotationAngleForHorizonLevelPreview = change.newValue else { return }
518 |             videoPreviewLayer.connection?.videoRotationAngle = videoRotationAngleForHorizonLevelPreview
    |             `- warning: capture of 'videoPreviewLayer' with non-Sendable type 'AVCaptureVideoPreviewLayer' in a '@Sendable' closure [#SendableClosureCaptures]
519 |         }
520 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVCaptureVideoPreviewLayer.h:33:12: note: class 'AVCaptureVideoPreviewLayer' does not conform to the 'Sendable' protocol
 31 |  */
 32 | API_AVAILABLE(macos(10.7), ios(4.0), macCatalyst(14.0), tvos(17.0)) API_UNAVAILABLE(visionos) API_UNAVAILABLE(watchos)
 33 | @interface AVCaptureVideoPreviewLayer : CALayer
    |            `- note: class 'AVCaptureVideoPreviewLayer' does not conform to the 'Sendable' protocol
 34 | {
 35 | @private
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[22/36] Compiling Aperture CameraCaptureConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Model/Camera.swift:518:13: warning: capture of 'videoPreviewLayer' with non-Sendable type 'AVCaptureVideoPreviewLayer' in a '@Sendable' closure [#SendableClosureCaptures]
516 |         videoRotationAngleForHorizonLevelPreviewObservation = videoDeviceRotationCoordinator.observe(\.videoRotationAngleForHorizonLevelPreview, options: .new) { _, change in
517 |             guard let videoRotationAngleForHorizonLevelPreview = change.newValue else { return }
518 |             videoPreviewLayer.connection?.videoRotationAngle = videoRotationAngleForHorizonLevelPreview
    |             `- warning: capture of 'videoPreviewLayer' with non-Sendable type 'AVCaptureVideoPreviewLayer' in a '@Sendable' closure [#SendableClosureCaptures]
519 |         }
520 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVCaptureVideoPreviewLayer.h:33:12: note: class 'AVCaptureVideoPreviewLayer' does not conform to the 'Sendable' protocol
 31 |  */
 32 | API_AVAILABLE(macos(10.7), ios(4.0), macCatalyst(14.0), tvos(17.0)) API_UNAVAILABLE(visionos) API_UNAVAILABLE(watchos)
 33 | @interface AVCaptureVideoPreviewLayer : CALayer
    |            `- note: class 'AVCaptureVideoPreviewLayer' does not conform to the 'Sendable' protocol
 34 | {
 35 | @private
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[23/36] Compiling Aperture CameraZoomingGesture.swift
[24/36] Compiling Aperture ShutterButton.swift
[25/36] Compiling Aperture SystemCameraExperience.swift
[26/36] Compiling Aperture ViewFinder.swift
[27/36] Compiling Aperture CameraView.swift
[28/36] Compiling Aperture CameraSwitcher.swift
[29/36] Compiling Aperture FlashLightIndicator.swift
[30/36] Compiling Aperture CameraPreview.swift
[31/36] Compiling Aperture CaptureDeviceTypes.swift
[32/36] Compiling Aperture CaptureQualityPrioritization.swift
[33/36] Compiling Aperture ConstantColor.swift
[34/36] Compiling Aperture CameraCaptureError.swift
[35/36] Compiling Aperture CameraModel+ReadinessCoordinator.swift
[36/36] Compiling Aperture CapturedPhoto.swift
Build complete! (10.57s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Aperture",
  "name" : "Aperture",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Aperture",
      "targets" : [
        "Aperture"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Aperture",
      "module_type" : "SwiftTarget",
      "name" : "Aperture",
      "path" : "Sources/Aperture",
      "product_memberships" : [
        "Aperture"
      ],
      "sources" : [
        "CameraView.swift",
        "Components/CameraSwitcher.swift",
        "Components/FlashLightIndicator.swift",
        "Components/Internals/CameraPreview.swift",
        "Components/Internals/CameraZoomLevelPicker.swift",
        "Components/Internals/FocusIndicator.swift",
        "Components/Internals/Interactions/CameraPreviewFlip.swift",
        "Components/Internals/Interactions/CameraTapToFocus.swift",
        "Components/Internals/Interactions/CameraZoomingGesture.swift",
        "Components/ShutterButton.swift",
        "Components/SystemCameraExperience.swift",
        "Components/ViewFinder.swift",
        "Helpers/AppOrientationDelegate.swift",
        "Helpers/DeviceType.swift",
        "Helpers/PlatformView.swift",
        "Model/Camera.swift",
        "Model/CameraCaptureConfiguration+SwiftUI.swift",
        "Model/CameraCaptureConfiguration.swift",
        "Model/CameraCaptureError.swift",
        "Model/CameraModel+ReadinessCoordinator.swift",
        "Model/CapturedPhoto.swift",
        "Model/PhotoProcessor.swift",
        "Modifiers/AutoDeferredPhotoDelivery.swift",
        "Modifiers/AutoSwitchingLens.swift",
        "Modifiers/CaptureDeviceTypes.swift",
        "Modifiers/CaptureQualityPrioritization.swift",
        "Modifiers/ConstantColor.swift",
        "Modifiers/MultiTasking.swift",
        "Modifiers/ResponsiveCapture.swift",
        "Modifiers/StabilizationMode.swift",
        "Modifiers/ZeroShutterLag.swift",
        "Styles/ResponsiveButtonStyle.swift",
        "Styles/SpinningProgressView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.