123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- %global lib_soversion 26
- Name: simdjson
- Version: 3.13.0
- Release: 1%{_dist_release}
- Summary: Parsing gigabytes of JSON per second
- Group: system
- Vendor: Project Vine
- Distribution: Vine Linux
- License: Apache-2.0 AND MIT
- URL: https://simdjson.org
- Source0: https://github.com/simdjson/simdjson/archive/v%{version}/%{name}-%{version}.tar.gz
- BuildRequires: cmake >= 3.1
- BuildRequires: gcc-c++
- %description
- JSON is everywhere on the Internet. Servers spend a *lot* of time parsing it.
- We need a fresh approach. The simdjson library uses commonly available
- SIMD instructions and microparallel algorithms to parse JSON 4x faster than
- RapidJSON and 25x faster than JSON for Modern C++.
- %package devel
- Group: programming
- Summary: Development files for %{name}
- Requires: %{name} = %{version}-%{release}
- %description devel
- The package contains libraries and header files for developing applications
- that use %{name}.
- %package doc
- Group: documentation
- Summary: Documents for %{name}
- %description doc
- %{summary}
- %debug_package
- %prep
- %autosetup -p1 -n %{name}-%{version}
- %build
- %cmake -DSIMDJSON_TESTS=ON
- %cmake_build
- %install
- %cmake_install
- %check
- %ctest
- %files
- %license LICENSE
- %doc CONTRIBUTING.md README.md
- %{_libdir}/lib%{name}*.so.%{lib_soversion}
- %{_libdir}/lib%{name}*.so.%{lib_soversion}.*
- %files devel
- %license LICENSE
- %{_includedir}/%{name}.h
- %{_libdir}/cmake/%{name}
- %{_libdir}/lib%{name}.so
- %{_libdir}/pkgconfig/%{name}.pc
- %files doc
- %license LICENSE
- %doc doc
- %changelog
- * Wed Jun 4 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.13.0-1
- - new upstream release.
- * Sat Mar 29 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.12.3-1
- - new upstream release.
- * Tue Feb 18 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.12.2-1
- - new upstream release.
- * Wed Feb 12 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.12.1-1
- - new upstream release.
- * Wed Feb 5 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.12.0-1
- - new upstream release.
- * Tue Dec 3 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.10.1-2
- - initial build for Vine Linux.
- * Wed Nov 06 2024 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.10.1-1
- - Update to 3.10.1 (rhbz#2173069)
- * Fri Aug 02 2024 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.10.0-1
- - Update to 3.10.0
- * Mon Feb 26 2024 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.7.0-1
- - Update to 3.7.0
- * Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.3-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
- * Mon Dec 11 2023 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.6.3-1
- - Update to 3.6.3
- * Wed Nov 01 2023 Ali Erdinc Koroglu <aekoroglu@linux.intel.com> - 3.6.0-1
- - Update to 3.6.0
- * Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.0-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
- * Wed Jan 25 2023 aekoroglu <aekoroglu@linux.intel.com> - 3.1.0-1
- - update to 3.1.0
- * Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
- * Tue Nov 29 2022 aekoroglu <aekoroglu@linux.intel.com> - 3.0.1-1
- - update to 3.0.1
- * Tue Aug 09 2022 aekoroglu <ali.erdinc.koroglu@intel.com> - 2.2.2-1
- - initial package
|