source: projects/specs/trunk/c/c-ares/c-ares-vl.spec @ 12537

Revision 12537, 9.8 KB checked in by tomop, 3 years ago (diff)

updated 8 packages

Field3D-1.7.3-3

OpenImageIO-2.2.11.1-1

c-ares-1.17.1-1

curl-7.75.0-1

galera-26.4.6-1

libboost-1.75.0-1

nghttp2-1.43.0-1

source-highlight-3.1.8-3

Line 
1%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
2
3Summary: A library that performs asynchronous DNS operations
4Name: c-ares
5Version: 1.17.1
6Release: 1%{?_dist_release}
7Group: system
8Vendor: Project Vine
9Distribution: Vine Linux
10
11License: MIT
12URL: http://c-ares.haxx.se/
13Source0: http://c-ares.haxx.se/download/%{name}-%{version}.tar.gz
14# The license can be obtained at http://c-ares.haxx.se/license.html
15Source1: LICENSE
16Patch0: 0001-Use-RPM-compiler-options.patch
17Patch1: c-ares-1.10.0-multilib.patch
18
19BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
20
21BuildRequires: autoconf
22BuildRequires: automake
23BuildRequires: libtool
24
25%description
26c-ares is a C library that performs DNS requests and name resolves
27asynchronously. c-ares is a fork of the library named 'ares', written
28by Greg Hudson at MIT.
29
30
31%package devel
32Summary: Development files for c-ares
33Group: programming
34Requires: %{name} = %{version}-%{release}
35Requires: pkgconfig
36
37%description devel
38This package contains the header files and libraries needed to
39compile applications or shared objects that use c-ares.
40
41
42%package -n compat32-%{name}
43Summary: A library that performs asynchronous DNS operations
44Group: system
45
46%description -n compat32-%{name}
47c-ares is a C library that performs DNS requests and name resolves
48asynchronously. c-ares is a fork of the library named 'ares', written
49by Greg Hudson at MIT.
50
51
52%package -n compat32-%{name}-devel
53Summary: Development files for c-ares
54Group: programming
55Requires: compat32-%{name} = %{version}-%{release}
56Requires: %{name}-devel = %{version}-%{release}
57
58%description -n compat32-%{name}-devel
59This package contains the header files and libraries needed to
60compile applications or shared objects that use c-ares.
61
62
63%debug_package
64
65
66%prep
67%setup -q
68%patch0 -p1 -b .optflags
69#%patch1 -p1 -b .multilib
70
71cp %{SOURCE1} .
72f=CHANGES ; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f
73
74
75%build
76autoreconf -if
77%configure --enable-shared --disable-static \
78           --disable-dependency-tracking
79%{__make} %{?_smp_mflags}
80
81
82%install
83rm -rf $RPM_BUILD_ROOT
84make DESTDIR=$RPM_BUILD_ROOT install
85rm -f $RPM_BUILD_ROOT/%{_libdir}/libcares.la
86
87
88%clean
89rm -rf $RPM_BUILD_ROOT
90
91
92%post -p /sbin/ldconfig
93%postun -p /sbin/ldconfig
94
95
96%files
97%defattr(-, root, root)
98%license LICENSE*
99%doc AUTHORS README.md README.cares CHANGES NEWS RELEASE-NOTES
100%{_libdir}/*.so.*
101
102%files devel
103%defattr(-, root, root, 0755)
104%{_includedir}/ares.h
105%{_includedir}/ares_build.h
106%{_includedir}/ares_dns.h
107%{_includedir}/ares_rules.h
108%{_includedir}/ares_version.h
109%{_libdir}/*.so
110%{_libdir}/pkgconfig/libcares.pc
111%{_mandir}/man3/ares_*
112
113%if %{build_compat32}
114
115%files -n compat32-%{name}
116%defattr(-, root, root)
117%{_libdir}/*.so.*
118
119%files -n compat32-%{name}-devel
120%defattr(-, root, root, 0755)
121%{_libdir}/*.so
122
123%endif
124
125
126%changelog
127* Sat Feb 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.17.1-1
128- updated to 1.17.1.
129
130* Tue Jun 09 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.16.1-1
131- updated to 1.16.1.
132
133* Sat Nov 03 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.15.0-1
134- updated to 1.15.0.
135
136* Fri Mar 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.14.0-1
137- updated to 1.14.0.
138- added compat32-* subpackages.
139
140* Sun Dec 24 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.13.0-4
141- initial build for Vine Linux.
142
143* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.0-3
144- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
145
146* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.0-2
147- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
148
149* Tue Jun 20 2017 Jakub Hrozek <jhrozek@redhat.com> - 1.13.0-1
150- update to 1.13.0
151
152* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-2
153- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
154
155* Thu Sep 29 2016 Tom Callaway <spot@fedoraproject.org> - 1.12.0-1
156- update to 1.12.0
157
158* Fri Feb 19 2016 Jakub Hrozek <jhrozek@redhat.com> - 1.11.0
159- New upstream version 1.11.0
160
161* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-6
162- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
163
164* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-5
165- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
166
167* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-4
168- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
169
170* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-3
171- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
172
173* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-2
174- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
175
176* Mon May 13 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.10.1-1
177- New upstream release 1.10
178- Obsolete upstreamed patches
179- Amend the multilib patch, there's no need to patch configure since we
180  are running autoreconf anyways
181- https://raw.github.com/bagder/c-ares/cares-1_10_0/RELEASE-NOTES
182
183* Thu Apr 11 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.1-6
184- Apply an upstream patch to override AC_CONFIG_MACRO_DIR only conditionally
185
186* Thu Apr 11 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.9.1-5
187- Apply a patch by Stephen Gallagher to patch autoconf, not configure to
188  allow optflags to be passed in by build environment
189- Run autoreconf before configure
190- git rm obsolete patches
191- Apply upstream patch to stop overriding AC_CONFIG_MACRO_DIR
192
193* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-4
194- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
195
196* Wed Aug 8 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.9.1-3
197- Include URL to the license text
198
199* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-2
200- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
201
202* Mon Jun 25 2012 Tom Callaway <spot@fedoraproject.org> - 1.9.1-1
203- update to 1.9.1
204
205* Sat Apr 28 2012 Tom Callaway <spot@fedoraproject.org> - 1.8.0-1
206- update to 1.8.0
207- fix multilib patch (thanks to Paul Howarth)
208
209* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.5-2
210- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
211
212* Wed Aug 17 2011 Jakub Hrozek <jhrozek@redhat.com> - 1.7.5-1
213- New upstream release 1.7.5
214- Obsoletes patch #2
215- Rebase patch #1 (optflags) to match the 1.7.5 code
216- Fixed Source0 URL to point at the upstream tarball
217
218* Mon Apr 11 2011 Jakub Hrozek <jhrozek@redhat.com> - 1.7.4-3
219- Apply upstream patch to fix rhbz#695424
220
221* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.4-2
222- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
223
224* Fri Dec 10 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 1.7.4-1
225- update to 1.7.4
226
227* Wed Aug 25 2010 Jakub Hrozek <jhrozek@redhat.com> - 1.7.3-3
228- Actually apply the patches
229
230* Wed Aug 25 2010 Jakub Hrozek <jhrozek@redhat.com> - 1.7.3-2
231- apply couple of patches from upstream
232
233* Tue Jun 15 2010 Jakub Hrozek <jhrozek@redhat.com> - 1.7.3-1
234- Upgrade to new upstream release 1.7.3 (obsoletes search/domain patch)
235- Fix conflict of -devel packages on multilib architectures (#602880)
236
237* Thu Jun 3 2010 Jakub Hrozek <jhrozek@redhat.com> - 1.7.1-2
238- Use last instance of search/domain, not the first one (#597286)
239
240* Tue Mar 23 2010 Jakub Hrozek <jhrozek@redhat.com> - 1.7.1-1
241- update to 1.7.1 which contains the IPv6 nameserver patch
242
243* Sun Mar  7 2010 Jakub Hrozek <jhrozek@redhat.com> - 1.7.0-3
244- Change IPv6 nameserver patch according to upstream changes
245  (upstream revisions 1199,1201,1202)
246
247* Wed Mar  3 2010 Jakub Hrozek <jhrozek@redhat.com> - 1.7.0-2
248- Add a patch to allow usage of IPv6 nameservers
249
250* Tue Dec  1 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.7.0-1
251- update to 1.7.0
252
253* Sat Jul 25 2009 Ville Skyttä <ville.skytta at iki.fi> - 1.6.0-3
254- Patch to make upstream build system honor our CFLAGS and friends.
255- Don't bother building throwaway static libs.
256- Disable autotools dependency tracking for cleaner build logs and possible
257  slight build speedup.
258- Convert docs to UTF-8.
259- Update URLs.
260
261* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.0-2
262- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
263
264* Wed Jul 22 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.6.0-1
265- update to 1.6.0
266
267* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-2
268- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
269
270* Fri Sep 12 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.5.3-1
271- update to 1.5.3
272
273* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.5.1-2
274- Autorebuild for GCC 4.3
275
276* Tue Feb 19 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.1-1
277- update to 1.5.1
278
279* Thu Aug 23 2007 Tom "spot" Callaway <tcallawa@redhat.com> 1.4.0-2
280- rebuild for ppc32
281
282* Wed Jun 27 2007 Tom "spot" Callaway <tcallawa@redhat.com> 1.4.0-1
283- bump to 1.4.0 (resolves bugzilla 243591)
284- get rid of static library (.a)
285
286* Wed Jan 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.2-1
287- bump to 1.3.2
288
289* Mon Sep 11 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.1-2
290- FC-6 bump
291
292* Mon Jul 10 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.1-1
293- bump to 1.3.1
294
295* Tue Feb 28 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.0-2
296- bump for FC-5 rebuild
297
298* Sun Sep  4 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.0-1
299- include LICENSE text
300- bump to 1.3.0
301
302* Tue May 31 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.2.1-4
303- use dist tag to prevent EVR overlap
304
305* Fri Apr 22 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.2.1-2
306- fix license (MIT, not LGPL)
307- get rid of libcares.la
308
309* Fri Apr 22 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.2.1-1
310- initial package creation
311
Note: See TracBrowser for help on using the repository browser.