Compare commits
47 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b899f28ca | ||
|
|
c45f69cfb1 | ||
|
|
6a39b1071e | ||
|
|
6ba7bd00a9 | ||
|
|
0690b72ce0 | ||
|
|
bae243e2ee | ||
|
|
e135e2ae8d | ||
|
|
e803d54255 | ||
|
|
c796a9c676 | ||
|
|
5421a84a3f | ||
|
|
cbfea91a10 | ||
|
|
470a448e73 | ||
|
|
2080e73837 | ||
|
|
fdee20044f | ||
| 1b07302bfc | |||
|
|
78c87878c4 | ||
|
|
0013b1cd29 | ||
|
|
ee2451431b | ||
|
|
e80e2a021c | ||
|
|
0a4bc85c6c | ||
|
|
c67feaba88 | ||
|
|
67b28355e3 | ||
|
|
b27ef8b2d7 | ||
|
|
face10b9c3 | ||
|
|
a7e05239c3 | ||
|
|
bb2081a4a7 | ||
|
|
efe27f2fef | ||
|
|
7e050ab0ea | ||
|
|
50f3cd36d2 | ||
|
|
ada9589a56 | ||
|
|
bb65c18110 | ||
|
|
c8093932e9 | ||
|
73be331968 |
|||
|
d102ae088b |
|||
|
|
857e3a82f3 | ||
|
|
d50414208a | ||
|
|
ad878aecca | ||
|
|
f929e6b226 | ||
|
|
f8b76a4738 | ||
|
|
e63fc7ac23 | ||
|
|
984f632244 | ||
|
fd984670f1 |
|||
|
|
8d6f4e5b55 | ||
|
|
095985adbb | ||
|
|
1259595b15 | ||
|
|
4b0538f9f4 | ||
|
|
eb104cb511 |
3 changed files with 208 additions and 20 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
|
@ -7,3 +7,17 @@ uriparser-0.7.5.tar.gz
|
|||
/uriparser-0.8.2.tar.bz2
|
||||
/uriparser-0.8.4.tar.bz2
|
||||
/uriparser-0.8.5.tar.bz2
|
||||
/uriparser-0.8.6.tar.bz2
|
||||
/uriparser-0.9.0.tar.bz2
|
||||
/uriparser-0.9.1.tar.bz2
|
||||
/uriparser-0.9.2.tar.bz2
|
||||
/uriparser-0.9.3.tar.bz2
|
||||
/uriparser-0.9.4.tar.bz2
|
||||
/uriparser-0.9.5.tar.bz2
|
||||
/uriparser-0.9.6.tar.bz2
|
||||
/uriparser-0.9.7.tar.bz2
|
||||
/uriparser-0.9.8.tar.bz2
|
||||
/uriparser-0.9.9.tar.bz2
|
||||
/uriparser-1.0.0.tar.bz2
|
||||
/uriparser-1.0.1.tar.bz2
|
||||
/uriparser-1.0.2.tar.bz2
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (uriparser-0.8.5.tar.bz2) = e9b0228092cf12b824975000b0a6dbe2e413d3642203666d77c5b42f04bc13e0ec3f61d6a2c44d9613bea15e8cf7ec42cc4c92c5bc4318ee3349c1b380409d5c
|
||||
SHA512 (uriparser-1.0.2.tar.bz2) = 23cf062e10b70e3cababbbb52e20a7e3ca17ae2cba21125ab0587a3dbee562d12d727703567ce14cba90151712f2c4c9e911eda92245292ea3a1138f88dd09fd
|
||||
|
|
|
|||
212
uriparser.spec
212
uriparser.spec
|
|
@ -1,20 +1,38 @@
|
|||
%global _hardened_build 1
|
||||
%if 0%{?fedora} || 0%{?epel} >= 9
|
||||
%bcond_without mingw
|
||||
%else
|
||||
%bcond_with mingw
|
||||
%endif
|
||||
|
||||
Name: uriparser
|
||||
Version: 0.8.5
|
||||
Release: 1%{?dist}
|
||||
Version: 1.0.2
|
||||
Release: 2%{?dist}
|
||||
Summary: URI parsing library - RFC 3986
|
||||
|
||||
License: BSD
|
||||
# main license is BSD-3-Clause
|
||||
# test suite is licensed under the LGPL-2.1-or-later, but it is not included in the binary RPM
|
||||
# fuzzing code is licensed under the Apache-2.0 license, but it is not included in the binary RPM
|
||||
# /doc/rfc* are under LicenseRef-scancode-iso-8879, LicenseRef-scancode-ietf, LicenseRef-scancode-ietf-trust but not included in RPM
|
||||
License: BSD-3-Clause
|
||||
URL: https://uriparser.github.io/
|
||||
Source0: https://github.com/%{name}/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
|
||||
|
||||
BuildRequires: cpptest-devel
|
||||
BuildRequires: cmake
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: graphviz
|
||||
BuildRequires: gtest-devel
|
||||
BuildRequires: make
|
||||
|
||||
%if %{with mingw}
|
||||
BuildRequires: mingw32-filesystem >= 95
|
||||
BuildRequires: mingw32-gcc-c++
|
||||
|
||||
BuildRequires: mingw64-filesystem >= 95
|
||||
BuildRequires: mingw64-gcc-c++
|
||||
%endif
|
||||
|
||||
|
||||
%description
|
||||
Uriparser is a strictly RFC 3986 compliant URI parsing library written
|
||||
in C. uriparser is cross-platform, fast, supports Unicode and is
|
||||
|
|
@ -38,6 +56,27 @@ BuildArch: noarch
|
|||
The %{name}-doc package contains HTML documentation files for %{name}.
|
||||
|
||||
|
||||
%if %{with mingw}
|
||||
%package -n mingw32-%{name}
|
||||
Summary: MinGW Windows %{name} library
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n mingw32-%{name}
|
||||
MinGW Windows %{name} library.
|
||||
|
||||
|
||||
%package -n mingw64-%{name}
|
||||
Summary: MinGW Windows %{name} library
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n mingw64-%{name}
|
||||
MinGW Windows %{name} library.
|
||||
|
||||
|
||||
%{?mingw_debug_package}
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
|
|
@ -46,40 +85,175 @@ sed -i 's/GENERATE_QHP\ =\ yes/GENERATE_QHP\ =\ no/g' doc/Doxyfile.in
|
|||
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
%make_build
|
||||
# Native build
|
||||
%cmake
|
||||
%cmake_build
|
||||
|
||||
%if %{with mingw}
|
||||
# MinGW build
|
||||
%mingw_cmake -DURIPARSER_BUILD_TESTS=OFF -DURIPARSER_BUILD_DOCS=OFF
|
||||
%mingw_make_build
|
||||
%endif
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
find %{buildroot} -name '*.la' -delete
|
||||
%cmake_install
|
||||
%if %{with mingw}
|
||||
%mingw_make_install
|
||||
%mingw_debug_install_post
|
||||
%endif
|
||||
|
||||
|
||||
%check
|
||||
LD_LIBRARY_PATH=".libs" make check
|
||||
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
%ctest
|
||||
|
||||
|
||||
%files
|
||||
%doc THANKS AUTHORS ChangeLog
|
||||
%license COPYING
|
||||
%license COPYING.BSD-3-Clause
|
||||
%{_bindir}/uriparse
|
||||
%{_libdir}/lib%{name}.so.1*
|
||||
|
||||
%files devel
|
||||
%{_includedir}/%{name}/
|
||||
%{_libdir}/lib%{name}.so
|
||||
%{_libdir}/cmake/%{name}-%{version}/
|
||||
%{_libdir}/pkgconfig/lib%{name}.pc
|
||||
|
||||
%files doc
|
||||
%license COPYING
|
||||
%license COPYING.BSD-3-Clause
|
||||
%doc %{_docdir}/%{name}/html
|
||||
|
||||
%if %{with mingw}
|
||||
%files -n mingw32-%{name}
|
||||
%license COPYING.BSD-3-Clause
|
||||
%{mingw32_bindir}/uriparse.exe
|
||||
%{mingw32_bindir}/lib%{name}-1.dll
|
||||
%{mingw32_includedir}/%{name}/
|
||||
%{mingw32_libdir}/lib%{name}.dll.a
|
||||
%{mingw32_libdir}/pkgconfig/lib%{name}.pc
|
||||
%{mingw32_libdir}/cmake/%{name}-%{version}/
|
||||
|
||||
%files -n mingw64-%{name}
|
||||
%license COPYING.BSD-3-Clause
|
||||
%{mingw64_bindir}/uriparse.exe
|
||||
%{mingw64_includedir}/%{name}/
|
||||
%{mingw64_bindir}/lib%{name}-1.dll
|
||||
%{mingw64_libdir}/lib%{name}.dll.a
|
||||
%{mingw64_libdir}/pkgconfig/lib%{name}.pc
|
||||
%{mingw64_libdir}/cmake/%{name}-%{version}/
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Mon May 11 2026 Sandro Mani <manisandro@gmail.com> - 1.0.2-1
|
||||
- Update to 1.0.2
|
||||
|
||||
* Thu Apr 30 2026 Sandro Mani <manisandro@gmail.com> - 1.0.1-1
|
||||
- Update to 1.0.1
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Mon Dec 15 2025 Sandro Mani <manisandro@gmail.com> - 1.0.0-1
|
||||
- Update to 1.0.0
|
||||
|
||||
* Thu Sep 04 2025 Sandro Mani <manisandro@gmail.com> - 0.9.9-1
|
||||
- Update to 0.9.9
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sun May 05 2024 Sandro Mani <manisandro@gmail.com> - 0.9.8-1
|
||||
- Update to 0.9.8
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Neal Gompa <ngompa@fedoraproject.org> - 0.9.7-4
|
||||
- Move cmake files to the devel subpackage
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Oct 07 2022 Sandro Mani <manisandro@gmail.com> - 0.9.7-1
|
||||
- Update to 0.9.7
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.6-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Fri Mar 25 2022 Sandro Mani <manisandro@gmail.com> - 0.9.6-5
|
||||
- Rebuild with mingw-gcc-12
|
||||
|
||||
* Thu Feb 24 2022 Sandro Mani <manisandro@gmail.com> - 0.9.6-4
|
||||
- Make mingw subpackages noarch
|
||||
|
||||
* Thu Feb 24 2022 Sandro Mani <manisandro@gmail.com> - 0.9.6-1
|
||||
- Add mingw subpackages
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jan 07 2022 Sandro Mani <manisandro@gmail.com> - 0.9.6-1
|
||||
- Update to 0.9.6
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Mar 24 2021 Sandro Mani <manisandro@gmail.com> - 0.9.5-1
|
||||
- Update to 0.9.5
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sun May 31 2020 Sandro Mani <manisandro@gmail.com> - 0.9.4-1
|
||||
- Update to 0.9.4
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Apr 29 2019 Sandro Mani <manisandro@gmail.com> - 0.9.3-1
|
||||
- Update to 0.9.3
|
||||
|
||||
* Tue Apr 23 2019 Sandro Mani <manisandro@gmail.com> - 0.9.2-1
|
||||
- Update to 0.9.2
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Jan 07 2019 Sandro Mani <manisandro@gmail.com> - 0.9.1-1
|
||||
- Update to 0.9.1
|
||||
|
||||
* Sat Oct 27 2018 Sandro Mani <manisandro@gmail.com> - 0.9.0-1
|
||||
- Update to 0.9.0
|
||||
|
||||
* Mon Aug 20 2018 Sandro Mani <manisandro@gmail.com> - 0.8.6-1
|
||||
- Update to 0.8.6
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Mar 07 2018 Sandro Mani <manisandro@gmail.com> - 0.8.5-2
|
||||
- BR: gcc-c++
|
||||
|
||||
* Wed Feb 07 2018 Sandro Mani <manisandro@gmail.com> - 0.8.5-1
|
||||
- Update to 0.8.5
|
||||
|
||||
|
|
@ -119,7 +293,7 @@ LD_LIBRARY_PATH=".libs" make check
|
|||
so package will build on aarch64.
|
||||
|
||||
* Fri Jan 09 2015 François Cami <fcami@fedoraproject.org> - 0.8.1-2
|
||||
- Use PIC.
|
||||
- Use PIC.
|
||||
|
||||
* Mon Jan 05 2015 François Cami <fcami@fedoraproject.org> - 0.8.1-1
|
||||
- Update to latest upstream.
|
||||
|
|
@ -171,7 +345,7 @@ LD_LIBRARY_PATH=".libs" make check
|
|||
- Changes in build system.
|
||||
- Added: Qt Assistant documentation output
|
||||
- 0.7.2
|
||||
- Improved and cleaned API
|
||||
- Improved and cleaned API
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue