diff --git a/.dotconf.metadata b/.dotconf.metadata new file mode 100644 index 0000000..0e66655 --- /dev/null +++ b/.dotconf.metadata @@ -0,0 +1 @@ +0d66468cc264e7e0bfcff437cc22a1d741ca81f5 SOURCES/dotconf-1.3.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/dotconf.spec b/SPECS/dotconf.spec new file mode 100644 index 0000000..bd4aa11 --- /dev/null +++ b/SPECS/dotconf.spec @@ -0,0 +1,110 @@ +Name: dotconf +Version: 1.3 +Release: 6%{?dist} +Summary: Libraries to parse configuration files + +Group: System Environment/Libraries +License: LGPLv2 +URL: http://www.azzit.de/dotconf/ +#SCV https://github.com/williamh/dotconf/tags +Source: %{name}-%{version}.tar.gz + + +%description +Dotconf is a library used to handle configuration files. + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q + +%build +%configure --disable-static --docdir=%{_datadir}/doc/%{name}-devel-%{version} +make %{?_smp_mflags} + +%install +make install DESTDIR=%{buildroot} INSTALL="install -p" + +iconv -f iso-8859-2 -t utf-8 -o iconv.tmp AUTHORS +mv iconv.tmp AUTHORS +iconv -f iso-8859-2 -t utf-8 -o iconv.tmp doc/dotconf-features.txt +mv iconv.tmp doc/dotconf-features.txt +rm examples/maketest.sh +find %{buildroot} -type f -name "*.a" -o -name "*.la" | xargs rm -f + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%doc README AUTHORS COPYING +%{_libdir}/libdotconf*.so.* + +%files devel +%doc %{_docdir} +%{_libdir}/libdotconf*.so +%{_includedir}/dotconf.h +%{_libdir}/pkgconfig/dotconf.pc + +%changelog +* Tue Jul 16 2013 Peter Robinson 1.3-6 +- Fix multilib issues (thanks Rui Matos) + +* Tue Feb 5 2013 Peter Robinson 1.3-5 +- Update URLs and note github SCV url + +* Wed Jul 18 2012 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Dec 8 2010 Peter Robinson - 1.3-1 +- New upstream 1.3 release, update URL/Source + +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.13-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering - 1.0.13-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Jul 03 2008 Mamoru Tasaka - 1.0.13-7 +- Override config.{sub,guess} explicitly due to redhat-rpm-build-config + behavior change on F-10+, otherwise build fails on ppc64 + +* Sun Mar 09 2008 Assim Deodia 1.0.13-6 +- fixed m4-underquote error + +* Fri Feb 29 2008 Assim Deodia 1.0.13-5 +- fixed AUTHORS utf-8 +- fixed doc/dotconf-features.txt utf-8 + +* Sat Feb 23 2008 Assim Deodia 1.0.13-4 +- Applied patch macro + +* Sat Feb 23 2008 Assim Deodia 1.0.13-3 +- Resolved Multilib issue + +* Fri Feb 22 2008 Assim Deodia 1.0.13-2 +- Inclusion of pkgconfig +- Removal of INSTALL file +- Proper placement of Library files +- Creating devel sub-package +- Chaning source URL + +* Sun Feb 17 2008 Assim Deodia 1.0.13-1 +- Initial Commit