update to 2.7 [release 2.7-1mamba;Sun Dec 02 2012]
This commit is contained in:
parent
d35c0b0834
commit
f7708f5319
@ -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.
|
||||
|
||||
|
11
libconfuse-2.6-lexer_noinput.patch
Normal file
11
libconfuse-2.6-lexer_noinput.patch
Normal file
@ -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
|
||||
*/
|
72
libconfuse.spec
Normal file
72
libconfuse.spec
Normal file
@ -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 <silvan.calarco@mambasoft.it>
|
||||
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 <autodist@mambasoft.it> 2.7-1mamba
|
||||
- update to 2.7
|
||||
|
||||
* Mon Jul 06 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 2.6-1mamba
|
||||
- package created by autospec
|
Loading…
Reference in New Issue
Block a user