head 1.6; access; symbols pkgsrc-2023Q4:1.6.0.2 pkgsrc-2023Q4-base:1.6 pkgsrc-2023Q3:1.5.0.8 pkgsrc-2023Q3-base:1.5 pkgsrc-2023Q2:1.5.0.6 pkgsrc-2023Q2-base:1.5 pkgsrc-2023Q1:1.5.0.4 pkgsrc-2023Q1-base:1.5 pkgsrc-2022Q4:1.5.0.2 pkgsrc-2022Q4-base:1.5 pkgsrc-2022Q3:1.4.0.6 pkgsrc-2022Q3-base:1.4 pkgsrc-2022Q2:1.4.0.4 pkgsrc-2022Q2-base:1.4 pkgsrc-2022Q1:1.4.0.2 pkgsrc-2022Q1-base:1.4 pkgsrc-2021Q4:1.3.0.32 pkgsrc-2021Q4-base:1.3 pkgsrc-2021Q3:1.3.0.30 pkgsrc-2021Q3-base:1.3 pkgsrc-2021Q2:1.3.0.28 pkgsrc-2021Q2-base:1.3 pkgsrc-2021Q1:1.3.0.26 pkgsrc-2021Q1-base:1.3 pkgsrc-2020Q4:1.3.0.24 pkgsrc-2020Q4-base:1.3 pkgsrc-2020Q3:1.3.0.22 pkgsrc-2020Q3-base:1.3 pkgsrc-2020Q2:1.3.0.20 pkgsrc-2020Q2-base:1.3 pkgsrc-2020Q1:1.3.0.16 pkgsrc-2020Q1-base:1.3 pkgsrc-2019Q4:1.3.0.18 pkgsrc-2019Q4-base:1.3 pkgsrc-2019Q3:1.3.0.14 pkgsrc-2019Q3-base:1.3 pkgsrc-2019Q2:1.3.0.12 pkgsrc-2019Q2-base:1.3 pkgsrc-2019Q1:1.3.0.10 pkgsrc-2019Q1-base:1.3 pkgsrc-2018Q4:1.3.0.8 pkgsrc-2018Q4-base:1.3 pkgsrc-2018Q3:1.3.0.6 pkgsrc-2018Q3-base:1.3 pkgsrc-2018Q2:1.3.0.4 pkgsrc-2018Q2-base:1.3 pkgsrc-2018Q1:1.3.0.2 pkgsrc-2018Q1-base:1.3 pkgsrc-2017Q4:1.2.0.16 pkgsrc-2017Q4-base:1.2 pkgsrc-2017Q3:1.2.0.14 pkgsrc-2017Q3-base:1.2 pkgsrc-2017Q2:1.2.0.10 pkgsrc-2017Q2-base:1.2 pkgsrc-2017Q1:1.2.0.8 pkgsrc-2017Q1-base:1.2 pkgsrc-2016Q4:1.2.0.6 pkgsrc-2016Q4-base:1.2 pkgsrc-2016Q3:1.2.0.4 pkgsrc-2016Q3-base:1.2 pkgsrc-2016Q2:1.2.0.2 pkgsrc-2016Q2-base:1.2 pkgsrc-2016Q1:1.1.0.8 pkgsrc-2016Q1-base:1.1 pkgsrc-2015Q4:1.1.0.6 pkgsrc-2015Q4-base:1.1 pkgsrc-2015Q3:1.1.0.4 pkgsrc-2015Q3-base:1.1 pkgsrc-2015Q2:1.1.0.2 pkgsrc-2015Q2-base:1.1; locks; strict; comment @# @; 1.6 date 2023.11.19.17.02.54; author adam; state Exp; branches; next 1.5; commitid qxrpVORZMVPo4fNE; 1.5 date 2022.09.27.18.12.51; author adam; state Exp; branches; next 1.4; commitid NlsfAUJrqLwjTwVD; 1.4 date 2022.01.04.20.53.26; author wiz; state Exp; branches; next 1.3; commitid CYyhdK9qtoffkmnD; 1.3 date 2018.02.08.19.54.21; author adam; state Exp; branches; next 1.2; commitid PDvL9sTj8FZqQ5qA; 1.2 date 2016.06.08.17.43.30; author wiz; state Exp; branches; next 1.1; commitid z4yEulWexjFaJG9z; 1.1 date 2015.04.25.10.40.49; author adam; state Exp; branches; next ; commitid K2mvC5fNn00bzXiy; desc @@ 1.6 log @py-pyobjc*: updated to 10.0 Version 10.0 Update bindings for macOS 14 Symbols newly introduced in macOS 14 were added to the existing bindings, and the following new bindings were introduced: Cinematic MediaExtension SensitiveContentAnalysis Symbols The “IMServicePlugIn” bindings are no longer available The entire framework was deprecated in macOS 10.13 and removed in macOS 14. The bindings can not be build using the latest SDK, and had (at best) limited use. PyObjC 10 requires Python 3.8 and no longer supports Python 3.7 Removed all MAC_OS_X_VERSION* constants from objc. These constants are needed in practice (switch to objc.available() to check for platform availability), and caused unnecessary code churn. The value for objc.options.deprecation_warnings is now a string instead of an integer. Fix unintended incompatibility with pytest in PyObjCTools.TestSupport The lazy loading machinery by default no longer uses objc.ObjCLazyModule, but uses module level __dir__ and __getattr__ instead. The class objc.ObjCLazyModule is still available, but is deprecated As a side effect of this objc is no longer an attribute of framework binding packages (e.g Foundation.objc is no longer a valid attribute). Another side effect of this is that all attributes added by the import system are now correctly present in the packages for framework bindings. And a final side effect is that private symbols (prefixed with underscore) are no longer imported from dependencies of framework bindings (more closely matching the from dependency import * behaviour that the lazy importer emulates. Add attribute __framework_identifier__ to all framework bindings with the identifier of the corresponding system framework. Introduce objc.createFrameworkDirAndGetattr() to create module level __dir__ and __getattr__ for use by framework bindings. Tests now validate the bundle identifier value used in framework bindings. This resulted in a number of changes to framework bindings with incorrect bundle identifier values. This shouldn’t affect user code because the bundle loader falls back on the framework path when the identifier cannot be found. Avoid test failures in pyobjc-core when pyobjc-framework-Quartz is not installed. A number of classes can no longer be subclasses in Python because they are marked as non-subclassable in the macOS 14 SDK (either directly or as “subclassing is deprecated”: CKAllowedSharingOptions, CKAsset, CKContainer, CKDatabase, CKDatabaseNotification, CKDatabaseSubscription, CKFetchRecordZoneChangesConfiguration, CKNotification, CKNotificationID, CKNotificationInfo, CKOperationConfiguration, CKOperationGroup, CKQuery, CKQueryCursor, CKQueryNotification, CKQuerySubscription, CKRecord, CKRecordID, CKRecordZone, CKRecordZoneID, CKRecordZoneNotification, CKRecordZoneSubscription, CKReference, CKServerChangeToken, CKShare, CKShareMetadata, CKShareParticipant, CKSubscription, CKSyncEngine, CKSyncEngineAccountChangeEvent, CKSyncEngineConfiguration, CKSyncEngineDidFetchChangesEvent, CKSyncEngineDidFetchRecordZoneChangesEvent, CKSyncEngineDidSendChangesEvent, CKSyncEngineEvent, CKSyncEngineFailedRecordSave, CKSyncEngineFailedZoneSave, CKSyncEngineFetchChangesOptions, CKSyncEngineFetchedDatabaseChangesEvent, CKSyncEngineFetchedRecordDeletion, CKSyncEngineFetchedRecordZoneChangesEvent, CKSyncEngineFetchedZoneDeletion, CKSyncEnginePendingDatabaseChange, CKSyncEnginePendingRecordZoneChange, CKSyncEnginePendingZoneDelete, CKSyncEnginePendingZoneSave, CKSyncEngineRecordZoneChangeBatch, CKSyncEngineSendChangesContext, CKSyncEngineSendChangesOptions, CKSyncEngineSentDatabaseChangesEvent, CKSyncEngineSentRecordZoneChangesEvent, CKSyncEngineState, CKSyncEngineStateSerialization, CKSyncEngineStateUpdateEvent, CKSyncEngineWillFetchChangesEvent, CKSyncEngineWillFetchRecordZoneChangesEvent, CKSyncEngineWillSendChangesEvent, CKSystemSharingUIObserver, CKUserIdentity, CKUserIdentityLookupInfo. The encoding of a number of basic types changes, in particular those of CoreFoundation struct types and SIMD struct types. None of this should affect user code. objc.getClassList now has an optional positional argument to ignore classes with a name that aren’t identifiers. Some of the functionality in CoreFoundation was rewritten in Swift in macOS 14, with Swift subclasses of NSArray and NSDictionary. Those classes break an invariant of PyObjC: the superclass of the root of the Swift class hierarchy changes when the class is instantiated for the first time (from NSObject to the correct superclass). PyObjC 10 contains a workaround for this by ignoring these classes unless they are needed to create a proxy for an instance (FB12286520). Fix crash when the method signature retrieved from the Objective-C runtime contains the class name for a method returning id. Remove old 32-bit support in metadata override files. Restructure objc.simd: The matrix types are now named simd_float3x3 instead of matrix_float3x3, with the older name as an alias (to match older system headers). Fix crash when loading the libdispatch bindings on recent macOS versions (at least macOS 13, possibly earlier) dispatch.dispatch_source_t is renamed to dispatch.dispatch_source_type_t to match the type name in C code. Xcode 15 has a bug when using weak symbols and targeting older macOS versions. Switch to the old linker when detecting Xcode 15. @ text @# $NetBSD: Makefile,v 1.5 2022/09/27 18:12:51 adam Exp $ .include "../../devel/py-pyobjc/Makefile.common" DISTNAME= pyobjc-framework-CoreText-${PYOBJC_VERS} PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyobjc-framework-CoreText/} COMMENT= Wrappers for the framework CoreText on macOS DEPENDS+= ${PYPKGPREFIX}-pyobjc-core>=${PYOBJC_VERS}:../../devel/py-pyobjc-core DEPENDS+= ${PYPKGPREFIX}-pyobjc-framework-Cocoa>=${PYOBJC_VERS}:../../devel/py-pyobjc-framework-Cocoa DEPENDS+= ${PYPKGPREFIX}-pyobjc-framework-Quartz>=${PYOBJC_VERS}:../../devel/py-pyobjc-framework-Quartz .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" @ 1.5 log @py-pyobjc*: updated to 8.5.1 Version 8.5 This release continues the work on test coverage in pyobjc-core, resulting in a number of minor bug fixes. Added two options to the build_ext command in the setup.py of pyobjc-core: --no-lto: Disable link time optimization --no-warnings-as-errors: Disable -Werror For struct bindings in frameworks the “in” operator no longer swallows exceptions raised by the __eq__ method. Improved handing of invalid type encodings for struct types. Fix crash while handling a struct wrapper with an invalid type encoding. Fix handling of empty structs (such as struct foo { }; in objc.repythonify(). The type for NSObject.pyobjc_instanceMethod and NSObject.pyobjc_classMethods now supports the GC protocol to avoid garbage collection issues when the value for these properties is stored as an attribute (which introduces a reference cycle) PyObjC should work with Python 3.11 alpha release, starting at alpha 6. Earlier alpha’s are not supported due to reverting a workaround for a bug that was fixed in alpha 6. NSObject.alloc = 42 now fails. It was already impossible to replace a selector by something else through instances (NSObject.new().description = 42 raises). Added objc.ObjCPointer.typestr with the same value as objc.ObjCPonter.type. The latter is now deprecated and will be removed in PyObjC 9. Better error messages when a class implementing a protocol inherits a method of the wrong kind (“class” vs. “instance”). The value of __slots__ in a class definition is now kept in the created class (previous versions always set the attribute to an empty tuple). This is primarily useful when __slots__ is a dict that is used to document attributes. Raise the correct exception when the name of a method is not an ASCII string. objc.loadSpecialVar() now better enforces that the module_globals argument is a Python dictionary. Fixed a crash in objc.loadSpecialVar() due to a missing pointer dereference. pip install pyobjc-framework-... for a framework that is not present on the current machine will now give a better error message when the “wheel” package is not installed. Setting an integer option in objc.options to a value of an incompatible type (such as a string) will now raise an exception as intended, instead of breaking the interpreter. Trying to delete an attribute from objc.options now raises :type:`AttributeError` instead of :type:`TypeError`. objc.selector now copies the default signature from its argument when that argument is another objc.selector. Until now this would raise an exception. Added some missing error checking in calls to PyObject_New() and PyObject_GC_New(). It is now possible to create an objc.selector from a callable that is not a function or bound method. This may require specifying the method signature in the call to objc.selector. For pyobjc-core the build_ext command in setup.py now includes the command-line option from the standaard command, which means python setup.py build_ext -j 4 can now be used for parallel builds. On my M1 laptop using python setup.py build_ext -j 8 halves the time needed to build the extension. The test command setup.py now supports the -v option to print test cases while they are run, in previoius versions this required using the --verbosity option. Improve error handling when dealing with “isHidden” selectors. Added pyobjc_hiddenSelectors(classmethods) to objc.objc_class This method returns a copy of the dictionary with “hidden” selectors, that is Objective-C selectors that are hidden from view. The method is primarily a debugging aid for development of PyObjC itself. ApplicationServices.AXIsProcessTrustedWithOptions and Quartrz.CGPDFArrayGetObject had incorrect metadata. The testsuites for the various framework bindings now have a test that does some basic checks on function and selector metadata. This test found the problem with CGPDFArrayGetObject. Added objc._C_ATOMIC and objc._C_COMPLEX, both extracted from the clang sources after finding some type encodings that PyObjC could not decode. objc._C_ATOMIC is ignored by PyObjC (for now), and objc._C_COMPLEX is not yet supported. Fix internal error for _C_OUT argument markup on arguments that are CoreFoundation types. This can only happen with invalid metadata definitions in framework bindings, and earlier versions this resulted in an internal assertion error. With this change the “output” argument is always None in the result. Fix metadata for a number of functions with a C string argument The metadata for the following functions was changed to have the correct type encoding for string argument, to fix issues with using non-ASCII (byte) strings. ApplicationServices.PMWorkflowSubmitPDFWithOptions CoreServices.LocaleRefGetPartString Foundation.NSGetSizeAndAlignment Network.nw_advertise_descriptor_create_bonjour_service Network.nw_browse_descriptor_create_bonjour_service Network.nw_browse_descriptor_get_bonjour_service_domain Network.nw_browse_descriptor_get_bonjour_service_type Network.nw_connection_copy_description Network.nw_content_context_create Network.nw_content_context_get_identifier Network.nw_endpoint_copy_address_string Network.nw_endpoint_copy_port_string Network.nw_endpoint_create_bonjour_service Network.nw_endpoint_create_host Network.nw_endpoint_create_url Network.nw_endpoint_get_bonjour_service_domain Network.nw_endpoint_get_bonjour_service_name Network.nw_endpoint_get_bonjour_service_type Network.nw_endpoint_get_hostname Network.nw_framer_create_definition Network.nw_framer_message_access_value Network.nw_framer_message_copy_object_value Network.nw_framer_message_set_object_value Network.nw_framer_message_set_value Network.nw_framer_options_set_object_value Network.nw_listener_create_with_port Network.nw_privacy_context_create Network.nw_quic_get_application_error_reason Network.nw_quic_set_application_error Network.nw_txt_record_access_key Network.nw_ws_options_add_additional_header Network.nw_ws_options_add_subprotocol Quartz.CGContextSelectFont Quartz.CGContextShowText Quartz.CGContextShowTextAtPoint Quartz.CGDataProviderCreateWithFilename Quartz.CGPDFArrayGetName Quartz.CGPDFContentStreamGetResource Quartz.CGPDFDictionaryGetArray Quartz.CGPDFDictionaryGetBoolean Quartz.CGPDFDictionaryGetName Quartz.CGPDFDocumentUnlockWithPassword Quartz.CGPDFScannerPopName Quartz.CGPDFTagTypeGetName While fixing this issue I found problems with the metadata for these functions: CoreMIDI.MIDIExternalDeviceCreate CoreMedia.CMBlockBufferAccessDataBytes CoreMedia.CMBlockBufferGetDataPointer CoreMedia.CMBufferQueueInstallTriggerHandler CoreMedia.CMBufferQueueInstallTriggerHandlerWithIntegerThreshold CoreMedia.CMTextFormatDescriptionGetJustification CoreServices.TECGetTextEncodingFromInternetNameOrMIB DVDPlayback.DVDGetScanRate MediaAccessibility.MACaptionAppearanceAddSelectedLanguage There’s also a new test that checks for this problem in all exposed functions. Fix incorrect reset of the “inline_list” attribute of the lazy importer, this could result in an incorrect TypeError when trying to access an non-existing attribute after looking at __all__. Fix uniqueness of symbols exposed in the OpenDirectory bindings. Unhide manual bindings for Security.SecKeychainFindGenericPassword and Security.SecKeychainFindInternetPassword. @ text @d1 1 a1 1 # $NetBSD: Makefile,v 1.4 2022/01/04 20:53:26 wiz Exp $ a11 2 USE_LANGUAGES= c objc d16 1 a16 1 .include "../../lang/python/egg.mk" @ 1.4 log @*: bump PKGREVISION for egg.mk users They now have a tool dependency on py-setuptools instead of a DEPENDS @ text @d1 1 a1 1 # $NetBSD: Makefile,v 1.3 2018/02/08 19:54:21 adam Exp $ a2 1 PKGREVISION= 1 d10 1 a10 1 COMMENT= Bridge between Python and Objective-C (CoreText framework) @ 1.3 log @py-pyobjc: updated to 4.1 Version 4.1: Protection agains buffer overflow and negative indexes in __getitem__ and __setitem__ for objc.varlist instances. Fix incorrect metadata for +[NSEvent addLocalMonitorForEventsMatchingMask:handler:] Fix incorrect and misleading error message in the exception that is raised when return a value from a block that should not return a value. Issue 223: Fix hard crash when executing help(Cocoa) Fetching the help for PyObjC framework wrappers isn’t very useful due to the sheer size of the output (4.5 million lines of output for help(Cocoa) at the moment), but shouldn’t cause a hard crash of the interpreter. Issue 218: Explictly cause an ImportError when reloading `objc._objc` Reloading the PyObjC core extension now raises an ImportError because this cannot work and used to raise a rather vague error. Updated metadata for Xcode 9.2 Added missing `MAC_OS_X_VERSION_*` constants Fix memory error in struct wrappers which resulted in a use-after-free error in the initializer for structs. Add bindings for frameworks Security, SecurityFoundation and and SecurityInterface. The bindings for the Security framework don’t expose a number of older APIs that were deprecated in macOS 10.7. Add bindings to libdispatch. These bindings require macOS 10.8 or later, libdispatch was available earlier but macOS 10.8 changed the API in such a way that wrapping became a lot easier. @ text @d1 1 a1 1 # $NetBSD: Makefile,v 1.2 2016/06/08 17:43:30 wiz Exp $ d3 1 @ 1.2 log @Switch to MASTER_SITES_PYPI. @ text @d1 1 a1 1 # $NetBSD: Makefile,v 1.1 2015/04/25 10:40:49 adam Exp $ d7 1 a7 1 CATEGORIES= devel a9 2 MAINTAINER= pkgsrc-users@@NetBSD.org HOMEPAGE= https://pythonhosted.org/pyobjc/ a10 1 LICENSE= mit d15 2 @ 1.1 log @The PyObjC project aims to provide a bridge between the Python and Objective-C programming languages. The bridge is intended to be fully bidirectional, allowing the Python programmer to take full advantage of the power provided by various Objective-C based toolkits and the Objective-C programmer transparent access to Python based functionality. @ text @d1 1 a1 1 # $NetBSD$ d8 1 a8 1 MASTER_SITES= http://pypi.python.org/packages/source/p/pyobjc-framework-CoreText/ @