2016-09-16 17:28:17 by Makoto Fujiwara | Files touched by this commit (1) |
Log message:
- Add BUILD_DEPENDS+= p5-Test-Needs-[0-9]* for make test
|
2016-08-16 02:41:20 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 2.57
Upstream changes:
2.57 2016-08-13
- Added a remove_callback method to the main Log::Dispatch object as well as
all outputs.
|
2016-06-19 14:16:26 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
Updated devel/p5-Log-Dispatch to 2.56
-------------------------------------
2.56 2016-05-06
- Cleaned up some cruft in Pod. Some sections ended up in there twice.
2.55 2016-05-06
- The values of $@, $!, and $? are protected in various cases where they could
end up being changed by logging code. Patch by Salvador Fandiño. GitHub #18.
- Treat MSYS2 like Cygwin in tests. Fix by Graham Ollis. GitHub #19.
|
2016-06-08 21:25:20 by Thomas Klausner | Files touched by this commit (2236) |
Log message:
Bump PKGREVISION for perl-5.24.
|
2016-05-03 12:54:58 by Thomas Klausner | Files touched by this commit (78) |
Log message:
Reset maintainer (observer now).
|
2016-04-13 20:05:00 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update p5-Log-Dispatch to 2.54.
2.54 2016-01-18
- Fixed File::Locked even more. While some deadlocks were eliminated, there
was still an issue when a Log::Dispatch object was created in a parent
process and then recreated in the children. If the close_after_write
parameter was false, then there would be a deadlock.
- Made Syslog work on a threaded Perl when the threads module was not
explicitly loaded. Fixed by Konrad Bucheli. GitHub #13.
- The log() method now accepts a level parameter as an integer. Fixed by Steve
Bertrand. GitHub #15.
2.53 2016-01-14
- Actually fix File::Locked, this time with some actual tests.
2.52 2016-01-13
- Make File::Locked output do an explicit unlock if the close_after_write
option is not set. Without this it would open the file once in each process,
attempting to get a lock at open time, pretty much guaranteeing a deadlock
in a multiprocess environment. Now it should work sanely whether
close_after_write is true or not.
2.51 2015-09-19
- Fixed t/08-screen.t on Windows platforms.
|
2015-11-03 04:29:40 by Alistair G. Crooks | Files touched by this commit (1995) |
Log message:
Add SHA512 digests for distfiles for devel category
Issues found with existing distfiles:
distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
distfiles/fortran-utils-1.1.tar.gz
distfiles/ivykis-0.39.tar.gz
distfiles/enum-1.11.tar.gz
distfiles/pvs-3.2-libraries.tgz
distfiles/pvs-3.2-linux.tgz
distfiles/pvs-3.2-solaris.tgz
distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
|
2015-09-04 10:49:41 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
Update to 2.50
--------------
2.50 2015-09-02
- Changed how the Screen output handles UTF-8 data once more. The Screen
module has gone back to printing output directly to the global STDOUT and
STDERR handles. The previous changes broke the tests for several modules,
including Log::Dispatch::Config. This change should fix them.
|
2015-09-02 14:40:18 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
Update 2.46 to 2.49
-------------------
2.49 2015-08-21
- The Screen output now enables autoflush on the handle it uses to send output
to STDOUT or STDERR every time it sends a message. This does not affect the
global STDOUT or STDERR, as the Screen module makes its own handle for
output. This fixes a bug reported by Karen Etheridge that caused this module
to not play nicely with Capture::Tiny in some cases. RT #106605.
2.48 2015-08-07
- Fixed (I hope) tests that were added in the last release that fail on
Windows.
2.47 2015-08-06
- Really, really make per-thread locking work. Depending on when threads and
threads::shared were loaded, you might get an error like 'Type of arg 1 to
threads::shared::share must be one of $@% at .../Log/Dispatch/Syslog.pm line
67, near "$thread_lock)"'. Reported by David Schweikert.
- Added support for auth-related parameters and replyto to
Log::Dispatch::Email::MailSender. Implemented by Rohan Carly. Based on
GitHub #10.
- Added a utf8 flag for Log::Dispatch::Screen. If this is true, then it sets
the ":encoding(UTF-8)" flag on the handle it uses for output (without
affecting STDOUT or STDERR elsewhere). Suggested by Ivan Baidakou.
|
2015-08-06 06:15:52 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 2.46
Upstream changes:
2.46 2015-08-05
- Really make the per-thread locking in the Syslog output work. Based on a
patch by David Schweikert. GitHub #9.
2.45 2015-06-14
- Don't include threads and threads::shared in list of dependencies. This is
only needed for Log::Dispatch::Syslog and is loaded at runtime as needed
(which has its own issues but ...). Reported by Kent Fredric. RT #103392.
|