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.
Files changed (510) hide show
  1. libfwps_python-20260522/AUTHORS +4 -0
  2. {libfwps-20240310 → libfwps_python-20260522}/INSTALL +0 -0
  3. {libfwps-20240310 → libfwps_python-20260522}/Makefile.am +11 -17
  4. {libfwps-20240310 → libfwps_python-20260522}/Makefile.in +18 -21
  5. libfwps_python-20260522/PKG-INFO +29 -0
  6. {libfwps-20240310 → libfwps_python-20260522}/README +1 -1
  7. libfwps_python-20260522/_build.py +275 -0
  8. {libfwps-20240310 → libfwps_python-20260522}/acinclude.m4 +1 -1
  9. {libfwps-20240310 → libfwps_python-20260522}/common/Makefile.am +6 -7
  10. {libfwps-20240310 → libfwps_python-20260522}/common/Makefile.in +10 -8
  11. {libfwps-20240310 → libfwps_python-20260522}/common/byte_stream.h +1 -1
  12. {libfwps-20240310 → libfwps_python-20260522}/common/common.h +1 -1
  13. {libfwps-20240310 → libfwps_python-20260522}/common/config.h +4 -4
  14. {libfwps-20240310 → libfwps_python-20260522}/common/config_borlandc.h +1 -1
  15. {libfwps-20240310 → libfwps_python-20260522}/common/config_msc.h +1 -1
  16. {libfwps-20240310 → libfwps_python-20260522}/common/config_winapi.h +1 -1
  17. {libfwps-20240310 → libfwps_python-20260522}/common/file_stream.h +1 -1
  18. {libfwps-20240310 → libfwps_python-20260522}/common/memory.h +1 -1
  19. {libfwps-20240310 → libfwps_python-20260522}/common/narrow_string.h +1 -1
  20. {libfwps-20240310 → libfwps_python-20260522}/common/system_string.h +1 -1
  21. {libfwps-20240310 → libfwps_python-20260522}/common/types.h +1 -1
  22. {libfwps-20240310 → libfwps_python-20260522}/common/types.h.in +1 -1
  23. {libfwps-20240310 → libfwps_python-20260522}/common/wide_string.h +1 -1
  24. {libfwps-20240310 → libfwps_python-20260522}/config.guess +21 -41
  25. {libfwps-20240310 → libfwps_python-20260522}/config.sub +17 -34
  26. {libfwps-20240310 → libfwps_python-20260522}/configure +3318 -3446
  27. {libfwps-20240310 → libfwps_python-20260522}/configure.ac +14 -15
  28. libfwps_python-20260522/dpkg/changelog +5 -0
  29. {libfwps-20240310 → libfwps_python-20260522}/dpkg/copyright +1 -1
  30. {libfwps-20240310 → libfwps_python-20260522}/include/Makefile.am +6 -8
  31. {libfwps-20240310 → libfwps_python-20260522}/include/Makefile.in +9 -9
  32. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/codepage.h +1 -1
  33. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/definitions.h +3 -3
  34. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/definitions.h.in +1 -1
  35. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/error.h +1 -1
  36. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/extern.h +6 -3
  37. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/features.h +5 -1
  38. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/features.h.in +5 -1
  39. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/types.h +1 -1
  40. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps/types.h.in +1 -1
  41. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps.h +10 -1
  42. {libfwps-20240310 → libfwps_python-20260522}/include/libfwps.h.in +10 -1
  43. {libfwps-20240310 → libfwps_python-20260522}/libcdata/Makefile.am +4 -6
  44. {libfwps-20240310 → libfwps_python-20260522}/libcdata/Makefile.in +18 -7
  45. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_array.c +1 -1
  46. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_array.h +1 -1
  47. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree.c +1 -1
  48. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree.h +1 -1
  49. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree_node.c +1 -1
  50. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree_node.h +1 -1
  51. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree_values_list.c +1 -1
  52. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_btree_values_list.h +1 -1
  53. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_definitions.h +3 -3
  54. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_error.c +1 -1
  55. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_error.h +1 -1
  56. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_extern.h +1 -7
  57. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_libcerror.h +1 -1
  58. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_libcthreads.h +1 -1
  59. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_list.c +1 -1
  60. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_list.h +1 -1
  61. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_list_element.c +1 -1
  62. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_list_element.h +1 -1
  63. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_range_list.c +1 -1
  64. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_range_list.h +1 -1
  65. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_range_list_value.c +1 -1
  66. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_range_list_value.h +1 -1
  67. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_support.c +1 -1
  68. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_support.h +1 -1
  69. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_tree_node.c +1 -1
  70. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_tree_node.h +1 -1
  71. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_types.h +1 -1
  72. {libfwps-20240310 → libfwps_python-20260522}/libcdata/libcdata_unused.h +1 -1
  73. {libfwps-20240310 → libfwps_python-20260522}/libcerror/Makefile.am +4 -6
  74. {libfwps-20240310 → libfwps_python-20260522}/libcerror/Makefile.in +10 -7
  75. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_definitions.h +3 -3
  76. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_error.c +1 -1
  77. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_error.h +1 -1
  78. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_extern.h +1 -1
  79. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_support.c +1 -1
  80. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_support.h +1 -1
  81. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_system.c +1 -1
  82. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_system.h +1 -1
  83. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_types.h +1 -1
  84. {libfwps-20240310 → libfwps_python-20260522}/libcerror/libcerror_unused.h +1 -1
  85. {libfwps-20240310 → libfwps_python-20260522}/libclocale/Makefile.am +4 -6
  86. {libfwps-20240310 → libfwps_python-20260522}/libclocale/Makefile.in +11 -7
  87. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_codepage.c +33 -3
  88. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_codepage.h +1 -1
  89. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_definitions.h +3 -3
  90. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_extern.h +1 -7
  91. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_libcerror.h +3 -3
  92. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_locale.c +1 -1
  93. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_locale.h +1 -1
  94. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_support.c +1 -1
  95. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_support.h +1 -1
  96. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_unused.h +1 -1
  97. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_wide_string.c +1 -1
  98. {libfwps-20240310 → libfwps_python-20260522}/libclocale/libclocale_wide_string.h +1 -1
  99. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/Makefile.am +4 -6
  100. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/Makefile.in +11 -7
  101. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_definitions.h +3 -3
  102. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_extern.h +1 -7
  103. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_libcerror.h +1 -1
  104. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_print.c +1 -1
  105. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_print.h +1 -1
  106. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_stream.c +1 -1
  107. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_stream.h +1 -1
  108. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_support.c +1 -1
  109. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_support.h +1 -1
  110. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_unused.h +1 -1
  111. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_verbose.c +1 -1
  112. {libfwps-20240310 → libfwps_python-20260522}/libcnotify/libcnotify_verbose.h +1 -1
  113. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/Makefile.am +4 -6
  114. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/Makefile.in +18 -7
  115. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_condition.c +1 -1
  116. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_condition.h +1 -1
  117. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_definitions.h +3 -3
  118. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_error.c +1 -1
  119. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_error.h +1 -1
  120. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_extern.h +1 -1
  121. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_libcerror.h +1 -1
  122. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_lock.c +1 -1
  123. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_lock.h +1 -1
  124. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_mutex.c +1 -1
  125. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_mutex.h +1 -1
  126. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_queue.c +1 -1
  127. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_queue.h +1 -1
  128. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_read_write_lock.c +1 -1
  129. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_read_write_lock.h +1 -1
  130. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_repeating_thread.c +1 -1
  131. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_repeating_thread.h +1 -1
  132. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_support.c +1 -1
  133. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_support.h +1 -1
  134. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread.c +1 -1
  135. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread.h +1 -1
  136. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread_attributes.c +1 -1
  137. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread_attributes.h +1 -1
  138. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread_pool.c +1 -1
  139. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_thread_pool.h +1 -1
  140. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_types.h +1 -1
  141. {libfwps-20240310 → libfwps_python-20260522}/libcthreads/libcthreads_unused.h +1 -1
  142. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/Makefile.am +4 -6
  143. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/Makefile.in +17 -7
  144. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_date_time_values.c +1 -1
  145. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_date_time_values.h +1 -1
  146. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_definitions.h +3 -3
  147. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_error.c +1 -1
  148. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_error.h +1 -1
  149. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_extern.h +1 -7
  150. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_fat_date_time.c +1 -1
  151. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_fat_date_time.h +1 -1
  152. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_filetime.c +1 -1
  153. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_filetime.h +1 -1
  154. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_floatingtime.c +1 -1
  155. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_floatingtime.h +1 -1
  156. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_hfs_time.c +1 -1
  157. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_hfs_time.h +1 -1
  158. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_libcerror.h +1 -1
  159. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_nsf_timedate.c +1 -1
  160. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_nsf_timedate.h +1 -1
  161. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_posix_time.c +119 -43
  162. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_posix_time.h +1 -1
  163. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_support.c +1 -1
  164. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_support.h +1 -1
  165. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_systemtime.c +1 -1
  166. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_systemtime.h +1 -1
  167. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_types.h +1 -1
  168. {libfwps-20240310 → libfwps_python-20260522}/libfdatetime/libfdatetime_unused.h +1 -1
  169. {libfwps-20240310 → libfwps_python-20260522}/libfguid/Makefile.am +4 -6
  170. {libfwps-20240310 → libfwps_python-20260522}/libfguid/Makefile.in +10 -7
  171. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_definitions.h +3 -3
  172. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_error.c +1 -1
  173. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_error.h +1 -1
  174. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_extern.h +1 -7
  175. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_identifier.c +1 -1
  176. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_identifier.h +1 -1
  177. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_libcerror.h +1 -1
  178. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_support.c +1 -1
  179. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_support.h +1 -1
  180. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_types.h +1 -1
  181. {libfwps-20240310 → libfwps_python-20260522}/libfguid/libfguid_unused.h +1 -1
  182. {libfwps-20240310 → libfwps_python-20260522}/libfwps/Makefile.am +6 -8
  183. {libfwps-20240310 → libfwps_python-20260522}/libfwps/Makefile.in +19 -9
  184. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps.c +1 -1
  185. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps.rc +3 -3
  186. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps.rc.in +1 -1
  187. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_codepage.h +1 -1
  188. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_debug.c +1 -1
  189. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_debug.h +1 -1
  190. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_definitions.h +3 -3
  191. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_definitions.h.in +1 -1
  192. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_error.c +1 -1
  193. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_error.h +1 -1
  194. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_extern.h +1 -7
  195. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_format_class_identifier.c +1 -1
  196. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_format_class_identifier.h +1 -1
  197. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libcdata.h +1 -1
  198. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libcerror.h +1 -1
  199. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libcnotify.h +1 -1
  200. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libfguid.h +1 -1
  201. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_libuna.h +1 -1
  202. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_notify.c +1 -1
  203. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_notify.h +1 -1
  204. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_property_identifier.c +1 -1
  205. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_property_identifier.h +1 -1
  206. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_record.c +92 -7
  207. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_record.h +7 -1
  208. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_set.c +1 -1
  209. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_set.h +1 -1
  210. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_store.c +1 -1
  211. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_store.h +1 -1
  212. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_support.c +1 -1
  213. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_support.h +1 -1
  214. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_types.h +1 -1
  215. {libfwps-20240310 → libfwps_python-20260522}/libfwps/libfwps_unused.h +1 -1
  216. {libfwps-20240310 → libfwps_python-20260522}/libfwps.spec +2 -2
  217. {libfwps-20240310 → libfwps_python-20260522}/libuna/Makefile.am +4 -6
  218. {libfwps-20240310 → libfwps_python-20260522}/libuna/Makefile.in +70 -7
  219. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_definitions.h +2 -2
  220. {libfwps-20240310 → libfwps_python-20260522}/ltmain.sh +45 -38
  221. {libfwps-20240310 → libfwps_python-20260522}/m4/common.m4 +135 -79
  222. libfwps_python-20260522/m4/libcdata.m4 +227 -0
  223. {libfwps-20240310 → libfwps_python-20260522}/m4/libcerror.m4 +18 -69
  224. {libfwps-20240310 → libfwps_python-20260522}/m4/libclocale.m4 +16 -65
  225. {libfwps-20240310 → libfwps_python-20260522}/m4/libcnotify.m4 +17 -66
  226. libfwps_python-20260522/m4/libcthreads.m4 +214 -0
  227. libfwps_python-20260522/m4/libfdatetime.m4 +219 -0
  228. {libfwps-20240310 → libfwps_python-20260522}/m4/libfguid.m4 +20 -77
  229. {libfwps-20240310 → libfwps_python-20260522}/m4/libtool.m4 +40 -16
  230. libfwps_python-20260522/m4/libuna.m4 +311 -0
  231. {libfwps-20240310 → libfwps_python-20260522}/m4/ltoptions.m4 +0 -0
  232. {libfwps-20240310 → libfwps_python-20260522}/m4/ltsugar.m4 +0 -0
  233. {libfwps-20240310 → libfwps_python-20260522}/m4/ltversion.m4 +0 -0
  234. {libfwps-20240310 → libfwps_python-20260522}/m4/lt~obsolete.m4 +0 -0
  235. libfwps_python-20260522/m4/pthread.m4 +108 -0
  236. {libfwps-20240310 → libfwps_python-20260522}/m4/python.m4 +7 -5
  237. {libfwps-20240310 → libfwps_python-20260522}/manuals/Makefile.am +2 -4
  238. {libfwps-20240310 → libfwps_python-20260522}/manuals/Makefile.in +5 -5
  239. {libfwps-20240310 → libfwps_python-20260522}/manuals/libfwps.3 +4 -2
  240. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/Makefile.am +2 -4
  241. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/Makefile.in +5 -5
  242. {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/Makefile.am +4 -6
  243. {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/Makefile.in +10 -7
  244. {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/ossfuzz_libfwps.h +1 -1
  245. {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/record_fuzzer.cc +1 -1
  246. {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/set_fuzzer.cc +1 -1
  247. {libfwps-20240310 → libfwps_python-20260522}/ossfuzz/store_fuzzer.cc +1 -1
  248. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/Makefile.am +4 -6
  249. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/Makefile.in +18 -7
  250. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps.c +1 -1
  251. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps.h +1 -1
  252. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_codepage.c +1 -1
  253. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_codepage.h +1 -1
  254. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_error.c +1 -1
  255. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_error.h +1 -1
  256. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_guid.c +1 -1
  257. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_guid.h +1 -1
  258. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_integer.c +1 -1
  259. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_integer.h +1 -1
  260. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libcerror.h +1 -1
  261. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libclocale.h +1 -1
  262. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libfguid.h +1 -1
  263. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libfwps.h +1 -1
  264. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_libuna.h +1 -1
  265. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_python.h +1 -1
  266. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_record.c +1 -1
  267. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_record.h +1 -1
  268. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_records.c +1 -1
  269. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_records.h +1 -1
  270. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_set.c +1 -1
  271. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_set.h +1 -1
  272. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_sets.c +1 -1
  273. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_sets.h +1 -1
  274. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_store.c +1 -1
  275. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_store.h +1 -1
  276. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_string.c +1 -1
  277. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_string.h +1 -1
  278. {libfwps-20240310 → libfwps_python-20260522}/pyfwps/pyfwps_unused.h +1 -1
  279. libfwps_python-20260522/pyproject.toml +35 -0
  280. libfwps_python-20260522/pyproject.toml.in +35 -0
  281. {libfwps-20240310 → libfwps_python-20260522}/tests/Makefile.am +6 -7
  282. {libfwps-20240310 → libfwps_python-20260522}/tests/Makefile.in +17 -8
  283. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_error.c +1 -1
  284. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_libcerror.h +1 -1
  285. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_libfwps.h +1 -1
  286. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_macros.h +1 -1
  287. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_memory.c +1 -1
  288. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_memory.h +2 -2
  289. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_notify.c +1 -1
  290. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_property_identifier.c +1 -1
  291. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_record.c +3 -1
  292. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_set.c +1 -1
  293. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_store.c +1 -1
  294. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_support.c +1 -1
  295. {libfwps-20240310 → libfwps_python-20260522}/tests/fwps_test_unused.h +1 -1
  296. {libfwps-20240310 → libfwps_python-20260522}/tests/pyfwps_test_record.py +2 -2
  297. {libfwps-20240310 → libfwps_python-20260522}/tests/pyfwps_test_set.py +2 -2
  298. {libfwps-20240310 → libfwps_python-20260522}/tests/pyfwps_test_store.py +2 -2
  299. {libfwps-20240310 → libfwps_python-20260522}/tests/pyfwps_test_support.py +2 -2
  300. {libfwps-20240310 → libfwps_python-20260522}/tests/test_library.sh +16 -8
  301. {libfwps-20240310 → libfwps_python-20260522}/tests/test_manpage.sh +3 -6
  302. {libfwps-20240310 → libfwps_python-20260522}/tests/test_python_module.sh +19 -10
  303. libfwps-20240310/AUTHORS +0 -4
  304. libfwps-20240310/PKG-INFO +0 -13
  305. libfwps-20240310/dpkg/changelog +0 -5
  306. libfwps-20240310/m4/libcdata.m4 +0 -599
  307. libfwps-20240310/m4/libcthreads.m4 +0 -385
  308. libfwps-20240310/m4/libfdatetime.m4 +0 -560
  309. libfwps-20240310/m4/libuna.m4 +0 -1044
  310. libfwps-20240310/m4/pthread.m4 +0 -196
  311. libfwps-20240310/pyproject.toml +0 -4
  312. libfwps-20240310/setup.cfg +0 -16
  313. libfwps-20240310/setup.cfg.in +0 -16
  314. libfwps-20240310/setup.py +0 -293
  315. {libfwps-20240310 → libfwps_python-20260522}/ABOUT-NLS +0 -0
  316. {libfwps-20240310 → libfwps_python-20260522}/COPYING +0 -0
  317. {libfwps-20240310 → libfwps_python-20260522}/COPYING.LESSER +0 -0
  318. {libfwps-20240310 → libfwps_python-20260522}/ChangeLog +0 -0
  319. {libfwps-20240310 → libfwps_python-20260522}/NEWS +0 -0
  320. {libfwps-20240310 → libfwps_python-20260522}/aclocal.m4 +0 -0
  321. {libfwps-20240310 → libfwps_python-20260522}/common/config.h.in +0 -0
  322. {libfwps-20240310 → libfwps_python-20260522}/compile +0 -0
  323. {libfwps-20240310 → libfwps_python-20260522}/config.rpath +0 -0
  324. {libfwps-20240310 → libfwps_python-20260522}/depcomp +0 -0
  325. {libfwps-20240310 → libfwps_python-20260522}/dpkg/changelog.in +0 -0
  326. {libfwps-20240310 → libfwps_python-20260522}/dpkg/compat +0 -0
  327. {libfwps-20240310 → libfwps_python-20260522}/dpkg/control +0 -0
  328. {libfwps-20240310 → libfwps_python-20260522}/dpkg/libfwps-dev.install +0 -0
  329. {libfwps-20240310 → libfwps_python-20260522}/dpkg/libfwps-python3.install +0 -0
  330. {libfwps-20240310 → libfwps_python-20260522}/dpkg/libfwps.install +0 -0
  331. {libfwps-20240310 → libfwps_python-20260522}/dpkg/rules +0 -0
  332. {libfwps-20240310 → libfwps_python-20260522}/dpkg/source/format +0 -0
  333. {libfwps-20240310 → libfwps_python-20260522}/install-sh +0 -0
  334. {libfwps-20240310 → libfwps_python-20260522}/libfwps.pc.in +0 -0
  335. {libfwps-20240310 → libfwps_python-20260522}/libfwps.spec.in +0 -0
  336. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base16_stream.c +0 -0
  337. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base16_stream.h +0 -0
  338. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base32_stream.c +0 -0
  339. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base32_stream.h +0 -0
  340. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base64_stream.c +0 -0
  341. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_base64_stream.h +0 -0
  342. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_byte_stream.c +0 -0
  343. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_byte_stream.h +0 -0
  344. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_10.c +0 -0
  345. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_10.h +0 -0
  346. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_13.c +0 -0
  347. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_13.h +0 -0
  348. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_14.c +0 -0
  349. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_14.h +0 -0
  350. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_15.c +0 -0
  351. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_15.h +0 -0
  352. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_16.c +0 -0
  353. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_16.h +0 -0
  354. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_2.c +0 -0
  355. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_2.h +0 -0
  356. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_3.c +0 -0
  357. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_3.h +0 -0
  358. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_4.c +0 -0
  359. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_4.h +0 -0
  360. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_5.c +0 -0
  361. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_5.h +0 -0
  362. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_6.c +0 -0
  363. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_6.h +0 -0
  364. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_7.c +0 -0
  365. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_7.h +0 -0
  366. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_8.c +0 -0
  367. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_8.h +0 -0
  368. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_9.c +0 -0
  369. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_iso_8859_9.h +0 -0
  370. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_koi8_r.c +0 -0
  371. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_koi8_r.h +0 -0
  372. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_koi8_u.c +0 -0
  373. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_koi8_u.h +0 -0
  374. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_arabic.c +0 -0
  375. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_arabic.h +0 -0
  376. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_celtic.c +0 -0
  377. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_celtic.h +0 -0
  378. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_centraleurroman.c +0 -0
  379. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_centraleurroman.h +0 -0
  380. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_croatian.c +0 -0
  381. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_croatian.h +0 -0
  382. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_cyrillic.c +0 -0
  383. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_cyrillic.h +0 -0
  384. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_dingbats.c +0 -0
  385. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_dingbats.h +0 -0
  386. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_farsi.c +0 -0
  387. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_farsi.h +0 -0
  388. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_gaelic.c +0 -0
  389. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_gaelic.h +0 -0
  390. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_greek.c +0 -0
  391. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_greek.h +0 -0
  392. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_icelandic.c +0 -0
  393. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_icelandic.h +0 -0
  394. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_inuit.c +0 -0
  395. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_inuit.h +0 -0
  396. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_roman.c +0 -0
  397. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_roman.h +0 -0
  398. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_romanian.c +0 -0
  399. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_romanian.h +0 -0
  400. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_russian.c +0 -0
  401. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_russian.h +0 -0
  402. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_symbol.c +0 -0
  403. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_symbol.h +0 -0
  404. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_thai.c +0 -0
  405. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_thai.h +0 -0
  406. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_turkish.c +0 -0
  407. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_turkish.h +0 -0
  408. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_ukrainian.c +0 -0
  409. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_mac_ukrainian.h +0 -0
  410. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1250.c +0 -0
  411. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1250.h +0 -0
  412. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1251.c +0 -0
  413. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1251.h +0 -0
  414. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1252.c +0 -0
  415. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1252.h +0 -0
  416. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1253.c +0 -0
  417. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1253.h +0 -0
  418. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1254.c +0 -0
  419. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1254.h +0 -0
  420. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1255.c +0 -0
  421. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1255.h +0 -0
  422. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1256.c +0 -0
  423. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1256.h +0 -0
  424. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1257.c +0 -0
  425. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1257.h +0 -0
  426. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1258.c +0 -0
  427. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_1258.h +0 -0
  428. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_874.c +0 -0
  429. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_874.h +0 -0
  430. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_932.c +0 -0
  431. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_932.h +0 -0
  432. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_936.c +0 -0
  433. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_936.h +0 -0
  434. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_949.c +0 -0
  435. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_949.h +0 -0
  436. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_950.c +0 -0
  437. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_codepage_windows_950.h +0 -0
  438. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_error.c +0 -0
  439. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_error.h +0 -0
  440. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_extern.h +0 -0
  441. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_libcerror.h +0 -0
  442. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_scsu.c +0 -0
  443. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_scsu.h +0 -0
  444. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_support.c +0 -0
  445. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_support.h +0 -0
  446. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_types.h +0 -0
  447. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_unicode_character.c +0 -0
  448. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_unicode_character.h +0 -0
  449. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_unused.h +0 -0
  450. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_url_stream.c +0 -0
  451. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_url_stream.h +0 -0
  452. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf16_stream.c +0 -0
  453. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf16_stream.h +0 -0
  454. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf16_string.c +0 -0
  455. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf16_string.h +0 -0
  456. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf32_stream.c +0 -0
  457. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf32_stream.h +0 -0
  458. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf32_string.c +0 -0
  459. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf32_string.h +0 -0
  460. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf7_stream.c +0 -0
  461. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf7_stream.h +0 -0
  462. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf8_stream.c +0 -0
  463. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf8_stream.h +0 -0
  464. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf8_string.c +0 -0
  465. {libfwps-20240310 → libfwps_python-20260522}/libuna/libuna_utf8_string.h +0 -0
  466. {libfwps-20240310 → libfwps_python-20260522}/m4/gettext.m4 +0 -0
  467. {libfwps-20240310 → libfwps_python-20260522}/m4/host-cpu-c-abi.m4 +0 -0
  468. {libfwps-20240310 → libfwps_python-20260522}/m4/iconv.m4 +0 -0
  469. {libfwps-20240310 → libfwps_python-20260522}/m4/intlmacosx.m4 +0 -0
  470. {libfwps-20240310 → libfwps_python-20260522}/m4/lib-ld.m4 +0 -0
  471. {libfwps-20240310 → libfwps_python-20260522}/m4/lib-link.m4 +0 -0
  472. {libfwps-20240310 → libfwps_python-20260522}/m4/lib-prefix.m4 +0 -0
  473. {libfwps-20240310 → libfwps_python-20260522}/m4/nls.m4 +0 -0
  474. {libfwps-20240310 → libfwps_python-20260522}/m4/po.m4 +0 -0
  475. {libfwps-20240310 → libfwps_python-20260522}/m4/progtest.m4 +0 -0
  476. {libfwps-20240310 → libfwps_python-20260522}/m4/tests.m4 +0 -0
  477. {libfwps-20240310 → libfwps_python-20260522}/m4/types.m4 +0 -0
  478. {libfwps-20240310 → libfwps_python-20260522}/missing +0 -0
  479. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_error/fwps_test_error.vcproj +0 -0
  480. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_notify/fwps_test_notify.vcproj +0 -0
  481. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_property_identifier/fwps_test_property_identifier.vcproj +0 -0
  482. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_record/fwps_test_record.vcproj +0 -0
  483. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_set/fwps_test_set.vcproj +0 -0
  484. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_store/fwps_test_store.vcproj +0 -0
  485. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/fwps_test_support/fwps_test_support.vcproj +0 -0
  486. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libcdata/libcdata.vcproj +0 -0
  487. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libcerror/libcerror.vcproj +0 -0
  488. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libclocale/libclocale.vcproj +0 -0
  489. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  490. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  491. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  492. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libfguid/libfguid.vcproj +0 -0
  493. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libfwps/libfwps.vcproj +0 -0
  494. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libfwps.sln +0 -0
  495. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/libuna/libuna.vcproj +0 -0
  496. {libfwps-20240310 → libfwps_python-20260522}/msvscpp/pyfwps/pyfwps.vcproj +0 -0
  497. {libfwps-20240310 → libfwps_python-20260522}/po/ChangeLog +0 -0
  498. {libfwps-20240310 → libfwps_python-20260522}/po/Makefile.in.in +0 -0
  499. {libfwps-20240310 → libfwps_python-20260522}/po/Makevars +0 -0
  500. {libfwps-20240310 → libfwps_python-20260522}/po/Makevars.in +0 -0
  501. {libfwps-20240310 → libfwps_python-20260522}/po/POTFILES.in +0 -0
  502. {libfwps-20240310 → libfwps_python-20260522}/po/Rules-quot +0 -0
  503. {libfwps-20240310 → libfwps_python-20260522}/po/boldquot.sed +0 -0
  504. {libfwps-20240310 → libfwps_python-20260522}/po/en@boldquot.header +0 -0
  505. {libfwps-20240310 → libfwps_python-20260522}/po/en@quot.header +0 -0
  506. {libfwps-20240310 → libfwps_python-20260522}/po/insert-header.sin +0 -0
  507. {libfwps-20240310 → libfwps_python-20260522}/po/quot.sed +0 -0
  508. {libfwps-20240310 → libfwps_python-20260522}/po/remove-potcdate.sin +0 -0
  509. {libfwps-20240310 → libfwps_python-20260522}/test-driver +0 -0
  510. {libfwps-20240310 → libfwps_python-20260522}/tests/test_runner.sh +0 -0
@@ -0,0 +1,4 @@
1
+ Acknowledgements: libfwps
2
+
3
+ Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
4
+
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
- setup.cfg \
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
- MAINTAINERCLEANFILES = \
59
- Makefile.in
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 setup.cfg
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)/setup.cfg.in \
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
- setup.cfg \
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
- MAINTAINERCLEANFILES = \
567
- Makefile.in
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
- setup.cfg: $(top_builddir)/config.status $(srcdir)/setup.cfg.in
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
+
@@ -3,7 +3,7 @@ libfwps is a library for Windows Property Store data types.
3
3
  Project information:
4
4
 
5
5
  * Status: alpha
6
- * Licence: LGPLv3+
6
+ * Licence: LGPL-3.0-or-later
7
7
 
8
8
  For more information see:
9
9
 
@@ -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,6 +1,6 @@
1
1
  dnl Checks for required headers and functions
2
2
  dnl
3
- dnl Version: 20230130
3
+ dnl Version: 20240526
4
4
 
5
5
  dnl Function to detect if libfwps dependencies are available
6
6
  AC_DEFUN([AX_LIBFWPS_CHECK_LOCAL],
@@ -1,4 +1,5 @@
1
- AM_CPPFLAGS = -I$(top_srcdir)/include
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
- MAINTAINERCLEANFILES = \
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 = -I$(top_srcdir)/include
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
- MAINTAINERCLEANFILES = \
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:
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * Byte stream functions
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * Common include file
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *
@@ -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
- #define HAVE_PTHREAD 1
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 20240310"
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 "20240310"
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 "20240310"
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 */
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * Configuration for the Borland/CodeGear C++ Builder compiler
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * Configuration for the Microsoft Visual Studio C++ compiler
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * Configuration file for WINAPI
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * FILE stream functions
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * Memory functions
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * Narrow character string functions
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * System character string functions
3
3
  *
4
- * Copyright (C) 2013-2024, Joachim Metz <joachim.metz@gmail.com>
4
+ * Copyright (C) 2013-2026, Joachim Metz <joachim.metz@gmail.com>
5
5
  *
6
6
  * Refer to AUTHORS for acknowledgements.
7
7
  *