You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gen-catalog-json.py 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. import json
  2. from typing import NamedTuple, Tuple, List, Sequence, Union, Optional, Mapping
  3. import sys
  4. import textwrap
  5. class Git(NamedTuple):
  6. url: str
  7. ref: str
  8. auto_lib: Optional[str] = None
  9. def to_dict(self) -> dict:
  10. return {
  11. 'url': self.url,
  12. 'ref': self.ref,
  13. 'auto-lib': self.auto_lib,
  14. }
  15. RemoteInfo = Union[Git]
  16. class Version(NamedTuple):
  17. version: str
  18. remote: RemoteInfo
  19. depends: Mapping[str, str] = {}
  20. description: str = '(No description provided)'
  21. def to_dict(self) -> dict:
  22. ret: dict = {
  23. 'description': self.description,
  24. }
  25. ret['depends'] = self.depends
  26. if isinstance(self.remote, Git):
  27. ret['git'] = self.remote.to_dict()
  28. return ret
  29. class Package(NamedTuple):
  30. name: str
  31. versions: List[Version]
  32. def many_versions(name: str,
  33. versions: Sequence[str],
  34. *,
  35. tag_fmt: str = '{}',
  36. git_url: str,
  37. auto_lib: str = None,
  38. description='(No description was provided)') -> Package:
  39. return Package(name, [
  40. Version(
  41. ver,
  42. description='\n'.join(textwrap.wrap(description)),
  43. remote=Git(
  44. url=git_url, ref=tag_fmt.format(ver), auto_lib=auto_lib))
  45. for ver in versions
  46. ])
  47. packages = [
  48. many_versions(
  49. 'range-v3',
  50. (
  51. '0.5.0',
  52. '0.9.0',
  53. '0.9.1',
  54. '0.10.0',
  55. ),
  56. git_url='https://github.com/ericniebler/range-v3.git',
  57. auto_lib='range-v3/range-v3',
  58. description=
  59. 'Range library for C++14/17/20, basis for C++20\'s std::ranges',
  60. ),
  61. many_versions(
  62. 'nlohmann-json',
  63. (
  64. '3.0.0',
  65. '3.0.1',
  66. '3.1.0',
  67. '3.1.1',
  68. '3.1.2',
  69. '3.2.0',
  70. '3.3.0',
  71. '3.4.0',
  72. '3.5.0',
  73. '3.6.0',
  74. '3.6.1',
  75. '3.7.0',
  76. '3.7.1',
  77. '3.7.2',
  78. '3.7.3',
  79. ),
  80. git_url='https://github.com/vector-of-bool/json.git',
  81. tag_fmt='dds/{}',
  82. description='JSON for Modern C++',
  83. ),
  84. Package('ms-wil', [
  85. Version(
  86. '2019.11.10',
  87. description='The Windows Implementation Library',
  88. remote=Git('https://github.com/vector-of-bool/wil.git',
  89. 'dds/2019.11.10'))
  90. ]),
  91. many_versions(
  92. 'neo-sqlite3',
  93. (
  94. '0.1.0',
  95. '0.2.0',
  96. '0.2.1',
  97. '0.2.2',
  98. ),
  99. description='A modern and low-level C++ SQLite API',
  100. git_url='https://github.com/vector-of-bool/neo-sqlite3.git',
  101. ),
  102. Package('neo-fun', [
  103. Version(
  104. '0.1.0',
  105. description='Some library fundamentals that you might find useful',
  106. remote=Git('https://github.com/vector-of-bool/neo-fun.git',
  107. '0.1.0'))
  108. ]),
  109. many_versions(
  110. 'neo-concepts',
  111. (
  112. '0.1.0',
  113. '0.2.0',
  114. '0.2.1',
  115. ),
  116. description=
  117. 'Minimal C++ concepts library. Contains many definitions from C++20.',
  118. git_url='https://github.com/vector-of-bool/neo-concepts.git',
  119. ),
  120. Package('semver', [
  121. Version(
  122. '0.2.1',
  123. description=
  124. 'A C++ library that implements Semantic Versioning parsing, emitting, '
  125. 'types, ordering, and operations. See https://semver.org/',
  126. remote=Git('https://github.com/vector-of-bool/semver.git',
  127. '0.2.1'))
  128. ]),
  129. many_versions(
  130. 'pubgrub',
  131. (
  132. '0.1.2',
  133. '0.2.0',
  134. ),
  135. description=
  136. 'A C++ implementation of the Pubgrub version solving algorithm',
  137. git_url='https://github.com/vector-of-bool/pubgrub.git',
  138. ),
  139. many_versions(
  140. 'vob-json5',
  141. ('0.1.5', ),
  142. description='A C++ implementation of a JSON5 parser',
  143. git_url='https://github.com/vector-of-bool/json5.git',
  144. ),
  145. Package('vob-semester', [
  146. Version(
  147. '0.1.0',
  148. description='A C++ library to process recursive dynamic data',
  149. remote=Git('https://github.com/vector-of-bool/semester.git',
  150. '0.1.0'),
  151. depends={
  152. 'neo-fun': '^0.1.0',
  153. 'neo-concepts': '^0.2.1',
  154. }),
  155. ]),
  156. Package('ctre', [
  157. Version(
  158. '2.7.0',
  159. description=
  160. 'A compile-time PCRE (almost) compatible regular expression matcher',
  161. remote=Git(
  162. 'https://github.com/hanickadot/compile-time-regular-expressions.git',
  163. 'v2.7',
  164. auto_lib='hanickadot/ctre',
  165. ))
  166. ]),
  167. many_versions(
  168. 'spdlog',
  169. (
  170. '0.9.0',
  171. '0.10.0',
  172. '0.11.0',
  173. '0.12.0',
  174. '0.13.0',
  175. '0.14.0',
  176. '0.16.0',
  177. '0.16.1',
  178. '0.16.2',
  179. '0.17.0',
  180. '1.0.0',
  181. '1.1.0',
  182. '1.2.0',
  183. '1.2.1',
  184. '1.3.0',
  185. '1.3.1',
  186. '1.4.0',
  187. '1.4.1',
  188. '1.4.2',
  189. ),
  190. git_url='https://github.com/gabime/spdlog.git',
  191. tag_fmt='v{}',
  192. auto_lib='spdlog/spdlog',
  193. description='Fast C++ logging library',
  194. ),
  195. many_versions(
  196. 'fmt',
  197. (
  198. '0.8.0',
  199. '0.9.0',
  200. '0.10.0',
  201. '0.12.0',
  202. '1.0.0',
  203. '1.1.0',
  204. '2.0.0',
  205. '2.0.1',
  206. '2.1.0',
  207. '2.1.1',
  208. '3.0.0',
  209. '3.0.1',
  210. '3.0.2',
  211. '4.0.0',
  212. '4.1.0',
  213. '5.0.0',
  214. '5.1.0',
  215. '5.2.0',
  216. '5.2.1',
  217. '5.3.0',
  218. '6.0.0',
  219. '6.1.0',
  220. '6.1.1',
  221. '6.1.2',
  222. ),
  223. git_url='https://github.com/fmtlib/fmt.git',
  224. auto_lib='fmt/fmt',
  225. description='A modern formatting library : https://fmt.dev/',
  226. ),
  227. ]
  228. data = {
  229. 'version': 1,
  230. 'packages': {
  231. pkg.name: {ver.version: ver.to_dict()
  232. for ver in pkg.versions}
  233. for pkg in packages
  234. }
  235. }
  236. print(json.dumps(data, indent=2, sort_keys=True))