libfwps-python 20240310__tar.gz → 20260522__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- libfwps_python-20260522/AUTHORS +4 -0
- {libfwps-20240310 → libfwps_python-20260522}/INSTALL +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/Makefile.am +11 -17
- {libfwps-20240310 → libfwps_python-20260522}/Makefile.in +18 -21
- libfwps_python-20260522/PKG-INFO +29 -0
- {libfwps-20240310 → libfwps_python-20260522}/README +1 -1
- libfwps_python-20260522/_build.py +275 -0
- {libfwps-20240310 → libfwps_python-20260522}/acinclude.m4 +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/Makefile.am +6 -7
- {libfwps-20240310 → libfwps_python-20260522}/common/Makefile.in +10 -8
- {libfwps-20240310 → libfwps_python-20260522}/common/byte_stream.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/common.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/config.h +4 -4
- {libfwps-20240310 → libfwps_python-20260522}/common/config_borlandc.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/config_msc.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/config_winapi.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/file_stream.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/memory.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/narrow_string.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/system_string.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/types.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/types.h.in +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/common/wide_string.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/config.guess +21 -41
- {libfwps-20240310 → libfwps_python-20260522}/config.sub +17 -34
- {libfwps-20240310 → libfwps_python-20260522}/configure +3318 -3446
- {libfwps-20240310 → libfwps_python-20260522}/configure.ac +14 -15
- libfwps_python-20260522/dpkg/changelog +5 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/copyright +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/Makefile.am +6 -8
- {libfwps-20240310 → libfwps_python-20260522}/include/Makefile.in +9 -9
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/codepage.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/definitions.h.in +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/error.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/extern.h +6 -3
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/features.h +5 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/features.h.in +5 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/types.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/types.h.in +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps.h +10 -1
- {libfwps-20240310 → libfwps_python-20260522}/include/libfwps.h.in +10 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/Makefile.in +18 -7
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_array.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_array.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree_node.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree_node.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree_values_list.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree_values_list.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_error.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_error.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_extern.h +1 -7
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_libcerror.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_libcthreads.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_list.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_list.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_list_element.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_list_element.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_range_list.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_range_list.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_range_list_value.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_range_list_value.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_support.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_tree_node.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_tree_node.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_types.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/Makefile.in +10 -7
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_error.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_error.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_extern.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_support.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_system.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_system.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_types.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/Makefile.in +11 -7
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_codepage.c +33 -3
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_codepage.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_extern.h +1 -7
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_libcerror.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_locale.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_locale.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_support.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_wide_string.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_wide_string.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/Makefile.in +11 -7
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_extern.h +1 -7
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_libcerror.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_print.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_print.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_stream.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_stream.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_support.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_verbose.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_verbose.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/Makefile.in +18 -7
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_condition.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_condition.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_error.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_error.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_extern.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_libcerror.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_lock.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_lock.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_mutex.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_mutex.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_queue.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_queue.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_read_write_lock.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_read_write_lock.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_repeating_thread.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_repeating_thread.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_support.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread_attributes.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread_attributes.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread_pool.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread_pool.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_types.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/Makefile.in +17 -7
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_date_time_values.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_date_time_values.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_error.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_error.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_extern.h +1 -7
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_fat_date_time.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_fat_date_time.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_filetime.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_filetime.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_floatingtime.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_floatingtime.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_hfs_time.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_hfs_time.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_libcerror.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_nsf_timedate.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_nsf_timedate.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_posix_time.c +119 -43
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_posix_time.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_support.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_systemtime.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_systemtime.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_types.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/Makefile.in +10 -7
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_error.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_error.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_extern.h +1 -7
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_identifier.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_identifier.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_libcerror.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_support.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_types.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/Makefile.am +6 -8
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/Makefile.in +19 -9
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps.rc +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps.rc.in +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_codepage.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_debug.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_debug.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_definitions.h +3 -3
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_definitions.h.in +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_error.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_error.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_extern.h +1 -7
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_format_class_identifier.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_format_class_identifier.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libcdata.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libcerror.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libcnotify.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libfguid.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libuna.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_notify.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_notify.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_property_identifier.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_property_identifier.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_record.c +92 -7
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_record.h +7 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_set.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_set.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_store.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_store.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_support.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_types.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/libfwps.spec +2 -2
- {libfwps-20240310 → libfwps_python-20260522}/libuna/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/libuna/Makefile.in +70 -7
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_definitions.h +2 -2
- {libfwps-20240310 → libfwps_python-20260522}/ltmain.sh +45 -38
- {libfwps-20240310 → libfwps_python-20260522}/m4/common.m4 +135 -79
- libfwps_python-20260522/m4/libcdata.m4 +227 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/libcerror.m4 +18 -69
- {libfwps-20240310 → libfwps_python-20260522}/m4/libclocale.m4 +16 -65
- {libfwps-20240310 → libfwps_python-20260522}/m4/libcnotify.m4 +17 -66
- libfwps_python-20260522/m4/libcthreads.m4 +214 -0
- libfwps_python-20260522/m4/libfdatetime.m4 +219 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/libfguid.m4 +20 -77
- {libfwps-20240310 → libfwps_python-20260522}/m4/libtool.m4 +40 -16
- libfwps_python-20260522/m4/libuna.m4 +311 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/ltoptions.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/ltsugar.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/ltversion.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/lt~obsolete.m4 +0 -0
- libfwps_python-20260522/m4/pthread.m4 +108 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/python.m4 +7 -5
- {libfwps-20240310 → libfwps_python-20260522}/manuals/Makefile.am +2 -4
- {libfwps-20240310 → libfwps_python-20260522}/manuals/Makefile.in +5 -5
- {libfwps-20240310 → libfwps_python-20260522}/manuals/libfwps.3 +4 -2
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/Makefile.am +2 -4
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/Makefile.in +5 -5
- {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/Makefile.in +10 -7
- {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/ossfuzz_libfwps.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/record_fuzzer.cc +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/set_fuzzer.cc +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/store_fuzzer.cc +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/Makefile.am +4 -6
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/Makefile.in +18 -7
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_codepage.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_codepage.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_error.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_error.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_guid.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_guid.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_integer.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_integer.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libcerror.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libclocale.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libfguid.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libfwps.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libuna.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_python.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_record.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_record.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_records.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_records.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_set.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_set.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_sets.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_sets.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_store.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_store.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_string.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_string.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_unused.h +1 -1
- libfwps_python-20260522/pyproject.toml +35 -0
- libfwps_python-20260522/pyproject.toml.in +35 -0
- {libfwps-20240310 → libfwps_python-20260522}/tests/Makefile.am +6 -7
- {libfwps-20240310 → libfwps_python-20260522}/tests/Makefile.in +17 -8
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_error.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_libcerror.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_libfwps.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_macros.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_memory.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_memory.h +2 -2
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_notify.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_property_identifier.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_record.c +3 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_set.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_store.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_support.c +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_unused.h +1 -1
- {libfwps-20240310 → libfwps_python-20260522}/tests/pyfwps_test_record.py +2 -2
- {libfwps-20240310 → libfwps_python-20260522}/tests/pyfwps_test_set.py +2 -2
- {libfwps-20240310 → libfwps_python-20260522}/tests/pyfwps_test_store.py +2 -2
- {libfwps-20240310 → libfwps_python-20260522}/tests/pyfwps_test_support.py +2 -2
- {libfwps-20240310 → libfwps_python-20260522}/tests/test_library.sh +16 -8
- {libfwps-20240310 → libfwps_python-20260522}/tests/test_manpage.sh +3 -6
- {libfwps-20240310 → libfwps_python-20260522}/tests/test_python_module.sh +19 -10
- libfwps-20240310/AUTHORS +0 -4
- libfwps-20240310/PKG-INFO +0 -13
- libfwps-20240310/dpkg/changelog +0 -5
- libfwps-20240310/m4/libcdata.m4 +0 -599
- libfwps-20240310/m4/libcthreads.m4 +0 -385
- libfwps-20240310/m4/libfdatetime.m4 +0 -560
- libfwps-20240310/m4/libuna.m4 +0 -1044
- libfwps-20240310/m4/pthread.m4 +0 -196
- libfwps-20240310/pyproject.toml +0 -4
- libfwps-20240310/setup.cfg +0 -16
- libfwps-20240310/setup.cfg.in +0 -16
- libfwps-20240310/setup.py +0 -293
- {libfwps-20240310 → libfwps_python-20260522}/ABOUT-NLS +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/COPYING +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/COPYING.LESSER +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/ChangeLog +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/NEWS +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/aclocal.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/common/config.h.in +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/compile +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/config.rpath +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/depcomp +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/changelog.in +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/compat +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/control +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/libfwps-dev.install +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/libfwps-python3.install +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/libfwps.install +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/rules +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/dpkg/source/format +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/install-sh +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libfwps.pc.in +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libfwps.spec.in +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base16_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base16_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base32_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base32_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base64_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base64_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_byte_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_byte_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_10.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_10.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_13.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_13.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_14.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_14.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_15.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_15.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_16.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_16.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_2.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_2.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_3.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_3.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_4.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_4.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_5.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_5.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_6.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_6.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_7.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_7.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_8.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_8.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_9.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_9.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_koi8_r.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_koi8_r.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_koi8_u.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_koi8_u.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_arabic.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_arabic.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_celtic.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_celtic.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_centraleurroman.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_centraleurroman.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_croatian.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_croatian.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_cyrillic.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_cyrillic.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_dingbats.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_dingbats.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_farsi.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_farsi.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_gaelic.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_gaelic.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_greek.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_greek.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_icelandic.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_icelandic.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_inuit.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_inuit.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_roman.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_roman.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_romanian.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_romanian.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_russian.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_russian.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_symbol.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_symbol.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_thai.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_thai.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_turkish.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_turkish.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_ukrainian.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_ukrainian.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1250.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1250.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1251.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1251.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1252.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1252.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1253.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1253.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1254.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1254.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1255.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1255.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1256.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1256.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1257.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1257.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1258.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1258.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_874.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_874.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_932.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_932.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_936.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_936.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_949.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_949.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_950.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_950.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_error.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_error.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_extern.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_libcerror.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_scsu.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_scsu.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_support.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_support.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_types.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_unicode_character.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_unicode_character.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_unused.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_url_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_url_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf16_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf16_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf16_string.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf16_string.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf32_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf32_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf32_string.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf32_string.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf7_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf7_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf8_stream.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf8_stream.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf8_string.c +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf8_string.h +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/gettext.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/host-cpu-c-abi.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/iconv.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/intlmacosx.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/lib-ld.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/lib-link.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/lib-prefix.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/nls.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/po.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/progtest.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/tests.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/m4/types.m4 +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/missing +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_error/fwps_test_error.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_notify/fwps_test_notify.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_property_identifier/fwps_test_property_identifier.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_record/fwps_test_record.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_set/fwps_test_set.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_store/fwps_test_store.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_support/fwps_test_support.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libclocale/libclocale.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libfguid/libfguid.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libfwps/libfwps.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libfwps.sln +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libuna/libuna.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/msvscpp/pyfwps/pyfwps.vcproj +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/ChangeLog +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/Makefile.in.in +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/Makevars +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/Makevars.in +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/POTFILES.in +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/Rules-quot +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/boldquot.sed +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/en@boldquot.header +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/en@quot.header +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/insert-header.sin +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/quot.sed +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/po/remove-potcdate.sin +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/test-driver +0 -0
- {libfwps-20240310 → libfwps_python-20260522}/tests/test_runner.sh +0 -0
|
File without changes
|
|
@@ -39,10 +39,9 @@ PKGCONFIG_FILES = \
|
|
|
39
39
|
libfwps.pc.in
|
|
40
40
|
|
|
41
41
|
SETUP_PY_FILES = \
|
|
42
|
+
_build.py \
|
|
42
43
|
pyproject.toml \
|
|
43
|
-
|
|
44
|
-
setup.cfg.in \
|
|
45
|
-
setup.py
|
|
44
|
+
pyproject.toml.in
|
|
46
45
|
|
|
47
46
|
SPEC_FILES = \
|
|
48
47
|
libfwps.spec \
|
|
@@ -55,8 +54,15 @@ EXTRA_DIST = \
|
|
|
55
54
|
$(SETUP_PY_FILES) \
|
|
56
55
|
$(SPEC_FILES)
|
|
57
56
|
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
DISTCLEANFILES = \
|
|
58
|
+
config.status \
|
|
59
|
+
config.cache \
|
|
60
|
+
config.log \
|
|
61
|
+
libfwps.pc \
|
|
62
|
+
libfwps.spec \
|
|
63
|
+
Makefile \
|
|
64
|
+
Makefile.in \
|
|
65
|
+
po/Makevars
|
|
60
66
|
|
|
61
67
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
62
68
|
|
|
@@ -81,15 +87,3 @@ library:
|
|
|
81
87
|
(cd $(srcdir)/libfwps && $(MAKE) $(AM_MAKEFLAGS))
|
|
82
88
|
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
83
89
|
|
|
84
|
-
distclean: clean
|
|
85
|
-
-rm -f Makefile
|
|
86
|
-
-rm -f config.status
|
|
87
|
-
-rm -f config.cache
|
|
88
|
-
-rm -f config.log
|
|
89
|
-
-rm -f libfwps.pc
|
|
90
|
-
-rm -f libfwps.spec
|
|
91
|
-
@for dir in ${subdirs}; do \
|
|
92
|
-
(cd $$dir && $(MAKE) distclean) \
|
|
93
|
-
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
|
94
|
-
done && test -z "$$fail"
|
|
95
|
-
|
|
@@ -116,7 +116,7 @@ mkinstalldirs = $(install_sh) -d
|
|
|
116
116
|
CONFIG_HEADER = $(top_builddir)/common/config.h
|
|
117
117
|
CONFIG_CLEAN_FILES = include/libfwps/definitions.h \
|
|
118
118
|
include/libfwps/features.h include/libfwps/types.h \
|
|
119
|
-
dpkg/changelog libfwps.pc libfwps.spec
|
|
119
|
+
dpkg/changelog libfwps.pc libfwps.spec pyproject.toml
|
|
120
120
|
CONFIG_CLEAN_VPATH_FILES =
|
|
121
121
|
AM_V_P = $(am__v_P_@AM_V@)
|
|
122
122
|
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
|
@@ -202,7 +202,7 @@ am__define_uniq_tagged_files = \
|
|
|
202
202
|
done | $(am__uniquify_input)`
|
|
203
203
|
DIST_SUBDIRS = $(SUBDIRS)
|
|
204
204
|
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/libfwps.pc.in \
|
|
205
|
-
$(srcdir)/libfwps.spec.in $(srcdir)/
|
|
205
|
+
$(srcdir)/libfwps.spec.in $(srcdir)/pyproject.toml.in \
|
|
206
206
|
$(top_srcdir)/dpkg/changelog.in \
|
|
207
207
|
$(top_srcdir)/include/libfwps/definitions.h.in \
|
|
208
208
|
$(top_srcdir)/include/libfwps/features.h.in \
|
|
@@ -547,10 +547,9 @@ PKGCONFIG_FILES = \
|
|
|
547
547
|
libfwps.pc.in
|
|
548
548
|
|
|
549
549
|
SETUP_PY_FILES = \
|
|
550
|
+
_build.py \
|
|
550
551
|
pyproject.toml \
|
|
551
|
-
|
|
552
|
-
setup.cfg.in \
|
|
553
|
-
setup.py
|
|
552
|
+
pyproject.toml.in
|
|
554
553
|
|
|
555
554
|
SPEC_FILES = \
|
|
556
555
|
libfwps.spec \
|
|
@@ -563,8 +562,15 @@ EXTRA_DIST = \
|
|
|
563
562
|
$(SETUP_PY_FILES) \
|
|
564
563
|
$(SPEC_FILES)
|
|
565
564
|
|
|
566
|
-
|
|
567
|
-
|
|
565
|
+
DISTCLEANFILES = \
|
|
566
|
+
config.status \
|
|
567
|
+
config.cache \
|
|
568
|
+
config.log \
|
|
569
|
+
libfwps.pc \
|
|
570
|
+
libfwps.spec \
|
|
571
|
+
Makefile \
|
|
572
|
+
Makefile.in \
|
|
573
|
+
po/Makevars
|
|
568
574
|
|
|
569
575
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
570
576
|
pkgconfig_DATA = \
|
|
@@ -618,7 +624,7 @@ libfwps.pc: $(top_builddir)/config.status $(srcdir)/libfwps.pc.in
|
|
|
618
624
|
cd $(top_builddir) && $(SHELL) ./config.status $@
|
|
619
625
|
libfwps.spec: $(top_builddir)/config.status $(srcdir)/libfwps.spec.in
|
|
620
626
|
cd $(top_builddir) && $(SHELL) ./config.status $@
|
|
621
|
-
|
|
627
|
+
pyproject.toml: $(top_builddir)/config.status $(srcdir)/pyproject.toml.in
|
|
622
628
|
cd $(top_builddir) && $(SHELL) ./config.status $@
|
|
623
629
|
|
|
624
630
|
mostlyclean-libtool:
|
|
@@ -989,15 +995,18 @@ clean-generic:
|
|
|
989
995
|
distclean-generic:
|
|
990
996
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
991
997
|
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
|
998
|
+
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
|
992
999
|
|
|
993
1000
|
maintainer-clean-generic:
|
|
994
1001
|
@echo "This command is intended for maintainers to use"
|
|
995
1002
|
@echo "it deletes files that may require special tools to rebuild."
|
|
996
|
-
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
|
997
1003
|
clean: clean-recursive
|
|
998
1004
|
|
|
999
1005
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
|
1000
1006
|
|
|
1007
|
+
distclean: distclean-recursive
|
|
1008
|
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
|
1009
|
+
-rm -f Makefile
|
|
1001
1010
|
distclean-am: clean-am distclean-generic distclean-libtool \
|
|
1002
1011
|
distclean-tags
|
|
1003
1012
|
|
|
@@ -1110,18 +1119,6 @@ library:
|
|
|
1110
1119
|
(cd $(srcdir)/libfwps && $(MAKE) $(AM_MAKEFLAGS))
|
|
1111
1120
|
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
1112
1121
|
|
|
1113
|
-
distclean: clean
|
|
1114
|
-
-rm -f Makefile
|
|
1115
|
-
-rm -f config.status
|
|
1116
|
-
-rm -f config.cache
|
|
1117
|
-
-rm -f config.log
|
|
1118
|
-
-rm -f libfwps.pc
|
|
1119
|
-
-rm -f libfwps.spec
|
|
1120
|
-
@for dir in ${subdirs}; do \
|
|
1121
|
-
(cd $$dir && $(MAKE) distclean) \
|
|
1122
|
-
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
|
1123
|
-
done && test -z "$$fail"
|
|
1124
|
-
|
|
1125
1122
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
1126
1123
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
1127
1124
|
.NOEXPORT:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: libfwps-python
|
|
3
|
+
Version: 20260522
|
|
4
|
+
Summary: Python bindings for libfwps
|
|
5
|
+
Maintainer-email: Joachim Metz <joachim.metz@gmail.com>
|
|
6
|
+
License-Expression: LGPL-3.0-or-later
|
|
7
|
+
Project-URL: Documentation, https://github.com/libyal/libfwps/wiki/Home
|
|
8
|
+
Project-URL: Homepage, https://github.com/libyal/libfwps
|
|
9
|
+
Project-URL: Repository, https://github.com/libyal/libfwps
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Programming Language :: Python
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: COPYING
|
|
15
|
+
License-File: COPYING.LESSER
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
libfwps is a library for Windows Property Store data types.
|
|
19
|
+
|
|
20
|
+
Project information:
|
|
21
|
+
|
|
22
|
+
* Status: alpha
|
|
23
|
+
* Licence: LGPL-3.0-or-later
|
|
24
|
+
|
|
25
|
+
For more information see:
|
|
26
|
+
|
|
27
|
+
* Project documentation: https://github.com/libyal/libfwps/wiki/Home
|
|
28
|
+
* How to build from source: https://github.com/libyal/libfwps/wiki/Building
|
|
29
|
+
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
#
|
|
3
|
+
# Script to build and install Python-bindings.
|
|
4
|
+
# Version: 20260510
|
|
5
|
+
|
|
6
|
+
import glob
|
|
7
|
+
import gzip
|
|
8
|
+
import os
|
|
9
|
+
import shlex
|
|
10
|
+
import shutil
|
|
11
|
+
import subprocess
|
|
12
|
+
import sys
|
|
13
|
+
import tarfile
|
|
14
|
+
|
|
15
|
+
from setuptools import Extension
|
|
16
|
+
from setuptools._distutils.ccompiler import new_compiler
|
|
17
|
+
from setuptools.command.build_ext import build_ext
|
|
18
|
+
from setuptools.command.sdist import sdist
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class ProjectInformation:
|
|
22
|
+
"""Project information."""
|
|
23
|
+
|
|
24
|
+
def __init__(self, compiler_type):
|
|
25
|
+
"""Initializes project information."""
|
|
26
|
+
super().__init__()
|
|
27
|
+
self._library_name = None
|
|
28
|
+
self._library_names = None
|
|
29
|
+
self._library_version = None
|
|
30
|
+
self.define_macros = None
|
|
31
|
+
self.include_directories = None
|
|
32
|
+
self.sources = None
|
|
33
|
+
|
|
34
|
+
self._read_configure_ac()
|
|
35
|
+
self._read_makefile_am()
|
|
36
|
+
self._determine_define_macros(compiler_type)
|
|
37
|
+
self._determine_sources()
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def module_name(self):
|
|
41
|
+
"""The Python module name."""
|
|
42
|
+
return f"py{self._library_name[3:]:s}"
|
|
43
|
+
|
|
44
|
+
def _determine_define_macros(self, compiler_type):
|
|
45
|
+
"""Determines the define macros."""
|
|
46
|
+
self.define_macros = []
|
|
47
|
+
|
|
48
|
+
if compiler_type != "msvc":
|
|
49
|
+
self.define_macros.append(("HAVE_CONFIG_H", "1"))
|
|
50
|
+
else:
|
|
51
|
+
self.define_macros.extend(
|
|
52
|
+
[
|
|
53
|
+
("_CRT_SECURE_NO_WARNINGS", "1"),
|
|
54
|
+
("UNICODE", "1"),
|
|
55
|
+
("WINVER", "0x0501"),
|
|
56
|
+
]
|
|
57
|
+
)
|
|
58
|
+
for library_name in self._library_names:
|
|
59
|
+
if library_name != self._library_name:
|
|
60
|
+
self.define_macros.append(
|
|
61
|
+
(f"HAVE_LOCAL_{library_name:s}".upper(), "1")
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
def _determine_sources(self):
|
|
65
|
+
"""Determines the source files."""
|
|
66
|
+
self.sources = []
|
|
67
|
+
|
|
68
|
+
for library_name in self._library_names:
|
|
69
|
+
for source_file in glob.glob(os.path.join(library_name, "*.[ly]")):
|
|
70
|
+
generated_source_file = f"{source_file[:-2]:s}.c"
|
|
71
|
+
if not os.path.exists(generated_source_file):
|
|
72
|
+
raise RuntimeError(
|
|
73
|
+
f"Missing generated source file: {generated_source_file:s}"
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
source_files = glob.glob(os.path.join(library_name, "*.c"))
|
|
77
|
+
self.sources.extend(source_files)
|
|
78
|
+
|
|
79
|
+
source_files = glob.glob(os.path.join(self.module_name, "*.c"))
|
|
80
|
+
self.sources.extend(source_files)
|
|
81
|
+
|
|
82
|
+
def _read_configure_ac(self):
|
|
83
|
+
"""Reads the configure.ac file to initialize the project information."""
|
|
84
|
+
with open("configure.ac", encoding="utf-8") as file_object:
|
|
85
|
+
found_ac_init = False
|
|
86
|
+
found_library_name = False
|
|
87
|
+
for line in file_object.readlines():
|
|
88
|
+
line = line.strip()
|
|
89
|
+
if found_library_name:
|
|
90
|
+
library_version = line[1:-2]
|
|
91
|
+
self._library_version = library_version
|
|
92
|
+
break
|
|
93
|
+
|
|
94
|
+
elif found_ac_init:
|
|
95
|
+
library_name = line[1:-2]
|
|
96
|
+
self._library_name = library_name
|
|
97
|
+
found_library_name = True
|
|
98
|
+
|
|
99
|
+
elif line.startswith("AC_INIT"):
|
|
100
|
+
found_ac_init = True
|
|
101
|
+
|
|
102
|
+
if not self._library_name or not self._library_version:
|
|
103
|
+
raise RuntimeError(
|
|
104
|
+
"Unable to find library name and version in: configure.ac"
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
def _read_makefile_am(self):
|
|
108
|
+
"""Reads the Makefile.am file to initialize the project information."""
|
|
109
|
+
if not self._library_name:
|
|
110
|
+
raise RuntimeError("Missing library name")
|
|
111
|
+
|
|
112
|
+
self._library_names = []
|
|
113
|
+
self.include_directories = []
|
|
114
|
+
with open("Makefile.am", encoding="utf-8") as file_object:
|
|
115
|
+
found_subdirs = False
|
|
116
|
+
for line in file_object.readlines():
|
|
117
|
+
line = line.strip()
|
|
118
|
+
if found_subdirs:
|
|
119
|
+
library_name, _, _ = line.partition(" ")
|
|
120
|
+
|
|
121
|
+
self.include_directories.append(library_name)
|
|
122
|
+
|
|
123
|
+
if library_name.startswith("lib"):
|
|
124
|
+
self._library_names.append(library_name)
|
|
125
|
+
|
|
126
|
+
if library_name == self._library_name:
|
|
127
|
+
break
|
|
128
|
+
|
|
129
|
+
elif line.startswith("SUBDIRS"):
|
|
130
|
+
found_subdirs = True
|
|
131
|
+
|
|
132
|
+
if not self.include_directories or not self._library_names:
|
|
133
|
+
raise RuntimeError(
|
|
134
|
+
"Unable to find include directories and library names in: "
|
|
135
|
+
"Makefile.am"
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
class custom_build_ext(build_ext):
|
|
140
|
+
"""Custom build_ext command."""
|
|
141
|
+
|
|
142
|
+
def _print_configure_summary(self, output):
|
|
143
|
+
"""Prints the configure summary."""
|
|
144
|
+
print_line = False
|
|
145
|
+
for line in output.split("\n"):
|
|
146
|
+
line = line.rstrip()
|
|
147
|
+
if line == "configure:":
|
|
148
|
+
print_line = True
|
|
149
|
+
|
|
150
|
+
if print_line:
|
|
151
|
+
print(line)
|
|
152
|
+
|
|
153
|
+
def _run_shell_command(self, command):
|
|
154
|
+
"""Runs a command."""
|
|
155
|
+
arguments = shlex.split(f"sh {command:s}")
|
|
156
|
+
process = subprocess.Popen(
|
|
157
|
+
arguments,
|
|
158
|
+
stderr=subprocess.PIPE,
|
|
159
|
+
stdout=subprocess.PIPE,
|
|
160
|
+
universal_newlines=True,
|
|
161
|
+
)
|
|
162
|
+
if not process:
|
|
163
|
+
raise RuntimeError(f"Running: {command:s} failed.")
|
|
164
|
+
|
|
165
|
+
output, error = process.communicate()
|
|
166
|
+
if process.returncode != 0:
|
|
167
|
+
error = "\n".join(error.split("\n")[-5:])
|
|
168
|
+
raise RuntimeError(f"Running: {command:s} failed with error:\n{error:s}.")
|
|
169
|
+
|
|
170
|
+
return output
|
|
171
|
+
|
|
172
|
+
def initialize_options(self):
|
|
173
|
+
"""Initialize build options."""
|
|
174
|
+
super().initialize_options()
|
|
175
|
+
|
|
176
|
+
compiler = new_compiler(compiler=self.compiler)
|
|
177
|
+
project_information = ProjectInformation(compiler.compiler_type)
|
|
178
|
+
|
|
179
|
+
# ext_module can be defined multiple times. It is currently assumed that
|
|
180
|
+
# this is due to the experimental nature of tool.setuptools.ext-modules
|
|
181
|
+
# at this time. Hence ext_modules is redefined as a single extension.
|
|
182
|
+
self.distribution.ext_modules = [
|
|
183
|
+
Extension(
|
|
184
|
+
project_information.module_name,
|
|
185
|
+
define_macros=project_information.define_macros,
|
|
186
|
+
include_dirs=project_information.include_directories,
|
|
187
|
+
sources=project_information.sources,
|
|
188
|
+
)
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
def run(self):
|
|
192
|
+
"""Runs the build."""
|
|
193
|
+
compiler = new_compiler(compiler=self.compiler)
|
|
194
|
+
if compiler.compiler_type != "msvc":
|
|
195
|
+
output = self._run_shell_command(
|
|
196
|
+
"configure --disable-nls --disable-shared-libs"
|
|
197
|
+
)
|
|
198
|
+
self._print_configure_summary(output)
|
|
199
|
+
|
|
200
|
+
super().run()
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
class custom_sdist(sdist):
|
|
204
|
+
"""Custom sdist command."""
|
|
205
|
+
|
|
206
|
+
def _repackage(self, source_package_file):
|
|
207
|
+
"""Repackages the source package file."""
|
|
208
|
+
name_prefix, _, name_suffix = source_package_file[:-4].partition("-")
|
|
209
|
+
|
|
210
|
+
source_prefix = f"{name_prefix:s}-{name_suffix:s}"
|
|
211
|
+
sdist_prefix = f"{name_prefix:s}_python-{name_suffix:s}"
|
|
212
|
+
sdist_package_file = os.path.join(self.dist_dir, f"{sdist_prefix:s}.tar.gz")
|
|
213
|
+
|
|
214
|
+
with tarfile.open(source_package_file, "r") as input_file:
|
|
215
|
+
with tarfile.open(sdist_package_file, "w:gz") as output_file:
|
|
216
|
+
for member in input_file.getmembers():
|
|
217
|
+
if member.name == source_prefix:
|
|
218
|
+
member.name = sdist_prefix
|
|
219
|
+
elif member.name.startswith(f"{source_prefix:s}/"):
|
|
220
|
+
member.name = member.name.replace(
|
|
221
|
+
f"{source_prefix:s}/", f"{sdist_prefix:s}/", 1
|
|
222
|
+
)
|
|
223
|
+
|
|
224
|
+
if member.isfile():
|
|
225
|
+
file_object = input_file.extractfile(member)
|
|
226
|
+
output_file.addfile(member, file_object)
|
|
227
|
+
else:
|
|
228
|
+
output_file.addfile(member)
|
|
229
|
+
|
|
230
|
+
return sdist_package_file
|
|
231
|
+
|
|
232
|
+
def run(self):
|
|
233
|
+
"""Runs the build."""
|
|
234
|
+
if self.formats != ["gztar"]:
|
|
235
|
+
print(f"Unsupported sdist format: {self.formats!s}")
|
|
236
|
+
sys.exit(1)
|
|
237
|
+
|
|
238
|
+
if glob.glob("*.tar.gz"):
|
|
239
|
+
print("Remove existing *.tar.gz files from source directory")
|
|
240
|
+
sys.exit(1)
|
|
241
|
+
|
|
242
|
+
exit_code = subprocess.call("make dist", shell=True)
|
|
243
|
+
if exit_code != 0:
|
|
244
|
+
raise RuntimeError("Failed to run: make dist")
|
|
245
|
+
|
|
246
|
+
if not os.path.exists(self.dist_dir):
|
|
247
|
+
os.mkdir(self.dist_dir)
|
|
248
|
+
|
|
249
|
+
source_package_file = glob.glob("*.tar.gz")[0]
|
|
250
|
+
|
|
251
|
+
name_prefix, _, name_suffix = source_package_file.partition("-")
|
|
252
|
+
|
|
253
|
+
sdist_package_file = os.path.join(
|
|
254
|
+
self.dist_dir, f"{name_prefix:s}_python-{name_suffix:s}"
|
|
255
|
+
)
|
|
256
|
+
# Decompression the source package.
|
|
257
|
+
with gzip.open(source_package_file, "rb") as input_file:
|
|
258
|
+
with open(source_package_file[:-3], "wb") as output_file:
|
|
259
|
+
shutil.copyfileobj(input_file, output_file)
|
|
260
|
+
os.remove(source_package_file)
|
|
261
|
+
|
|
262
|
+
# Create a PKG-INFO file and add it to the source package.
|
|
263
|
+
self.distribution.metadata.write_pkg_info(".")
|
|
264
|
+
|
|
265
|
+
pkg_info_path = f"{name_prefix:s}-{name_suffix[:-7]:s}/PKG-INFO"
|
|
266
|
+
with tarfile.open(source_package_file[:-3], "a:") as tar_file:
|
|
267
|
+
tar_file.add("PKG-INFO", arcname=pkg_info_path)
|
|
268
|
+
os.remove("PKG-INFO")
|
|
269
|
+
|
|
270
|
+
sdist_package_file = self._repackage(source_package_file[:-3])
|
|
271
|
+
os.remove(source_package_file[:-3])
|
|
272
|
+
|
|
273
|
+
# Inform what files were created.
|
|
274
|
+
dist_files = getattr(self.distribution, "dist_files", [])
|
|
275
|
+
dist_files.append(("sdist", "", sdist_package_file))
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
AM_CPPFLAGS =
|
|
1
|
+
AM_CPPFLAGS = \
|
|
2
|
+
-I../include -I$(top_srcdir)/include
|
|
2
3
|
|
|
3
4
|
EXTRA_DIST = \
|
|
4
5
|
byte_stream.h \
|
|
@@ -15,11 +16,9 @@ EXTRA_DIST = \
|
|
|
15
16
|
types.h.in \
|
|
16
17
|
wide_string.h
|
|
17
18
|
|
|
18
|
-
|
|
19
|
+
DISTCLEANFILES = \
|
|
20
|
+
config.h \
|
|
21
|
+
types.h \
|
|
22
|
+
Makefile \
|
|
19
23
|
Makefile.in
|
|
20
24
|
|
|
21
|
-
distclean: clean
|
|
22
|
-
-rm -f config.h
|
|
23
|
-
-rm -f types.h
|
|
24
|
-
-rm -f Makefile
|
|
25
|
-
|
|
@@ -406,7 +406,9 @@ target_alias = @target_alias@
|
|
|
406
406
|
top_build_prefix = @top_build_prefix@
|
|
407
407
|
top_builddir = @top_builddir@
|
|
408
408
|
top_srcdir = @top_srcdir@
|
|
409
|
-
AM_CPPFLAGS =
|
|
409
|
+
AM_CPPFLAGS = \
|
|
410
|
+
-I../include -I$(top_srcdir)/include
|
|
411
|
+
|
|
410
412
|
EXTRA_DIST = \
|
|
411
413
|
byte_stream.h \
|
|
412
414
|
common.h \
|
|
@@ -422,7 +424,10 @@ EXTRA_DIST = \
|
|
|
422
424
|
types.h.in \
|
|
423
425
|
wide_string.h
|
|
424
426
|
|
|
425
|
-
|
|
427
|
+
DISTCLEANFILES = \
|
|
428
|
+
config.h \
|
|
429
|
+
types.h \
|
|
430
|
+
Makefile \
|
|
426
431
|
Makefile.in
|
|
427
432
|
|
|
428
433
|
all: config.h
|
|
@@ -598,15 +603,17 @@ clean-generic:
|
|
|
598
603
|
distclean-generic:
|
|
599
604
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
600
605
|
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
|
606
|
+
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
|
601
607
|
|
|
602
608
|
maintainer-clean-generic:
|
|
603
609
|
@echo "This command is intended for maintainers to use"
|
|
604
610
|
@echo "it deletes files that may require special tools to rebuild."
|
|
605
|
-
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
|
606
611
|
clean: clean-am
|
|
607
612
|
|
|
608
613
|
clean-am: clean-generic clean-libtool mostlyclean-am
|
|
609
614
|
|
|
615
|
+
distclean: distclean-am
|
|
616
|
+
-rm -f Makefile
|
|
610
617
|
distclean-am: clean-am distclean-generic distclean-hdr distclean-tags
|
|
611
618
|
|
|
612
619
|
dvi: dvi-am
|
|
@@ -694,11 +701,6 @@ uninstall-am:
|
|
|
694
701
|
.PRECIOUS: Makefile
|
|
695
702
|
|
|
696
703
|
|
|
697
|
-
distclean: clean
|
|
698
|
-
-rm -f config.h
|
|
699
|
-
-rm -f types.h
|
|
700
|
-
-rm -f Makefile
|
|
701
|
-
|
|
702
704
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
703
705
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
704
706
|
.NOEXPORT:
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
#define HAVE_PRINTF_ZD 1
|
|
216
216
|
|
|
217
217
|
/* Define to 1 if you have the 'pthread' library (-lpthread). */
|
|
218
|
-
#
|
|
218
|
+
/* #undef HAVE_PTHREAD */
|
|
219
219
|
|
|
220
220
|
/* Define to 1 if you have the <pthread.h> header file. */
|
|
221
221
|
#define HAVE_PTHREAD_H 1
|
|
@@ -389,7 +389,7 @@
|
|
|
389
389
|
#define PACKAGE_NAME "libfwps"
|
|
390
390
|
|
|
391
391
|
/* Define to the full name and version of this package. */
|
|
392
|
-
#define PACKAGE_STRING "libfwps
|
|
392
|
+
#define PACKAGE_STRING "libfwps 20260522"
|
|
393
393
|
|
|
394
394
|
/* Define to the one symbol short name of this package. */
|
|
395
395
|
#define PACKAGE_TARNAME "libfwps"
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
#define PACKAGE_URL ""
|
|
399
399
|
|
|
400
400
|
/* Define to the version of this package. */
|
|
401
|
-
#define PACKAGE_VERSION "
|
|
401
|
+
#define PACKAGE_VERSION "20260522"
|
|
402
402
|
|
|
403
403
|
/* The size of `int', as computed by sizeof. */
|
|
404
404
|
#define SIZEOF_INT 4
|
|
@@ -424,7 +424,7 @@
|
|
|
424
424
|
/* #undef STRERROR_R_CHAR_P */
|
|
425
425
|
|
|
426
426
|
/* Version number of package */
|
|
427
|
-
#define VERSION "
|
|
427
|
+
#define VERSION "20260522"
|
|
428
428
|
|
|
429
429
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
|
430
430
|
/* #undef _FILE_OFFSET_BITS */
|