From f7708f53196a51cdb90334b3307642d2c36a27f3 Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 6 Jan 2024 04:01:53 +0100 Subject: [PATCH] update to 2.7 [release 2.7-1mamba;Sun Dec 02 2012] --- README.md | 3 ++ libconfuse-2.6-lexer_noinput.patch | 11 +++++ libconfuse.spec | 72 ++++++++++++++++++++++++++++++ 3 files changed, 86 insertions(+) create mode 100644 libconfuse-2.6-lexer_noinput.patch create mode 100644 libconfuse.spec diff --git a/README.md b/README.md index 0060d38..86a10e1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # libconfuse +libConfuse is a configuration file parser library, licensed under the terms of the ISC license, and written in C. It supports sections and (lists of) values (strings, integers, floats, booleans or other sections), as well as some other features (such as single/double-quoted strings, environment variable expansion, functions and nested include statements). It makes it very easy to add configuration file capability to a program using a simple API. + The goal of libConfuse is not to be the configuration file parser library with a gazillion of features. Instead, it aims to be easy to use and quick to integrate with your code. libConfuse was called libcfg before, but was changed to not confuse with other similar libraries. + diff --git a/libconfuse-2.6-lexer_noinput.patch b/libconfuse-2.6-lexer_noinput.patch new file mode 100644 index 0000000..5185de1 --- /dev/null +++ b/libconfuse-2.6-lexer_noinput.patch @@ -0,0 +1,11 @@ +diff -Nru confuse-2.6.orig/src/lexer.l confuse-2.6/src/lexer.l +--- confuse-2.6.orig/src/lexer.l 2007-10-13 17:12:20.000000000 +0200 ++++ confuse-2.6/src/lexer.l 2009-07-06 12:51:31.531656794 +0200 +@@ -63,6 +63,7 @@ + %} + + %option noyywrap ++%option noinput + + /* start conditions + */ diff --git a/libconfuse.spec b/libconfuse.spec new file mode 100644 index 0000000..da96433 --- /dev/null +++ b/libconfuse.spec @@ -0,0 +1,72 @@ +Name: libconfuse +Version: 2.7 +Release: 1mamba +Summary: A configuration file parser library +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.nongnu.org/confuse/ +Source: http://savannah.nongnu.org/download/confuse/confuse-%{version}.tar.gz +Patch0: %{name}-2.6-lexer_noinput.patch +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +libConfuse is a configuration file parser library, licensed under the terms of the ISC license, and written in C. It supports sections and (lists of) values (strings, integers, floats, booleans or other sections), as well as some other features (such as single/double-quoted strings, environment variable expansion, functions and nested include statements). It makes it very easy to add configuration file capability to a program using a simple API. + The goal of libConfuse is not to be the configuration file parser library with a gazillion of features. Instead, it aims to be easy to use and quick to integrate with your code. libConfuse was called libcfg before, but was changed to not confuse with other similar libraries. + +%package devel +Group: Development/Libraries +Summary: Static libraries and headers for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +libConfuse is a configuration file parser library, licensed under the terms of the ISC license, and written in C. It supports sections and (lists of) values (strings, integers, floats, booleans or other sections), as well as some other features (such as single/double-quoted strings, environment variable expansion, functions and nested include statements). It makes it very easy to add configuration file capability to a program using a simple API. + The goal of libConfuse is not to be the configuration file parser library with a gazillion of features. Instead, it aims to be easy to use and quick to integrate with your code. libConfuse was called libcfg before, but was changed to not confuse with other similar libraries. + +This package contains static libraries and header files need for development. + +%prep +%setup -q -n confuse-%{version} +%patch0 -p1 + +%build +%configure --enable-shared +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%find_lang confuse + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files -f confuse.lang +%defattr(-,root,root) +%{_libdir}/*.so.* +%doc AUTHORS NEWS README + +%files devel +%defattr(-,root,root) +%dir %{_includedir} +%{_includedir}/*.h +%{_libdir}/*.a +%{_libdir}/*.la +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + +%changelog +* Sun Dec 02 2012 Automatic Build System 2.7-1mamba +- update to 2.7 + +* Mon Jul 06 2009 Silvan Calarco 2.6-1mamba +- package created by autospec