Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
wants to merge 42 commits into from

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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants