The Swift Package Index logo.Swift Package Index

Build Information

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

Build Command

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

Build Log

[424/450] Compiling BluetoothLinux L2CAPFileDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[425/450] Compiling BluetoothLinux L2CAPSocket.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[426/450] Compiling BluetoothLinux L2CAPSocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[427/450] Compiling BluetoothLinux SCOSocket.swift
[428/450] Compiling BluetoothLinux SCOSocketOption.swift
[429/450] Compiling BluetoothLinux SocketAddress.swift
[430/450] Compiling BluetoothLinux SocketOption.swift
[431/450] Compiling BluetoothLinux SocketOptionLevel.swift
[432/450] Compiling BluetoothLinux SecuritySocketOption.swift
[433/450] Compiling BluetoothLinux SocketProtocol.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[434/450] Compiling BluetoothLinux HCIDeviceUp.swift
[435/450] Compiling BluetoothLinux HCIScan.swift
[436/450] Compiling BluetoothLinux HostControllerIO.swift
[437/450] Compiling BluetoothLinux HCIFilterSocketOption.swift
[438/450] Compiling BluetoothLinux HIDP.swift
[439/450] Compiling BluetoothLinux HIDPIO.swift
[440/450] Compiling BluetoothLinux DeviceDown.swift
[441/450] Compiling BluetoothLinux CInterop.swift
[442/450] Emitting module BluetoothLinux
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[443/450] Compiling BluetoothLinux HCIFileDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[444/450] Compiling BluetoothLinux HCIPacketType.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[445/450] Compiling BluetoothLinux HCISocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[446/450] Compiling BluetoothLinux HCISocketOption.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[447/450] Compiling BluetoothLinux HostController.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[448/450] Compiling BluetoothLinux HCIDeviceDown.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[449/450] Compiling BluetoothLinux HCIDeviceInformation.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[450/450] Compiling BluetoothLinux HCIDeviceList.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
ShellOut encountered an error
Status code: 1
Message: "Fetching https://github.com/PureSwift/Socket.git from cache
Fetched https://github.com/PureSwift/Socket.git (0.21s)
Fetching https://github.com/PureSwift/swift-system from cache
Fetched https://github.com/PureSwift/swift-system (0.16s)
Fetching https://github.com/PureSwift/Bluetooth.git from cache
Fetched https://github.com/PureSwift/Bluetooth.git (0.25s)
Computing version for https://github.com/PureSwift/Bluetooth.git
Computed https://github.com/PureSwift/Bluetooth.git at 6.4.0 (0.36s)
Creating working copy for https://github.com/PureSwift/Bluetooth.git
Working copy of https://github.com/PureSwift/Bluetooth.git resolved at 6.4.0
Creating working copy for https://github.com/PureSwift/swift-system
Working copy of https://github.com/PureSwift/swift-system resolved at feature/dynamic-lib
Creating working copy for https://github.com/PureSwift/Socket.git
Working copy of https://github.com/PureSwift/Socket.git resolved at main"
Output: "Building for debugging...
[0/4] Compiling CBluetoothLinux dummy.c
[1/4] Compiling CSocket shims.c
[2/4] Compiling CBluetoothLinuxTest dummy.c
[3/4] Compiling CSystem shims.c
[5/57] Compiling SystemPackage FilePathString.swift
[6/57] Compiling SystemPackage FilePathSyntax.swift
[7/57] Compiling SystemPackage FilePathWindows.swift
[8/60] Compiling SystemPackage Util+StringArray.swift
[9/60] Compiling SystemPackage Util.swift
[10/60] Compiling SystemPackage UtilConsumers.swift
[11/60] Compiling SystemPackage RawBuffer.swift
[12/60] Compiling SystemPackage Syscalls.swift
[13/60] Compiling SystemPackage WindowsSyscallAdapters.swift
[14/60] Compiling SystemPackage MachPort.swift
[15/60] Compiling SystemPackage PlatformString.swift
[16/60] Compiling SystemPackage SystemString.swift
[17/60] Compiling SystemPackage FilePermissions.swift
[18/60] Compiling SystemPackage Backcompat.swift
[19/60] Compiling SystemPackage CInterop.swift
[20/60] Compiling SystemPackage Errno.swift
[21/60] Compiling SystemPackage FileDescriptor.swift
[22/60] Compiling SystemPackage FileHelpers.swift
[23/60] Compiling SystemPackage FileOperations.swift
[24/60] Compiling SystemPackage FilePath.swift
[25/60] Compiling SystemPackage FilePathComponentView.swift
[26/60] Compiling Bluetooth UInt128.swift
[27/60] Compiling Bluetooth UInt24.swift
[28/60] Emitting module SystemPackage
[29/60] Compiling SystemPackage Constants.swift
[30/60] Compiling SystemPackage Exports.swift
[31/60] Compiling SystemPackage Mocking.swift
[32/99] Compiling Socket CInterop.swift
[33/99] Compiling Socket CSocketAddress.swift
[34/99] Compiling Socket Constants.swift
[35/99] Compiling Socket Errno.swift
[36/99] Compiling Socket FileChange.swift
[37/99] Compiling Socket FileEvent.swift
[38/104] Compiling Socket SocketOptionID.swift
[39/104] Compiling Socket SocketOptionLevel.swift
[40/104] Compiling Socket SocketProtocol.swift
[41/104] Compiling Socket IPv4Protocol.swift
[42/104] Compiling Socket IPv6Protocol.swift
[43/104] Compiling Socket SocketDescriptor.swift
[44/104] Compiling Socket SocketFlags.swift
[45/104] Compiling Socket SocketHelpers.swift
[46/104] Compiling Socket SocketOperations.swift
[47/104] Compiling Socket SocketOption.swift
[48/104] Emitting module Socket
[49/104] Compiling Socket FileFlags.swift
[50/104] Compiling Socket IOControl.swift
[51/104] Compiling Socket IODirection.swift
[52/104] Compiling Socket IOOperations.swift
[53/104] Compiling Socket IOType.swift
[54/104] Compiling Socket InternetProtocol.swift
[55/104] Compiling Socket LinkLayerProtocol.swift
[56/104] Compiling Socket UnixProtocol.swift
[57/104] Compiling Socket SocketType.swift
[58/104] Compiling Socket Syscalls.swift
[59/104] Compiling Socket Util.swift
[60/104] Compiling Socket IPv4SocketAddress.swift
[61/104] Compiling Socket IPv6SocketAddress.swift
[62/104] Compiling Socket LinkLayerSocketAddress.swift
[63/104] Compiling Socket UnixSocketAddress.swift
[64/104] Compiling Socket SocketAddressFamily.swift
[73/108] Compiling Socket MessageFlags.swift
[74/108] Compiling Socket NetworkInterface.swift
[75/108] Compiling Socket NetworkOrder.swift
[76/108] Compiling Socket Poll.swift
[81/108] Compiling Socket AsyncSocketManager.swift
[82/108] Compiling Socket CFSocketManager.swift
[83/108] Compiling Socket CInternetAddress.swift
[85/108] Compiling Socket SocketAddress.swift
[86/108] Compiling Socket Socket.swift
[87/108] Compiling Socket SocketContinuation.swift
[88/108] Compiling Socket SocketManager.swift
[100/108] Compiling Bluetooth Unit.swift
[101/108] Compiling Bluetooth UnitIdentifier.swift
[102/108] Compiling Bluetooth UnitIdentifierExtension.swift
[103/108] Compiling Bluetooth iBeacon.swift
[104/108] Emitting module Bluetooth
[109/154] Compiling BluetoothGAP GAPServiceData128BitUUID.swift
[110/154] Compiling BluetoothGAP GAPServiceData16BitUUID.swift
[111/154] Compiling BluetoothGAP GAPServiceData32BitUUID.swift
[112/154] Compiling BluetoothGAP GAPShortLocalName.swift
[113/154] Compiling BluetoothGAP GAPSimplePairingHashC.swift
[114/154] Compiling BluetoothGAP GAPSimplePairingRandomizerR.swift
[115/154] Compiling BluetoothGAP GAPAppearance.swift
[116/154] Compiling BluetoothGAP GAPAppearanceData.swift
[117/154] Compiling BluetoothGAP GAPChannelMapUpdateIndication.swift
[118/154] Compiling BluetoothGAP GAPClassOfDevice.swift
[119/154] Compiling BluetoothGAP GAPCompleteListOf128BitServiceClassUUIDs.swift
[120/154] Compiling BluetoothGAP GAPCompleteListOf16BitServiceClassUUIDs.swift
[121/154] Compiling BluetoothGAP GAPCompleteListOf32BitServiceClassUUIDs.swift
[122/154] Compiling BluetoothGAP GAPMeshMessage.swift
[123/154] Compiling BluetoothGAP GAPPBADV.swift
[124/154] Compiling BluetoothGAP GAPPublicTargetAddress.swift
[125/154] Compiling BluetoothGAP GAPRandomTargetAddress.swift
[126/154] Compiling BluetoothGAP GAPSecurityManagerOOBFlags.swift
[127/154] Compiling BluetoothGAP GAPSecurityManagerTKValue.swift
[128/154] Compiling BluetoothGAP GAPIncompleteListOf32BitServiceClassUUIDs.swift
[129/154] Compiling BluetoothGAP GAPIndoorPositioning.swift
[130/154] Compiling BluetoothGAP GAPLEDeviceAddress.swift
[131/154] Compiling BluetoothGAP GAPLERole.swift
[132/154] Compiling BluetoothGAP GAPLESecureConnectionsConfirmation.swift
[133/154] Compiling BluetoothGAP GAPLESecureConnectionsRandom.swift
[134/154] Compiling BluetoothGAP GAPLESupportedFeatures.swift
[135/154] Compiling BluetoothGAP GAPListOf128BitServiceSolicitationUUIDs.swift
[136/154] Compiling BluetoothGAP GAPListOf16BitServiceSolicitationUUIDs.swift
[137/154] Compiling BluetoothGAP GAPListOf32BitServiceSolicitationUUIDs.swift
[138/154] Compiling BluetoothGAP GAPManufacturerSpecificData.swift
[139/154] Compiling BluetoothGAP GAPMeshBeacon.swift
[140/160] Compiling BluetoothGAP Data.swift
[141/160] Compiling BluetoothGAP DataConvertible.swift
[142/160] Compiling BluetoothGAP Hexadecimal.swift
[143/160] Compiling BluetoothGAP Integer.swift
[144/160] Compiling BluetoothGAP UUID.swift
[145/160] Compiling BluetoothGAP GAP3DInformation.swift
[146/160] Compiling BluetoothGAP GAPAdvertisingInterval.swift
[147/160] Emitting module BluetoothGAP
[148/160] Compiling BluetoothGAP GAPCompleteLocalName.swift
[149/160] Compiling BluetoothGAP GAPData.swift
[150/160] Compiling BluetoothGAP GAPDataEncoder.swift
[151/160] Compiling BluetoothGAP GAPDataType.swift
[152/160] Compiling BluetoothGAP GAPFlags.swift
[153/160] Compiling BluetoothGAP GAPIncompleteListOf128BitServiceClassUUIDs.swift
[154/160] Compiling BluetoothGAP GAPIncompleteListOf16BitServiceClassUUIDs.swift
[155/160] Compiling BluetoothGAP GAPSlaveConnectionIntervalRange.swift
[156/160] Compiling BluetoothGAP GAPTransportDiscoveryData.swift
[157/160] Compiling BluetoothGAP GAPTxPowerLevel.swift
[158/160] Compiling BluetoothGAP GAPURI.swift
[159/160] Compiling BluetoothGAP GAPUUIDList.swift
[160/160] Compiling BluetoothGAP iBeacon.swift
[161/322] Compiling BluetoothHCI HCILESetPeriodicAdvertisingEnable.swift
[162/322] Compiling BluetoothHCI HCILESetPeriodicAdvertisingParameters.swift
[163/322] Compiling BluetoothHCI HCILESetPhy.swift
[164/322] Compiling BluetoothHCI HCILESetPrivacyMode.swift
[165/322] Compiling BluetoothHCI HCILESetRandomAddress.swift
[166/322] Compiling BluetoothHCI HCILESetResolvablePrivateAddressTimeout.swift
[167/322] Compiling BluetoothHCI HCILESetScanEnable.swift
[168/322] Compiling BluetoothHCI HCILESetScanParameters.swift
[169/322] Compiling BluetoothHCI HCILESetScanResponseData.swift
[170/322] Compiling BluetoothHCI HCILEStartEncryption.swift
[171/322] Compiling BluetoothHCI HCILETestEnd.swift
[172/322] Compiling BluetoothHCI HCILETransmitterTest.swift
[173/322] Compiling BluetoothHCI HCILEUpdateConnection.swift
[174/322] Compiling BluetoothHCI HCILEWriteRfPathCompensation.swift
[175/322] Compiling BluetoothHCI HCILEWriteSuggestedDefaultDataLength.swift
[176/322] Compiling BluetoothHCI HCILinkKeyNotification.swift
[177/322] Compiling BluetoothHCI HCILinkKeyRequest.swift
[178/322] Compiling BluetoothHCI HCILinkKeyRequestNegativeReply.swift
[179/322] Compiling BluetoothHCI HCILinkKeyRequestReply.swift
[180/322] Compiling BluetoothHCI HCILowEnergyMetaEvent.swift
[181/322] Compiling BluetoothHCI HCIMaxSlotsChange.swift
[182/322] Compiling BluetoothHCI HCIModeChange.swift
[183/322] Compiling BluetoothHCI HCINumberOfCompletedPackets.swift
[184/322] Emitting module BluetoothHCI
[185/322] Compiling BluetoothHCI HCILEPhyUpdateComplete.swift
[186/322] Compiling BluetoothHCI HCILERandom.swift
[187/322] Compiling BluetoothHCI HCILEReadAdvertisingChannelTxPower.swift
[188/322] Compiling BluetoothHCI HCILEReadBufferSize.swift
[189/322] Compiling BluetoothHCI HCILEReadChannelMap.swift
[190/322] Compiling BluetoothHCI HCILEReadLocalP256PublicKeyComplete.swift
[191/322] Compiling BluetoothHCI HCILEReadLocalResolvableAddressReturn.swift
[192/322] Compiling BluetoothHCI HCILEReadLocalSupportedFeatures.swift
[193/322] Compiling BluetoothHCI HCILEReadMaximumAdvertisingDataLength.swift
[194/322] Compiling BluetoothHCI HCILEReadMaximumDataLength.swift
[195/322] Compiling BluetoothHCI HCILEReadNumberOfSupportedAdvertisingSets.swift
[196/322] Compiling BluetoothHCI HCILEReadPeerResolvableAddressReturn.swift
[197/322] Compiling BluetoothHCI HCILEReadPeriodicAdvertisingListSize.swift
[198/322] Compiling BluetoothHCI HCILEReadPhy.swift
[199/322] Compiling BluetoothHCI HCILEReadRemoteUsedFeatures.swift
[200/322] Compiling BluetoothHCI HCILEReadRemoteUsedFeaturesComplete.swift
[201/322] Compiling BluetoothHCI HCILEReadResolvingListSize.swift
[202/322] Compiling BluetoothHCI HCILEReadRfPathCompensation.swift
[203/322] Compiling BluetoothHCI HCILEReadSuggestedDefaultDataLength.swift
[204/322] Compiling BluetoothHCI HCILEReadSupportedStates.swift
[205/322] Compiling BluetoothHCI HCILEReadTransmitPower.swift
[206/322] Compiling BluetoothHCI HCILEReadWhiteListSize.swift
[207/322] Compiling BluetoothHCI HCILEReceiverTest.swift
[208/389] Compiling BluetoothHCI HCICreateConnection.swift
[209/389] Compiling BluetoothHCI HCICreateConnectionCancel.swift
[210/389] Compiling BluetoothHCI HCIDeleteStoredLinkKey.swift
[211/389] Compiling BluetoothHCI HCIDisconnect.swift
[212/389] Compiling BluetoothHCI HCIDisconnectionComplete.swift
[213/389] Compiling BluetoothHCI HCIEncryptionChange.swift
[214/389] Compiling BluetoothHCI HCIEncryptionKeyRefreshComplete.swift
[215/389] Compiling BluetoothHCI HCIError.swift
[216/389] Compiling BluetoothHCI HCIEvent.swift
[217/389] Compiling BluetoothHCI HCIExitPeriodicInquiryMode.swift
[218/389] Compiling BluetoothHCI HCIGeneralEvent.swift
[219/389] Compiling BluetoothHCI HCIHoldMode.swift
[220/389] Compiling BluetoothHCI HCIIOCapabilityRequest.swift
[221/389] Compiling BluetoothHCI HCIIOCapabilityRequestReply.swift
[222/389] Compiling BluetoothHCI HCIIOCapabilityResponse.swift
[223/389] Compiling BluetoothHCI HCIInquiry.swift
[224/389] Compiling BluetoothHCI HCIInquiryCancel.swift
[225/389] Compiling BluetoothHCI HCIInquiryComplete.swift
[226/389] Compiling BluetoothHCI HCIInquiryResult.swift
[227/389] Compiling BluetoothHCI HCILEAddDeviceToPeriodicAdvertiserList.swift
[228/389] Compiling BluetoothHCI HCILEAddDeviceToResolvingList.swift
[229/389] Compiling BluetoothHCI HCILEAddDeviceToWhiteList.swift
[230/389] Compiling BluetoothHCI HCILEAdvertisingReport.swift
[231/389] Compiling BluetoothHCI HCIPINCodeRequest.swift
[232/389] Compiling BluetoothHCI HCIPINCodeRequestReply.swift
[233/389] Compiling BluetoothHCI HCIPacketHeader.swift
[234/389] Compiling BluetoothHCI HCIPageScanRepetitionMode.swift
[235/389] Compiling BluetoothHCI HCIPeriodicInquiryMode.swift
[236/389] Compiling BluetoothHCI HCIQoSSetup.swift
[237/389] Compiling BluetoothHCI HCIQoSSetupComplete.swift
[238/389] Compiling BluetoothHCI HCIReadClassOfDevice.swift
[239/389] Compiling BluetoothHCI HCIReadClockOffset.swift
[240/389] Compiling BluetoothHCI HCIReadClockOffsetComplete.swift
[241/389] Compiling BluetoothHCI HCIReadConnectionAcceptTimeout.swift
[242/389] Compiling BluetoothHCI HCIReadDataBlockSize.swift
[243/389] Compiling BluetoothHCI HCIReadDeviceAddress.swift
[244/389] Compiling BluetoothHCI HCIReadLMPHandle.swift
[245/389] Compiling BluetoothHCI HCIReadLocalName.swift
[246/389] Compiling BluetoothHCI HCIReadLocalSupportedFeatures.swift
[247/389] Compiling BluetoothHCI HCIReadLocalVersionInformation.swift
[248/389] Compiling BluetoothHCI HCIReadPageTimeout.swift
[249/389] Compiling BluetoothHCI HCIReadRemoteExtendedFeatures.swift
[250/389] Compiling BluetoothHCI HCIReadRemoteExtendedFeaturesComplete.swift
[251/389] Compiling BluetoothHCI HCIReadRemoteFeaturesComplete.swift
[252/389] Compiling BluetoothHCI HCIReadRemoteSupportedFeatures.swift
[253/389] Compiling BluetoothHCI HCIReadRemoteVersionInformation.swift
[254/389] Compiling BluetoothHCI HCILEAdvertisingSetTerminated.swift
[255/389] Compiling BluetoothHCI HCILEChannelSelectionAlgorithm.swift
[256/389] Compiling BluetoothHCI HCILEConnectionComplete.swift
[257/389] Compiling BluetoothHCI HCILEConnectionUpdateComplete.swift
[258/389] Compiling BluetoothHCI HCILECreateConnection.swift
[259/389] Compiling BluetoothHCI HCILEDataLengthChange.swift
[260/389] Compiling BluetoothHCI HCILEDirectedAdvertisingReport.swift
[261/389] Compiling BluetoothHCI HCILEEncrypt.swift
[262/389] Compiling BluetoothHCI HCILEEnhancedConnectionComplete.swift
[263/389] Compiling BluetoothHCI HCILEEnhancedReceiverTest.swift
[264/389] Compiling BluetoothHCI HCILEEnhancedTransmitterTest.swift
[265/389] Compiling BluetoothHCI HCILEExtendedAdvertisingReport.swift
[266/389] Compiling BluetoothHCI HCILEExtendedCreateConnection.swift
[267/389] Compiling BluetoothHCI HCILEGenerateDHKey.swift
[268/389] Compiling BluetoothHCI HCILEGenerateDHKeyComplete.swift
[269/389] Compiling BluetoothHCI HCILELongTermKeyRequest.swift
[270/389] Compiling BluetoothHCI HCILELongTermKeyRequestNegativeReply.swift
[271/389] Compiling BluetoothHCI HCILELongTermKeyRequestReply.swift
[272/389] Compiling BluetoothHCI HCILEPeriodicAdvertisingCreateSync.swift
[273/389] Compiling BluetoothHCI HCILEPeriodicAdvertisingReport.swift
[274/389] Compiling BluetoothHCI HCILEPeriodicAdvertisingSyncEstablished.swift
[275/389] Compiling BluetoothHCI HCILEPeriodicAdvertisingSyncLost.swift
[276/389] Compiling BluetoothHCI HCILEPeriodicAdvertisingTerminateSync.swift
[277/389] Compiling BluetoothHCI HCILERemoteConnectionParameterRequest.swift
[278/389] Compiling BluetoothHCI HCILERemoteConnectionParameterRequestNegativeReply.swift
[279/389] Compiling BluetoothHCI HCILERemoteConnectionParameterRequestReply.swift
[280/389] Compiling BluetoothHCI HCILERemoveAdvertisingSet.swift
[281/389] Compiling BluetoothHCI HCILERemoveDeviceFromResolvingList.swift
[282/389] Compiling BluetoothHCI HCILERemoveDeviceFromWhiteList.swift
[283/389] Compiling BluetoothHCI HCILERemoveDeviceToPeriodicAdvertiserList.swift
[284/389] Compiling BluetoothHCI HCILEScanRequestReceived.swift
[285/389] Compiling BluetoothHCI HCILESetAddressResolutionEnable.swift
[286/389] Compiling BluetoothHCI HCILESetAdvertiseEnable.swift
[287/389] Compiling BluetoothHCI HCILESetAdvertisingData.swift
[288/389] Compiling BluetoothHCI HCILESetAdvertisingParameters.swift
[289/389] Compiling BluetoothHCI HCILESetAdvertisingSetRandomAddress.swift
[290/389] Compiling BluetoothHCI HCILESetDataLength.swift
[291/389] Compiling BluetoothHCI HCILESetDefaultPhy.swift
[292/389] Compiling BluetoothHCI HCILESetEventMask.swift
[293/389] Compiling BluetoothHCI HCILESetExtendedAdvertisingData.swift
[294/389] Compiling BluetoothHCI HCILESetExtendedAdvertisingParameters.swift
[295/389] Compiling BluetoothHCI HCILESetExtendedScanEnable.swift
[296/389] Compiling BluetoothHCI HCILESetExtendedScanParameters.swift
[297/389] Compiling BluetoothHCI HCILESetExtendedScanResponseData.swift
[298/389] Compiling BluetoothHCI HCILESetHostChannelClassification.swift
[299/389] Compiling BluetoothHCI HCILESetPeriodicAdvertisingData.swift
[300/389] Compiling BluetoothHCI AdvertisingChannelHeader.swift
[301/389] Compiling BluetoothHCI AdvertisingInterval.swift
[302/389] Compiling BluetoothHCI BluetoothHostController.swift
[303/389] Compiling BluetoothHCI ChannelIdentifier.swift
[304/389] Compiling BluetoothHCI ConnectionAcceptTimeout.swift
[305/389] Compiling BluetoothHCI Bool.swift
[306/389] Compiling BluetoothHCI Data.swift
[307/389] Compiling BluetoothHCI DataConvertible.swift
[308/389] Compiling BluetoothHCI Hexadecimal.swift
[309/389] Compiling BluetoothHCI Integer.swift
[310/389] Compiling BluetoothHCI UUID.swift
[311/389] Compiling BluetoothHCI HCI.swift
[312/389] Compiling BluetoothHCI HCIAcceptConnectionRequest.swift
[313/389] Compiling BluetoothHCI HCIAuthenticationComplete.swift
[314/389] Compiling BluetoothHCI HCIAuthenticationRequested.swift
[315/389] Compiling BluetoothHCI HCIChangeConnectionPacketType.swift
[316/389] Compiling BluetoothHCI HCICommand.swift
[317/389] Compiling BluetoothHCI HCICommandComplete.swift
[318/389] Compiling BluetoothHCI HCICommandStatus.swift
[319/389] Compiling BluetoothHCI HCICommandTimeout.swift
[320/389] Compiling BluetoothHCI HCIConnectionComplete.swift
[321/389] Compiling BluetoothHCI HCIConnectionPacketTypeChange.swift
[322/389] Compiling BluetoothHCI HCIConnectionRequest.swift
[323/389] Compiling BluetoothHCI LowEnergyPhyOptions.swift
[324/389] Compiling BluetoothHCI LowEnergyResolvingList.swift
[325/389] Compiling BluetoothHCI LowEnergyRfRxPathCompensationValue.swift
[326/389] Compiling BluetoothHCI LowEnergyRfTxPathCompensationValue.swift
[327/389] Compiling BluetoothHCI LowEnergyRole.swift
[328/389] Compiling BluetoothHCI LowEnergyRxChannel.swift
[329/389] Compiling BluetoothHCI LowEnergyRxPhy.swift
[330/389] Compiling BluetoothHCI LowEnergyRxPhys.swift
[331/389] Compiling BluetoothHCI LowEnergyScanInterval.swift
[332/389] Compiling BluetoothHCI LowEnergyState.swift
[333/389] Compiling BluetoothHCI LowEnergySupervisionTimeout.swift
[334/389] Compiling BluetoothHCI LowEnergyTxChannel.swift
[335/389] Compiling BluetoothHCI LowEnergyTxPhy.swift
[336/389] Compiling BluetoothHCI LowEnergyTxPhys.swift
[337/389] Compiling BluetoothHCI LowEnergyTxPower.swift
[338/389] Compiling BluetoothHCI LowEnergyWhiteList.swift
[339/389] Compiling BluetoothHCI LowEnergyWhiteListDevice.swift
[340/389] Compiling BluetoothHCI PacketType.swift
[341/389] Compiling BluetoothHCI ProtocolServiceMultiplexer.swift
[342/389] Compiling BluetoothHCI StatusParametersCommand.swift
[343/389] Compiling BluetoothHCI VendorCommand.swift
[344/389] Compiling BluetoothHCI iBeacon.swift
[345/389] Compiling BluetoothHCI LMPFeature.swift
[346/389] Compiling BluetoothHCI LinkControlCommand.swift
[347/389] Compiling BluetoothHCI LinkPolicyCommand.swift
[348/389] Compiling BluetoothHCI LowEnergyAddressType.swift
[349/389] Compiling BluetoothHCI LowEnergyAdvertiserAddressType.swift
[350/389] Compiling BluetoothHCI LowEnergyAdvertising.swift
[351/389] Compiling BluetoothHCI LowEnergyAllPhys.swift
[352/389] Compiling BluetoothHCI LowEnergyChannelMap.swift
[353/389] Compiling BluetoothHCI LowEnergyClockAccuracy.swift
[354/389] Compiling BluetoothHCI LowEnergyCommand.swift
[355/389] Compiling BluetoothHCI LowEnergyConnection.swift
[356/389] Compiling BluetoothHCI LowEnergyConnectionInterval.swift
[357/389] Compiling BluetoothHCI LowEnergyConnectionIntervalRange.swift
[358/389] Compiling BluetoothHCI LowEnergyConnectionLatency.swift
[359/389] Compiling BluetoothHCI LowEnergyConnectionLength.swift
[360/389] Compiling BluetoothHCI LowEnergyEvent.swift
[361/389] Compiling BluetoothHCI LowEnergyFeature.swift
[362/389] Compiling BluetoothHCI LowEnergyFragmentPreference.swift
[363/389] Compiling BluetoothHCI LowEnergyMaxTxOctets.swift
[364/389] Compiling BluetoothHCI LowEnergyMaxTxTime.swift
[365/389] Compiling BluetoothHCI LowEnergyPacketPayload.swift
[366/389] Compiling BluetoothHCI LowEnergyPeerIdentifyAddressType.swift
[367/389] Compiling BluetoothHCI HCIReadRemoteVersionInformationComplete.swift
[368/389] Compiling BluetoothHCI HCIReadStoredLinkKey.swift
[369/389] Compiling BluetoothHCI HCIRejectConnectionRequest.swift
[370/389] Compiling BluetoothHCI HCIRemoteNameRequest.swift
[371/389] Compiling BluetoothHCI HCIRemoteNameRequestComplete.swift
[372/389] Compiling BluetoothHCI HCIReset.swift
[373/389] Compiling BluetoothHCI HCISetConnectionEncryption.swift
[374/389] Compiling BluetoothHCI HCISetEventFilter.swift
[375/389] Compiling BluetoothHCI HCISimplePairingComplete.swift
[376/389] Compiling BluetoothHCI HCIUserConfirmationRequest.swift
[377/389] Compiling BluetoothHCI HCIUserConfirmationRequestReply.swift
[378/389] Compiling BluetoothHCI HCIVersion.swift
[379/389] Compiling BluetoothHCI HCIWriteClassOfDevice.swift
[380/389] Compiling BluetoothHCI HCIWriteConnectionAcceptTimeout.swift
[381/389] Compiling BluetoothHCI HCIWriteLinkPolicySettings.swift
[382/389] Compiling BluetoothHCI HCIWriteLinkSupervisionTimeout.swift
[383/389] Compiling BluetoothHCI HCIWriteLocalName.swift
[384/389] Compiling BluetoothHCI HCIWritePageScanActivity.swift
[385/389] Compiling BluetoothHCI HCIWritePageScanType.swift
[386/389] Compiling BluetoothHCI HCIWritePageTimeout.swift
[387/389] Compiling BluetoothHCI HCIWriteScanEnable.swift
[388/389] Compiling BluetoothHCI HostControllerBasebandCommand.swift
[389/389] Compiling BluetoothHCI InformationalCommand.swift
[390/443] Compiling BluetoothLinux AddressType.swift
[391/443] Compiling BluetoothLinux BNEP.swift
[392/443] Compiling BluetoothLinux BNEPIO.swift
[393/443] Compiling BluetoothLinux CMTP.swift
[394/443] Compiling BluetoothLinux CMTPIO.swift
[395/443] Compiling BluetoothLinux Error.swift
[396/443] Compiling BluetoothLinux Sequence.swift
[397/443] Compiling BluetoothLinux DeviceCommand.swift
[398/443] Compiling BluetoothLinux DevicePollEvent.swift
[399/443] Compiling BluetoothLinux DeviceRequest.swift
[400/443] Compiling BluetoothLinux HCIBusType.swift
[401/443] Compiling BluetoothLinux HCIChannel.swift
[402/443] Compiling BluetoothLinux HCIControllerType.swift
[403/443] Compiling BluetoothLinux HCIDeviceEvent.swift
[404/443] Compiling BluetoothLinux HCIDeviceFlag.swift
[405/443] Compiling BluetoothLinux HCIDeviceOptions.swift
[406/443] Compiling BluetoothLinux L2CAPSocketOption.swift
[407/443] Compiling BluetoothLinux LinkMode.swift
[408/443] Compiling BluetoothLinux RFCOMMCreateDevice.swift
[409/443] Compiling BluetoothLinux RFCOMMGetDeviceInformation.swift
[410/443] Compiling BluetoothLinux RFCOMMGetDeviceList.swift
[411/443] Compiling BluetoothLinux RFCOMMIO.swift
[412/443] Compiling BluetoothLinux RFCOMMReleaseDevice.swift
[413/443] Compiling BluetoothLinux RFCOMMDevice.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[414/443] Compiling BluetoothLinux RFCOMMFlag.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[415/443] Compiling BluetoothLinux RFCOMMLinkMode.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[416/443] Compiling BluetoothLinux RFCOMMSocket.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[417/443] Compiling BluetoothLinux RFCOMMSocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[418/443] Compiling BluetoothLinux RFCOMMSocketOption.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[419/443] Compiling BluetoothLinux RFCOMMState.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[420/450] Compiling BluetoothLinux CSocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[421/450] Compiling BluetoothLinux Darwin.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[422/450] Compiling BluetoothLinux IOCTL.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[423/450] Compiling BluetoothLinux SocketDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[424/450] Compiling BluetoothLinux L2CAPFileDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[425/450] Compiling BluetoothLinux L2CAPSocket.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[426/450] Compiling BluetoothLinux L2CAPSocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[427/450] Compiling BluetoothLinux SCOSocket.swift
[428/450] Compiling BluetoothLinux SCOSocketOption.swift
[429/450] Compiling BluetoothLinux SocketAddress.swift
[430/450] Compiling BluetoothLinux SocketOption.swift
[431/450] Compiling BluetoothLinux SocketOptionLevel.swift
[432/450] Compiling BluetoothLinux SecuritySocketOption.swift
[433/450] Compiling BluetoothLinux SocketProtocol.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)[434/450] Compiling BluetoothLinux HCIDeviceUp.swift
[435/450] Compiling BluetoothLinux HCIScan.swift
[436/450] Compiling BluetoothLinux HostControllerIO.swift
[437/450] Compiling BluetoothLinux HCIFilterSocketOption.swift
[438/450] Compiling BluetoothLinux HIDP.swift
[439/450] Compiling BluetoothLinux HIDPIO.swift
[440/450] Compiling BluetoothLinux DeviceDown.swift
[441/450] Compiling BluetoothLinux CInterop.swift
[442/450] Emitting module BluetoothLinux
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[443/450] Compiling BluetoothLinux HCIFileDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[444/450] Compiling BluetoothLinux HCIPacketType.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[445/450] Compiling BluetoothLinux HCISocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[446/450] Compiling BluetoothLinux HCISocketOption.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[447/450] Compiling BluetoothLinux HostController.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[448/450] Compiling BluetoothLinux HCIDeviceDown.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[449/450] Compiling BluetoothLinux HCIDeviceInformation.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[450/450] Compiling BluetoothLinux HCIDeviceList.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^"
Retrying in 0.0 seconds ...
Building ... (attempt 2)
[0/1] Planning build
Building for debugging...
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1/21] Compiling BluetoothLinux RFCOMMDevice.swift
[2/21] Compiling BluetoothLinux RFCOMMFlag.swift
[3/21] Compiling BluetoothLinux RFCOMMLinkMode.swift
[4/21] Compiling BluetoothLinux HCIDeviceInformation.swift
[5/21] Compiling BluetoothLinux HCIDeviceList.swift
[6/21] Compiling BluetoothLinux CSocketAddress.swift
[7/21] Compiling BluetoothLinux HCISocketOption.swift
[8/21] Compiling BluetoothLinux HostController.swift
[9/21] Compiling BluetoothLinux HCIDeviceDown.swift
[10/21] Compiling BluetoothLinux Darwin.swift
/Users/builder/builds/o86TiJKT/1/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")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[11/21] Compiling BluetoothLinux IOCTL.swift
/Users/builder/builds/o86TiJKT/1/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")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[12/21] Compiling BluetoothLinux SocketDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13/21] Emitting module BluetoothLinux
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[14/21] Compiling BluetoothLinux RFCOMMSocket.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[15/21] Compiling BluetoothLinux RFCOMMSocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[16/21] Compiling BluetoothLinux HCIFileDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[17/21] Compiling BluetoothLinux HCIPacketType.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[18/21] Compiling BluetoothLinux HCISocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[19/21] Compiling BluetoothLinux L2CAPFileDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[20/21] Compiling BluetoothLinux L2CAPSocket.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[21/21] Compiling BluetoothLinux L2CAPSocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[22/30] Compiling BluetoothLinux RFCOMMSocketOption.swift
[23/30] Compiling BluetoothLinux RFCOMMState.swift
[24/31] Compiling BluetoothLinux RFCOMMGetDeviceList.swift
[25/31] Compiling BluetoothLinux DeviceCommand.swift
[26/31] Compiling BluetoothLinux RFCOMMReleaseDevice.swift
[27/31] Compiling BluetoothLinux RFCOMMGetDeviceInformation.swift
[28/31] Compiling BluetoothLinux DevicePollEvent.swift
[29/36] Compiling BluetoothLinux RFCOMMCreateDevice.swift
[30/36] Compiling BluetoothLinux DeviceRequest.swift
[31/38] Compiling BluetoothLinux HCIDeviceUp.swift
[32/39] Compiling BluetoothLinux BNEPIO.swift
[33/40] Compiling BluetoothLinux CMTPIO.swift
[34/40] Compiling BluetoothLinux HIDPIO.swift
[35/42] Compiling BluetoothLinux SocketOptionLevel.swift
[36/43] Compiling BluetoothLinux L2CAPSocketOption.swift
[37/43] Compiling BluetoothLinux SocketOption.swift
[38/43] Compiling BluetoothLinux RFCOMMIO.swift
[39/43] Compiling BluetoothLinux HCIScan.swift
[40/43] Compiling BluetoothLinux HostControllerIO.swift
[41/43] Compiling BluetoothLinux HCIFilterSocketOption.swift
[42/43] Compiling BluetoothLinux CInterop.swift
[43/43] Compiling BluetoothLinux SocketProtocol.swift
ShellOut encountered an error
Status code: 1
Message: ""
Output: "[0/1] Planning build
Building for debugging...
error: emit-module command failed with exit code 1 (use -v to see invocation)[1/21] Compiling BluetoothLinux RFCOMMDevice.swift
[2/21] Compiling BluetoothLinux RFCOMMFlag.swift
[3/21] Compiling BluetoothLinux RFCOMMLinkMode.swift
[4/21] Compiling BluetoothLinux HCIDeviceInformation.swift
[5/21] Compiling BluetoothLinux HCIDeviceList.swift
[6/21] Compiling BluetoothLinux CSocketAddress.swift
[7/21] Compiling BluetoothLinux HCISocketOption.swift
[8/21] Compiling BluetoothLinux HostController.swift
[9/21] Compiling BluetoothLinux HCIDeviceDown.swift
[10/21] Compiling BluetoothLinux Darwin.swift
/Users/builder/builds/o86TiJKT/1/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")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[11/21] Compiling BluetoothLinux IOCTL.swift
/Users/builder/builds/o86TiJKT/1/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")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[12/21] Compiling BluetoothLinux SocketDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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")
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[13/21] Emitting module BluetoothLinux
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[14/21] Compiling BluetoothLinux RFCOMMSocket.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[15/21] Compiling BluetoothLinux RFCOMMSocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[16/21] Compiling BluetoothLinux HCIFileDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[17/21] Compiling BluetoothLinux HCIPacketType.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[18/21] Compiling BluetoothLinux HCISocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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(
                ^
[19/21] Compiling BluetoothLinux L2CAPFileDescriptor.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[20/21] Compiling BluetoothLinux L2CAPSocket.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[21/21] Compiling BluetoothLinux L2CAPSocketAddress.swift
/Users/builder/builds/o86TiJKT/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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/1/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(
                ^
[22/30] Compiling BluetoothLinux RFCOMMSocketOption.swift
[23/30] Compiling BluetoothLinux RFCOMMState.swift
[24/31] Compiling BluetoothLinux RFCOMMGetDeviceList.swift
[25/31] Compiling BluetoothLinux DeviceCommand.swift
[26/31] Compiling BluetoothLinux RFCOMMReleaseDevice.swift
[27/31] Compiling BluetoothLinux RFCOMMGetDeviceInformation.swift
[28/31] Compiling BluetoothLinux DevicePollEvent.swift
[29/36] Compiling BluetoothLinux RFCOMMCreateDevice.swift
[30/36] Compiling BluetoothLinux DeviceRequest.swift
[31/38] Compiling BluetoothLinux HCIDeviceUp.swift
[32/39] Compiling BluetoothLinux BNEPIO.swift
[33/40] Compiling BluetoothLinux CMTPIO.swift
[34/40] Compiling BluetoothLinux HIDPIO.swift
[35/42] Compiling BluetoothLinux SocketOptionLevel.swift
[36/43] Compiling BluetoothLinux L2CAPSocketOption.swift
[37/43] Compiling BluetoothLinux SocketOption.swift
[38/43] Compiling BluetoothLinux RFCOMMIO.swift
[39/43] Compiling BluetoothLinux HCIScan.swift
[40/43] Compiling BluetoothLinux HostControllerIO.swift
[41/43] Compiling BluetoothLinux HCIFilterSocketOption.swift
[42/43] Compiling BluetoothLinux CInterop.swift
[43/43] Compiling BluetoothLinux SocketProtocol.swift"
BUILD FAILURE 5.7 macosSpm

Build Machine: Mac 5