passagemath-gap-pkg-semigroups 10.6.29__cp312-abi3-macosx_13_0_x86_64.whl

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.

Potentially problematic release.


This version of passagemath-gap-pkg-semigroups might be problematic. Click here for more details.

Files changed (354) hide show
  1. gap/pkg/semigroups/CHANGELOG.md +1699 -0
  2. gap/pkg/semigroups/CONTRIBUTING.md +91 -0
  3. gap/pkg/semigroups/GNUmakefile +110 -0
  4. gap/pkg/semigroups/GNUmakefile.in +110 -0
  5. gap/pkg/semigroups/GPL +674 -0
  6. gap/pkg/semigroups/LICENSE +16 -0
  7. gap/pkg/semigroups/Makefile +26 -0
  8. gap/pkg/semigroups/Makefile.gappkg +225 -0
  9. gap/pkg/semigroups/PackageInfo.g +529 -0
  10. gap/pkg/semigroups/README.md +102 -0
  11. gap/pkg/semigroups/VERSIONS +112 -0
  12. gap/pkg/semigroups/aclocal.m4 +375 -0
  13. gap/pkg/semigroups/autogen.sh +25 -0
  14. gap/pkg/semigroups/bin/x86_64-apple-darwin22-default64-kv10/semigroups.so +0 -0
  15. gap/pkg/semigroups/config.guess +1807 -0
  16. gap/pkg/semigroups/config.log +1082 -0
  17. gap/pkg/semigroups/config.status +1134 -0
  18. gap/pkg/semigroups/config.sub +1960 -0
  19. gap/pkg/semigroups/configure +9742 -0
  20. gap/pkg/semigroups/configure.ac +71 -0
  21. gap/pkg/semigroups/data/doc/greens.pickle +1 -0
  22. gap/pkg/semigroups/data/gens/fullbool-8.pickle.gz +0 -0
  23. gap/pkg/semigroups/data/gens/fullbool.pickle.gz +0 -0
  24. gap/pkg/semigroups/data/gens/hall.pickle.gz +0 -0
  25. gap/pkg/semigroups/data/gens/reflex-6.pickle.gz +0 -0
  26. gap/pkg/semigroups/data/gens/reflex.pickle.gz +0 -0
  27. gap/pkg/semigroups/data/tst/bipart4 +10 -0
  28. gap/pkg/semigroups/data/tst/pperm10 +1 -0
  29. gap/pkg/semigroups/data/tst/tables.gz +0 -0
  30. gap/pkg/semigroups/data/tst/testdata +1 -0
  31. gap/pkg/semigroups/data/tst/testinstall.pickle +1 -0
  32. gap/pkg/semigroups/data/tst/trans3 +7 -0
  33. gap/pkg/semigroups/data/tst/trans3-old +7 -0
  34. gap/pkg/semigroups/environment.yml +7 -0
  35. gap/pkg/semigroups/gap/attributes/acting.gd +15 -0
  36. gap/pkg/semigroups/gap/attributes/acting.gi +297 -0
  37. gap/pkg/semigroups/gap/attributes/attr.gd +91 -0
  38. gap/pkg/semigroups/gap/attributes/attr.gi +1214 -0
  39. gap/pkg/semigroups/gap/attributes/dual.gd +25 -0
  40. gap/pkg/semigroups/gap/attributes/dual.gi +209 -0
  41. gap/pkg/semigroups/gap/attributes/factor.gd +17 -0
  42. gap/pkg/semigroups/gap/attributes/factor.gi +453 -0
  43. gap/pkg/semigroups/gap/attributes/homomorph.gd +84 -0
  44. gap/pkg/semigroups/gap/attributes/homomorph.gi +591 -0
  45. gap/pkg/semigroups/gap/attributes/inverse.gd +38 -0
  46. gap/pkg/semigroups/gap/attributes/inverse.gi +708 -0
  47. gap/pkg/semigroups/gap/attributes/isomorph.gd +16 -0
  48. gap/pkg/semigroups/gap/attributes/isomorph.gi +377 -0
  49. gap/pkg/semigroups/gap/attributes/isorms.gd +49 -0
  50. gap/pkg/semigroups/gap/attributes/isorms.gi +1383 -0
  51. gap/pkg/semigroups/gap/attributes/maximal.gd +16 -0
  52. gap/pkg/semigroups/gap/attributes/maximal.gi +1876 -0
  53. gap/pkg/semigroups/gap/attributes/properties.gd +109 -0
  54. gap/pkg/semigroups/gap/attributes/properties.gi +1658 -0
  55. gap/pkg/semigroups/gap/attributes/rms-translat.gd +39 -0
  56. gap/pkg/semigroups/gap/attributes/rms-translat.gi +1078 -0
  57. gap/pkg/semigroups/gap/attributes/semifp.gd +12 -0
  58. gap/pkg/semigroups/gap/attributes/semifp.gi +84 -0
  59. gap/pkg/semigroups/gap/attributes/translat.gd +474 -0
  60. gap/pkg/semigroups/gap/attributes/translat.gi +1779 -0
  61. gap/pkg/semigroups/gap/congruences/cong.gd +154 -0
  62. gap/pkg/semigroups/gap/congruences/cong.gi +351 -0
  63. gap/pkg/semigroups/gap/congruences/conginv.gd +38 -0
  64. gap/pkg/semigroups/gap/congruences/conginv.gi +589 -0
  65. gap/pkg/semigroups/gap/congruences/conglatt.gd +101 -0
  66. gap/pkg/semigroups/gap/congruences/conglatt.gi +886 -0
  67. gap/pkg/semigroups/gap/congruences/congpairs.gd +21 -0
  68. gap/pkg/semigroups/gap/congruences/congpairs.gi +272 -0
  69. gap/pkg/semigroups/gap/congruences/congpart.gd +90 -0
  70. gap/pkg/semigroups/gap/congruences/congpart.gi +449 -0
  71. gap/pkg/semigroups/gap/congruences/congrees.gd +20 -0
  72. gap/pkg/semigroups/gap/congruences/congrees.gi +313 -0
  73. gap/pkg/semigroups/gap/congruences/congrms.gd +54 -0
  74. gap/pkg/semigroups/gap/congruences/congrms.gi +1467 -0
  75. gap/pkg/semigroups/gap/congruences/congsemigraph.gd +28 -0
  76. gap/pkg/semigroups/gap/congruences/congsemigraph.gi +289 -0
  77. gap/pkg/semigroups/gap/congruences/congsimple.gd +27 -0
  78. gap/pkg/semigroups/gap/congruences/congsimple.gi +236 -0
  79. gap/pkg/semigroups/gap/congruences/conguniv.gd +20 -0
  80. gap/pkg/semigroups/gap/congruences/conguniv.gi +271 -0
  81. gap/pkg/semigroups/gap/congruences/congwordgraph.gd +21 -0
  82. gap/pkg/semigroups/gap/congruences/congwordgraph.gi +250 -0
  83. gap/pkg/semigroups/gap/elements/bipart.gd +71 -0
  84. gap/pkg/semigroups/gap/elements/bipart.gi +995 -0
  85. gap/pkg/semigroups/gap/elements/blocks.gd +31 -0
  86. gap/pkg/semigroups/gap/elements/blocks.gi +134 -0
  87. gap/pkg/semigroups/gap/elements/boolmat.gd +74 -0
  88. gap/pkg/semigroups/gap/elements/boolmat.gi +726 -0
  89. gap/pkg/semigroups/gap/elements/elements.gd +11 -0
  90. gap/pkg/semigroups/gap/elements/elements.gi +121 -0
  91. gap/pkg/semigroups/gap/elements/ffmat.gd +71 -0
  92. gap/pkg/semigroups/gap/elements/ffmat.gi +311 -0
  93. gap/pkg/semigroups/gap/elements/maxplusmat.gd +131 -0
  94. gap/pkg/semigroups/gap/elements/maxplusmat.gi +782 -0
  95. gap/pkg/semigroups/gap/elements/pbr.gd +51 -0
  96. gap/pkg/semigroups/gap/elements/pbr.gi +740 -0
  97. gap/pkg/semigroups/gap/elements/pperm.gd +11 -0
  98. gap/pkg/semigroups/gap/elements/pperm.gi +14 -0
  99. gap/pkg/semigroups/gap/elements/semiringmat.gd +136 -0
  100. gap/pkg/semigroups/gap/elements/semiringmat.gi +717 -0
  101. gap/pkg/semigroups/gap/elements/star.gd +21 -0
  102. gap/pkg/semigroups/gap/elements/star.gi +21 -0
  103. gap/pkg/semigroups/gap/elements/trans.gd +13 -0
  104. gap/pkg/semigroups/gap/elements/trans.gi +50 -0
  105. gap/pkg/semigroups/gap/fp/freeband.gd +22 -0
  106. gap/pkg/semigroups/gap/fp/freeband.gi +502 -0
  107. gap/pkg/semigroups/gap/fp/freeinverse.gd +30 -0
  108. gap/pkg/semigroups/gap/fp/freeinverse.gi +465 -0
  109. gap/pkg/semigroups/gap/fp/tietze.gd +89 -0
  110. gap/pkg/semigroups/gap/fp/tietze.gi +1578 -0
  111. gap/pkg/semigroups/gap/fp/word.gd +15 -0
  112. gap/pkg/semigroups/gap/fp/word.gi +67 -0
  113. gap/pkg/semigroups/gap/greens/acting-inverse.gi +774 -0
  114. gap/pkg/semigroups/gap/greens/acting-regular.gi +553 -0
  115. gap/pkg/semigroups/gap/greens/acting.gd +81 -0
  116. gap/pkg/semigroups/gap/greens/acting.gi +2433 -0
  117. gap/pkg/semigroups/gap/greens/froidure-pin.gd +25 -0
  118. gap/pkg/semigroups/gap/greens/froidure-pin.gi +741 -0
  119. gap/pkg/semigroups/gap/greens/generic.gd +117 -0
  120. gap/pkg/semigroups/gap/greens/generic.gi +630 -0
  121. gap/pkg/semigroups/gap/ideals/acting.gd +17 -0
  122. gap/pkg/semigroups/gap/ideals/acting.gi +1155 -0
  123. gap/pkg/semigroups/gap/ideals/froidure-pin.gd +11 -0
  124. gap/pkg/semigroups/gap/ideals/froidure-pin.gi +105 -0
  125. gap/pkg/semigroups/gap/ideals/ideals.gd +45 -0
  126. gap/pkg/semigroups/gap/ideals/ideals.gi +442 -0
  127. gap/pkg/semigroups/gap/ideals/lambda-rho.gd +16 -0
  128. gap/pkg/semigroups/gap/ideals/lambda-rho.gi +614 -0
  129. gap/pkg/semigroups/gap/libsemigroups/cong.gd +24 -0
  130. gap/pkg/semigroups/gap/libsemigroups/cong.gi +431 -0
  131. gap/pkg/semigroups/gap/libsemigroups/fpsemi.gd +16 -0
  132. gap/pkg/semigroups/gap/libsemigroups/fpsemi.gi +53 -0
  133. gap/pkg/semigroups/gap/libsemigroups/froidure-pin.gd +17 -0
  134. gap/pkg/semigroups/gap/libsemigroups/froidure-pin.gi +945 -0
  135. gap/pkg/semigroups/gap/libsemigroups/sims1.gd +38 -0
  136. gap/pkg/semigroups/gap/libsemigroups/sims1.gi +308 -0
  137. gap/pkg/semigroups/gap/main/acting.gd +36 -0
  138. gap/pkg/semigroups/gap/main/acting.gi +779 -0
  139. gap/pkg/semigroups/gap/main/froidure-pin.gd +72 -0
  140. gap/pkg/semigroups/gap/main/froidure-pin.gi +655 -0
  141. gap/pkg/semigroups/gap/main/graded.gd +26 -0
  142. gap/pkg/semigroups/gap/main/graded.gi +355 -0
  143. gap/pkg/semigroups/gap/main/lambda-rho.gd +29 -0
  144. gap/pkg/semigroups/gap/main/lambda-rho.gi +514 -0
  145. gap/pkg/semigroups/gap/main/orbits.gd +24 -0
  146. gap/pkg/semigroups/gap/main/orbits.gi +512 -0
  147. gap/pkg/semigroups/gap/main/semiact.gd +20 -0
  148. gap/pkg/semigroups/gap/main/semiact.gi +821 -0
  149. gap/pkg/semigroups/gap/main/setup.gd +61 -0
  150. gap/pkg/semigroups/gap/main/setup.gi +1094 -0
  151. gap/pkg/semigroups/gap/obsolete.gd +9 -0
  152. gap/pkg/semigroups/gap/obsolete.gi +14 -0
  153. gap/pkg/semigroups/gap/options.g +55 -0
  154. gap/pkg/semigroups/gap/semigroups/grpperm.gd +12 -0
  155. gap/pkg/semigroups/gap/semigroups/grpperm.gi +177 -0
  156. gap/pkg/semigroups/gap/semigroups/semibipart.gd +28 -0
  157. gap/pkg/semigroups/gap/semigroups/semibipart.gi +570 -0
  158. gap/pkg/semigroups/gap/semigroups/semiboolmat.gd +20 -0
  159. gap/pkg/semigroups/gap/semigroups/semiboolmat.gi +104 -0
  160. gap/pkg/semigroups/gap/semigroups/semicons.gd +52 -0
  161. gap/pkg/semigroups/gap/semigroups/semicons.gi +1194 -0
  162. gap/pkg/semigroups/gap/semigroups/semidp.gd +13 -0
  163. gap/pkg/semigroups/gap/semigroups/semidp.gi +509 -0
  164. gap/pkg/semigroups/gap/semigroups/semieunit.gd +126 -0
  165. gap/pkg/semigroups/gap/semigroups/semieunit.gi +889 -0
  166. gap/pkg/semigroups/gap/semigroups/semiex.gd +104 -0
  167. gap/pkg/semigroups/gap/semigroups/semiex.gi +1590 -0
  168. gap/pkg/semigroups/gap/semigroups/semiffmat.gd +37 -0
  169. gap/pkg/semigroups/gap/semigroups/semiffmat.gi +565 -0
  170. gap/pkg/semigroups/gap/semigroups/semifp.gd +28 -0
  171. gap/pkg/semigroups/gap/semigroups/semifp.gi +1364 -0
  172. gap/pkg/semigroups/gap/semigroups/semigraph.gd +40 -0
  173. gap/pkg/semigroups/gap/semigroups/semigraph.gi +292 -0
  174. gap/pkg/semigroups/gap/semigroups/semigrp.gd +165 -0
  175. gap/pkg/semigroups/gap/semigroups/semigrp.gi +1225 -0
  176. gap/pkg/semigroups/gap/semigroups/semimaxplus.gd +72 -0
  177. gap/pkg/semigroups/gap/semigroups/semimaxplus.gi +710 -0
  178. gap/pkg/semigroups/gap/semigroups/semintmat.gd +13 -0
  179. gap/pkg/semigroups/gap/semigroups/semintmat.gi +74 -0
  180. gap/pkg/semigroups/gap/semigroups/semipbr.gd +19 -0
  181. gap/pkg/semigroups/gap/semigroups/semipbr.gi +139 -0
  182. gap/pkg/semigroups/gap/semigroups/semipperm.gd +27 -0
  183. gap/pkg/semigroups/gap/semigroups/semipperm.gi +711 -0
  184. gap/pkg/semigroups/gap/semigroups/semiquo.gd +14 -0
  185. gap/pkg/semigroups/gap/semigroups/semiquo.gi +97 -0
  186. gap/pkg/semigroups/gap/semigroups/semiringmat.gd +16 -0
  187. gap/pkg/semigroups/gap/semigroups/semiringmat.gi +21 -0
  188. gap/pkg/semigroups/gap/semigroups/semirms.gd +19 -0
  189. gap/pkg/semigroups/gap/semigroups/semirms.gi +977 -0
  190. gap/pkg/semigroups/gap/semigroups/semitrans.gd +49 -0
  191. gap/pkg/semigroups/gap/semigroups/semitrans.gi +909 -0
  192. gap/pkg/semigroups/gap/tools/display.gd +24 -0
  193. gap/pkg/semigroups/gap/tools/display.gi +749 -0
  194. gap/pkg/semigroups/gap/tools/io.gd +17 -0
  195. gap/pkg/semigroups/gap/tools/io.gi +543 -0
  196. gap/pkg/semigroups/gap/tools/iterators.gd +16 -0
  197. gap/pkg/semigroups/gap/tools/iterators.gi +253 -0
  198. gap/pkg/semigroups/gap/tools/utils.gd +19 -0
  199. gap/pkg/semigroups/gap/tools/utils.gi +756 -0
  200. gap/pkg/semigroups/gapbind14/.ccls +18 -0
  201. gap/pkg/semigroups/gapbind14/.clang-format +104 -0
  202. gap/pkg/semigroups/gapbind14/CPPLINT.cfg +5 -0
  203. gap/pkg/semigroups/gapbind14/LICENSE +674 -0
  204. gap/pkg/semigroups/gapbind14/README.md +76 -0
  205. gap/pkg/semigroups/gapbind14/demo/.gitignore +4 -0
  206. gap/pkg/semigroups/gapbind14/demo/LICENSE +293 -0
  207. gap/pkg/semigroups/gapbind14/demo/Makefile.gappkg +220 -0
  208. gap/pkg/semigroups/gapbind14/demo/Makefile.in +19 -0
  209. gap/pkg/semigroups/gapbind14/demo/PackageInfo.g +87 -0
  210. gap/pkg/semigroups/gapbind14/demo/README.md +17 -0
  211. gap/pkg/semigroups/gapbind14/demo/configure +34 -0
  212. gap/pkg/semigroups/gapbind14/demo/gap/gapbind_demo.gd +19 -0
  213. gap/pkg/semigroups/gapbind14/demo/gap/gapbind_demo.gi +10 -0
  214. gap/pkg/semigroups/gapbind14/demo/init.g +16 -0
  215. gap/pkg/semigroups/gapbind14/demo/makedoc.g +10 -0
  216. gap/pkg/semigroups/gapbind14/demo/read.g +6 -0
  217. gap/pkg/semigroups/gapbind14/demo/src/gapbind_demo.cc +142 -0
  218. gap/pkg/semigroups/gapbind14/demo/tst/testall.g +12 -0
  219. gap/pkg/semigroups/gapbind14/include/gapbind14/cpp_fn.hpp +223 -0
  220. gap/pkg/semigroups/gapbind14/include/gapbind14/gap_include.hpp +26 -0
  221. gap/pkg/semigroups/gapbind14/include/gapbind14/gapbind14.hpp +445 -0
  222. gap/pkg/semigroups/gapbind14/include/gapbind14/tame_free_fn.hpp +420 -0
  223. gap/pkg/semigroups/gapbind14/include/gapbind14/tame_mem_fn.hpp +556 -0
  224. gap/pkg/semigroups/gapbind14/include/gapbind14/to_cpp.hpp +162 -0
  225. gap/pkg/semigroups/gapbind14/include/gapbind14/to_gap.hpp +158 -0
  226. gap/pkg/semigroups/gapbind14/src/.clang-format +108 -0
  227. gap/pkg/semigroups/gapbind14/src/gapbind14.cpp +334 -0
  228. gap/pkg/semigroups/init.g +150 -0
  229. gap/pkg/semigroups/m4/ax_append_flag.m4 +50 -0
  230. gap/pkg/semigroups/m4/ax_check_compile_flag.m4 +53 -0
  231. gap/pkg/semigroups/m4/ax_check_hpcombi.m4 +121 -0
  232. gap/pkg/semigroups/m4/ax_check_libsemigroup.m4 +68 -0
  233. gap/pkg/semigroups/m4/ax_compare_version.m4 +177 -0
  234. gap/pkg/semigroups/m4/ax_cxx_compile_stdcxx.m4 +1009 -0
  235. gap/pkg/semigroups/m4/ax_cxx_compile_stdcxx_14.m4 +34 -0
  236. gap/pkg/semigroups/m4/ax_prefix_config_h.m4 +203 -0
  237. gap/pkg/semigroups/m4/ax_pthread.m4 +522 -0
  238. gap/pkg/semigroups/m4/find_gap.m4 +94 -0
  239. gap/pkg/semigroups/makedoc.g +153 -0
  240. gap/pkg/semigroups/prerequisites.sh +62 -0
  241. gap/pkg/semigroups/read.g +105 -0
  242. gap/pkg/semigroups/release.toml +6 -0
  243. gap/pkg/semigroups/tst/extreme/README +2 -0
  244. gap/pkg/semigroups/tst/extreme/attrinv.tst +703 -0
  245. gap/pkg/semigroups/tst/extreme/bipart.tst +2803 -0
  246. gap/pkg/semigroups/tst/extreme/closure.tst +652 -0
  247. gap/pkg/semigroups/tst/extreme/cong.tst +286 -0
  248. gap/pkg/semigroups/tst/extreme/conginv.tst +43 -0
  249. gap/pkg/semigroups/tst/extreme/examples.tst +2449 -0
  250. gap/pkg/semigroups/tst/extreme/freeband.tst +37 -0
  251. gap/pkg/semigroups/tst/extreme/greens-acting-regular.tst +27 -0
  252. gap/pkg/semigroups/tst/extreme/greens-acting.tst +1999 -0
  253. gap/pkg/semigroups/tst/extreme/ideals.tst +858 -0
  254. gap/pkg/semigroups/tst/extreme/inverse.tst +1025 -0
  255. gap/pkg/semigroups/tst/extreme/maximal.tst +856 -0
  256. gap/pkg/semigroups/tst/extreme/misc.tst +4236 -0
  257. gap/pkg/semigroups/tst/extreme/monoid_pkg.tst +1488 -0
  258. gap/pkg/semigroups/tst/extreme/properties.tst +914 -0
  259. gap/pkg/semigroups/tst/extreme/semibipart.tst +2837 -0
  260. gap/pkg/semigroups/tst/extreme/semieunit.tst +49 -0
  261. gap/pkg/semigroups/tst/extreme/semiffmat.tst +353 -0
  262. gap/pkg/semigroups/tst/extreme/semigroups.tst +245 -0
  263. gap/pkg/semigroups/tst/extreme/semiiter.tst +58 -0
  264. gap/pkg/semigroups/tst/extreme/semirms.tst +1091 -0
  265. gap/pkg/semigroups/tst/extreme/transform.tst +305 -0
  266. gap/pkg/semigroups/tst/extreme/translat.tst +44 -0
  267. gap/pkg/semigroups/tst/standard/README +2 -0
  268. gap/pkg/semigroups/tst/standard/attributes/acting.tst +388 -0
  269. gap/pkg/semigroups/tst/standard/attributes/attr.tst +2404 -0
  270. gap/pkg/semigroups/tst/standard/attributes/dual.tst +308 -0
  271. gap/pkg/semigroups/tst/standard/attributes/factor.tst +629 -0
  272. gap/pkg/semigroups/tst/standard/attributes/homomorph.tst +1134 -0
  273. gap/pkg/semigroups/tst/standard/attributes/inverse.tst +1521 -0
  274. gap/pkg/semigroups/tst/standard/attributes/isomorph.tst +435 -0
  275. gap/pkg/semigroups/tst/standard/attributes/isorms.tst +1147 -0
  276. gap/pkg/semigroups/tst/standard/attributes/maximal.tst +853 -0
  277. gap/pkg/semigroups/tst/standard/attributes/properties.tst +2028 -0
  278. gap/pkg/semigroups/tst/standard/attributes/semifp.tst +53 -0
  279. gap/pkg/semigroups/tst/standard/attributes/translat.tst +796 -0
  280. gap/pkg/semigroups/tst/standard/congruences/cong.tst +1044 -0
  281. gap/pkg/semigroups/tst/standard/congruences/conginv.tst +292 -0
  282. gap/pkg/semigroups/tst/standard/congruences/conglatt.tst +421 -0
  283. gap/pkg/semigroups/tst/standard/congruences/congpairs.tst +1011 -0
  284. gap/pkg/semigroups/tst/standard/congruences/congrees.tst +288 -0
  285. gap/pkg/semigroups/tst/standard/congruences/congrms.tst +701 -0
  286. gap/pkg/semigroups/tst/standard/congruences/congsemigraph.tst +422 -0
  287. gap/pkg/semigroups/tst/standard/congruences/congsimple.tst +311 -0
  288. gap/pkg/semigroups/tst/standard/congruences/conguniv.tst +259 -0
  289. gap/pkg/semigroups/tst/standard/congruences/congwordgraph.tst +330 -0
  290. gap/pkg/semigroups/tst/standard/elements/bipart.tst +783 -0
  291. gap/pkg/semigroups/tst/standard/elements/blocks.tst +166 -0
  292. gap/pkg/semigroups/tst/standard/elements/boolmat.tst +608 -0
  293. gap/pkg/semigroups/tst/standard/elements/elements.tst +117 -0
  294. gap/pkg/semigroups/tst/standard/elements/ffmat.tst +349 -0
  295. gap/pkg/semigroups/tst/standard/elements/maxplusmat.tst +613 -0
  296. gap/pkg/semigroups/tst/standard/elements/pbr.tst +506 -0
  297. gap/pkg/semigroups/tst/standard/elements/pperm.tst +32 -0
  298. gap/pkg/semigroups/tst/standard/elements/semiringmat.tst +601 -0
  299. gap/pkg/semigroups/tst/standard/elements/trans.tst +58 -0
  300. gap/pkg/semigroups/tst/standard/fp/freeband.tst +311 -0
  301. gap/pkg/semigroups/tst/standard/fp/freeinverse.tst +147 -0
  302. gap/pkg/semigroups/tst/standard/fp/tietze.tst +780 -0
  303. gap/pkg/semigroups/tst/standard/fp/word.tst +106 -0
  304. gap/pkg/semigroups/tst/standard/greens/acting-inverse.tst +545 -0
  305. gap/pkg/semigroups/tst/standard/greens/acting-regular.tst +396 -0
  306. gap/pkg/semigroups/tst/standard/greens/acting.tst +2033 -0
  307. gap/pkg/semigroups/tst/standard/greens/froidure-pin.tst +1831 -0
  308. gap/pkg/semigroups/tst/standard/greens/generic.tst +1436 -0
  309. gap/pkg/semigroups/tst/standard/ideals/acting.tst +279 -0
  310. gap/pkg/semigroups/tst/standard/ideals/froidure-pin.tst +178 -0
  311. gap/pkg/semigroups/tst/standard/ideals/ideals.tst +380 -0
  312. gap/pkg/semigroups/tst/standard/libsemigroups/cong.tst +310 -0
  313. gap/pkg/semigroups/tst/standard/libsemigroups/froidure-pin.tst +778 -0
  314. gap/pkg/semigroups/tst/standard/libsemigroups/sims1.tst +379 -0
  315. gap/pkg/semigroups/tst/standard/main/acting.tst +411 -0
  316. gap/pkg/semigroups/tst/standard/main/froidure-pin.tst +392 -0
  317. gap/pkg/semigroups/tst/standard/main/semiact.tst +203 -0
  318. gap/pkg/semigroups/tst/standard/main/setup.tst +1144 -0
  319. gap/pkg/semigroups/tst/standard/obsolete.tst +19 -0
  320. gap/pkg/semigroups/tst/standard/options.tst +54 -0
  321. gap/pkg/semigroups/tst/standard/semigroups/grpperm.tst +581 -0
  322. gap/pkg/semigroups/tst/standard/semigroups/semibipart.tst +2635 -0
  323. gap/pkg/semigroups/tst/standard/semigroups/semiboolmat.tst +1871 -0
  324. gap/pkg/semigroups/tst/standard/semigroups/semicons.tst +1173 -0
  325. gap/pkg/semigroups/tst/standard/semigroups/semidp.tst +739 -0
  326. gap/pkg/semigroups/tst/standard/semigroups/semieunit.tst +339 -0
  327. gap/pkg/semigroups/tst/standard/semigroups/semiex.tst +2055 -0
  328. gap/pkg/semigroups/tst/standard/semigroups/semiffmat.tst +746 -0
  329. gap/pkg/semigroups/tst/standard/semigroups/semifp.tst +2702 -0
  330. gap/pkg/semigroups/tst/standard/semigroups/semigraph.tst +133 -0
  331. gap/pkg/semigroups/tst/standard/semigroups/semigrp.tst +1112 -0
  332. gap/pkg/semigroups/tst/standard/semigroups/semimaxplus.tst +654 -0
  333. gap/pkg/semigroups/tst/standard/semigroups/semipbr.tst +2142 -0
  334. gap/pkg/semigroups/tst/standard/semigroups/semipperm.tst +2169 -0
  335. gap/pkg/semigroups/tst/standard/semigroups/semiquo.tst +278 -0
  336. gap/pkg/semigroups/tst/standard/semigroups/semirms.tst +3010 -0
  337. gap/pkg/semigroups/tst/standard/semigroups/semitrans.tst +2758 -0
  338. gap/pkg/semigroups/tst/standard/tools/display.tst +1040 -0
  339. gap/pkg/semigroups/tst/standard/tools/io.tst +363 -0
  340. gap/pkg/semigroups/tst/testinstall.tst +1815 -0
  341. gap/pkg/semigroups/tst/teststandard.g +22 -0
  342. gap/pkg/semigroups/tst/workspaces/load-workspace.tst +142 -0
  343. gap/pkg/semigroups/tst/workspaces/load.g +11 -0
  344. gap/pkg/semigroups/tst/workspaces/save-workspace.tst +166 -0
  345. gap/pkg/semigroups/tst/workspaces/save.g +14 -0
  346. passagemath_gap_pkg_semigroups-10.6.29.dist-info/METADATA +93 -0
  347. passagemath_gap_pkg_semigroups-10.6.29.dist-info/METADATA.bak +94 -0
  348. passagemath_gap_pkg_semigroups-10.6.29.dist-info/RECORD +354 -0
  349. passagemath_gap_pkg_semigroups-10.6.29.dist-info/WHEEL +6 -0
  350. passagemath_gap_pkg_semigroups-10.6.29.dist-info/top_level.txt +1 -0
  351. passagemath_gap_pkg_semigroups.dylibs/libsemigroups.2.dylib +0 -0
  352. sage/all__sagemath_gap_pkg_semigroups.py +1 -0
  353. sage/libs/all__sagemath_gap_pkg_semigroups.py +1 -0
  354. sage/libs/gap_pkg_semigroups.abi3.so +0 -0
@@ -0,0 +1,112 @@
1
+ #############################################################################
2
+ ##
3
+ ## VERSIONS
4
+ ## Copyright (C) 2011-2025 James D. Mitchell
5
+ ##
6
+ ## Licensing information can be found in the README file of this package.
7
+ ##
8
+ #############################################################################
9
+ ##
10
+ ##
11
+
12
+ release 5.5.3 - 17/07/2025
13
+ release 5.5.2 - 11/07/2025
14
+ release 5.5.1 - 19/06/2025
15
+ release 5.5.0 - 19/02/2025
16
+ release 5.4.0 - 19/10/2024
17
+ release 5.3.7 - 11/03/2024
18
+ release 5.3.6 - 19/02/2024
19
+ release 5.3.5 - 14/02/2024
20
+ release 5.3.4 - 24/01/2024
21
+ release 5.3.3 - 05/01/2024
22
+ release 5.3.2 - 07/10/2023
23
+ release 5.3.1 - 19/09/2023
24
+ release 5.3.0 - 18/09/2023
25
+ release 5.2.1 - 05/03/2023
26
+ release 5.2.0 - 01/12/2022
27
+ release 5.1.0 - 31/10/2022
28
+ release 5.0.2 - 12/08/2022
29
+ release 5.0.1 - 11/08/2022
30
+ release 5.0.0 - 05/08/2022
31
+ release 4.0.3 - 01/07/2022
32
+ release 4.0.2 - 05/06/2022
33
+ release 4.0.1 - 21/04/2022
34
+ release 4.0.0 - 28/02/2022
35
+ release 3.4.2 - 07/02/2021
36
+ release 3.4.1 - 28/01/2021
37
+ release 3.4.0 - 28/08/2020
38
+ release 3.3.2 - 28/06/2020
39
+ release 3.3.1 - 28/05/2020
40
+ release 3.3.0 - 28/04/2020
41
+ release 3.2.5 - 28/03/2020
42
+ release 3.2.4 - 28/02/2020
43
+ release 3.2.3 - 07/02/2020
44
+ release 3.2.2 - 17/01/2020
45
+ release 3.2.1 - 04/12/2019
46
+ release 3.2.0 - 04/10/2019
47
+ release 3.1.5 - 19/09/2019
48
+ release 3.1.4 - 30/08/2019
49
+ release 3.1.3 - 07/06/2019
50
+ release 3.1.2 - 15/03/2019
51
+ release 3.1.1 - 15/02/2019
52
+ release 3.1.0 - 14/01/2019
53
+ release 3.0.20 - 01/10/2018
54
+ release 3.0.19 - 18/09/2018
55
+ release 3.0.18 - 11/09/2018
56
+ release 3.0.17 - 23/08/2018
57
+ release 3.0.16 - 29/05/2018
58
+ release 3.0.15 - 24/03/2018
59
+ release 3.0.14 - 15/02/2018
60
+ release 3.0.13 - 08/02/2018
61
+ release 3.0.12 - 17/01/2018
62
+ release 3.0.11 - 18/12/2017
63
+ release 3.0.10 - 04/12/2017
64
+ release 3.0.9 - 24/11/2017
65
+ release 3.0.8 - 10/11/2017
66
+ release 3.0.7 - 02/10/2017
67
+ release 3.0.6 - 27/09/2017
68
+ release 3.0.5 - 23/08/2017
69
+ release 3.0.4 - 16/07/2017
70
+ release 3.0.3 - 21/06/2017
71
+ release 3.0.2 - 16/06/2017
72
+ release 3.0.1 - 03/06/2017
73
+ release 3.0.0 - 02/06/2017
74
+ release 2.8.2 - 15/01/2018
75
+ release 2.8.1 - 22/12/2017
76
+ release 2.8.0 - 26/05/2016
77
+ release 2.7.6 - 19/04/2016
78
+ release 2.7.5 - 19/04/2016
79
+ release 2.7.4 - 02/03/2016
80
+ release 2.7.3 - 15/02/2016
81
+ release 2.7.2 - 28/01/2016
82
+ release 2.7.1 - 19/12/2015
83
+ release 2.7.0 - 30/11/2015
84
+ release 2.6.0 - 22/09/2015
85
+ release 2.5.0 - 01/06/2015
86
+ release 2.4.1 - 15/05/2015
87
+ release 2.4.0 - 02/04/2015
88
+ release 2.3.0 - 16/03/2015
89
+ release 2.2.0 - 20/01/2015
90
+ release 2.1.1 - 09/09/2014
91
+ release 2.1.0 - 04/09/2014
92
+ release 2.0.0 - 17/04/2014
93
+ release 1.4.0 - 28/10/2013
94
+ release 1.3.0 - 11/10/2013
95
+ release 1.2.0 - 02/08/2013
96
+ release 1.1.0 - 11/06/2013
97
+ release 1.0.0 - 07/06/2013
98
+
99
+ Under the name Citrus:
100
+
101
+ release 0.9999 - 09/11/2012
102
+ release 0.999 - 06/07/2012
103
+ release 0.99 - 15/06/2012
104
+ release 0.9 - 31/05/2012
105
+ release 0.8 - 28/05/2012
106
+ release 0.7 - 15/05/2012
107
+ release 0.6 - 16/01/2012
108
+ release 0.5 - 10/01/2012
109
+ release 0.4 - 24/11/2011
110
+ release 0.3 - 10/10/2011
111
+ release 0.2 - 06/10/2011
112
+ release 0.1 - 02/09/2011
@@ -0,0 +1,375 @@
1
+ # generated automatically by aclocal 1.17 -*- Autoconf -*-
2
+
3
+ # Copyright (C) 1996-2024 Free Software Foundation, Inc.
4
+
5
+ # This file is free software; the Free Software Foundation
6
+ # gives unlimited permission to copy and/or distribute it,
7
+ # with or without modifications, as long as this notice is preserved.
8
+
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12
+ # PARTICULAR PURPOSE.
13
+
14
+ m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
15
+ # pkg.m4 - Macros to locate and use pkg-config. -*- Autoconf -*-
16
+ # serial 13 (pkgconf)
17
+
18
+ dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
19
+ dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
20
+ dnl
21
+ dnl This program is free software; you can redistribute it and/or modify
22
+ dnl it under the terms of the GNU General Public License as published by
23
+ dnl the Free Software Foundation; either version 2 of the License, or
24
+ dnl (at your option) any later version.
25
+ dnl
26
+ dnl This program is distributed in the hope that it will be useful, but
27
+ dnl WITHOUT ANY WARRANTY; without even the implied warranty of
28
+ dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
29
+ dnl General Public License for more details.
30
+ dnl
31
+ dnl You should have received a copy of the GNU General Public License
32
+ dnl along with this program; if not, see <https://www.gnu.org/licenses/>.
33
+ dnl
34
+ dnl As a special exception to the GNU General Public License, if you
35
+ dnl distribute this file as part of a program that contains a
36
+ dnl configuration script generated by Autoconf, you may include it under
37
+ dnl the same distribution terms that you use for the rest of that
38
+ dnl program.
39
+
40
+ dnl PKG_PREREQ(MIN-VERSION)
41
+ dnl -----------------------
42
+ dnl Since: 0.29
43
+ dnl
44
+ dnl Verify that the version of the pkg-config macros are at least
45
+ dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
46
+ dnl installed version of pkg-config, this checks the developer's version
47
+ dnl of pkg.m4 when generating configure.
48
+ dnl
49
+ dnl To ensure that this macro is defined, also add:
50
+ dnl m4_ifndef([PKG_PREREQ],
51
+ dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
52
+ dnl
53
+ dnl See the "Since" comment for each macro you use to see what version
54
+ dnl of the macros you require.
55
+ m4_defun([PKG_PREREQ],
56
+ [m4_define([PKG_MACROS_VERSION], [0.29.2])
57
+ m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
58
+ [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
59
+ ])dnl PKG_PREREQ
60
+
61
+ dnl PKG_PROG_PKG_CONFIG([MIN-VERSION], [ACTION-IF-NOT-FOUND])
62
+ dnl ---------------------------------------------------------
63
+ dnl Since: 0.16
64
+ dnl
65
+ dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
66
+ dnl first found in the path. Checks that the version of pkg-config found
67
+ dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
68
+ dnl used since that's the first version where most current features of
69
+ dnl pkg-config existed.
70
+ dnl
71
+ dnl If pkg-config is not found or older than specified, it will result
72
+ dnl in an empty PKG_CONFIG variable. To avoid widespread issues with
73
+ dnl scripts not checking it, ACTION-IF-NOT-FOUND defaults to aborting.
74
+ dnl You can specify [PKG_CONFIG=false] as an action instead, which would
75
+ dnl result in pkg-config tests failing, but no bogus error messages.
76
+ AC_DEFUN([PKG_PROG_PKG_CONFIG],
77
+ [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
78
+ m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
79
+ m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
80
+ AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
81
+ AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
82
+ AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
83
+
84
+ if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
85
+ AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
86
+ fi
87
+ if test -n "$PKG_CONFIG"; then
88
+ _pkg_min_version=m4_default([$1], [0.9.0])
89
+ AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
90
+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
91
+ AC_MSG_RESULT([yes])
92
+ else
93
+ AC_MSG_RESULT([no])
94
+ PKG_CONFIG=""
95
+ fi
96
+ fi
97
+ if test -z "$PKG_CONFIG"; then
98
+ m4_default([$2], [AC_MSG_ERROR([pkg-config not found])])
99
+ fi[]dnl
100
+ ])dnl PKG_PROG_PKG_CONFIG
101
+
102
+ dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
103
+ dnl -------------------------------------------------------------------
104
+ dnl Since: 0.18
105
+ dnl
106
+ dnl Check to see whether a particular set of modules exists. Similar to
107
+ dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
108
+ dnl
109
+ dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
110
+ dnl only at the first occurrence in configure.ac, so if the first place
111
+ dnl it's called might be skipped (such as if it is within an "if", you
112
+ dnl have to call PKG_CHECK_EXISTS manually
113
+ AC_DEFUN([PKG_CHECK_EXISTS],
114
+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
115
+ if test -n "$PKG_CONFIG" && \
116
+ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
117
+ m4_default([$2], [:])
118
+ m4_ifvaln([$3], [else
119
+ $3])dnl
120
+ fi])
121
+
122
+ dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
123
+ dnl ---------------------------------------------
124
+ dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
125
+ dnl pkg_failed based on the result.
126
+ m4_define([_PKG_CONFIG],
127
+ [if test -n "$$1"; then
128
+ pkg_cv_[]$1="$$1"
129
+ elif test -n "$PKG_CONFIG"; then
130
+ PKG_CHECK_EXISTS([$3],
131
+ [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
132
+ test "x$?" != "x0" && pkg_failed=yes ],
133
+ [pkg_failed=yes])
134
+ else
135
+ pkg_failed=untried
136
+ fi[]dnl
137
+ ])dnl _PKG_CONFIG
138
+
139
+ dnl _PKG_SHORT_ERRORS_SUPPORTED
140
+ dnl ---------------------------
141
+ dnl Internal check to see if pkg-config supports short errors.
142
+ AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
143
+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
144
+ if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
145
+ _pkg_short_errors_supported=yes
146
+ else
147
+ _pkg_short_errors_supported=no
148
+ fi[]dnl
149
+ ])dnl _PKG_SHORT_ERRORS_SUPPORTED
150
+
151
+
152
+ dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
153
+ dnl [ACTION-IF-NOT-FOUND])
154
+ dnl --------------------------------------------------------------
155
+ dnl Since: 0.4.0
156
+ dnl
157
+ dnl Note that if there is a possibility the first call to
158
+ dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
159
+ dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
160
+ AC_DEFUN([PKG_CHECK_MODULES],
161
+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
162
+ AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
163
+ AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
164
+
165
+ pkg_failed=no
166
+ AC_MSG_CHECKING([for $2])
167
+
168
+ _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
169
+ _PKG_CONFIG([$1][_LIBS], [libs], [$2])
170
+
171
+ m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
172
+ and $1[]_LIBS to avoid the need to call pkg-config.
173
+ See the pkg-config man page for more details.])
174
+
175
+ if test $pkg_failed = yes; then
176
+ AC_MSG_RESULT([no])
177
+ _PKG_SHORT_ERRORS_SUPPORTED
178
+ if test $_pkg_short_errors_supported = yes; then
179
+ $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
180
+ else
181
+ $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
182
+ fi
183
+ # Put the nasty error message in config.log where it belongs
184
+ echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
185
+
186
+ m4_default([$4], [AC_MSG_ERROR(
187
+ [Package requirements ($2) were not met:
188
+
189
+ $$1_PKG_ERRORS
190
+
191
+ Consider adjusting the PKG_CONFIG_PATH environment variable if you
192
+ installed software in a non-standard prefix.
193
+
194
+ _PKG_TEXT])[]dnl
195
+ ])
196
+ elif test $pkg_failed = untried; then
197
+ AC_MSG_RESULT([no])
198
+ m4_default([$4], [AC_MSG_FAILURE(
199
+ [The pkg-config script could not be found or is too old. Make sure it
200
+ is in your PATH or set the PKG_CONFIG environment variable to the full
201
+ path to pkg-config.
202
+
203
+ _PKG_TEXT
204
+
205
+ To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
206
+ ])
207
+ else
208
+ $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
209
+ $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
210
+ AC_MSG_RESULT([yes])
211
+ $3
212
+ fi[]dnl
213
+ ])dnl PKG_CHECK_MODULES
214
+
215
+
216
+ dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
217
+ dnl [ACTION-IF-NOT-FOUND])
218
+ dnl ---------------------------------------------------------------------
219
+ dnl Since: 0.29
220
+ dnl
221
+ dnl Checks for existence of MODULES and gathers its build flags with
222
+ dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
223
+ dnl and VARIABLE-PREFIX_LIBS from --libs.
224
+ dnl
225
+ dnl Note that if there is a possibility the first call to
226
+ dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
227
+ dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
228
+ dnl configure.ac.
229
+ AC_DEFUN([PKG_CHECK_MODULES_STATIC],
230
+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
231
+ _save_PKG_CONFIG=$PKG_CONFIG
232
+ PKG_CONFIG="$PKG_CONFIG --static"
233
+ PKG_CHECK_MODULES($@)
234
+ PKG_CONFIG=$_save_PKG_CONFIG[]dnl
235
+ ])dnl PKG_CHECK_MODULES_STATIC
236
+
237
+
238
+ dnl PKG_INSTALLDIR([DIRECTORY])
239
+ dnl -------------------------
240
+ dnl Since: 0.27
241
+ dnl
242
+ dnl Substitutes the variable pkgconfigdir as the location where a module
243
+ dnl should install pkg-config .pc files. By default the directory is
244
+ dnl $libdir/pkgconfig, but the default can be changed by passing
245
+ dnl DIRECTORY. The user can override through the --with-pkgconfigdir
246
+ dnl parameter.
247
+ AC_DEFUN([PKG_INSTALLDIR],
248
+ [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
249
+ m4_pushdef([pkg_description],
250
+ [pkg-config installation directory @<:@]pkg_default[@:>@])
251
+ AC_ARG_WITH([pkgconfigdir],
252
+ [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
253
+ [with_pkgconfigdir=]pkg_default)
254
+ AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
255
+ m4_popdef([pkg_default])
256
+ m4_popdef([pkg_description])
257
+ ])dnl PKG_INSTALLDIR
258
+
259
+
260
+ dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
261
+ dnl --------------------------------
262
+ dnl Since: 0.27
263
+ dnl
264
+ dnl Substitutes the variable noarch_pkgconfigdir as the location where a
265
+ dnl module should install arch-independent pkg-config .pc files. By
266
+ dnl default the directory is $datadir/pkgconfig, but the default can be
267
+ dnl changed by passing DIRECTORY. The user can override through the
268
+ dnl --with-noarch-pkgconfigdir parameter.
269
+ AC_DEFUN([PKG_NOARCH_INSTALLDIR],
270
+ [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
271
+ m4_pushdef([pkg_description],
272
+ [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
273
+ AC_ARG_WITH([noarch-pkgconfigdir],
274
+ [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
275
+ [with_noarch_pkgconfigdir=]pkg_default)
276
+ AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
277
+ m4_popdef([pkg_default])
278
+ m4_popdef([pkg_description])
279
+ ])dnl PKG_NOARCH_INSTALLDIR
280
+
281
+
282
+ dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
283
+ dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
284
+ dnl -------------------------------------------
285
+ dnl Since: 0.28
286
+ dnl
287
+ dnl Retrieves the value of the pkg-config variable for the given module.
288
+ AC_DEFUN([PKG_CHECK_VAR],
289
+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
290
+ AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
291
+
292
+ _PKG_CONFIG([$1], [variable="][$3]["], [$2])
293
+ AS_VAR_COPY([$1], [pkg_cv_][$1])
294
+
295
+ AS_VAR_IF([$1], [""], [$5], [$4])dnl
296
+ ])dnl PKG_CHECK_VAR
297
+
298
+ dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
299
+ dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
300
+ dnl [DESCRIPTION], [DEFAULT])
301
+ dnl ------------------------------------------
302
+ dnl
303
+ dnl Prepare a "--with-" configure option using the lowercase
304
+ dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and
305
+ dnl PKG_CHECK_MODULES in a single macro.
306
+ AC_DEFUN([PKG_WITH_MODULES],
307
+ [
308
+ m4_pushdef([with_arg], m4_tolower([$1]))
309
+
310
+ m4_pushdef([description],
311
+ [m4_default([$5], [build with ]with_arg[ support])])
312
+
313
+ m4_pushdef([def_arg], [m4_default([$6], [auto])])
314
+ m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
315
+ m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
316
+
317
+ m4_case(def_arg,
318
+ [yes],[m4_pushdef([with_without], [--without-]with_arg)],
319
+ [m4_pushdef([with_without],[--with-]with_arg)])
320
+
321
+ AC_ARG_WITH(with_arg,
322
+ AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
323
+ [AS_TR_SH([with_]with_arg)=def_arg])
324
+
325
+ AS_CASE([$AS_TR_SH([with_]with_arg)],
326
+ [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
327
+ [auto],[PKG_CHECK_MODULES([$1],[$2],
328
+ [m4_n([def_action_if_found]) $3],
329
+ [m4_n([def_action_if_not_found]) $4])])
330
+
331
+ m4_popdef([with_arg])
332
+ m4_popdef([description])
333
+ m4_popdef([def_arg])
334
+
335
+ ])dnl PKG_WITH_MODULES
336
+
337
+ dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
338
+ dnl [DESCRIPTION], [DEFAULT])
339
+ dnl -----------------------------------------------
340
+ dnl
341
+ dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES
342
+ dnl check._[VARIABLE-PREFIX] is exported as make variable.
343
+ AC_DEFUN([PKG_HAVE_WITH_MODULES],
344
+ [
345
+ PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
346
+
347
+ AM_CONDITIONAL([HAVE_][$1],
348
+ [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
349
+ ])dnl PKG_HAVE_WITH_MODULES
350
+
351
+ dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
352
+ dnl [DESCRIPTION], [DEFAULT])
353
+ dnl ------------------------------------------------------
354
+ dnl
355
+ dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after
356
+ dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make
357
+ dnl and preprocessor variable.
358
+ AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES],
359
+ [
360
+ PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
361
+
362
+ AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
363
+ [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
364
+ ])dnl PKG_HAVE_DEFINE_WITH_MODULES
365
+
366
+ m4_include([m4/ax_append_flag.m4])
367
+ m4_include([m4/ax_check_compile_flag.m4])
368
+ m4_include([m4/ax_check_hpcombi.m4])
369
+ m4_include([m4/ax_check_libsemigroup.m4])
370
+ m4_include([m4/ax_compare_version.m4])
371
+ m4_include([m4/ax_cxx_compile_stdcxx.m4])
372
+ m4_include([m4/ax_cxx_compile_stdcxx_14.m4])
373
+ m4_include([m4/ax_prefix_config_h.m4])
374
+ m4_include([m4/ax_pthread.m4])
375
+ m4_include([m4/find_gap.m4])
@@ -0,0 +1,25 @@
1
+ #!/bin/sh -ex
2
+ #
3
+ # Semigroups package for GAP
4
+ #
5
+ # This file is part of the build system of a GAP kernel extension.
6
+ # Requires GNU autoconf, GNU automake and GNU libtool.
7
+ #
8
+ autoreconf -vif `dirname "$0"`
9
+
10
+ # autoconf 2.69 has a bug where autoreconf does not copy config.guess
11
+ # and config.sub even though configure.ac needs them, unless automake is
12
+ # being used. We work around this by forcing a call to automake if one
13
+ # or both of config.sub and config.guess are missing.
14
+ if ! test -x config.guess -a -x config.sub ; then
15
+ automake -acf 2> /dev/null || :
16
+ fi
17
+
18
+ # There is a second bug in autoconf 2.69 where the generated configure
19
+ # script complains about install-sh not being there (even though it does
20
+ # not actually need it). As a workaround, we just provide an empty file
21
+ # instead. Since newer autoconf versions such as 2.71 are not affected
22
+ # by the bug, we add a test to limit when this workaround is applied
23
+ if fgrep -q ac_aux_dir/install-sh configure ; then
24
+ touch install-sh
25
+ fi