Compare commits

..

17 commits

Author SHA1 Message Date
Tom spot Callaway
d3b57fda76 update to 1.34.6, fixes CVE-2025-62408 (among other fixes) 2025-12-17 12:26:36 -05:00
Fedora Release Engineering
5b080ad8c8 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-23 18:00:14 +00:00
Tom spot Callaway
6cb1f37cea 1.34.5 2025-04-08 13:55:06 -04:00
Tom spot Callaway
4a4ff91a9a fix pkgconfig file (do not need to mess with cmake for libdir) 2025-02-14 13:32:09 -05:00
Fedora Release Engineering
a1121f851c Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-16 13:07:22 +00:00
Tom Callaway
57f99144c9 1.34.4 2024-12-14 15:40:52 -05:00
Tom Callaway
3d6cc63359 1.34.2 2024-10-18 12:41:55 -04:00
Tom Callaway
76a10d7707 1.33.0 2024-08-07 14:28:09 -04:00
Fedora Release Engineering
6862bdcabe Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-17 18:47:48 +00:00
Tom Callaway
0a419528f8 1.31.0 2024-07-01 10:20:34 -04:00
Tom Callaway
d7274882cc update to 1.30.0 2024-06-10 11:47:43 -04:00
Tom Callaway
389cd93e33 1.28.1 2024-03-31 10:59:14 -04:00
Tom Callaway
ed0d4b3b7b 1.28.0 2024-03-29 12:03:37 -04:00
Fedora Release Engineering
41a1a5d6ec Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-23 01:02:40 +00:00
Fedora Release Engineering
1d010f8896 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-19 14:53:44 +00:00
Tom Callaway
8a9a3bfaf2 1.25.0 2024-01-10 10:14:55 -05:00
Tom Callaway
80a06f28c9 1.22.1 2023-11-21 09:55:33 -05:00
3 changed files with 71 additions and 8 deletions

11
.gitignore vendored
View file

@ -17,3 +17,14 @@ c-ares-1.7.3.tar.gz
/c-ares-1.19.0.tar.gz
/c-ares-1.19.1.tar.gz
/c-ares-1.21.0.tar.gz
/c-ares-1.22.1.tar.gz
/c-ares-1.25.0.tar.gz
/c-ares-1.28.0.tar.gz
/c-ares-1.28.1.tar.gz
/c-ares-1.30.0.tar.gz
/c-ares-1.31.0.tar.gz
/c-ares-1.33.0.tar.gz
/c-ares-1.34.2.tar.gz
/c-ares-1.34.4.tar.gz
/c-ares-1.34.5.tar.gz
/c-ares-1.34.6.tar.gz

View file

@ -2,12 +2,11 @@
Summary: A library that performs asynchronous DNS operations
Name: c-ares
Version: 1.21.0
Version: 1.34.6
Release: 1%{?dist}
License: MIT
URL: http://c-ares.org/
Source0: http://c-ares.org/download/%{name}-%{version}.tar.gz
Patch0: 0001-Use-RPM-compiler-options.patch
Source0: https://github.com/c-ares/c-ares/releases/download/v%{version}/c-ares-%{version}.tar.gz
BuildRequires: gcc
%if %{use_cmake}
BuildRequires: cmake
@ -34,14 +33,14 @@ compile applications or shared objects that use c-ares.
%prep
%autosetup -p1
f=CHANGES ; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f
# f=CHANGES ; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f
%build
# autoreconf -if
# %%configure --enable-shared --disable-static \
# --disable-dependency-tracking
%if %{use_cmake}
%{cmake} -DCMAKE_INSTALL_LIBDIR:PATH="%{_libdir}" -DCARES_BUILD_TOOLS:BOOL=OFF
%{cmake} -DCARES_BUILD_TOOLS:BOOL=OFF
%cmake_build
%else
autoreconf -if
@ -62,15 +61,16 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/libcares.la
%files
%license LICENSE.md
%doc README.cares CHANGES NEWS
%doc README.md RELEASE-NOTES.md
%{_libdir}/*.so.*
%files devel
%{_includedir}/ares.h
%{_includedir}/ares_build.h
%{_includedir}/ares_dns.h
%{_includedir}/ares_dns_record.h
%{_includedir}/ares_nameser.h
%{_includedir}/ares_rules.h
# %%{_includedir}/ares_rules.h
%{_includedir}/ares_version.h
%{_libdir}/*.so
%if %{use_cmake}
@ -80,6 +80,58 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/libcares.la
%{_mandir}/man3/ares_*
%changelog
* Wed Dec 17 2025 Tom Callaway <spot@fedoraproject.org> - 1.34.6-1
- update to 1.34.6
- fixes CVE-2025-62408 (among other fixes)
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.34.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Tue Apr 8 2025 Tom Callaway <spot@fedoraproject.org> - 1.34.5-1
- update to 1.34.5
* Fri Feb 14 2025 Tom Callaway <spot@fedoraproject.org> - 1.34.4-3
- fix pkgconfig file (do not need to mess with cmake for libdir)
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.34.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Sat Dec 14 2024 Tom Callaway <spot@fedoraproject.org> - 1.34.4-1
- update to 1.34.4
* Fri Oct 18 2024 Tom Callaway <spot@fedoraproject.org> - 1.34.2-1
- update to 1.34.2
* Wed Aug 7 2024 Tom Callaway <spot@fedoraproject.org> - 1.33.0-1
- update to 1.33.0
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.31.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Mon Jul 1 2024 Tom Callaway <spot@fedoraproject.org> - 1.31.0-1
- update to 1.31.0
* Mon Jun 10 2024 Tom Callaway <spot@fedoraproject.org> - 1.30.0-1
- update to 1.30.0
* Sun Mar 31 2024 Tom Callaway <spot@fedoraproject.org> - 1.28.1-1
- update to 1.28.1
* Fri Mar 29 2024 Tom Callaway <spot@fedoraproject.org> - 1.28.0-1
- update to 1.28.0
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Wed Jan 10 2024 Tom Callaway <spot@fedoraproject.org> - 1.25.0-1
- update to 1.25.0
* Tue Nov 21 2023 Tom Callaway <spot@fedoraproject.org> - 1.22.1-1
- update to 1.22.1
* Sun Nov 5 2023 Tom Callaway <spot@fedoraproject.org> - 1.21.0-1
- update to 1.21.0

View file

@ -1 +1 @@
SHA512 (c-ares-1.21.0.tar.gz) = c526b0a28d8ea1c6a53215dfd52e8250c968513a667c5414459d97d46288da7e7a2193d757fc78225e56c6684b3d30e756dd3e5a31917e996c871773a34892ea
SHA512 (c-ares-1.34.6.tar.gz) = 826eecdb40942caf75da982b9ca57fbe7c3e7c23af43a908683c7c1523c46b06ebac68405c26db8bf4c8b0774ca415666866249a3bde663a71c278f4ec7b1827