# remirepo spec file for php-Analog, from: # # Fedora spec file for php-Analog # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global commit 718ac1dad4577a15cadadab01b79d1923f5a9c6d %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global real_name Analog %global minus_name analog %global devver 0 Name: php-Analog Summary: PHP micro logging package Version: 1.0.13 %if %{devver} Release: 1git%{shortcommit}%{?dist} %else Release: 1%{?dist} %endif Source0: https://github.com/jbroadway/%{real_name}/archive/%{commit}/%{minus_name}-%{version}-%{shortcommit}.tar.gz URL: https://github.com/jbroadway/analog License: MIT BuildArch: noarch BuildRequires: php-composer(fedora/autoloader) # For tests %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 %global phpunit %{_bindir}/phpunit6 BuildRequires: phpunit6 >= 6.5 %else %global phpunit %{_bindir}/phpunit BuildRequires: %{phpunit} %endif BuildRequires: php-composer(psr/log) # from composer.json, "require": { # "psr/log": "1.*", # "php": ">=5.3.2" Requires: php(language) >= 5.3.2 Requires: php-composer(psr/log) # From phpcompatinfo report Requires: php-curl Requires: php-date Requires: php-json Requires: php-pcre Requires: php-reflection Requires: php-spl Requires: php-xml # mongo is optional # Autoloader Requires: php-composer(fedora/autoloader) Provides: php-composer(analog/analog) = %{version} %description MicroPHP logging package based on the idea of using closures for configurability and extensibility. It functions as a static class, but you can completely control the writing of log messages through a closure function (aka anonymous functions). Analog also comes with over a dozen pre-written handlers, with examples for each in the examples folder. These include: - Amon - Send logs to the Amon server monitoring tool - Buffer - Buffer messages to send all at once (works with File, Mail, Stderr, and Variable handlers) - File - Append messages to a file - FirePHP - Send messages to FirePHP browser plugin - GELF - Send message to the Graylog2 log management server - Ignore - Do nothing - LevelBuffer - Buffer messages and send only if sufficient error level reached - LevelName - Convert log level numbers to names in log output - Mail - Send email notices - Mongo - Save to MongoDB collection, requires php-pecl-mongodb package to be installed - Multi - Send different log levels to different handlers - Post - Send messages over HTTP POST to another machine - Slackbot - Post messages to Slack via Slackbot - Stderr - Send messages to STDERR - Syslog - Send messages to syslog - Threshold - Only writes log messages above a certain threshold - Variable - Buffer messages to a variable reference. So while it's a micro class, it's highly extensible and very capable out of the box too. Autoloader: %{_datadir}/php/%{real_name}/autoload.php %prep %setup -qn %{minus_name}-%{commit} %build cat << 'EOF' | tee -a lib/%{real_name}/autoload.php - 1.0.13-1 - update to 1.0.13 - use PHPUnit 6 * Tue Nov 14 2017 Remi Collet - 1.0.10-1 - update to 1.0.10 * Mon Oct 31 2016 Remi Collet - 1.0.9-2 - update to 1.0.9 - switch to fedora/autoloader * Thu Aug 11 2016 Remi Collet - 1.0.8-1 - update to 1.0.8 * Thu May 5 2016 Remi Collet - 1.0.7-2 - generate a simple autoloader (and use it for test suite) * Thu May 05 2016 Johan Cwiklinski - 1.0.7-1 - Update to 1.0.7 (PHP7 compatible) * Tue May 26 2015 Remi Collet - 1.0.6-1 - update to 1.0.6 - composer dependencies - add patch for PHP-7 (add Ignore, Null is deprecated) * Sat Jun 07 2014 Fedora Release Engineering - 1.0.0-5.git9ab4c9e - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Sun Aug 04 2013 Fedora Release Engineering - 1.0.0-4.git9ab4c9e - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Sun Feb 10 2013 Johan Cwiklinski - 1.0.0-4.git9ab4c9e - Add patch for locked file (https://github.com/jbroadway/analog/issues/7) - Remove licence file and patch applied upstream - Change github source URL * Sun Dec 30 2012 Johan Cwiklinski - 1.0.0-2.git876d8a3bb - Fix a typo - Run tests, add relevant BR and patch * Sun Dec 30 2012 Johan Cwiklinski - 1.0.0-1.git876d8a3bb - Fix version - remove not needeed php-hash requirement - remove php-mongo requirement (add a line in %%description) - remove unneeded macro - add LICENSE file (upstream bug https://github.com/jbroadway/analog/issues/2) * Mon Dec 24 2012 Johan Cwiklinski - 1.0.0.1-1.git876d8a3bb - Latest snapshot (bug fixes, new handlers) - Fix Requires * Sat Dec 01 2012 Johan Cwiklinski - 1.0.0-1 - Initial packaging