simdjson-vl.spec 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. %global lib_soversion 26
  2. Name: simdjson
  3. Version: 3.13.0
  4. Release: 1%{_dist_release}
  5. Summary: Parsing gigabytes of JSON per second
  6. Group: system
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. License: Apache-2.0 AND MIT
  10. URL: https://simdjson.org
  11. Source0: https://github.com/simdjson/simdjson/archive/v%{version}/%{name}-%{version}.tar.gz
  12. BuildRequires: cmake >= 3.1
  13. BuildRequires: gcc-c++
  14. %description
  15. JSON is everywhere on the Internet. Servers spend a *lot* of time parsing it.
  16. We need a fresh approach. The simdjson library uses commonly available
  17. SIMD instructions and microparallel algorithms to parse JSON 4x faster than
  18. RapidJSON and 25x faster than JSON for Modern C++.
  19. %package devel
  20. Group: programming
  21. Summary: Development files for %{name}
  22. Requires: %{name} = %{version}-%{release}
  23. %description devel
  24. The package contains libraries and header files for developing applications
  25. that use %{name}.
  26. %package doc
  27. Group: documentation
  28. Summary: Documents for %{name}
  29. %description doc
  30. %{summary}
  31. %debug_package
  32. %prep
  33. %autosetup -p1 -n %{name}-%{version}
  34. %build
  35. %cmake -DSIMDJSON_TESTS=ON
  36. %cmake_build
  37. %install
  38. %cmake_install
  39. %check
  40. %ctest
  41. %files
  42. %license LICENSE
  43. %doc CONTRIBUTING.md README.md
  44. %{_libdir}/lib%{name}*.so.%{lib_soversion}
  45. %{_libdir}/lib%{name}*.so.%{lib_soversion}.*
  46. %files devel
  47. %license LICENSE
  48. %{_includedir}/%{name}.h
  49. %{_libdir}/cmake/%{name}
  50. %{_libdir}/lib%{name}.so
  51. %{_libdir}/pkgconfig/%{name}.pc
  52. %files doc
  53. %license LICENSE
  54. %doc doc
  55. %changelog
  56. * Wed Jun 4 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.13.0-1
  57. - new upstream release.
  58. * Sat Mar 29 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.12.3-1
  59. - new upstream release.
  60. * Tue Feb 18 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.12.2-1
  61. - new upstream release.
  62. * Wed Feb 12 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.12.1-1
  63. - new upstream release.
  64. * Wed Feb 5 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.12.0-1
  65. - new upstream release.
  66. * Tue Dec 3 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.10.1-2
  67. - initial build for Vine Linux.
  68. * Wed Nov 06 2024 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.10.1-1
  69. - Update to 3.10.1 (rhbz#2173069)
  70. * Fri Aug 02 2024 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.10.0-1
  71. - Update to 3.10.0
  72. * Mon Feb 26 2024 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.7.0-1
  73. - Update to 3.7.0
  74. * Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.3-2
  75. - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
  76. * Mon Dec 11 2023 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.6.3-1
  77. - Update to 3.6.3
  78. * Wed Nov 01 2023 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.6.0-1
  79. - Update to 3.6.0
  80. * Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.0-2
  81. - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
  82. * Wed Jan 25 2023 aekoroglu <aekoroglu@linux.intel.com> - 3.1.0-1
  83. - update to 3.1.0
  84. * Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-2
  85. - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
  86. * Tue Nov 29 2022 aekoroglu <aekoroglu@linux.intel.com> - 3.0.1-1
  87. - update to 3.0.1
  88. * Tue Aug 09 2022 aekoroglu <ali.erdinc.koroglu@intel.com> - 2.2.2-1
  89. - initial package