summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2017-11-25Pullup ticket #5646 - requested by hebsiegert3-9/+8
devel/git-base: security fix Revisions pulled up: - devel/git-base/Makefile 1.46 - devel/git-base/distinfo 1.71-1.72 - devel/git/Makefile.version 1.62-1.63 --- Module Name: pkgsrc Committed By: adam Date: Wed Sep 27 06:37:47 UTC 2017 Modified Files: pkgsrc/devel/git: Makefile.version pkgsrc/devel/git-base: Makefile distinfo Log Message: git: update to 2.14.2 Fixes since v2.14.1 * Because recent Git for Windows do come with a real msgfmt, the build procedure for git-gui has been updated to use it instead of a hand-rolled substitute. * "%C(color name)" in the pretty print format always produced ANSI color escape codes, which was an early design mistake. They now honor the configuration (e.g. "color.ui = never") and also tty-ness of the output medium. * The http.{sslkey,sslCert} configuration variables are to be interpreted as a pathname that honors "~[username]/" prefix, but weren't, which has been fixed. * Numerous bugs in walking of reflogs via "log -g" and friends have been fixed. * "git commit" when seeing an totally empty message said "you did not edit the message", which is clearly wrong. The message has been corrected. * When a directory is not readable, "gitweb" fails to build the project list. Work this around by skipping such a directory. * A recently added test for the "credential-cache" helper revealed that EOF detection done around the time the connection to the cache daemon is torn down were flaky. This was fixed by reacting to ECONNRESET and behaving as if we got an EOF. * Some versions of GnuPG fail to kill gpg-agent it auto-spawned and such a left-over agent can interfere with a test. Work it around by attempting to kill one before starting a new test. * "git log --tag=no-such-tag" showed log starting from HEAD, which has been fixed---it now shows nothing. * The "tag.pager" configuration variable was useless for those who actually create tag objects, as it interfered with the use of an editor. A new mechanism has been introduced for commands to enable pager depending on what operation is being carried out to fix this, and then "git tag -l" is made to run pager by default. * "git push --recurse-submodules $there HEAD:$target" was not propagated down to the submodules, but now it is. * Commands like "git rebase" accepted the --rerere-autoupdate option from the command line, but did not always use it. This has been fixed. * "git clone --recurse-submodules --quiet" did not pass the quiet option down to submodules. * "git am -s" has been taught that some input may end with a trailer block that is not Signed-off-by: and it should refrain from adding an extra blank line before adding a new sign-off in such a case. * "git svn" used with "--localtime" option did not compute the tz offset for the timestamp in question and instead always used the current time, which has been corrected. * Memory leaks in a few error codepaths have been plugged. * bash 4.4 or newer gave a warning on NUL byte in command substitution done in "git stash"; this has been squelched. * "git grep -L" and "git grep --quiet -L" reported different exit codes; this has been corrected. * When handshake with a subprocess filter notices that the process asked for an unknown capability, Git did not report what program the offending subprocess was running. This has been corrected. * "git apply" that is used as a better "patch -p1" failed to apply a taken from a file with CRLF line endings to a file with CRLF line endings. The root cause was because it misused convert_to_git() that tried to do "safe-crlf" processing by looking at the index entry at the same path, which is a nonsense---in that mode, "apply" is not working on the data in (or derived from) the index at all. This has been fixed. * Killing "git merge --edit" before the editor returns control left the repository in a state with MERGE_MSG but without MERGE_HEAD, which incorrectly tells the subsequent "git commit" that there was a squash merge in progress. This has been fixed. * "git archive" did not work well with pathspecs and the export-ignore attribute. * "git cvsserver" no longer is invoked by "git daemon" by default, as it is old and largely unmaintained. * Various Perl scripts did not use safe_pipe_capture() instead of backticks, leaving them susceptible to end-user input. They have been corrected. --- Module Name: pkgsrc Committed By: adam Date: Tue Oct 24 06:43:24 UTC 2017 Modified Files: pkgsrc/devel/git: Makefile.version pkgsrc/devel/git-base: distinfo Log Message: git: updated to 2.14.3 Git v2.14.3 Release Notes Fixes since v2.14.2 * A helper function to read a single whole line into strbuf mistakenly triggered OOM error at EOF under certain conditions, which has been fixed. * In addition to "cc: <a@dd.re.ss> # cruft", "cc: a@dd.re.ss # cruft" was taught to "git send-email" as a valid way to tell it that it needs to also send a carbon copy to <a@dd.re.ss> in the trailer section. * Fix regression to "gitk --bisect" by a recent update. * Unlike "git commit-tree < file", "git commit-tree -F file" did not pass the contents of the file verbatim and instead completed an incomplete line at the end, if exists. The latter has been updated to match the behaviour of the former. * "git archive", especially when used with pathspec, stored an empty directory in its output, even though Git itself never does so. This has been fixed. * API error-proofing which happens to also squelch warnings from GCC. * "git gc" tries to avoid running two instances at the same time by reading and writing pid/host from and to a lock file; it used to use an incorrect fscanf() format when reading, which has been corrected. * The test linter has been taught that we do not like "echo -e". * Code cmp.std.c nitpick. * "git describe --match" learned to take multiple patterns in v2.13 series, but the feature ignored the patterns after the first one and did not work at all. This has been fixed. * "git cat-file --textconv" started segfaulting recently, which has been corrected. * The built-in pattern to detect the "function header" for HTML did not match <H1>..<H6> elements without any attributes, which has been fixed. * "git mailinfo" was loose in decoding quoted printable and produced garbage when the two letters after the equal sign are not hexadecimal. This has been fixed. * The documentation for '-X<option>' for merges was misleadingly written to suggest that "-s theirs" exists, which is not the case. * Spell the name of our system as "Git" in the output from request-pull script. * Fixes for a handful memory access issues identified by valgrind. * Backports a moral equivalent of 2015 fix to the poll emulation from the upstream gnulib to fix occasional breakages on HPE NonStop. * In the "--format=..." option of the "git for-each-ref" command (and its friends, i.e. the listing mode of "git branch/tag"), "%(atom:)" (e.g. "%(refname:)", "%(body:)" used to error out. Instead, treat them as if the colon and an empty string that follows it were not there. * Users with "color.ui = always" in their configuration were broken by a recent change that made plumbing commands to pay attention to them as the patch created internally by "git add -p" were colored (heh) and made unusable. This has been fixed. * "git branch -M a b" while on a branch that is completely unrelated to either branch a or branch b misbehaved when multiple worktree was in use. This has been fixed. * "git fast-export" with -M/-C option issued "copy" instruction on a path that is simultaneously modified, which was incorrect. * The checkpoint command "git fast-import" did not flush updates to refs and marks unless at least one object was created since the last checkpoint, which has been corrected, as these things can happen without any new object getting created. * The scripts to drive TravisCI has been reorganized and then an optimization to avoid spending cycles on a branch whose tip is tagged has been implemented. * "git fetch <there> <src>:<dst>" allows an object name on the <src> side when the other side accepts such a request since Git v2.5, but the documentation was left stale. * A regression in 2.11 that made the code to read the list of alternate object stores overrun the end of the string has been fixed. Also contains various documentation updates and code clean-ups.
2017-11-12Pullup ticket #5630 - requested by sevanbsiegert3-7/+25
devel/idutils: FreeBSD build fix Revisions pulled up: - devel/idutils/distinfo 1.10 - devel/idutils/patches/patch-lib_fflush_c 1.2 - devel/idutils/patches/patch-lib_fseeko_c 1.2 --- Module Name: pkgsrc Committed By: agc Date: Thu Nov 2 04:26:21 UTC 2017 Modified Files: pkgsrc/devel/idutils/patches: patch-lib_fflush_c patch-lib_fseeko_c Log Message: patch fflush.c and fseeko.c so that this package builds on FreeBSD HEAD --- Module Name: pkgsrc Committed By: maya Date: Thu Nov 2 04:54:27 UTC 2017 Modified Files: pkgsrc/devel/idutils: distinfo Log Message: idutils: regen patch sums after previous commit
2017-11-12Pullup ticket #5620 - requested by sevanbsiegert2-7/+7
devel/py-dulwich: security fix Revisions pulled up: - devel/py-dulwich/Makefile 1.24 - devel/py-dulwich/distinfo 1.21 --- Module Name: pkgsrc Committed By: adam Date: Mon Oct 30 18:37:38 UTC 2017 Modified Files: pkgsrc/devel/py-dulwich: Makefile distinfo Log Message: py-dulwich: updated to 0.18.5 0.18.5: BUG FIXES * Fix cwd for hooks. * Fix setting of origin in config when non-standard origin is passed into ``Repo.clone``. * Prevent setting SSH arguments from SSH URLs when using SSH through a subprocess. Note that Dulwich doesn't support cloning submodules. (CVE 2017-1000117) IMPROVEMENTS * Silently ignored directories in ``Repo.stage``. API CHANGES * GitFile now raises ``FileLocked`` when encountering a lock rather than OSError(EEXIST).
2017-11-06Pullup ticket #5609 - requested by sevanbsiegert2-1/+17
devel/libgnome: build fix Revisions pulled up: - devel/libgnome/distinfo 1.41 - devel/libgnome/patches/patch-libgnome_gnome-config.h 1.1 --- Module Name: pkgsrc Committed By: jperkin Date: Thu Oct 19 09:14:32 UTC 2017 Modified Files: pkgsrc/devel/libgnome: distinfo Added Files: pkgsrc/devel/libgnome/patches: patch-libgnome_gnome-config.h Log Message: libgnome: Remove UTF-8 character causing glib-mkenums failure. Patch taken from MacPorts.
2017-11-06Pullup ticket #5605 - requested by sevanbsiegert1-1/+4
devel/flex: Linux build fix Revisions pulled up: - devel/flex/Makefile 1.61 --- Module Name: pkgsrc Committed By: triaxx Date: Fri Oct 20 06:22:24 UTC 2017 Modified Files: pkgsrc/devel/flex: Makefile Log Message: Add workaround for fixing build on Linux See https://github.com/westes/flex/issues/241 The problem is fixed in master branch and the workaround could be removed in the next version update.
2017-10-31Pullup ticket #5610 - requested by tacaspz1-3/+3
devel/ruby-redmine: build fix meta-pkgs/ruby-redmine-plugins: build fix meta-pkgs/ruby-redmine-themes: build fix Revisions pulled up: - devel/ruby-redmine/Makefile 1.24 - meta-pkgs/ruby-redmine-plugins/Makefile 1.5 - meta-pkgs/ruby-redmine-plugins/Makefile.common 1.3 - meta-pkgs/ruby-redmine-themes/Makefile 1.6 - meta-pkgs/ruby-redmine-themes/Makefile.common 1.4 ------------------------------------------------------------------- Module Name: pkgsrc Committed By: taca Date: Fri Sep 29 13:13:26 UTC 2017 Modified Files: pkgsrc/devel/ruby-redmine: Makefile Log Message: devel/ruby-redmine: Fix usage ofRUBY_VERSIONS_ACCEPTED Define RUBY_VERSIONS_ACCEPTED before including rubyversion.mk. Should be fix pbulk problem. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/ruby-redmine/Makefile ------------------------------------------------------------------- Module Name: pkgsrc Committed By: taca Date: Sat Sep 30 15:48:42 UTC 2017 Modified Files: pkgsrc/meta-pkgs/ruby-redmine-plugins: Makefile Makefile.common pkgsrc/meta-pkgs/ruby-redmine-themes: Makefile Makefile.common Log Message: meta-pkgs/ruby-redmine-*: Restrict ruby's version Restrict ruby-redmine depending pacakges to ruby22 only. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/meta-pkgs/ruby-redmine-plugins/Makefile cvs rdiff -u -r1.2 -r1.3 \ pkgsrc/meta-pkgs/ruby-redmine-plugins/Makefile.common cvs rdiff -u -r1.5 -r1.6 pkgsrc/meta-pkgs/ruby-redmine-themes/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/meta-pkgs/ruby-redmine-themes/Makefile.common
2017-10-15Pullup ticket #5567 - requested by sevanspz7-16/+25
devel/libmemcached: build fix for Darwin Revisions pulled up: - devel/libmemcached/distinfo 1.13 - devel/libmemcached/patches/patch-clients_memflush.cc 1.2 - devel/libmemcached/patches/patch-libmemcached_byteorder.cc 1.3 - devel/libmemcached/patches/patch-libtest_lite.h 1.4 - devel/libmemcached/patches/patch-libtest_test.hpp 1.3 - devel/libmemcached/patches/patch-tests_libmemcached-1.0_ketama.cc 1.5 - devel/libmemcached/patches/patch-tests_libmemcached-1.0_pool.cc 1.5 ------------------------------------------------------------------- Module Name: pkgsrc Committed By: adam Date: Mon Oct 9 07:48:52 UTC 2017 Modified Files: pkgsrc/devel/libmemcached: distinfo pkgsrc/devel/libmemcached/patches: patch-clients_memflush.cc patch-libmemcached_byteorder.cc patch-libtest_lite.h patch-libtest_test.hpp patch-tests_libmemcached-1.0_ketama.cc patch-tests_libmemcached-1.0_pool.cc Log Message: Fixed building on Darwin; clean-ups To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/libmemcached/distinfo cvs rdiff -u -r1.1 -r1.2 \ pkgsrc/devel/libmemcached/patches/patch-clients_memflush.cc cvs rdiff -u -r1.2 -r1.3 \ pkgsrc/devel/libmemcached/patches/patch-libmemcached_byteorder.cc \ pkgsrc/devel/libmemcached/patches/patch-libtest_test.hpp cvs rdiff -u -r1.3 -r1.4 \ pkgsrc/devel/libmemcached/patches/patch-libtest_lite.h cvs rdiff -u -r1.4 -r1.5 \ pkgsrc/devel/libmemcached/patches/patch-tests_libmemcached-1.0_ketama.cc \ pkgsrc/devel/libmemcached/patches/patch-tests_libmemcached-1.0_pool.cc
2017-09-25libstash: fix build on at least SunOSwiedi1-1/+3
Ensure the bsd Makefile is always used.
2017-09-24vera++: needs C++11 for variadic templatestnn1-2/+2
2017-09-23ocaml-jbuilder: don't bomb if MAKE_JOBS is unsettnn1-2/+2
2017-09-23clib: cleanupswiz1-5/+4
Does not need destdir, user-destdir is fine. Set LICENSE. Comment out dead master sites.
2017-09-23libevent: provide a no-op fallback definition of SA_RESTARTmaya2-1/+19
Using 0 as a value because the value varies by OS, for safety QNX 6.5 build fix reported by Jan Danielsson
2017-09-22cargo: needs cmaketnn1-2/+2
2017-09-22libevent: remove redundant include, define __EXT_POSIX2 on QNX.maya4-6/+23
Should help QNX build the package, but still missing a fallback definition for SA_RESTART. Reported by Jan Danielsson on pkgsrc-users.
2017-09-21py-unittest2py3k: removed, successor py-unittest2adam6-138/+1
Notes from py-unittest2: There was a separate version of unittest2 for Python 3. This is no longer needed, but still exists on PyPI. This had the project name "unittest2py3k" but uses the same package name ("unittest2").
2017-09-21Fix MASTER_SITES.wiz1-2/+2
2017-09-21rt4: Remove references to non-existent fileswiz1-3/+2
2017-09-19cleanup: remove unnecessary RUBY_VERSIONS_ACCEPTEDtaca1-3/+1
Remove unnecessary RUBY_VERSIONS_ACCEPTED since ruby21 removed.
2017-09-19Patch cmake to find boost version 1.65 (i.e., the one in pkgsrc)prlw13-2/+69
2017-09-19libgail-gnome: replace dead HOMEPAGEwiz1-3/+2
2017-09-19its4: comment out dead sitewiz1-3/+2
I'll remove this after the freeze
2017-09-18py-daemonize: update to 2.4.7adam2-8/+8
Changes 2.4.7: Confirm NetBSD support Close unused fd: devnull_fd Fix exception handling
2017-09-18py-atpublic: update to 1.0adam2-9/+11
1.0: Documentation improvements.
2017-09-18py-test-mock: update to 1.6.3adam2-7/+7
1.6.3 * Fix ``UnicodeDecodeError`` during assert introspection in ``assert_called_with`` in Python 2.
2017-09-18revbump for requiring ICU 59.xmaya107-204/+214
2017-09-18p5-File-Which: remove p5-Test-Script build dependencywiz1-3/+1
It hasn't been used since at least 2015.
2017-09-18devel/ruby-simplecov: update to 0.15.1taca3-8/+9
0.15.1 (2017-09-11) ======= ## Bugfixes * Filter directories outside SimpleCov.root that have it as a prefix. See [#617](https://github.com/colszowka/simplecov/pull/617) (thanks @jenseng) * Fix standard rails profile rails filter (didn't work). See [#618](https://github.com/colszowka/simplecov/pull/618) (thanks @jenseng again!)
2017-09-18devel/ruby-curses: update to 1.2.4taca2-7/+7
### 1.2.4 / 2017-09-13 New features: * Update PDCurses. Bug fixes: * Fix the path of pdcurses.dll for i386-mingw. (Issue #36) Documentation: * Include reference to ncurses dependency. Pull request #34 by qume.
2017-09-17MoarVM uses an executable stack.bsiegert1-1/+3
Mark as not PaX MPROTECT safe.
2017-09-17p5-glib2: update to 1.326.wiz2-8/+7
Overview of changes in Glib 1.326 (stable) ============================================ * lib/Glib/GenPod.pm: Allow overriding of current time in generated man-pages Overview of changes in Glib 1.325 (stable) ============================================ * Try to avoid a possible hang in t/9.t * Handle removing '.' in @INC for perl-5.26.0 compatibility Overview of changes in Glib 1.324 (stable) ============================================ * Fix a POD error in the Glib::ParamSpec whatis entry * Fix POD for the benefit of whatis (Bugzilla #772329) * Fix typos in error message and POD (Bugzilla #772328)
2017-09-17py-dogpile-cache: update to 0.6.4adam2-7/+7
0.6.4 [bug] The method Region.get_or_create_multi() will not pass to the cache backend if no values are ultimately to be stored, based on the use of the Region.get_or_create_multi.should_cache_fn function. This empty dictionary is unnecessary and can cause API problems for backends like that of Redis. Pull request courtesy Tobias Sauerwein. [bug] The api.NO_VALUE constant now has a fixed __repr__() output, so that scenarios where this constant’s string value ends up being used as a cache key do not create multiple values. Pull request courtesy Paul Brown. [bug] A new exception class exception.PluginNotFound is now raised when a particular cache plugin class cannot be located either as a setuptools entrypoint or as a registered backend. Previously, a plain Exception was thrown. Pull request courtesy Jamie Lennox.
2017-09-17p5-Test2-Plugin-NoWarnings: update to 0.06.wiz2-8/+7
0.06 2017-06-04 - Warnings inside a subtest were not emitted as TAP events, breaking the TAP and making for great confusion. This is because of a bug in the core TAP formatter - see https://github.com/Test-More/test-more/issues/776 for details. Warnings are now emitted as Ok events instead of Warning events.
2017-09-17p5-Test-Trap: update to 0.3.3.wiz2-8/+7
0.3.3 Tue Aug 22 02:06:09 CEST 2017 For this release, many thanks go to Slaven Rezic, who found that Test::More::is() (or Test2::Formatter::TAP::write()) clobbers $^E on Windows. - RT #105125 is addressed: The tests now use a copy of $^E taken before Test::More gets a chance to touch it. - Further, the Test::Trap test methods might also clobber $^E (via Test::More or other modules), so they now localize $^E before invoking the callback. - Regression tests have been added for this.
2017-09-17py-limits: update to 1.2.1adam3-10/+9
1.2.1: * Fix regression with csv as multiple limits 1.2.0: * Support reset for RedisStorage * Improved rate limit string parsing
2017-09-17p5-Test-Spec: update to 0.53.wiz2-8/+7
0.53 Wed Aug 16 09:49:00 BST 2017 - POD links are clickable Contributed by @manwar (issue #42) 0.52 Tue Aug 15 10:20:00 BST 2017 - Pass example instance to each test Contributed by @jamhed (issue #30, #41) - Fix runtests to run all examples that match any of the patterns Contributed by @mpw96 (issue #37, #38) - Ensure META.json includes requirements Reported by @joelrebel (issue #39)
2017-09-17p5-Test-Simple: update to 1.302096.wiz2-7/+7
1.302096 2017-09-10 21:16:18-07:00 America/Los_Angeles -Fix to work with subref-in-stash optimisation (Father C.) 1.302095 2017-08-31 20:35:22-07:00 America/Los_Angeles (TRIAL RELEASE) - Make several tests work with preload 1.302094 2017-08-30 21:27:23-07:00 America/Los_Angeles (TRIAL RELEASE) - Fix Test::Builder in a preload scenario 1.302093 2017-08-29 21:05:20-07:00 America/Los_Angeles (TRIAL RELEASE) - Make sure Test::Builder does not initialize Test2 too soon. 1.302092 2017-08-28 21:30:06-07:00 America/Los_Angeles (TRIAL RELEASE) - Fix bug in Facets for TodoDiag - Add API command to reset after a fork - Add 'important' flag to info event facet 1.302091 2017-08-08 19:50:55-07:00 America/Los_Angeles (TRIAL RELEASE) - Add 'new_root' constructor for formatters - Add intercept_deep() to the API - Fix bug in Version event - Add 'number' attribute to assertion facet 1.302090 2017-07-09 21:10:08-07:00 America/Los_Angeles (TRIAL RELEASE) - Fix test that unintentionally required Test2::Suite 1.302089 2017-07-09 20:51:19-07:00 America/Los_Angeles (TRIAL RELEASE) - Fix plan in buffered subtest so that the facts say it is buffered 1.302088 2017-06-28 21:55:21-07:00 America/Los_Angeles (TRIAL RELEASE) - Fix tests on perl 5.25+ with newer Data::Dumper 1.302087 2017-06-26 20:32:21-07:00 America/Los_Angeles (TRIAL RELEASE) - Introduce 'Facets' for events - Performance enhancements - Upgrade inline HashBase - Move Test2::Util::Trace to Test2::EventFacet::Trace - Track hub id in Trace - Remove Info event - Add Pass and Fail events - Remove Event JSON interface
2017-09-17p5-Test-Script: update to 1.23.wiz2-9/+9
1.23 2017-07-18 03:12:24 -0400 - Production release identical to 1.22_01 release. 1.22_01 2017-07-14 07:21:00 -0400 - Fix testing failures on Windows introduced in 1.21_01 1.21_01 2017-07-13 13:37:09 -0400 - Migrate to using Test2::V0 internally 1.20 2017-07-13 11:17:42 -0400 - Production release identical to 1.19_08 release. 1.19_08 2017-07-12 08:22:41 -0400 - Diagnostic release 1.19_07 2017-07-12 07:53:55 -0400 - Diagnostic release 1.19_06 2017-07-11 05:34:30 -0400 - Diagnostic release 1.19_05 2017-07-09 11:35:59 -0400 - Diagnostic release 1.19_04 2017-07-07 16:26:41 -0400 - Add support for stdin option that was lost in the Capture::Tiny migration - Officially drop support for Perl 5.6 (support for 5.6 was already implicitly dropped when we migrated to Capture::Tiny). - A near term future version will also drop support for the old pre-Test2 Test::Builder. 1.19_03 2017-07-07 10:14:25 -0400 - Use Test2::V0 instead of Test2::Bundle::Extended for Test2 tests 1.19_02 2017-06-21 17:06:47 -0400 - Identical to 1.19_01 1.19_01 2017-05-01 06:12:01 -0400 - Use Capture::Tiny instead of IPC::Run3 (Paul Cochrane/PTC++ gh#4, gh#15) - Minor documentation fixes (Paul Cochrane/PTC++)
2017-09-17p5-Test2-Suite: p5-Term-Table also is a full dependencywiz1-4/+3
2017-09-17p5-Test2-Suite: p5-Sub-Info is a full dependencywiz1-2/+2
Ride update.
2017-09-17p5-Test2-Suite: update to 0.000077.wiz2-10/+8
0.000077 2017-09-12 07:49:16-07:00 America/Los_Angeles - No changes since last TRIAL release 0.000076 2017-09-11 15:21:07-07:00 America/Los_Angeles (TRIAL RELEASE) - Add Test2::Tools::GenTemp 0.000075 2017-09-10 21:22:17-07:00 America/Los_Angeles - Add version to Test2::Event::Times 0.000074 2017-08-31 20:37:47-07:00 America/Los_Angeles (TRIAL RELEASE) - Add Test2::Event::Times - Fix some tests that were failing in yath 0.000073 2017-08-30 23:11:28-07:00 America/Los_Angeles (TRIAL RELEASE) - Add Test2::Plugin::Times 0.000072 2017-06-17 21:48:14-07:00 America/Los_Angeles - No change since last trial 0.000071 2017-06-10 13:40:27-07:00 America/Los_Angeles (TRIAL RELEASE) - Introduce Test2::V# bundles - Deprecate Test2::Bundle::Extended - Test2::V0 added - Fix Test2::Mock doesn't accept non-ref values (Mike Raynham) - Fix isa_ok overload issue (Mike Raynham)
2017-09-17p5-Test-MockModule: update to 0.12.wiz2-8/+7
v0.12 - Added the `noop()` function to make mocking noops easier. Thanks for the PR, Ali Zia!
2017-09-17p5-Test-LeakTrace: update to 0.16.wiz3-23/+7
Revision history for Perl extension Test::LeakTrace 0.16 2017-06-17 - Fix build and test issues with perl5.26 due to removal of . from @INC (PR #4 - thanks to jkeenan)
2017-09-17p5-Test-EOL: update to 2.00.wiz2-11/+9
2.00 2017-05-03 22:38:59Z - Update documentation for starting point change in version 1.5 - Check *.pod files as well as *.pm, *.pl and *.t (RT#82032) - repository has moved to GitHub
2017-09-17p5-Term-ProgressBar: update to 2.21.wiz2-8/+7
2.21 2017-08-02 MANWAR - Added key 'clean' to Makefile.PL script. 2.20 2017-07-11 MANWAR - silent mode avoids uninitialized value messages (GFIREBALL) 2.19 2017-07-10 MANWAR - Fixed inconsistent version as reported by CPANTS.
2017-09-17p5-Shell-Perl: update to 0.004.wiz2-8/+7
0.004 Tue May 02 17:19 PT 2017 - only set ornaments if term supports it 0.003 Mon Feb 20 12:12 PT 2017 - exit & quit works as :exit & :quit at top level - on_quit attribute https://github.com/aferreira/pirl/issues/4
2017-09-17p5-Safe-Isa: update to 1.000006.wiz2-9/+8
1.000006 - 2016-10-31 - now falling back to $obj->isa if DOES/does is not implemented on the object, to avoid fatal errors on perls too old to have their own DOES (RT#100866)
2017-09-17p5-Return-MultiLevel: update to 0.05.wiz2-8/+7
0.05 2017-09-10 - formally recommend Scope::Upper be installed in the distribution metadata - mention / link to bug tracker in module documentation
2017-09-17p5-Regexp-Parser: update to 0.22.wiz2-9/+7
0.22 -- Todd Rinaldo Sept 12, 2017 - Adjust broken issue tracker URL - Release to public.
2017-09-17p5-Regexp-Assemble: update to 0.38.wiz2-9/+7
0.38 2017-06-20T08:51:00 - Fix test prereqs; pod tests moved to xt (RT#122136, RT#122137) Many thanx to Karen Etheridge for these patches. Note: I (Ron) have no idea where the version 2.07 originally comes from, although I have seen it before. It was not in the very first distro I got my hands on. Anyway, I've reverted Karen's patch to 0.38 to match the current sequence of version #s. Apart from that, all these fine improvements are hers. If this version # causes difficulties, I'll just bump it to 2.08. - Adopt new repo structure. For details, see http://savage.net.au/Ron/html/My.Workflow.for.Building.Distros.html. Specifically: o Delete MANIFEST and META.yml, and hereafter auto-generate them. o Modernize .gitignore and MANIFEST.SKIP. o The code says Perl licence but the LICENCE file says Artistic, so replace LICENCE file with LICENSE (so spelled), which says Perl.
2017-09-17p5-Proc-InvokeEditor: update to 1.13.wiz2-8/+7
1.08 03 Aug 2017 - Patch from Max Maischein for windows support. 1.09 03 Aug 2017 - Disable author tests for now. 1.10 15 Aug 2017 - Move to dzil to update packaging to modern standards 1.11 15 Aug 2017 - Fix stupid mistake 1.12 15 Aug 2017 - Properly generate META.json 1.13 16 Aug 2017 - Add LICENSE to docs and meta tests