Subject: CVS commit: pkgsrc/devel
From: Adam Ciarcinski
Date: 2023-04-07 07:25:21
Message id: 20230407052523.4E421FA84@cvs.NetBSD.org

Log Message:
py-pyobjc: updated to 9.0.1

Version 9.0.1
* Fix metadata for \ 
webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler: \ 
and \ 
webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler: \ 
in the WebKit bindings.

* Reintroduce support for bridgesupport files that was dropped in 9.0.

There are external users for this interface and the replacement used by PyObjC \ 
itself is not yet in a state where it can be used by other projects.

Framework bindings were updated for the SDK included in Xcode 14.1

* Fix bad markup in overview of wrapped frameworks

* Fix compile error with Python 3.12

Version 9.0
Support for macOS 13 (Xcode 14 beta 4)

Updated framework bindings for macOS 13

The list below lists the frameworks that have API changes that affect the \ 
framework bindings.

Added bindings for the following frameworks (all new in macOS 13):

AVRouting
BackgroundAssets
ExtensionKit
HealthKit
MetalFX
SafetyKit
SharedWithYou
SharedWithYouCore
ThreadNetwork
The definition of a number of basic structs has moved in the SDK for macOS 13 \ 
and PyObjC conforms to this change on all platforms.

In particular:

CGPoint, CGSize, CGVector, CGRect, CGAffineTransform and \ 
CGAffineTransformComponents are now defined in the CoreFoundation module.
NSPoint, NSSize and NSRect are now aliases for the corresponding CG* types
(instead of the other way around in previous versions of PyObjC).
Both changes should require no changes to scripts, unless code relies on the \ 
particular __name__ of a type.

The extension API (“pyobjc-api.h”) now has nullability annotations, which \ 
may lead to compilation errors or warnings when compiling 3th-party extensions \ 
using this API.

The extension API (“pyobjc-api.h”) has a changed interface for creating \ 
method IMPs, because of this extensions for older versions of PyObjC cannot be \ 
used with PyObjC 9.

* PyObjC 9.0 requires Python 3.7 or later

* Remove support for BridgeSupport files

The bridge itself hasn’t used these files for a long time, and system \ 
bridgesupport files are basically unusable.

* Remove objc._setClassExtender

This was an internal function that’s no longer used by PyObjC itself.

* Remove -[OC_PythonNumber getValue:forType:]

This method is never actually used by the system and is not part of the NSNumber \ 
interface (but possibly was in the past)

* Removed bindings for the Message and ServerNotification frameworks.

Both frameworks were removed in macOS 10.9 and hence cannot be used on a \ 
platform that’s still supported by PyObjC.

* Removed the type attribute for ObjCPointer

The typestr attribute contains the same value and has more consistent naming \ 
with the rest of PyObjC.

* Quarrtz.CVPixelBufferCreateWithBytes now conforms to the PyObjC standard for \ 
returning values: it returns a tuple of two values, the C return value and the \ 
value return through pixelBufferOut.

In older versions the return value was only the value return through pixelBufferOut.

464: The encodings objc._C_NSBOOL and objc._C_BOOL are now treated exactly the \ 
same as the types BOOL and bool have the same size and representation on arm64 \ 
and x86_64.

* Add support for SIMD types in APIs (types such as vector_float3)

The python representation of these types are types with the same name in defined \ 
in objc.simd.

Because the FFI library used by PyObjC (libffi) does not support these types the \ 
bridge only supports the method signatures found in system frameworks, other \ 
signatures will result in exceptions at runtime.

The relevant libffi issue for this is 408. But note that even if that issue were \ 
to be fixed PyObjC likely won’t use SIMD support in libffi until that’s \ 
merged in the system version on macOS.

Because of the previous change APIs that have a SIMD type are now callable from \ 
Python.

Changes due to generic implementation for SIMD types:

SpriteKit.SK3DNode.projectPoint_: The result is now objc.simd.vector_float3 \ 
instead of a tuple
SpriteKit.SK3DNode.unprojectPoint_: The result is now objc.simd.vector_float3 \ 
instead of a tuple
SpriteKit.SKFieldNode.direction: The result is now objc.simd.vector_float3 \ 
instead of a tuple
SpriteKit.SKPhysicsWorld.sampleFieldsAt_: The result is now \ 
objc.simd.vector_float3 instead of a tuple
Still not supported (requires some more infrastructure):

SpriteKit.SKFieldNode.customFieldWithEvaluationBlock_
The registered metadata can now contain a key full_signature with the full \ 
encoding type signature for a method. This is used to replace the encoding \ 
extracted from the Objective-C runtime when one or more types have an empty \ 
encoding in the Objective-C runtime (such as the SIMD types mentioned earlier)

The Objective-C proxy for Python methods that require a custom helper (instead \ 
of using libffi) now use imp_implementationWithBlock.

* For a number of classes in AVFoundation the system actually uses instances \ 
from a parallel class hierarchy with _Tundra as a suffix of the class name.

Updated the metadata generator to automatically register the same metadata \ 
updates for these classes as for the original classes.

* Fix typos in CoreMedioIO metadata for CoreFoundation types

* Added two new assertions to PyObjCTools.TestSupport.TestCase:

assertArgIsIDLike
assertResultIsIDLike
These assert that the type of an argument or return value is a Objective-C or \ 
CoreFoundation object, or a pointer to one.

Fix internal error when an object that cannot be used in a boolean context is \ 
used for an ObjC argument that expects a bool or BOOL value.

* Fix incompatibility with Nuitka.

Earlier version of PyObjC failed when compiled using Nuitka, this version does \ 
work when using Nuitka 1.1.6 or later.

Limitations:

The automatic calculation of the method signature in selector() assumes that \ 
methods return id for Nuitka compiled code.

That should not be a problem in practice.

As a side effect of this builtin functions are accepted as the callable for a \ 
selector, even when not specifying a signature (e.g. objc.selector(dir) now \ 
works).

Fixed crash in objc.selector due to uninitialized memory.

Move helpers for NSInvocation from pyobjc-framework-Cocoa to pyobjc-core.

* Don’t use static buffer during creation of “native” selector objects

This can avoid an objc.error exception when introspecting existing Cocoa classes.

* Revert change that made it impossible to replace a method with a property.

Files:
RevisionActionfile
1.15modifypkgsrc/devel/py-pyobjc/Makefile.common
1.13modifypkgsrc/devel/py-pyobjc-framework-AVFoundation/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-AVKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-Accessibility/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-Accounts/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-AdServices/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-AdSupport/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-AddressBook/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-AppTrackingTransparency/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-AppleScriptKit/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-AppleScriptObjC/distinfo
1.4modifypkgsrc/devel/py-pyobjc-framework-ApplicationServices/PLIST
1.13modifypkgsrc/devel/py-pyobjc-framework-ApplicationServices/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-AudioVideoBridging/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-AuthenticationServices/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-AutomaticAssessmentConfiguration/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-Automator/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-BusinessChat/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-CFNetwork/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-CalendarStore/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-CallKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-ClassKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-CloudKit/distinfo
1.3modifypkgsrc/devel/py-pyobjc-framework-Cocoa/PLIST
1.15modifypkgsrc/devel/py-pyobjc-framework-Cocoa/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-Collaboration/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-ColorSync/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-Contacts/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-ContactsUI/distinfo
1.7modifypkgsrc/devel/py-pyobjc-framework-CoreAudio/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-CoreAudioKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-CoreBluetooth/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-CoreData/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-CoreHaptics/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-CoreLocation/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-CoreMIDI/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-CoreML/distinfo
1.7modifypkgsrc/devel/py-pyobjc-framework-CoreMedia/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-CoreMediaIO/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-CoreMotion/PLIST
1.2modifypkgsrc/devel/py-pyobjc-framework-CoreMotion/distinfo
1.10modifypkgsrc/devel/py-pyobjc-framework-CoreServices/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-CoreSpotlight/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-CoreText/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-CoreWLAN/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-CryptoTokenKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-DVDPlayback/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-DataDetection/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-DeviceCheck/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-DictionaryServices/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-DiscRecording/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-DiscRecordingUI/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-DiskArbitration/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-EventKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-ExceptionHandling/PLIST
1.15modifypkgsrc/devel/py-pyobjc-framework-ExceptionHandling/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-ExecutionPolicy/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-ExternalAccessory/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-FSEvents/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-FileProvider/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-FileProviderUI/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-FinderSync/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-GameCenter/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-GameController/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-GameKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-GameplayKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-IMServicePlugIn/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-IOSurface/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-ImageCaptureCore/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-InputMethodKit/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-InstallerPlugins/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-InstantMessage/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-Intents/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-IntentsUI/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-KernelManagement/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-LatentSemanticMapping/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-LaunchServices/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-LinkPresentation/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-LocalAuthentication/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-LocalAuthenticationEmbeddedUI/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-MLCompute/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-MailKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-MapKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-MediaAccessibility/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-MediaLibrary/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-MediaPlayer/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-MediaToolbox/distinfo
1.7modifypkgsrc/devel/py-pyobjc-framework-Metal/distinfo
1.8modifypkgsrc/devel/py-pyobjc-framework-MetalKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-MetalPerformanceShaders/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-MetalPerformanceShadersGraph/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-MetricKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-ModelIO/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-MultipeerConnectivity/distinfo
1.7modifypkgsrc/devel/py-pyobjc-framework-NaturalLanguage/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-NetFS/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-Network/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-NetworkExtension/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-NotificationCenter/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-OSAKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-OSLog/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-OpenDirectory/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-PassKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-PencilKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-Photos/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-PhotosUI/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-PreferencePanes/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-PushKit/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-Quartz/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-QuickLookThumbnailing/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-ReplayKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-SafariServices/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-SceneKit/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-ScreenCaptureKit/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-ScreenSaver/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-ScreenTime/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-ScriptingBridge/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-SearchKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-Security/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-SecurityFoundation/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-SecurityInterface/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-ServiceManagement/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-Social/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-SoundAnalysis/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-Speech/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-SpriteKit/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-StoreKit/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-SyncServices/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-SystemConfiguration/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-SystemExtensions/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-UniformTypeIdentifiers/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-UserNotifications/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-UserNotificationsUI/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-VideoSubscriberAccount/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-VideoToolbox/distinfo
1.2modifypkgsrc/devel/py-pyobjc-framework-Virtualization/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-Vision/distinfo
1.15modifypkgsrc/devel/py-pyobjc-framework-WebKit/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-iTunesLibrary/distinfo
1.13modifypkgsrc/devel/py-pyobjc-framework-libdispatch/distinfo