Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Filed for reference – Steps taken to experiment with SPM#738

Closed
mokagio wants to merge 42 commits intotrunkfrom
mokagio/spm-experiment
Closed

Filed for reference – Steps taken to experiment with SPM#738
mokagio wants to merge 42 commits intotrunkfrom
mokagio/spm-experiment

Conversation

@mokagio
Copy link
Contributor

@mokagio mokagio commented Mar 1, 2024

No description provided.

Notice the commented out WPKitLog* calls.
Was hoping it helped by a `pod lib lint` error, but that wasn't the case
@dangermattic
Copy link
Collaborator

1 Warning
⚠️ This PR is larger than 300 lines of changes. Please consider splitting it into smaller PRs for easier and faster reviews.

Generated by 🚫 Danger

@mokagio
Copy link
Contributor Author

mokagio commented Mar 5, 2024

Closing. Unrelated developments in new internal tooling make investing in restructuring WordPressKit to be SPM compatible less attractive.

@mokagio mokagio closed this Mar 5, 2024
mokagio added a commit that referenced this pull request Mar 21, 2024
The SPM-compatible folder structure was giving me trouble when trying to
validate the `podspec`.

At first, I thought it was simply because
`WordPressComRESTAPIInterfacing.h` was not in a path known to CocoaPods.
But even after updating the `podspec` to:

```diff
@@ -18,9 +18,10 @@ Pod::Spec.new do |s|
   s.swift_version = '5.0'

   s.source        = { git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: s.version.to_s }
-  s.source_files  = 'WordPressKit/**/*.{h,m,swift}'
+
+  s.source_files  = 'WordPressKit/**/*.{h,m,swift}', 'Sources/**/*.{h,m,swift}'
+  s.public_header_files = 'Sources/**/include/*.h', 'WordPressKit/**/.h', 'WordPressKit/WordPressKit.h'
   s.private_header_files = 'WordPressKit/Private/*.h'
-  s.header_dir = 'WordPressKit'

   s.dependency 'NSObject-SafeExpectations', '~> 0.0.4'
   s.dependency 'wpxmlrpc', '~> 0.10'
```

I still got errors:

```
- ERROR | xcodebuild:  /var/folders/dq/cdqxvx3s5ps75564rpmb_dc00000gn/T/CocoaPods-Lint-20240321-63072-nntpgw-WordPressKit/DerivedData/App/Build/Products/Release-iphonesimulator/WordPressKit/WordPressKit.framework/Headers/WordPressKit.h:10:9: error: 'WordPressKit/ServiceRemoteWordPressComREST.h' file not found
```

In the proof of concept from
#738, the SPM
folder structure is compatible with CocoaPods. As such, I decided to
defer moving the files to when I can do it in one go.
mokagio added a commit that referenced this pull request Mar 22, 2024
The SPM-compatible folder structure was giving me trouble when trying to
validate the `podspec`.

At first, I thought it was simply because
`WordPressComRESTAPIInterfacing.h` was not in a path known to CocoaPods.
But even after updating the `podspec` to:

```diff
@@ -18,9 +18,10 @@ Pod::Spec.new do |s|
   s.swift_version = '5.0'

   s.source        = { git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: s.version.to_s }
-  s.source_files  = 'WordPressKit/**/*.{h,m,swift}'
+
+  s.source_files  = 'WordPressKit/**/*.{h,m,swift}', 'Sources/**/*.{h,m,swift}'
+  s.public_header_files = 'Sources/**/include/*.h', 'WordPressKit/**/.h', 'WordPressKit/WordPressKit.h'
   s.private_header_files = 'WordPressKit/Private/*.h'
-  s.header_dir = 'WordPressKit'

   s.dependency 'NSObject-SafeExpectations', '~> 0.0.4'
   s.dependency 'wpxmlrpc', '~> 0.10'
```

I still got errors:

```
- ERROR | xcodebuild:  /var/folders/dq/cdqxvx3s5ps75564rpmb_dc00000gn/T/CocoaPods-Lint-20240321-63072-nntpgw-WordPressKit/DerivedData/App/Build/Products/Release-iphonesimulator/WordPressKit/WordPressKit.framework/Headers/WordPressKit.h:10:9: error: 'WordPressKit/ServiceRemoteWordPressComREST.h' file not found
```

In the proof of concept from
#738, the SPM
folder structure is compatible with CocoaPods. As such, I decided to
defer moving the files to when I can do it in one go.
pmusolino pushed a commit to woocommerce/woocommerce-ios that referenced this pull request Feb 5, 2025
The SPM-compatible folder structure was giving me trouble when trying to
validate the `podspec`.

At first, I thought it was simply because
`WordPressComRESTAPIInterfacing.h` was not in a path known to CocoaPods.
But even after updating the `podspec` to:

```diff
@@ -18,9 +18,10 @@ Pod::Spec.new do |s|
   s.swift_version = '5.0'

   s.source        = { git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: s.version.to_s }
-  s.source_files  = 'WordPressKit/**/*.{h,m,swift}'
+
+  s.source_files  = 'WordPressKit/**/*.{h,m,swift}', 'Sources/**/*.{h,m,swift}'
+  s.public_header_files = 'Sources/**/include/*.h', 'WordPressKit/**/.h', 'WordPressKit/WordPressKit.h'
   s.private_header_files = 'WordPressKit/Private/*.h'
-  s.header_dir = 'WordPressKit'

   s.dependency 'NSObject-SafeExpectations', '~> 0.0.4'
   s.dependency 'wpxmlrpc', '~> 0.10'
```

I still got errors:

```
- ERROR | xcodebuild:  /var/folders/dq/cdqxvx3s5ps75564rpmb_dc00000gn/T/CocoaPods-Lint-20240321-63072-nntpgw-WordPressKit/DerivedData/App/Build/Products/Release-iphonesimulator/WordPressKit/WordPressKit.framework/Headers/WordPressKit.h:10:9: error: 'WordPressKit/ServiceRemoteWordPressComREST.h' file not found
```

In the proof of concept from
wordpress-mobile/WordPressKit-iOS#738, the SPM
folder structure is compatible with CocoaPods. As such, I decided to
defer moving the files to when I can do it in one go.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants