diff --git a/README.md b/README.md index 7fb3364..d3e699c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # pear-Log +The Log framework provides an abstracted logging system. +It supports logging to console, file, syslog, SQL, mail, and mcal targets. +It also provides a subject - observer mechanism. + diff --git a/pear-Log.spec b/pear-Log.spec new file mode 100644 index 0000000..0930f22 --- /dev/null +++ b/pear-Log.spec @@ -0,0 +1,51 @@ +Name: pear-Log +Version: 1.9.11 +Release: 2mamba +Summary: Logging utilities for Pear, a PHP tools set +Group: Applications/Web +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://pear.php.net +Source: http://pear.php.net/get/Log-%{version}.tgz +License: GPL +Requires: php >= 4.3.3 +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +The Log framework provides an abstracted logging system. +It supports logging to console, file, syslog, SQL, mail, and mcal targets. +It also provides a subject - observer mechanism. + +%prep +[ "%{buildroot}" != "/" ] && rm -rf "%{buildroot}" + +%build + +%install +mkdir -p %{buildroot}%{_libdir}/ +cd %{buildroot}%{_libdir}/ +tar xzvf %{SOURCE0} +mv Log-%{version} php +rm package.xml + +%clean +[ "%{buildroot}" != "/" ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_libdir}/php/Log.php +%{_libdir}/php/Log/* +%{_libdir}/php/tests/* +%{_libdir}/php/docs/* +%{_libdir}/php/misc/log.sql + +%changelog +* Thu Sep 05 2013 Automatic Build System 1.9.11-2mamba +- automatic rebuild by autodist + +* Mon May 21 2007 Silvan Calarco 1.9.11-1mamba +- update to 1.9.11 + +* Tue Sep 09 2003 Silvan Calarco 1.7.0-1qilnx +- first build