The Swift Package Index logo.Swift Package Index

Build Information

Failed to build BluetoothLinux with Swift 5.8 for macOS (SPM).

Build Command

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

Build Log

Retrying in 0.0 seconds ...
Building ... (attempt 2)
[0/1] Planning build
Building for debugging...
[1/21] Compiling BluetoothLinux L2CAPFileDescriptor.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:17:20: error: type 'BluetoothLinux.L2CAPSocket' does not conform to protocol 'Bluetooth.L2CAPSocket'
public final class L2CAPSocket: Bluetooth.L2CAPSocket {
                   ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Bluetooth/Sources/Bluetooth/L2CAPSocket.swift:35:10: note: protocol requires function 'close()' with type '() async -> ()'
    func close() async
         ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:145:83: error: extra argument 'sleep' in call
            try await fileDescriptor.connect(to: destinationSocketAddress, sleep: 100_000_000)
                                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:169:124: error: extra argument 'sleep' in call
        let (clientFileDescriptor, clientAddress) = try await socket.fileDescriptor.accept(L2CAPSocketAddress.self, sleep: 100_000_000)
                                                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: binary operator '~=' cannot be applied to two 'Socket.Event' operands
        case .pendingRead:
             ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: note: overloads for '~=' exist with these partially matching parameter lists: (Errno, Error)
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: reference to member 'pendingRead' cannot be resolved without a contextual type
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: error: pattern with associated values does not match enum case 'read'
        case let .read(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: note: remove associated values to make the pattern match
        case let .read(bytes):
                  ^   ~~~~~~~
                      
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: error: pattern with associated values does not match enum case 'write'
        case let .write(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: note: remove associated values to make the pattern match
        case let .write(bytes):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: error: pattern with associated values does not match enum case 'close'
        case let .close(error):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: note: remove associated values to make the pattern match
        case let .close(error):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:220:21: error: type 'L2CAPSocketEvent' has no member 'pendingRead'
            self = .pendingRead
                   ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:222:21: error: enum case 'read' has no associated values
            self = .read(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:224:21: error: enum case 'write' has no associated values
            self = .write(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:226:21: error: enum case 'close' has no associated values
            self = .close(error)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:71:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:83:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:14:15: error: type 'L2CAPSocketAddress' does not conform to protocol 'SocketAddress'
public struct L2CAPSocketAddress: Equatable, Hashable, BluetoothSocketAddress {
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:70:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:82:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> L2CAPSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> L2CAPSocketAddress')
    static func withUnsafePointer(
                ^
[2/21] Compiling BluetoothLinux L2CAPSocket.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:17:20: error: type 'BluetoothLinux.L2CAPSocket' does not conform to protocol 'Bluetooth.L2CAPSocket'
public final class L2CAPSocket: Bluetooth.L2CAPSocket {
                   ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Bluetooth/Sources/Bluetooth/L2CAPSocket.swift:35:10: note: protocol requires function 'close()' with type '() async -> ()'
    func close() async
         ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:145:83: error: extra argument 'sleep' in call
            try await fileDescriptor.connect(to: destinationSocketAddress, sleep: 100_000_000)
                                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:169:124: error: extra argument 'sleep' in call
        let (clientFileDescriptor, clientAddress) = try await socket.fileDescriptor.accept(L2CAPSocketAddress.self, sleep: 100_000_000)
                                                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: binary operator '~=' cannot be applied to two 'Socket.Event' operands
        case .pendingRead:
             ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: note: overloads for '~=' exist with these partially matching parameter lists: (Errno, Error)
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: reference to member 'pendingRead' cannot be resolved without a contextual type
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: error: pattern with associated values does not match enum case 'read'
        case let .read(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: note: remove associated values to make the pattern match
        case let .read(bytes):
                  ^   ~~~~~~~
                      
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: error: pattern with associated values does not match enum case 'write'
        case let .write(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: note: remove associated values to make the pattern match
        case let .write(bytes):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: error: pattern with associated values does not match enum case 'close'
        case let .close(error):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: note: remove associated values to make the pattern match
        case let .close(error):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:220:21: error: type 'L2CAPSocketEvent' has no member 'pendingRead'
            self = .pendingRead
                   ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:222:21: error: enum case 'read' has no associated values
            self = .read(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:224:21: error: enum case 'write' has no associated values
            self = .write(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:226:21: error: enum case 'close' has no associated values
            self = .close(error)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:71:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:83:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:14:15: error: type 'L2CAPSocketAddress' does not conform to protocol 'SocketAddress'
public struct L2CAPSocketAddress: Equatable, Hashable, BluetoothSocketAddress {
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:70:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:82:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> L2CAPSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> L2CAPSocketAddress')
    static func withUnsafePointer(
                ^
[3/21] Compiling BluetoothLinux L2CAPSocketAddress.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:17:20: error: type 'BluetoothLinux.L2CAPSocket' does not conform to protocol 'Bluetooth.L2CAPSocket'
public final class L2CAPSocket: Bluetooth.L2CAPSocket {
                   ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Bluetooth/Sources/Bluetooth/L2CAPSocket.swift:35:10: note: protocol requires function 'close()' with type '() async -> ()'
    func close() async
         ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:145:83: error: extra argument 'sleep' in call
            try await fileDescriptor.connect(to: destinationSocketAddress, sleep: 100_000_000)
                                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:169:124: error: extra argument 'sleep' in call
        let (clientFileDescriptor, clientAddress) = try await socket.fileDescriptor.accept(L2CAPSocketAddress.self, sleep: 100_000_000)
                                                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: binary operator '~=' cannot be applied to two 'Socket.Event' operands
        case .pendingRead:
             ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: note: overloads for '~=' exist with these partially matching parameter lists: (Errno, Error)
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: reference to member 'pendingRead' cannot be resolved without a contextual type
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: error: pattern with associated values does not match enum case 'read'
        case let .read(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: note: remove associated values to make the pattern match
        case let .read(bytes):
                  ^   ~~~~~~~
                      
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: error: pattern with associated values does not match enum case 'write'
        case let .write(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: note: remove associated values to make the pattern match
        case let .write(bytes):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: error: pattern with associated values does not match enum case 'close'
        case let .close(error):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: note: remove associated values to make the pattern match
        case let .close(error):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:220:21: error: type 'L2CAPSocketEvent' has no member 'pendingRead'
            self = .pendingRead
                   ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:222:21: error: enum case 'read' has no associated values
            self = .read(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:224:21: error: enum case 'write' has no associated values
            self = .write(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:226:21: error: enum case 'close' has no associated values
            self = .close(error)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:71:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:83:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:14:15: error: type 'L2CAPSocketAddress' does not conform to protocol 'SocketAddress'
public struct L2CAPSocketAddress: Equatable, Hashable, BluetoothSocketAddress {
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:70:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:82:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> L2CAPSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> L2CAPSocketAddress')
    static func withUnsafePointer(
                ^
[4/23] Compiling BluetoothLinux HCIFileDescriptor.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:62:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:68:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:55:1: error: type 'HCISocketAddress' does not conform to protocol 'SocketAddress'
extension HCISocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:61:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:67:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> HCISocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> HCISocketAddress')
    static func withUnsafePointer(
                ^
[5/23] Compiling BluetoothLinux HCIPacketType.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:62:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:68:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:55:1: error: type 'HCISocketAddress' does not conform to protocol 'SocketAddress'
extension HCISocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:61:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:67:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> HCISocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> HCISocketAddress')
    static func withUnsafePointer(
                ^
[6/23] Compiling BluetoothLinux HCISocketAddress.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:62:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:68:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:55:1: error: type 'HCISocketAddress' does not conform to protocol 'SocketAddress'
extension HCISocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:61:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:67:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> HCISocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> HCISocketAddress')
    static func withUnsafePointer(
                ^
[7/23] Compiling BluetoothLinux RFCOMMDevice.swift
[8/23] Compiling BluetoothLinux RFCOMMFlag.swift
[9/23] Compiling BluetoothLinux RFCOMMLinkMode.swift
[10/25] Compiling BluetoothLinux RFCOMMSocketOption.swift
[11/25] Compiling BluetoothLinux RFCOMMState.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/26] Emitting module BluetoothLinux
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:62:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:68:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:55:1: error: type 'HCISocketAddress' does not conform to protocol 'SocketAddress'
extension HCISocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:61:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:67:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> HCISocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> HCISocketAddress')
    static func withUnsafePointer(
                ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/Internal/Darwin.swift:13:10: warning: This module will only run on Linux
#warning("This module will only run on Linux")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:17:20: error: type 'BluetoothLinux.L2CAPSocket' does not conform to protocol 'Bluetooth.L2CAPSocket'
public final class L2CAPSocket: Bluetooth.L2CAPSocket {
                   ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Bluetooth/Sources/Bluetooth/L2CAPSocket.swift:35:10: note: protocol requires function 'close()' with type '() async -> ()'
    func close() async
         ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:71:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:83:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:14:15: error: type 'L2CAPSocketAddress' does not conform to protocol 'SocketAddress'
public struct L2CAPSocketAddress: Equatable, Hashable, BluetoothSocketAddress {
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:70:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:82:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> L2CAPSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> L2CAPSocketAddress')
    static func withUnsafePointer(
                ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: note: The missing import of module 'Socket' will be added implicitly
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: note: The missing import of module 'Socket' will be added implicitly
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:31:1: error: type 'RFCOMMSocketAddress' does not conform to protocol 'SocketAddress'
extension RFCOMMSocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:38:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:45:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> RFCOMMSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> RFCOMMSocketAddress')
    static func withUnsafePointer(
                ^
[13/27] Compiling BluetoothLinux RFCOMMGetDeviceInformation.swift
[14/27] Compiling BluetoothLinux RFCOMMCreateDevice.swift
[15/27] Compiling BluetoothLinux HCISocketOption.swift
[16/27] Compiling BluetoothLinux HostController.swift
[17/27] Compiling BluetoothLinux HCIDeviceDown.swift
[18/27] Compiling BluetoothLinux RFCOMMGetDeviceList.swift
[19/31] Compiling BluetoothLinux RFCOMMReleaseDevice.swift
[20/32] Compiling BluetoothLinux HCIDeviceInformation.swift
[21/32] Compiling BluetoothLinux HCIDeviceList.swift
[22/32] Compiling BluetoothLinux CSocketAddress.swift
[23/32] Compiling BluetoothLinux Darwin.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/Internal/Darwin.swift:13:10: warning: This module will only run on Linux
#warning("This module will only run on Linux")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[24/32] Compiling BluetoothLinux IOCTL.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/Internal/Darwin.swift:13:10: warning: This module will only run on Linux
#warning("This module will only run on Linux")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[25/32] Compiling BluetoothLinux SocketDescriptor.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/Internal/Darwin.swift:13:10: warning: This module will only run on Linux
#warning("This module will only run on Linux")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[26/32] Compiling BluetoothLinux RFCOMMSocket.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: note: The missing import of module 'Socket' will be added implicitly
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: note: The missing import of module 'Socket' will be added implicitly
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:31:1: error: type 'RFCOMMSocketAddress' does not conform to protocol 'SocketAddress'
extension RFCOMMSocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:38:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:45:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> RFCOMMSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> RFCOMMSocketAddress')
    static func withUnsafePointer(
                ^
[27/32] Compiling BluetoothLinux RFCOMMSocketAddress.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: note: The missing import of module 'Socket' will be added implicitly
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: note: The missing import of module 'Socket' will be added implicitly
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:31:1: error: type 'RFCOMMSocketAddress' does not conform to protocol 'SocketAddress'
extension RFCOMMSocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:38:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:45:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> RFCOMMSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> RFCOMMSocketAddress')
    static func withUnsafePointer(
                ^
[28/35] Compiling BluetoothLinux HCIFilterSocketOption.swift
[29/36] Compiling BluetoothLinux HostControllerIO.swift
[30/37] Compiling BluetoothLinux DevicePollEvent.swift
[31/37] Compiling BluetoothLinux HCIDeviceUp.swift
[32/37] Compiling BluetoothLinux DeviceCommand.swift
[33/37] Compiling BluetoothLinux DeviceRequest.swift
[34/41] Compiling BluetoothLinux HCIScan.swift
[35/42] Compiling BluetoothLinux CMTPIO.swift
[36/43] Compiling BluetoothLinux SocketOptionLevel.swift
[37/43] Compiling BluetoothLinux BNEPIO.swift
[38/43] Compiling BluetoothLinux RFCOMMIO.swift
[39/43] Compiling BluetoothLinux SocketOption.swift
[40/43] Compiling BluetoothLinux HIDPIO.swift
[41/43] Compiling BluetoothLinux L2CAPSocketOption.swift
[42/43] Compiling BluetoothLinux SocketProtocol.swift
[43/43] Compiling BluetoothLinux CInterop.swift
ShellOut encountered an error
Status code: 1
Message: ""
Output: "[0/1] Planning build
Building for debugging...
[1/21] Compiling BluetoothLinux L2CAPFileDescriptor.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:17:20: error: type 'BluetoothLinux.L2CAPSocket' does not conform to protocol 'Bluetooth.L2CAPSocket'
public final class L2CAPSocket: Bluetooth.L2CAPSocket {
                   ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Bluetooth/Sources/Bluetooth/L2CAPSocket.swift:35:10: note: protocol requires function 'close()' with type '() async -> ()'
    func close() async
         ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:145:83: error: extra argument 'sleep' in call
            try await fileDescriptor.connect(to: destinationSocketAddress, sleep: 100_000_000)
                                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:169:124: error: extra argument 'sleep' in call
        let (clientFileDescriptor, clientAddress) = try await socket.fileDescriptor.accept(L2CAPSocketAddress.self, sleep: 100_000_000)
                                                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: binary operator '~=' cannot be applied to two 'Socket.Event' operands
        case .pendingRead:
             ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: note: overloads for '~=' exist with these partially matching parameter lists: (Errno, Error)
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: reference to member 'pendingRead' cannot be resolved without a contextual type
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: error: pattern with associated values does not match enum case 'read'
        case let .read(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: note: remove associated values to make the pattern match
        case let .read(bytes):
                  ^   ~~~~~~~
                      
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: error: pattern with associated values does not match enum case 'write'
        case let .write(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: note: remove associated values to make the pattern match
        case let .write(bytes):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: error: pattern with associated values does not match enum case 'close'
        case let .close(error):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: note: remove associated values to make the pattern match
        case let .close(error):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:220:21: error: type 'L2CAPSocketEvent' has no member 'pendingRead'
            self = .pendingRead
                   ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:222:21: error: enum case 'read' has no associated values
            self = .read(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:224:21: error: enum case 'write' has no associated values
            self = .write(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:226:21: error: enum case 'close' has no associated values
            self = .close(error)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:71:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:83:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:14:15: error: type 'L2CAPSocketAddress' does not conform to protocol 'SocketAddress'
public struct L2CAPSocketAddress: Equatable, Hashable, BluetoothSocketAddress {
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:70:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:82:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> L2CAPSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> L2CAPSocketAddress')
    static func withUnsafePointer(
                ^
[2/21] Compiling BluetoothLinux L2CAPSocket.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:17:20: error: type 'BluetoothLinux.L2CAPSocket' does not conform to protocol 'Bluetooth.L2CAPSocket'
public final class L2CAPSocket: Bluetooth.L2CAPSocket {
                   ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Bluetooth/Sources/Bluetooth/L2CAPSocket.swift:35:10: note: protocol requires function 'close()' with type '() async -> ()'
    func close() async
         ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:145:83: error: extra argument 'sleep' in call
            try await fileDescriptor.connect(to: destinationSocketAddress, sleep: 100_000_000)
                                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:169:124: error: extra argument 'sleep' in call
        let (clientFileDescriptor, clientAddress) = try await socket.fileDescriptor.accept(L2CAPSocketAddress.self, sleep: 100_000_000)
                                                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: binary operator '~=' cannot be applied to two 'Socket.Event' operands
        case .pendingRead:
             ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: note: overloads for '~=' exist with these partially matching parameter lists: (Errno, Error)
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: reference to member 'pendingRead' cannot be resolved without a contextual type
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: error: pattern with associated values does not match enum case 'read'
        case let .read(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: note: remove associated values to make the pattern match
        case let .read(bytes):
                  ^   ~~~~~~~
                      
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: error: pattern with associated values does not match enum case 'write'
        case let .write(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: note: remove associated values to make the pattern match
        case let .write(bytes):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: error: pattern with associated values does not match enum case 'close'
        case let .close(error):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: note: remove associated values to make the pattern match
        case let .close(error):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:220:21: error: type 'L2CAPSocketEvent' has no member 'pendingRead'
            self = .pendingRead
                   ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:222:21: error: enum case 'read' has no associated values
            self = .read(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:224:21: error: enum case 'write' has no associated values
            self = .write(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:226:21: error: enum case 'close' has no associated values
            self = .close(error)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:71:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:83:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:14:15: error: type 'L2CAPSocketAddress' does not conform to protocol 'SocketAddress'
public struct L2CAPSocketAddress: Equatable, Hashable, BluetoothSocketAddress {
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:70:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:82:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> L2CAPSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> L2CAPSocketAddress')
    static func withUnsafePointer(
                ^
[3/21] Compiling BluetoothLinux L2CAPSocketAddress.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:17:20: error: type 'BluetoothLinux.L2CAPSocket' does not conform to protocol 'Bluetooth.L2CAPSocket'
public final class L2CAPSocket: Bluetooth.L2CAPSocket {
                   ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Bluetooth/Sources/Bluetooth/L2CAPSocket.swift:35:10: note: protocol requires function 'close()' with type '() async -> ()'
    func close() async
         ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:145:83: error: extra argument 'sleep' in call
            try await fileDescriptor.connect(to: destinationSocketAddress, sleep: 100_000_000)
                                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:169:124: error: extra argument 'sleep' in call
        let (clientFileDescriptor, clientAddress) = try await socket.fileDescriptor.accept(L2CAPSocketAddress.self, sleep: 100_000_000)
                                                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: binary operator '~=' cannot be applied to two 'Socket.Event' operands
        case .pendingRead:
             ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: note: overloads for '~=' exist with these partially matching parameter lists: (Errno, Error)
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:219:15: error: reference to member 'pendingRead' cannot be resolved without a contextual type
        case .pendingRead:
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: error: pattern with associated values does not match enum case 'read'
        case let .read(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:221:19: note: remove associated values to make the pattern match
        case let .read(bytes):
                  ^   ~~~~~~~
                      
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: error: pattern with associated values does not match enum case 'write'
        case let .write(bytes):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:223:19: note: remove associated values to make the pattern match
        case let .write(bytes):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: error: pattern with associated values does not match enum case 'close'
        case let .close(error):
                  ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:225:19: note: remove associated values to make the pattern match
        case let .close(error):
                  ^    ~~~~~~~
                       
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:220:21: error: type 'L2CAPSocketEvent' has no member 'pendingRead'
            self = .pendingRead
                   ~^~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:222:21: error: enum case 'read' has no associated values
            self = .read(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:224:21: error: enum case 'write' has no associated values
            self = .write(bytes)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:226:21: error: enum case 'close' has no associated values
            self = .close(error)
                    ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:71:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:83:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:14:15: error: type 'L2CAPSocketAddress' does not conform to protocol 'SocketAddress'
public struct L2CAPSocketAddress: Equatable, Hashable, BluetoothSocketAddress {
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:70:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:82:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> L2CAPSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> L2CAPSocketAddress')
    static func withUnsafePointer(
                ^
[4/23] Compiling BluetoothLinux HCIFileDescriptor.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:62:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:68:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:55:1: error: type 'HCISocketAddress' does not conform to protocol 'SocketAddress'
extension HCISocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:61:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:67:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> HCISocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> HCISocketAddress')
    static func withUnsafePointer(
                ^
[5/23] Compiling BluetoothLinux HCIPacketType.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:62:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:68:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:55:1: error: type 'HCISocketAddress' does not conform to protocol 'SocketAddress'
extension HCISocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:61:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:67:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> HCISocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> HCISocketAddress')
    static func withUnsafePointer(
                ^
[6/23] Compiling BluetoothLinux HCISocketAddress.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:62:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:68:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:55:1: error: type 'HCISocketAddress' does not conform to protocol 'SocketAddress'
extension HCISocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:61:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:67:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> HCISocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> HCISocketAddress')
    static func withUnsafePointer(
                ^
[7/23] Compiling BluetoothLinux RFCOMMDevice.swift
[8/23] Compiling BluetoothLinux RFCOMMFlag.swift
[9/23] Compiling BluetoothLinux RFCOMMLinkMode.swift
[10/25] Compiling BluetoothLinux RFCOMMSocketOption.swift
[11/25] Compiling BluetoothLinux RFCOMMState.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/26] Emitting module BluetoothLinux
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:62:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:68:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:55:1: error: type 'HCISocketAddress' does not conform to protocol 'SocketAddress'
extension HCISocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:61:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/HCI/HCISocketAddress.swift:67:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> HCISocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> HCISocketAddress')
    static func withUnsafePointer(
                ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/Internal/Darwin.swift:13:10: warning: This module will only run on Linux
#warning("This module will only run on Linux")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocket.swift:17:20: error: type 'BluetoothLinux.L2CAPSocket' does not conform to protocol 'Bluetooth.L2CAPSocket'
public final class L2CAPSocket: Bluetooth.L2CAPSocket {
                   ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Bluetooth/Sources/Bluetooth/L2CAPSocket.swift:35:10: note: protocol requires function 'close()' with type '() async -> ()'
    func close() async
         ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:71:39: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:83:48: warning: cannot use type alias 'SocketAddress' here; 'Socket' was not imported by this file
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/CInterop.swift:57:15: note: type declared here
    typealias SocketAddress = sockaddr
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:14:15: error: type 'L2CAPSocketAddress' does not conform to protocol 'SocketAddress'
public struct L2CAPSocketAddress: Equatable, Hashable, BluetoothSocketAddress {
              ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:70:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/L2CAP/L2CAPSocketAddress.swift:82:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> L2CAPSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> L2CAPSocketAddress')
    static func withUnsafePointer(
                ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: note: The missing import of module 'Socket' will be added implicitly
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: note: The missing import of module 'Socket' will be added implicitly
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:31:1: error: type 'RFCOMMSocketAddress' does not conform to protocol 'SocketAddress'
extension RFCOMMSocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:38:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:45:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> RFCOMMSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> RFCOMMSocketAddress')
    static func withUnsafePointer(
                ^
[13/27] Compiling BluetoothLinux RFCOMMGetDeviceInformation.swift
[14/27] Compiling BluetoothLinux RFCOMMCreateDevice.swift
[15/27] Compiling BluetoothLinux HCISocketOption.swift
[16/27] Compiling BluetoothLinux HostController.swift
[17/27] Compiling BluetoothLinux HCIDeviceDown.swift
[18/27] Compiling BluetoothLinux RFCOMMGetDeviceList.swift
[19/31] Compiling BluetoothLinux RFCOMMReleaseDevice.swift
[20/32] Compiling BluetoothLinux HCIDeviceInformation.swift
[21/32] Compiling BluetoothLinux HCIDeviceList.swift
[22/32] Compiling BluetoothLinux CSocketAddress.swift
[23/32] Compiling BluetoothLinux Darwin.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/Internal/Darwin.swift:13:10: warning: This module will only run on Linux
#warning("This module will only run on Linux")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[24/32] Compiling BluetoothLinux IOCTL.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/Internal/Darwin.swift:13:10: warning: This module will only run on Linux
#warning("This module will only run on Linux")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[25/32] Compiling BluetoothLinux SocketDescriptor.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/Internal/Darwin.swift:13:10: warning: This module will only run on Linux
#warning("This module will only run on Linux")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[26/32] Compiling BluetoothLinux RFCOMMSocket.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: note: The missing import of module 'Socket' will be added implicitly
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: note: The missing import of module 'Socket' will be added implicitly
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:31:1: error: type 'RFCOMMSocketAddress' does not conform to protocol 'SocketAddress'
extension RFCOMMSocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:38:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:45:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> RFCOMMSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> RFCOMMSocketAddress')
    static func withUnsafePointer(
                ^
[27/32] Compiling BluetoothLinux RFCOMMSocketAddress.swift
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:39:39: note: The missing import of module 'Socket' will be added implicitly
      _ body: (UnsafePointer<CInterop.SocketAddress>, UInt32) throws -> Result
                                      ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: warning: type alias 'SocketAddress' cannot be used in an '@_alwaysEmitIntoClient' function because 'Socket' was not imported by this file; this is an error in Swift 6
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:46:48: note: The missing import of module 'Socket' will be added implicitly
        _ body: (UnsafeMutablePointer<CInterop.SocketAddress>, UInt32) throws -> ()
                                               ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:31:1: error: type 'RFCOMMSocketAddress' does not conform to protocol 'SocketAddress'
extension RFCOMMSocketAddress: BluetoothSocketAddress {
^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:38:17: note: candidate operates on an instance, not a type as required
    public func withUnsafePointer<Result>(
                ^
    static 
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/BluetoothLinux/RFCOMM/RFCOMMSocketAddress.swift:45:24: note: candidate throws, but protocol does not allow it
    public static func withUnsafePointer(
                       ^
/Users/builder/builds/o86TiJKT/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Socket/Sources/Socket/System/SocketAddress.swift:14:17: note: protocol requires function 'withUnsafePointer' with type '(UnsafeMutablePointer<CInterop.SocketAddress>) -> RFCOMMSocketAddress' (aka '(UnsafeMutablePointer<sockaddr>) -> RFCOMMSocketAddress')
    static func withUnsafePointer(
                ^
[28/35] Compiling BluetoothLinux HCIFilterSocketOption.swift
[29/36] Compiling BluetoothLinux HostControllerIO.swift
[30/37] Compiling BluetoothLinux DevicePollEvent.swift
[31/37] Compiling BluetoothLinux HCIDeviceUp.swift
[32/37] Compiling BluetoothLinux DeviceCommand.swift
[33/37] Compiling BluetoothLinux DeviceRequest.swift
[34/41] Compiling BluetoothLinux HCIScan.swift
[35/42] Compiling BluetoothLinux CMTPIO.swift
[36/43] Compiling BluetoothLinux SocketOptionLevel.swift
[37/43] Compiling BluetoothLinux BNEPIO.swift
[38/43] Compiling BluetoothLinux RFCOMMIO.swift
[39/43] Compiling BluetoothLinux SocketOption.swift
[40/43] Compiling BluetoothLinux HIDPIO.swift
[41/43] Compiling BluetoothLinux L2CAPSocketOption.swift
[42/43] Compiling BluetoothLinux SocketProtocol.swift
[43/43] Compiling BluetoothLinux CInterop.swift"
BUILD FAILURE 5.8 macosSpm

Build Machine: Mac 5