From 6719372a15c09a3e4772a50f98a82ddbf4dbb1fc Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 31 2019 12:08:18 +0000 Subject: import libconfig-1.4.9-5.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..be62ac2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/libconfig-1.4.9.tar.gz diff --git a/.libconfig.metadata b/.libconfig.metadata new file mode 100644 index 0000000..1ba193d --- /dev/null +++ b/.libconfig.metadata @@ -0,0 +1 @@ +b7a3c307dfb388e57d9a35c7f13f6232116930ec SOURCES/libconfig-1.4.9.tar.gz diff --git a/SPECS/libconfig.spec b/SPECS/libconfig.spec new file mode 100644 index 0000000..3a35985 --- /dev/null +++ b/SPECS/libconfig.spec @@ -0,0 +1,150 @@ +Name: libconfig +Summary: C/C++ configuration file library +Version: 1.4.9 +Release: 5%{?dist} +License: LGPLv2+ +Group: System Environment/Libraries +Source0: http://www.hyperrealm.com/libconfig/libconfig-%{version}.tar.gz +URL: http://www.hyperrealm.com/libconfig/ +BuildRequires: texinfo-tex +BuildRequires: bison, flex + +%description +Libconfig is a simple library for manipulating structured configuration +files. This file format is more compact and more readable than XML. And +unlike XML, it is type-aware, so it is not necessary to do string parsing +in application code. + +%package devel +Summary: Development files for libconfig +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig +Requires(post): /sbin/install-info +Requires(preun): /sbin/install-info + +%description devel +Development libraries and headers for developing software against +libconfig. + +%prep +%setup -q +iconv -f iso-8859-1 -t utf-8 -o AUTHORS{.utf8,} +mv AUTHORS{.utf8,} + +%build +%configure --disable-static +make %{?_smp_mflags} +make pdf + +%install +make DESTDIR=$RPM_BUILD_ROOT install install-pdf +rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la +rm -rf $RPM_BUILD_ROOT%{_infodir}/dir +# Prevent multilib conflicts +sed -i '/^\/CreationDate/d' $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}/libconfig.pdf +sed -i '/^\/ModDate/d' $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}/libconfig.pdf +sed -i '/^\/ID /d' $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}/libconfig.pdf + +%check +./tests/libconfig_tests + +%post -p /sbin/ldconfig + +%post devel +/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || : + +%postun -p /sbin/ldconfig + +%preun devel +if [ $1 = 0 ]; then + /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || : +fi + +%files +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog COPYING.LIB README +%{_libdir}/libconfig*.so.* + + +%files devel +%defattr(-,root,root,-) +%{_includedir}/libconfig* +%{_libdir}/libconfig*.so +%{_libdir}/pkgconfig/libconfig*.pc +%{_defaultdocdir}/%{name}/ +%{_infodir}/libconfig.info* + +%changelog +* Fri Jan 24 2014 Daniel Mach - 1.4.9-5 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 1.4.9-4 +- Mass rebuild 2013-12-27 + +* Fri Jun 21 2013 Pavel Raiskup - 1.4.9-3 +- enable simple upstream test-suite during check phase + +* Thu Feb 14 2013 Fedora Release Engineering - 1.4.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Oct 1 2012 Tom Callaway - 1.4.9-1 +- update to 1.4.9 + +* Thu Jul 19 2012 Fedora Release Engineering - 1.4.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 1.4.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Aug 12 2011 Tom Callaway - 1.4.8-1 +- update to 1.4.8 + +* Wed Mar 23 2011 Tom Callaway - 1.4.7-1 +- update to 1.4.7 + +* Tue Mar 1 2011 Stanislav Ochotnicky - 1.4.6-1 +- Update to 1.4.6 +- Install libconfig_tests +- Fix rpmlint warnings + +* Mon Feb 07 2011 Fedora Release Engineering - 1.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed May 5 2010 Tom "spot" Callaway - 1.4.5-1 +- update to 1.4.5 + +* Wed Aug 19 2009 Tom "spot" Callaway - 1.3.2-1 +- update to 1.3.2 + +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Dec 24 2008 Tom "spot" Callaway - 1.3.1-2 +- prevent multilib conflicts with the generated pdf + +* Fri Sep 12 2008 Tom "spot" Callaway - 1.3.1-1 +- update to 1.3.1 + +* Tue Feb 19 2008 Fedora Release Engineering - 1.2.1-2 +- Autorebuild for GCC 4.3 + +* Tue Feb 19 2008 Tom "spot" Callaway 1.2.1-1 +- bump to 1.2.1 + +* Fri Nov 30 2007 Tom "spot" Callaway 1.2-4 +- nuke %%{_infodir}/dir, we handle it in %%post + +* Fri Nov 30 2007 Tom "spot" Callaway 1.2-3 +- move all docs to devel +- move scriptlets around to match +- move requires around to match + +* Fri Nov 30 2007 Tom "spot" Callaway 1.2-2 +- BR: texinfo-tex (not Requires) + +* Fri Nov 30 2007 Tom "spot" Callaway 1.2-1 +- Initial package for Fedora