The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CommandCougar, reference 1.1.1 (33b021), with Swift 6.3 for macOS (SPM) on 21 Apr 2026 07:53:17 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/hypertalk/CommandCougar.git
Reference: 1.1.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/hypertalk/CommandCougar
 * tag               1.1.1      -> FETCH_HEAD
HEAD is now at 33b0211 Merge branch 'regexident-help-option'
Cloned https://github.com/hypertalk/CommandCougar.git
Revision (git rev-parse @):
33b0211120d2a4bd41c683516ec78cecc7c614cc
SUCCESS checkout https://github.com/hypertalk/CommandCougar.git at 1.1.1
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "commandcougar",
      "name": "CommandCougar",
      "url": "https://github.com/hypertalk/CommandCougar.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CommandCougar",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/hypertalk/CommandCougar.git
[1/234] Fetching commandcougar
Fetched https://github.com/hypertalk/CommandCougar.git from cache (0.75s)
Creating working copy for https://github.com/hypertalk/CommandCougar.git
Working copy of https://github.com/hypertalk/CommandCougar.git resolved at 1.1.1 (33b0211)
warning: '.resolve-product-dependencies': dependency 'commandcougar' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/hypertalk/CommandCougar.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/13] Compiling CommandCougar Parameter.swift
[4/13] Compiling CommandCougar FlagIndexable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:42:2: warning: 'public' modifier is redundant for subscript declared in a public extension
40 | 	///
41 | 	/// - Parameter flagName: The flagName
42 | 	public subscript (flagName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
43 | 		get {
44 | 			return first(where: { $0.flag == flagName })
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:60:2: warning: 'public' modifier is redundant for subscript declared in a public extension
58 | 	///
59 | 	/// - Parameter flag: The flag
60 | 	public subscript (flag: Option.Flag) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
61 | 		get {
62 | 			return first(where: { $0.flag == flag })
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:77:2: warning: 'public' modifier is redundant for subscript declared in a public extension
75 | 	///
76 | 	/// - Parameter flag: The flag
77 | 	public subscript (option: FlagIndexable) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
78 | 		get {
79 | 			return first(where: { $0.flag == option.flag })
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:88:2: warning: 'public' modifier is redundant for instance method declared in a public extension
86 | 	/// - Parameter element: The FlagIndexable we are looking for
87 | 	/// - Returns: True if found
88 | 	public func contains(_ element: FlagIndexable) -> Bool {
   |  `- warning: 'public' modifier is redundant for instance method declared in a public extension
89 | 		return contains(where: { $0.flag == element.flag })
90 | 	}
[5/13] Compiling CommandCougar OptionEvaluation.swift
[6/13] Compiling CommandCougar Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:31:2: warning: 'internal' modifier is redundant for property declared in an internal extension
29 |
30 | 	/// The string value of self
31 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
32 | 		return String(self)
33 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:39:2: warning: 'internal' modifier is redundant for property declared in an internal extension
37 |
38 | 	/// The string value of self
39 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
40 | 		return String(self)
41 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:47:2: warning: 'internal' modifier is redundant for property declared in an internal extension
45 |
46 | 	/// The second element in the Collection
47 | 	internal var second: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
48 | 		var a = self.makeIterator()
49 | 		let _ = a.next()
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:54:2: warning: 'internal' modifier is redundant for property declared in an internal extension
52 |
53 | 	/// The third element in the Collection
54 | 	internal var third: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
55 | 		var a = self.makeIterator()
56 | 		let _ = a.next()
[7/13] Compiling CommandCougar CommandIndexable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/CommandIndexable.swift:34:2: warning: 'public' modifier is redundant for subscript declared in a public extension
32 |
33 | public extension Array where Element: CommandIndexable {
34 | 	public subscript(commandName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
35 | 		get {
36 | 			return first(where: { $0.name == commandName })
[8/13] Compiling CommandCougar Option.swift
[9/13] Compiling CommandCougar Flag.swift
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Flag.swift:35:2: warning: 'public' modifier is redundant for enum declared in a public extension
33 | 	/// - long: A long entry would be --verbose
34 | 	/// - both: Both flags are allowed
35 | 	public enum Flag: Equatable, CustomStringConvertible {
   |  `- warning: 'public' modifier is redundant for enum declared in a public extension
36 | 		case short(String)
37 | 		case long(String)
[10/14] Emitting module CommandCougar
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/CommandIndexable.swift:34:2: warning: 'public' modifier is redundant for subscript declared in a public extension
32 |
33 | public extension Array where Element: CommandIndexable {
34 | 	public subscript(commandName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
35 | 		get {
36 | 			return first(where: { $0.name == commandName })
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:31:2: warning: 'internal' modifier is redundant for property declared in an internal extension
29 |
30 | 	/// The string value of self
31 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
32 | 		return String(self)
33 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:39:2: warning: 'internal' modifier is redundant for property declared in an internal extension
37 |
38 | 	/// The string value of self
39 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
40 | 		return String(self)
41 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:47:2: warning: 'internal' modifier is redundant for property declared in an internal extension
45 |
46 | 	/// The second element in the Collection
47 | 	internal var second: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
48 | 		var a = self.makeIterator()
49 | 		let _ = a.next()
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:54:2: warning: 'internal' modifier is redundant for property declared in an internal extension
52 |
53 | 	/// The third element in the Collection
54 | 	internal var third: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
55 | 		var a = self.makeIterator()
56 | 		let _ = a.next()
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/Flag.swift:35:2: warning: 'public' modifier is redundant for enum declared in a public extension
33 | 	/// - long: A long entry would be --verbose
34 | 	/// - both: Both flags are allowed
35 | 	public enum Flag: Equatable, CustomStringConvertible {
   |  `- warning: 'public' modifier is redundant for enum declared in a public extension
36 | 		case short(String)
37 | 		case long(String)
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:42:2: warning: 'public' modifier is redundant for subscript declared in a public extension
40 | 	///
41 | 	/// - Parameter flagName: The flagName
42 | 	public subscript (flagName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
43 | 		get {
44 | 			return first(where: { $0.flag == flagName })
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:60:2: warning: 'public' modifier is redundant for subscript declared in a public extension
58 | 	///
59 | 	/// - Parameter flag: The flag
60 | 	public subscript (flag: Option.Flag) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
61 | 		get {
62 | 			return first(where: { $0.flag == flag })
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:77:2: warning: 'public' modifier is redundant for subscript declared in a public extension
75 | 	///
76 | 	/// - Parameter flag: The flag
77 | 	public subscript (option: FlagIndexable) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
78 | 		get {
79 | 			return first(where: { $0.flag == option.flag })
/Users/admin/builder/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:88:2: warning: 'public' modifier is redundant for instance method declared in a public extension
86 | 	/// - Parameter element: The FlagIndexable we are looking for
87 | 	/// - Returns: True if found
88 | 	public func contains(_ element: FlagIndexable) -> Bool {
   |  `- warning: 'public' modifier is redundant for instance method declared in a public extension
89 | 		return contains(where: { $0.flag == element.flag })
90 | 	}
[11/14] Compiling CommandCougar Command.swift
[12/14] Compiling CommandCougar CommandCougar.swift
[13/14] Compiling CommandCougar CommandEvaluation.swift
[14/14] Compiling CommandCougar ParameterEvaluation.swift
Build complete! (4.96s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CommandCougar",
  "name" : "CommandCougar",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CommandCougar",
      "targets" : [
        "CommandCougar"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CommandCougarTests",
      "module_type" : "SwiftTarget",
      "name" : "CommandCougarTests",
      "path" : "Tests/CommandCougarTests",
      "sources" : [
        "CommandCougarTests.swift"
      ],
      "target_dependencies" : [
        "CommandCougar"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CommandCougar",
      "module_type" : "SwiftTarget",
      "name" : "CommandCougar",
      "path" : "Sources/CommandCougar",
      "product_memberships" : [
        "CommandCougar"
      ],
      "sources" : [
        "Command.swift",
        "CommandCougar.swift",
        "CommandEvaluation.swift",
        "CommandIndexable.swift",
        "Extensions.swift",
        "Flag.swift",
        "FlagIndexable.swift",
        "Option.swift",
        "OptionEvaluation.swift",
        "Parameter.swift",
        "ParameterEvaluation.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.