The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ReactiveEmitter, reference 0.2.9 (eb544c), with Swift 6.2 for macOS (SPM) on 17 Jun 2025 21:00:22 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/omochi/reactiveemitter.git
Reference: 0.2.9
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/omochi/reactiveemitter
 * tag               0.2.9      -> FETCH_HEAD
HEAD is now at eb544ca ArrayProperty EditEvent
Cloned https://github.com/omochi/reactiveemitter.git
Revision (git rev-parse @):
eb544cab3cbca07f6293a202aa19bffba1d0d4fd
SUCCESS checkout https://github.com/omochi/reactiveemitter.git at 0.2.9
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/omochi/reactiveemitter.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/30] Compiling ReactiveEmitter Disposer.swift
[4/30] Compiling ReactiveEmitter DisposerProtocol.swift
[5/30] Compiling ReactiveEmitter EventSink.swift
[6/30] Compiling ReactiveEmitter LateInitProperty.swift
[7/30] Compiling ReactiveEmitter Property.swift
[8/30] Compiling ReactiveEmitter WeakProperty.swift
[9/30] Compiling ReactiveEmitter EventSource.swift
[10/30] Compiling ReactiveEmitter RangeReplaceableCollectionClass.swift
[11/30] Compiling ReactiveEmitter Box.swift
[12/32] Compiling ReactiveEmitter Bind.swift
[13/32] Compiling ReactiveEmitter Combine.swift
[14/32] Compiling ReactiveEmitter Debug.swift
[15/32] Compiling ReactiveEmitter LinkedList.swift
[16/32] Compiling ReactiveEmitter WeakBox.swift
[17/32] Emitting module ReactiveEmitter
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
   |                           `- note: 'Event' previously declared here
 4 |     public init() {
 5 |         syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
   :
52 |     }
53 |
54 |     private class Sink<Event> : EventSinkProtocol {
   |                        `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 |         public init(_ base: EventEmitter<Event>) {
56 |             self.emitter = base
[18/32] Compiling ReactiveEmitter CompositeDisposer.swift
[19/32] Compiling ReactiveEmitter DisposerBag.swift
[20/32] Compiling ReactiveEmitter FuncDisposer.swift
[21/32] Compiling ReactiveEmitter Never.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:43:17: warning: capture of non-sendable type 'TSource.Type' in an isolated closure
41 |         public func send(event t: T) {
42 |             observeQueue.async {
43 |                 self._send(event: t)
   |                 `- warning: capture of non-sendable type 'TSource.Type' in an isolated closure
44 |             }
45 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:41:21: warning: capture of non-sendable type 'TSource.Type' in an isolated closure
39 |         }
40 |
41 |         public func send(event t: T) {
   |                     `- warning: capture of non-sendable type 'TSource.Type' in an isolated closure
42 |             observeQueue.async {
43 |                 self._send(event: t)
[22/32] Compiling ReactiveEmitter ObserveOn.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:43:17: warning: capture of non-sendable type 'TSource.Type' in an isolated closure
41 |         public func send(event t: T) {
42 |             observeQueue.async {
43 |                 self._send(event: t)
   |                 `- warning: capture of non-sendable type 'TSource.Type' in an isolated closure
44 |             }
45 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:41:21: warning: capture of non-sendable type 'TSource.Type' in an isolated closure
39 |         }
40 |
41 |         public func send(event t: T) {
   |                     `- warning: capture of non-sendable type 'TSource.Type' in an isolated closure
42 |             observeQueue.async {
43 |                 self._send(event: t)
[23/32] Compiling ReactiveEmitter Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:43:17: warning: capture of non-sendable type 'TSource.Type' in an isolated closure
41 |         public func send(event t: T) {
42 |             observeQueue.async {
43 |                 self._send(event: t)
   |                 `- warning: capture of non-sendable type 'TSource.Type' in an isolated closure
44 |             }
45 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:41:21: warning: capture of non-sendable type 'TSource.Type' in an isolated closure
39 |         }
40 |
41 |         public func send(event t: T) {
   |                     `- warning: capture of non-sendable type 'TSource.Type' in an isolated closure
42 |             observeQueue.async {
43 |                 self._send(event: t)
[24/32] Compiling ReactiveEmitter FlatMapLatest.swift
[25/32] Compiling ReactiveEmitter Map.swift
[26/32] Compiling ReactiveEmitter Merge.swift
[27/32] Compiling ReactiveEmitter NopDisposer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
   |                           `- note: 'Event' previously declared here
 4 |     public init() {
 5 |         syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
   :
52 |     }
53 |
54 |     private class Sink<Event> : EventSinkProtocol {
   |                        `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 |         public init(_ base: EventEmitter<Event>) {
56 |             self.emitter = base
[28/32] Compiling ReactiveEmitter ArrayProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
   |                           `- note: 'Event' previously declared here
 4 |     public init() {
 5 |         syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
   :
52 |     }
53 |
54 |     private class Sink<Event> : EventSinkProtocol {
   |                        `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 |         public init(_ base: EventEmitter<Event>) {
56 |             self.emitter = base
[29/32] Compiling ReactiveEmitter EventEmitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
   |                           `- note: 'Event' previously declared here
 4 |     public init() {
 5 |         syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
   :
52 |     }
53 |
54 |     private class Sink<Event> : EventSinkProtocol {
   |                        `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 |         public init(_ base: EventEmitter<Event>) {
56 |             self.emitter = base
[30/32] Compiling ReactiveEmitter SubscribeOnce.swift
[31/32] Compiling ReactiveEmitter ValueOf.swift
[32/32] Compiling ReactiveEmitter ZipArray.swift
Build complete! (3.74s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ReactiveEmitter",
  "name" : "ReactiveEmitter",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ReactiveEmitter",
      "targets" : [
        "ReactiveEmitter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ReactiveEmitterTests",
      "module_type" : "SwiftTarget",
      "name" : "ReactiveEmitterTests",
      "path" : "Tests/ReactiveEmitterTests",
      "sources" : [
        "LinkedListTests.swift"
      ],
      "target_dependencies" : [
        "ReactiveEmitter"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ReactiveEmitter",
      "module_type" : "SwiftTarget",
      "name" : "ReactiveEmitter",
      "path" : "Sources/ReactiveEmitter",
      "product_memberships" : [
        "ReactiveEmitter"
      ],
      "sources" : [
        "Disposer/CompositeDisposer.swift",
        "Disposer/DisposerBag.swift",
        "Disposer/FuncDisposer.swift",
        "Disposer/NopDisposer.swift",
        "EventSource/ArrayProperty.swift",
        "EventSource/EventEmitter.swift",
        "EventSource/LateInitProperty.swift",
        "EventSource/Property.swift",
        "EventSource/WeakProperty.swift",
        "Operator/Bind.swift",
        "Operator/Combine.swift",
        "Operator/Debug.swift",
        "Operator/FlatMapLatest.swift",
        "Operator/Map.swift",
        "Operator/Merge.swift",
        "Operator/Never.swift",
        "Operator/ObserveOn.swift",
        "Operator/Sequence.swift",
        "Operator/SubscribeOnce.swift",
        "Operator/ValueOf.swift",
        "Operator/ZipArray.swift",
        "Type/Disposer.swift",
        "Type/DisposerProtocol.swift",
        "Type/EventSink.swift",
        "Type/EventSource.swift",
        "Type/RangeReplaceableCollectionClass.swift",
        "Util/Box.swift",
        "Util/LinkedList.swift",
        "Util/WeakBox.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.