[libee] Initial import (#847811).

mahaveer darade mdarade at fedoraproject.org
Thu Oct 11 12:16:14 UTC 2012


commit 9334d9a032410c940ac719083ec059bde5dd7e98
Author: Mahaveer Darade <mah.darade at gmail.com>
Date:   Thu Oct 11 17:49:34 2012 +0530

    Initial import (#847811).

 .gitignore |    1 +
 libee.spec |   83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources    |    1 +
 3 files changed, 85 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..2209c05 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libee-0.4.1.tar.gz
diff --git a/libee.spec b/libee.spec
new file mode 100644
index 0000000..5831250
--- /dev/null
+++ b/libee.spec
@@ -0,0 +1,83 @@
+Summary: Event expression library inspired by CEE
+Name: libee
+Version: 0.4.1
+Release: 3%{?dist}
+
+License: LGPLv2+ and MIT and GPL+ 
+Group: System Environment/Libraries 
+URL: http://www.libee.org
+Source0: http://www.libee.org/files/download/%{name}-%{version}.tar.gz
+
+BuildRequires: libestr-devel
+BuildRequires: chrpath
+
+%description
+The core idea of libee is to provide a small but hopefully convenient API layer
+above the CEE standard. CEE is under heavy development and even some of its 
+core data structures have not been fully specified.
+
+CEE is an upcoming standard used to describe network events in a number of
+normalized formats. It's goal is to unify many different
+representations that exist in the industry.
+
+%package devel
+Summary: Development files for libee
+Group: Development/Libraries
+Requires:   %{name}%{?_isa} = %{version}-%{release}
+Requires: libestr-devel%{?_isa}
+
+%package utils
+Summary:   Optional utilities like libee-convert 
+Requires:   %{name}%{?_isa} = %{version}-%{release}
+
+%description devel
+This package provides files required for development with libee,
+the event expression library used by the rsyslog daemon.
+
+%description utils
+The libee-convert utility provided by event expression library.
+
+%prep
+%setup -q  -n %{name}-%{version}
+
+%build
+%configure 
+V=1 make
+
+%install
+make install INSTALL="install -p" DESTDIR=%{buildroot}
+rm -f %{buildroot}/%{_libdir}/*.{a,la}
+chrpath --delete %{buildroot}%{_libdir}/libee.so.*
+chrpath --delete %{buildroot}%{_sbindir}/libee-convert
+
+%check
+make check
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%doc README COPYING AUTHORS ChangeLog
+%{_libdir}/libee.so.0
+%{_libdir}/libee.so.0.0.0
+
+%files devel
+%{_libdir}/pkgconfig/libee.pc
+%dir %{_includedir}/libee
+%{_includedir}/libee/*.h
+%{_libdir}/*.so
+
+%files utils
+%{_sbindir}/*
+
+%changelog
+* Thu Sep 20 2012 Mahaveer Darade <mdarade at redhat.com> - 0.4.1-3
+- Added check to enable testsuite in tests dir
+
+* Mon Aug 27 2012 mdarade <mdarade at redhat.com> - 0.4.1-2
+- Added separate util package to have libee-convert utility
+
+
+* Tue Aug 7 2012 Mahaveer Darade <mdarade at redhat.com> 0.4.1-1
+- Initial port
diff --git a/sources b/sources
index e69de29..df326af 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+7bbf4160876c12db6193c06e2badedb2  libee-0.4.1.tar.gz


More information about the scm-commits mailing list