summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2017-02-06Add version suffix to binaries to allow multiple alternatives at once.markd3-5/+13
2017-02-05Updated py-mccabe to 0.6.1.wiz2-7/+7
0.6.1 - 2017-01-26 `````````````````` * Fix signature for ``PathGraphingAstVisitor.default`` to match the signature for ``ASTVisitor`` 0.6.0 - 2017-01-23 `````````````````` * Add support for Python 3.6 * Fix handling for missing statement types
2017-02-05Updated py-test to 3.0.6.wiz2-7/+7
3.0.6 (2017-01-29) ======================= * pytest no longer generates ``PendingDeprecationWarning`` from its own operations, which was introduced by mistake in version ``3.0.5`` (`#2118`_). Thanks to `@nicoddemus`_ for the report and `@RonnyPfannschmidt`_ for the PR. * pytest no longer recognizes coroutine functions as yield tests (`#2129`_). Thanks to `@malinoff`_ for the PR. * Plugins loaded by the ``PYTEST_PLUGINS`` environment variable are now automatically considered for assertion rewriting (`#2185`_). Thanks `@nicoddemus`_ for the PR. * Improve error message when pytest.warns fails (`#2150`_). The type(s) of the expected warnings and the list of caught warnings is added to the error message. Thanks `@lesteve`_ for the PR. * Fix ``pytester`` internal plugin to work correctly with latest versions of ``zope.interface`` (`#1989`_). Thanks `@nicoddemus`_ for the PR. * Assert statements of the ``pytester`` plugin again benefit from assertion rewriting (`#1920`_). Thanks `@RonnyPfannschmidt`_ for the report and `@nicoddemus`_ for the PR. * Specifying tests with colons like ``test_foo.py::test_bar`` for tests in subdirectories with ini configuration files now uses the correct ini file (`#2148`_). Thanks `@pelme`_. * Fail ``testdir.runpytest().assert_outcomes()`` explicitly if the pytest terminal output it relies on is missing. Thanks to `@eli-b`_ for the PR.
2017-02-05Updated py-test-runner to 2.11.wiz2-7/+7
2.11 ~~~~ * #27: Improved wording in the README around configuration for the distutils command and pytest proper.
2017-02-05Update MoarVM to 2017.01.bsiegert4-27/+27
2016.04 - Implement heap snapshots support, exposed through the profiling API - Don't mark tc->cur_frame twice during GC - Move thread object mark into thread root mark, removing a special case in the main collector - Add API for adding a permanent root together with a description - Mark thread blocked for GC when doing synchronous reads - Make MVM_bigint_from_num jit-friendly - JIT coerce_nI as a call to bigint_from_num - Set debug_name on a few more built-in types - Add REPR API for getting unmanaged size, implement it for many REPRs - Fix compile on FreeBSD 9 - Handle single-char build directory names by changing capture to lookahead - Fix performance of reading very long lines - Fix utf8-c8 decode crash caused by off-by-1 - Fix a full vs. partial collection detection bug - Factor unmanaged size into promoted bytes - Enhance scheme for deciding when to do a full collect - Bail out if HLL name string index is invalid in bytecode unpack - Don't try to set flags beyond num_lexicals when reading in call frames - Adjust byte count when UTF-16 BOM marker consumed - Fix buffer overrun in utf8-c8 decoding - Initialize object registers with VMNull when allocating frames, to avoid a number of possible segfaults - Fix incorrect boolification of "" under mode MODE_UNBOX_STR_NOT_EMPTY_OR_ZERO - Utilize debug_name in nativecall error messages 2016.05 - Use MSVC-provided stdint.h and inttypes.h when possible - Improved various error messages to include the debug type name - Eliminate call frame reference counts, instead using a linear call stack for frames that never become heap-referenced and using the garbage collector to manage those that do - Tune number of gen2 sized bins - Improve error reporting in P6opaque's compose function - Improved GC debugging support to catch more problems - Fix a race between serialization context resolution and garbage collection - Add a missing MVMROOT in shell/spawn - Fix segfault when trying to serialize an uncomposed P6opaque type - Update the build system to autodetect system provided libs - Add missing rooting, since the instrumentation level barrier may allocate - Fix cleanup of temp roots at thread exit - Add missing rooting of exception message in `die` - Fix CUnion layout computation GC issues - Fix data race in clearing of "in inter-gen set" flag - Various improvements and fixes to the spesh_graph tool - Add missing optimization of decont_s and decont_u ops - Eliminate duplicate MVMContext creation code - Fix full cleanup crash: the NFG uses the FSA, so have to destroy NFG first - Close dynvar log filehandle in instance destroy - Clean up cross-thread write logging mutex - Free debug names in STables - Free the string_heap_fast_table in CompUnit bodies - Free permroot descriptions - Free thread's finalization queue in tc destruction - Add docs about MVMROOT - Fix crash when GCing an ended thread - Implement loadbytecodebuffer and loadbytecodefh ops - Speed up initialization of non-specialized frames - Use varints to make serialization of various integers more compact, reducing size of compiled output - Ensure we always produce at least one snapshot when heap profiling - Remove debug output when taking heap snapshots 2016.06 - Serialize the HLL role field of STables - Avoid VMNull setup memcpy/loop in specialized frame initialization - Stop caching MVMContext on a frame - Use frames directly when serializing closures, rather than having to create an MVMContext wrapper for every one - Write SC index when deserializing, repossessing, and preparing to serialize, saving a huge amount of linear scanning - Only used cached SC index if SC itself matches - Remove an unrequired memset to clear the args buffer - Inline args preparation into interpreter, and JIT it directly instead of making a call to a tiny function - Mark getlexcaller as :noinline - Don't lose handlers during multi-level inlines - Eliminate loop in P6opaque's get_boxed_ref function, decreasing cost - Implement payload throw/handler support - Implement callerlex throwing mode - Make moar-gdb.py source-able, instead of only autoloadable - Fix inlining causing wrong lexical handler lookup - Make build in dir containing space work - Allow HLL handler for unhandled lexical exception - Add debug_name to "cannot iterate X with Y REPR" message - Give "this is not a X iterator" more info, too 2016.07 - Implement a new multi-dispatch cache, structured as a tree, able to hold more entries more memory-compactly, and able to cache dispatches involving named parameters - JIT read_fhs op - Implement elems REPR function for MVMContext - Implement a BB-splitting manipulation function in the optimizer - Fix sha1 op to work with null bytes - Fix bad interaction between profiling and dead allocation elimination; the presence of allocation logging would prevent the optimization, leading to misleading profiler output results 2016.08 - Don't crash in P6opaque on NULL name_to_index_mapping - Fix off-by-one in grapheme iterator - Block/unblock thread for GC on semaphore wait - Mark blocked around some more lock acquisitions - Fix various cases of out-dated pointer reads on concurrency control constructs - Hold uv_sem_t at a level of indirection, so it won't move in memory - Add a flag for PIPE_MERGED_OUT_ERR; fix stdio setup for merge - Fix EOF detection when reading files from /proc and similar - Fix lost socket listen errors - Implement async cancellation completion notifications - Add some missing fact dependencies in spesh, fixing some wrong guard eliminations - Avoid use of possibly-invalidated decont facts in spesh - Remove keep_caller from MVMFrame - Correctly NULL-terminate the buffer in MVM_vm_dump_file 2016.09 - Do not crash when the container configuration can't be read - Correctly calculate the work_size when inlining between compilation units - Validate indices of param_ ops and require checkarity before param_* - Fix tautological comprison; snprintf returns an int, not a size_t - Fix tell for files that haven't been read from - Don't allow zero alignment in P6opaque storage spec - Index check lexicals when reading static flags - Add Decoder REPR and a number of ops that provide access to VM-backed streaming decoding - Don't segfault when serializing an uncomposed p6opaque - Don't read_int into a size_t which is unsigned - Never leak sym_name from nativecall_build - Fix a couple of potential leaks in heap snapshots - Kick arg_ and argconst_ ops from the correct basic block when inlining - Use HASH_FIND_CACHE instead of HASH_FIND in MVMHash - Correct wording of named arguments error - Bounds check for hints in get_attribute and bind_attribute - Use hints for is_attribute_initialized, and null-check repr_data - Clean up various unused variables - Mark thread GC blocked while accepting a socket to prevent deadlocks - Configure.pl now has an explicit use lib "." - Fix missing finalization queue cleanup at thread exit - Mark SC used in bytecode loading as claimed to avoid keeping them around for too long - Fix an error in multi caching of named arguments that could cause lookups to fail and the cache to keep growing 2016.10 - Fix build without libtommath source - Make MVM_file_open_fh() throw if the file we opened was a directory - Fix bug and memory leaks in MVM_file_open_fh() - Add error message for likely MacOS build failure - Don't set inheriting process on inherited pipe, fixing a segfault - Update to the Unicode 9 database - Die on CStruct without any fields - Constant-fold unipropcode and unipvalcode - Use PRId64 instead of %d for 64 bit int format string args - "Cannot unbox type object" error gets debugname and native type info - Fix uninitialized arg_names of an MVMCallsite - Handle C++ constructors on libffi - Fix CUnion get_attribute treating inlined attrs as pointers - Fix 32 bit issue with rw args in NativeCall callbacks - Use better throw-away type for void nativecalls - Gracefully handle a 0 RSS reported by the Linux kernel - Fix "Invalid free()" in empty repossessed arrays - Make sure we mean "signed char" when we say "char" - Fix calculating structure sizes for arm64 and others - Disable JIT on x32, since it has a different calling convention - Fix pointer size unit in configure message - Use set_uint64 in from_num, otherwise we overflow on x32 - Rewrite mkdir_p api, no function changes - Improve nativecall attribute error messages - Include debug_name in crossthreadwritelog and serialization errors - Deprecate async string I/O ops - Deprecate flattenropes op - Implement indexingoptimized op (replaces flattenropes, but is not in-place) - Fix memory leadk in ord_basechar_at - Ensure errno is grabbed before MVM_free is called - Make extra sure unlock only happens if lock happened 2016.11 - Workaround tommath issue #56 which affects random bigint numbers > 32 bits - Fix memory leaks in nqp_nfa_run - Fix a sizeof arg that allocated a much-too-big buffer for callsite arg names - Add missing breaks in MVMString's copy_to - Prevent null deref when calling MVM_string_utf16_encode - Corrections to mkdir on Windows - Introduce MVM_SPESH_LIMIT, which limits how many specializations will be performed; this is useful for debugging which specialized block is to blame for a bug - Make sure we never box a NULL filename when creating backtraces - Fix the nativecall attribute error messages - Remove (non-existent) num16 from error message - Make the fixed size allocator provide useful information to Valgrind - Implement serialization of SCRef - Include file/line of unserializable closure, to aid debugging - Add type info when failing to bind an attribute - Use ffi_arg type for libffi nativecall return types - Handle libffi return type more correctly - Work around missing libatomic_ops prototype on s390x - Panic when trying to GC a locked mutex - Make VM panic output state that a panic occurred - Fix JIT code generation bug in nqp::exception - Add missing rooting of value pushed to concurrent queue - Add src/gc/debug.h dependency to Makefile - Mark a thread GC-blocked while it is in native code - Have "Cannot * a type object" also outputs the type's debug name - Don't reveal partially deserialized method cache - Give a bunch of exception ops REPR and debug name output - Prevent segfault when null string used as hash key - Request POSIX.1.c compliance on solaris - Change to use readdir insteal of readdir_r - Use GCC on Solaris by default - Give diagnostic output when compiling fails - Handle current Solaris compiler not understanding -mt - Fixed readdir so it won't check old errno - Work around clock_gettime issue on OSX - Refactor hashes to no longer need to flatten ropes in string keys - Save 8 (64-bit) or 4 (32-bit) bytes per entry in the MVMHash REPR - Remove the deprecated flattenropes op - Remove now-unused MVM_string_flatten function - Don't treat an nread of 0 in libuv read callbacks as an error - Bump to latest libatomic_ops 2016.12 - Decode Latin-1 and UTF-8 strings to 8-bit width when possible - Teach a few string functions to compress results into 8-bit storage - Fix for AIX's INFINITY not being a constant - Unlink libmoar before (re)installing it - Add configuration for AIX - Support Perl older than 5.10 for Configure.pl - Use "pkgconfig --libs libffi" additionally to --cflags - Fix powerpc detection on AIX (gcc) - Make multidim error messages say they are multidim - Add comment about where to find UNIDATA - Implement captureinnerlex op, for fixing QUIT/LAST phaser scoping in Perl 6 - Fix mis-sized free in the NFG trie that only showed up in 32-bit - Add GC debug helper to "find" a pointer in nurseries/gen2 bins - Make ASSERT_NOT_FROMSPACE check fromspaces of all threads - Fix missing MVMROOT around an allocation - Fix typo in nfg.h comment - Fix native callback and GC interaction when embedded - Add GC block management functions to the public API - Mark throwpayload* as :throwish in oplist - Optimize the check for negative bignums - Remove useless mp_neg calls - Fix premature free of UV socket handles - Fix premature handle free in async UDP sockets - Add a "check every register access" GC debug mode - Provide a #define to disable dynlex caching - Provide a #define for deopt logging - Invalidate dynlex caches during deopt - Fix pow_I when it takes an exponent larger than 2**32 - Only do MVM_ASSERT_NOT_FROMSPACE in GC debug mode - Add a fromspace assertion in finalize - Avoid a number of spesh GC invariant violations - Panic if we try to GC when speshing/JITing - Ensure we don't leak partially deserialized objects - Fix unrooted frame around SC object lookup - Remove some GC debug code - Avoid reading nativerefs in spesh, since it can cause boxing and thus GC - Cope with push being used on concurrent queues - MVMROOT around putting work on concurrent queue - MVMROOT eventloop queue when polling it - Do MVM_ASSIGN_REF after block/unblock in concurrent queue - Fix more unrooted frame around SC object lookup 2017.01 - Extract spesh block allocator from spesh, for wider use - Add a number of missing MVMROOTs, which could lead to outdated pointers; also removed some unrequired MVMROOTs - Fix arg_flags allocation sizes - Remove an obsolete path from ldrpath - Check lexical accesses in GC debug mode 2 also - Add a #define to turn on inline logging - Fix callstack reset bug, which could corrupt deeply recursing callstacks - Don't allow re-compose of a P6opaque - Add a new unicmp_s op, which compares using the Unicode Collation Algorithm - Make sure we generate all values of the Line_Break property - Re-implement utf8-c8 encoding, fixing bugs and ensuring that non-NFC input will round-trip properly also - Implement Bidi_Mirroring_Glyph as an integer property - Implement Emoji grapheme breaking and other combined codes - Add support for Grapheme_Cluster_Break=Prepend from Unicode 9.0 - Make sure we break after Prepend if it's a control character - Add a script to download the latest version of all of the Unicode data - Missing rooting GC in rare exit handler case - Implement new setdispatcherfor op and add JIT for it - Use much faster atoi function in normalizer; 14% less CPU use when slurping a file in UTF-8 encoding - For Decompose_Type, use int lookup instead of str for better performance - Fix heap snapshot crash on eventloop thread - Use /usr/bin/env perl for ./Configure.pl - Don't break after ZWJ or for MALE SIGN and FEMALE SIGN - Take into account actual allocated size of I/O buffers in gen2 promotion statistics - Tweak full collection criteria in heap profiling - Free up spesh log slots after specialization, avoiding some leaks - Removed the getregref_ ops (unused by NQP or Perl 6) - Removed the continuationclone op (unused by Perl 6) - Enforce one-shot invocation of continuations - Greatly simplify handling of call frame working register lifetimes, leading to consistently shorter lifetimes, less memory pressure, and faster calling - Eliminate now-unused `tc` field in MVMFrame, saving a pointer per callframe - Simplify args cleanup functions - Reduce number of checks in call frame marking, making it faster - Implement getstrfromname op, to get named Unicode sequences - Fix GC in spesh triggered by managed mutex use - Fix data race in inlining extop fixup - Fix data race in callsite fixup during inlining - Fix data race in string fixup during inlining - Fix charname lookups of LINE FEED and CARRIAGE RETURN - Remove Unicode 1 names and add Unicode Name Aliases - Convert MVM_malloc+memset to MVM_calloc - Clean out ancient "remove after rebootstrap" line - Fix typo in MVM_CALLSTACK_REGIONS_SIZE's name - Fix missing cleanup of managed DecodeStream - Have DecodeStrem clean leftover char buffers - Fix a typo in decode stream destroy function
2017-02-05Disable internal sqlite3. Bump PKGREVISIONryoon4-43/+5
It is my mistake. Builds confirmed on NetBSD/amd64 current and macOS Sierra.
2017-02-04Git v2.11.1 Release Notesadam3-9/+8
========================= Fixes since v2.11 ----------------- * The default Travis-CI configuration specifies newer P4 and GitLFS. * The character width table has been updated to match Unicode 9.0 * Update the isatty() emulation for Windows by updating the previous hack that depended on internals of (older) MSVC runtime. * "git rev-parse --symbolic" failed with a more recent notation like "HEAD^-1" and "HEAD^!". * An empty directory in a working tree that can simply be nuked used to interfere while merging or cherry-picking a change to create a submodule directory there, which has been fixed.. * The code in "git push" to compute if any commit being pushed in the superproject binds a commit in a submodule that hasn't been pushed out was overly inefficient, making it unusable even for a small project that does not have any submodule but have a reasonable number of refs. * "git push --dry-run --recurse-submodule=on-demand" wasn't "--dry-run" in the submodules. * The output from "git worktree list" was made in readdir() order, and was unstable. * mergetool.<tool>.trustExitCode configuration variable did not apply to built-in tools, but now it does. * "git p4" LFS support was broken when LFS stores an empty blob. * Fix a corner case in merge-recursive regression that crept in during 2.10 development cycle. * Update the error messages from the dumb-http client when it fails to obtain loose objects; we used to give sensible error message only upon 404 but we now forbid unexpected redirects that needs to be reported with something sensible. * When diff.renames configuration is on (and with Git 2.9 and later, it is enabled by default, which made it worse), "git stash" misbehaved if a file is removed and another file with a very similar content is added. * "git diff --no-index" did not take "--no-abbrev" option. * "git difftool --dir-diff" had a minor regression when started from a subdirectory, which has been fixed. * "git commit --allow-empty --only" (no pathspec) with dirty index ought to be an acceptable way to create a new commit that does not change any paths, but it was forbidden, perhaps because nobody needed it so far. * A pathname that begins with "//" or "\\" on Windows is special but path normalization logic was unaware of it. * "git pull --rebase", when there is no new commits on our side since we forked from the upstream, should be able to fast-forward without invoking "git rebase", but it didn't. * The way to specify hotkeys to "xxdiff" that is used by "git mergetool" has been modernized to match recent versions of xxdiff. * Unlike "git am --abort", "git cherry-pick --abort" moved HEAD back to where cherry-pick started while picking multiple changes, when the cherry-pick stopped to ask for help from the user, and the user did "git reset --hard" to a different commit in order to re-attempt the operation. * Code cleanup in shallow boundary computation. * A recent update to receive-pack to make it easier to drop garbage objects made it clear that GIT_ALTERNATE_OBJECT_DIRECTORIES cannot have a pathname with a colon in it (no surprise!), and this in turn made it impossible to push into a repository at such a path. This has been fixed by introducing a quoting mechanism used when appending such a path to the colon-separated list. * The function usage_msg_opt() has been updated to say "fatal:" before the custom message programs give, when they want to die with a message about wrong command line options followed by the standard usage string. * "git index-pack --stdin" needs an access to an existing repository, but "git index-pack file.pack" to generate an .idx file that corresponds to a packfile does not. * Fix for NDEBUG builds. * A lazy "git push" without refspec did not internally use a fully specified refspec to perform 'current', 'simple', or 'upstream' push, causing unnecessary "ambiguous ref" errors. * "git p4" misbehaved when swapping a directory and a symbolic link. * Even though an fix was attempted in Git 2.9.3 days, but running "git difftool --dir-diff" from a subdirectory never worked. This has been fixed. * "git p4" that tracks multile p4 paths imported a single changelist that touches files in these multiple paths as one commit, followed by many empty commits. This has been fixed. * A potential but unlikely buffer overflow in Windows port has been fixed. * When the http server gives an incomplete response to a smart-http rpc call, it could lead to client waiting for a full response that will never come. Teach the client side to notice this condition and abort the transfer. * Some platforms no longer understand "latin-1" that is still seen in the wild in e-mail headers; replace them with "iso-8859-1" that is more widely known when conversion fails from/to it. * Update the procedure to generate "tags" for developer support. * Update the definition of the MacOSX test environment used by TravisCI. * A few git-svn updates. * Compression setting for producing packfiles were spread across three codepaths, one of which did not honor any configuration. Unify these so that all of them honor core.compression and pack.compression variables the same way. * "git fast-import" sometimes mishandled while rebalancing notes tree, which has been fixed. * Recent update to the default abbreviation length that auto-scales lacked documentation update, which has been corrected. * Leakage of lockfiles in the config subsystem has been fixed. * It is natural that "git gc --auto" may not attempt to pack everything into a single pack, and there is no point in warning when the user has configured the system to use the pack bitmap, leading to disabling further "gc". * "git archive" did not read the standard configuration files, and failed to notice a file that is marked as binary via the userdiff driver configuration. * "git blame --porcelain" misidentified the "previous" <commit, path> pair (aka "source") when contents came from two or more files. * "git rebase -i" with a recent update started showing an incorrect count when squashing more than 10 commits. * "git <cmd> @{push}" on a detached HEAD used to segfault; it has been corrected to error out with a message. * Tighten a test to avoid mistaking an extended ERE regexp engine as a PRE regexp engine. * Typing ^C to pager, which usually does not kill it, killed Git and took the pager down as a collateral damage in certain process-tree structure. This has been fixed.
2017-02-04Updated devel/p5-Exporter-Tiny to 0.044mef2-9/+8
--------------------------------------- 0.044 2017-01-30 [ Packaging ] - Repackage as a stable release. 0.043_02 2017-01-30 [ Packaging ] - Release using newer versions of toolchain stuff.
2017-02-04Updated devel/p5-ExtUtils-ModuleMaker to 0.56mef2-8/+7
--------------------------------------------- 0.56 January 30, 2017 Removed all test files using 'scripts/modulemaker' as first step in diagnosing problem reported in https://rt.cpan.org/Ticket/Display.html?id=111637. No changes in functionality.
2017-02-04Updated devel/p5-CPANPLUS to 0.9162mef2-8/+7
----------------------------------- - ChangeLog unkown, but github log says (for inc directory) Update bundled modules.
2017-02-03Updated py-mercurial to 4.1.wiz3-19/+39
This is a regularly-scheduled quarterly feature release. 1.1. commands commands: config option to control bundle compression level crecord: add an experimental option for space key to move cursor down crecord: rewrite status line text (BC) diff: add experimental support for more git-diff extended diff features graft: support grafting changes to new file in renamed directory (issue5436) help: show help for disabled extensions (issue5228) help: update help for 'hg update' which was misleading (issue5427) merge: fix crash on criss cross merge with dir move and delete (issue5020) summary: add evolution "troubles" information to summary output summary: use the same labels as log command in "parent: " line templates: display evolution "troubles" in command line style 1.2. core changelog: keep track of file end in appender (issue5444) dispatch: stop supporting non-use of @command (API) hook: do not redirect stdout/err/in to ui while running in-process hooks (BC) httppeer: advertise and support application/mercurial-0.2 localrepo: experimental support for non-zlib revlog compression manifest: add bundlemanifestlog support manifest: add unionmanifestlog support manifest: make revlog verification optional patch: add experimental config knob for displaying the index header patch: add similarity config knob in experimental section patch: add label for coloring the index extended header patch: add label for coloring the similarity extended header profiling: make statprof the default profiler (BC) profiling: use vendored statprof and upstream enhancements (BC) revlog: REVIDX_EXTSTORED flag revlog: add clone method revlog: ensure that flags do not overflow 2 bytes revlog: flag processor revlog: inline start() and end() for perf reasons revlog: make compressed size comparisons consistent revlog: merge hash checking subfunctions revlog: move decompress() from module to revlog class (API) revlog: optimize _chunkraw when startrev==endrev revlog: pass revlog flags to addrevision revlog: reorder index accessors to match data structure order revlog: use compression engine API for compression revlog: use compression engine APIs for decompression revset: add regular expression support to 'desc' revset: make children() not look at p2 if null (issue5439) run-tests: forward Python USER_BASE from site (issue5425) server: move cmdutil.service() to new module (API) templatekw: force noprefix=False to insure diffstat consistency (issue4755) ui: check EOF of getpass() response read from command-server channel ui: do not translate empty configsource() to 'none' (API) ui: factor out ui.load() to create a ui without loading configs (API) util: compression APIs to support revlog compression and decompression util: declare wire protocol support of compression engines wireproto: advertise supported media types and compression formats wireproto: only advertise HTTP-specific capabilities to HTTP peers (BC) wireproto: perform chunking and compression at protocol layer (API) 1.3. extensions convert: add config option to control storing original revision convert: add config option to copy extra keys from Git commits convert: config option for git rename limit convert: config option to control Git committer actions rebase: calculate ancestors for --base separately (issue5420) rebase: check for conflicts before continuing rebase: fail-fast the pull if working dir is not clean (BC) shelve: allow multiple shelves with --patch and --stat shelve: choose a legal shelve name when no name is passed (issue5112) shelve: make --keep option survive user intervention (issue5431) shelve: make unshelve not crash when there are missing files (issue4176) 1.4. hgweb hgweb: link to raw-file on annotation page (BC) hgweb: make log streams compatible with command server hgweb: restore ascending iteration on revs in filelog web command hgweb: support Content Security Policy 1.5. chg chg: send type information via S channel (BC) chg: support long socket path chgserver: make S channel support pager request chgserver: override runcommand 1.6. Behavior Changes chg: send type information via S channel (BC) crecord: rewrite status line text (BC) hgweb: link to raw-file on annotation page (BC) hook: do not redirect stdout/err/in to ui while running in-process hooks (BC) profiling: make statprof the default profiler (BC) profiling: use vendored statprof and upstream enhancements (BC) rebase: fail-fast the pull if working dir is not clean (BC) wireproto: only advertise HTTP-specific capabilities to HTTP peers (BC) 1.7. Internal API Changes bookmarks: make bookmarks.comparebookmarks accept binary nodes (API) bookmarks: rename 'compare()' to 'comparebookmarks()' (API) revlog: move decompress() from module to revlog class (API) server: move cmdutil.service() to new module (API) ui: do not translate empty configsource() to 'none' (API) ui: factor out ui.load() to create a ui without loading configs (API) util: remove compressors dict (API) util: remove decompressors dict (API) wireproto: perform chunking and compression at protocol layer (API) dispatch: stop supporting non-use of @command (API)
2017-02-03Update to 0.63wen2-7/+7
Upstream changes: 0.63 Sat Jan 14 09:31:43 PST 2017 - Fixed colors on older perls. TINITA++ - Changed on/off to always/never. TINITA++ 0.62 Fri Jan 13 22:37:55 PST 2017 - Debug color and indent options added by TINITA++ - Recursion controls. Apply PR/46 by @pdl++ (refactored) - Support Perl regex look-behind assertions
2017-02-03Update to 0.49wen2-7/+7
Upstream changes: 0.49 2016-12-23 00:12:12Z - made the exported is_Foo and to_Foo subs much faster, especially for type constraints which can be inlined. (Dave Rolsky)
2017-02-03Update to 0.001014wen2-8/+7
Upstream changes: 0.001014 2017-01-19 02:29:46Z - provide inlined version of NumericCode (Gregory Oschwald, GitHub PR#4)
2017-02-03Update to 2.2004wen2-7/+7
Upstream changes: 2.2004 2017-01-31 [BUG FIXES] - When an attribute was specified as 'rw' and you also provided an accessor name matching the attribute and there was an explicit writer, Moose would try to make an additional reader access with the same name as the attribute. Then Moose would warn about overwriting an accessor with a reader. This is related to the bugs reported in RT #120040. 2.2003 2017-01-30 [BUG FIXES] - Moose could die when attempting to warn about overwriting an attribute's access method in some cases (since version 2.1902) (RT #120040) 2.2002 2017-01-30 [BUG FIXES] - Creating a Moose subclass of a Moo class with an attribute with a delegation would cause a warning (since version 2.1902).
2017-02-02Updated xorg-util-macros to 1.19.1.wiz2-7/+7
Alan Coopersmith (1): XORG_MANPAGE_SECTIONS: limit SysV man page sections to Solaris 2.0-11 Andreas Boll (1): Fix XORG_WITH_XMLTO to work with xmlto >= 0.0.27 Emil Velikov (1): autogen.sh: use quoted string variables Matt Turner (1): Version bump: 1.19.1 Mihail Konev (1): autogen: add default patch prefix Peter Hutterer (1): autogen.sh: use exec instead of waiting for configure to finish
2017-02-02Always use the sqlite3 library in NSS to avoid installation error on Mac OS X,yyamano2-1/+39
just like other platforms.
2017-02-02Update to version 0.3.2, which fixes an issue with how thumbnails arerodent2-7/+7
displayed in Redmine 3.3.2 when titles are set in that macro.
2017-02-01Added devel/p5-IO-Event version 0.813mef1-1/+2
2017-02-01Add perl5 in CATEGORY line.mef1-2/+2
2017-02-01Import p5-IO-Event-0.813 as devel/p5-IO-Event.mef3-0/+41
IO::Event provides a object-based callback system for handling nonblocking IO. The design goal is to provide a system that just does the right thing w/o the user needing to think about it much. All APIs are kept as simple as possible yet at the same time, all functionality is accesible if needed. Simple things are easy. Hard things are possible. Most of the time file handling syntax will work fine: <$filehandle> and print $filehandle 'stuff'. IO::Event provides automatic buffering of output (with a callback to throttle). It provides automatic line-at-a-time input. After initial setup, call IO::Event::loop(). IO::Event was originally written to use Event. IO::Event still defaults to using Event but it can now use AnyEvent or its own event loop.
2017-02-01Added BUILD_DEPENDS+= lines for make testmef1-1/+9
2017-01-31+ py-olefileleot1-1/+2
2017-01-31Import py-olefile-0.44 as devel/py-olefileleot4-0/+44
olefile (formerly OleFileIO_PL) is a Python package to parse, read and write Microsoft OLE2 files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), such as Microsoft Office 97-2003 documents, vbaProject.bin in MS Office 2007+ files, Image Composer and FlashPix files, Outlook MSG files, StickyNotes, several Microscopy file formats, McAfee antivirus quarantine files, etc.
2017-01-30Fix 'make test' target.alnsn1-2/+6
2017-01-30Added devel/p5-Data-ObjectDriver version 0.14mef1-1/+6
Added devel/p5-File-Flock version 2014.01 Added devel/p5-Data-Structure-Util version 0.16 Added devel/p5-TheSchwartz version 1.12 Added devel/p5-Eval-LineNumbers version 0.1 Added sysutils/p5-Daemon-Generic version 0.84
2017-01-30Import p5-Eval-LineNumbers-0.1 as devel/p5-Eval-LineNumbers.mef3-0/+37
Add a "#line "this-file" 392" comment to heredoc/hereis text that is going to be eval'ed so that error messages will point back to the right place. Please note: when you embed "\n" in your code, it gets expanded in double-quote hereis documents so it will mess up your line numbering. Use "\\n" instead when you can.
2017-01-30Import p5-TheSchwartz-1.12 as devel/p5-TheSchwartz.mef3-0/+30
TheSchwartz is a reliable job queue system. Your application can put jobs into the system, and your worker processes can pull jobs from the queue atomically to perform. Failed jobs can be left in the queue to retry later.
2017-01-30Import p5-Data-Structure-Util-0.16 as devel/p5-Data-Structure-Util.mef3-0/+33
Data::Structure::Util is a toolbox to manipulate the data inside a data structure. It can process an entire tree and perform the operation requested on each appropriate element. For example: It can transform all strings within a data structure to utf8 or transform any utf8 string back to the default encoding. It can remove the blessing on any reference. It can collect all the objects or detect if there is a circular reference. It is written in C for decent speed.
2017-01-30Import p5-File-Flock-2014.01 as devel/p5-File-Flock.mef3-0/+39
Lock files using the flock() call. If the file to be locked does not exist, then the file is created. If the file was created then it will be removed when it is unlocked assuming it's still an empty file. Locks can be created by new'ing a File::Flock object. Such locks are automatically removed when the object goes out of scope. The unlock() method may also be used. lock_rename() is used to tell File::Flock when a file has been renamed (and thus the internal locking data that is stored based on the filename should be moved to a new name). unlock() the new name rather than the original name. Locks are released on process exit when the process that created the lock exits. Subprocesses that exit do not remove locks. Use forget_locks() or POSIX::_exit() to prevent unlocking on process exit.
2017-01-30Import p5-Data-ObjectDriver-0.14 as devel/p5-Data-ObjectDriver.mef3-0/+35
Data::ObjectDriver providing a simple and generic abstraction to databases (DBI and otherwise), along with support for partitioning and caching.
2017-01-30Updated devel/p5-PPIx-Regexp to 0.051mef2-8/+7
------------------------------------- 0.051 2017-01-29 T. R. Wyant Support whitespace inside [] if /xx in effect. Starting with Perl 5.25.9, a space or tab appearing inside a bracketed character class is not significant if /xx is asserted. Further deprecate tokenizer method prior() Add 'provides' data to ExtUtils::MakeMaker output SOME unescaped litaral '{' removed in 5.025001. After '.', Unicode classes, and bracketed classes (including extended) they are still legal. Make /\b{/ an error Perl fails to parse the above, because once it sees the '\b{' it wants to find one of the extended boundary assertions (like \b{wb}), and declares an error when it does not. So we check for this and rebless the curly into an unknown token, not a literal.
2017-01-30Update to 2.070wen2-8/+7
Upstream changes: 2.070 28 Dec 2016 * File::GlobMapper #117675: Fix prototype errors while lazy loading the module * zipdetails #116538: CVE-2016-1238: avoid loading optional modules from default .
2017-01-30Update to 0.34wen2-7/+7
Upstream changes: 0.34 2017-01-29 - Packages with Specio::Exporter can now specify additional arbitrary subs to exporter. See the Specio::Exporter docs for details. - Importing the same library twice in a given package would throw an exception. The second attempt to import is now ignored.
2017-01-30Update to 2.2001wen2-8/+8
Update DEPENDS Upstream changes: 2.2001 2017-01-29 [TESTS] - fixed variable interpolation in filename in test (RT#120033) 2.2000 2017-01-29 [OTHER] - increased minimum required version of Sub::Name. 2.1905 2017-01-07 (TRIAL RELEASE) [ENHANCEMENTS] - Added support for __no_BUILD__ as a constructor argument to skip calling any BUILD subs (used internally by modules like Moo that have their own implementation of calling BUILD) (PR#142, Graham Knop) 2.1904 2016-12-22 (TRIAL RELEASE) [BUG FIXES] - Slight tweaks to the syntax used for hashes in a few tests, that were broken by a recent Test::More release that started using a new namespace that clashes with a (bareword) type name in these tests. (PR#141, D.Maestro) 2.1903 2016-11-22 (TRIAL RELEASE) [ENHANCEMENTS] - When an attribute defines two methods (say a reader and writer) with the same name, this now generates a warning. - The warning when attribute methods overwrite one another is now much more informative. It includes the type of accessors involve (reader, writer, predicate, etc.) as well as the file and line where each accessor was defined. Fixes RT #118325. [BUG FIXES] - Brought back the Moose::Meta::Method::Delegation->_get_delegate_accessor method for the benefit of MooseX::CurriedDelegation. - The definition context (package, file, & line) for attributes on Class::MOP and Moose metaclasses was wrong in all cases. 2.1902 2016-10-23 (TRIAL RELEASE) [ENHANCEMENTS] - The stack trace for an inlined delegation now tells you where the delegating attribute was declared (file and line number). 2.1901 2016-10-20 (TRIAL RELEASE) [TESTS] - warnings are only checked for in tests under AUTHOR_TESTING, so as to not prevent installation when warnings occur in prerequisites. 2.1900 2016-10-09 (TRIAL RELEASE) [ENHANCEMENTS] - Most delegations are inlined now. This is not done for speed but rather to improve stack traces when the delegated-to method throws an exception or when the delegated-to method simply does not exist in the delegatee. Previously, this stack trace and associated error were less helpful than they could have been. Requested by Tim Bunce, Olaf Alders, and Van de Bugger. (RT#46614, RT#98402, and RT#109631).
2017-01-29Fixed definition of WRKSRC to also work when PKGREVISION is set.rillig1-3/+3
2017-01-29Upgrade to 1.40.kim4-39/+25
1.40: 2016-09-07 Add warnings about stock CVS vs. the MirOS patched version. 1.39: 2016-09-06 Fix GitLab issue #8: Exporting with commitids does not coalesce changesets. 1.38: 2016-02-28 All Python code in the suite is 2 & 3 polyglot and 8-bit clean. 1.37: 2016-01-29 New -c option for when you can't trust commit-IDs. Port patch for Sun systems. 1.36: 2015-12-22 Avoid a core dump in another pathological case. 1.35: 2015-11-23 Properly handle CVS masters with nonempty access lists. Bail out gracefully on pathological masters with no revisions. 1.34: 2015-09-25 Another Python compatibility fix. Fix inconsistent license header in revdir.c.
2017-01-29Update ruby-gnome2 packages to 3.1.1.tsutsui8-32/+34
pkgsrc changes: * add graphics/ruby-gnome2-clutter-gdk Upstream changes: (from https://github.com/ruby-gnome2/ruby-gnome2/blob/3.1.1/NEWS) == Ruby-GNOME2 3.1.1: 2017-01-26 === Changes ==== All * Improvements * Windows: Supported Ruby 2.4. ==== Ruby/GLib2 * Improvements * (({GLib::DateTime})): Added. [GitHub#961][GitHub#965] [Patch by cedlemo] * (({GLib::TimeZone})): Added. [GitHub#963][Patch by cedlemo] * Stopped to show "message", "info" and "debug" level logs by default. You can enable them by (({$DEBUG = true})). [GitHub#981][Reported by PeterWAWood] * Windows: Updated bundled PCRE to 8.40. ==== Ruby/GObjectIntrospection * Improvements * Supported outputting (({guint8})) array. * Supported converting (({equal})) method to (({==})) method. * Supported auto (({Enumerable})) inclusion for classes and modules that have (({each})) method. ==== Ruby/GIO2 * Improvements * (({Gio::Settings#initialize})): Added backward compatible API again. * Fixes * Supported GIO 2.38 or earlier again. ==== Ruby/Pango * Fixes * (({Pango::LayoutLine#x_to_index})): Fixed a crash bug. * Windows: Updated bundled HarfBuzz to 1.4.1. * Windows: Updated bundled ICU to 58.2. ==== Ruby/GdkPixbuf2 * Improvements * (({GdkPixbuf::Pixbuf#save_to_buffer})): Supported again but it's deprecated. Use (({GdkPixbuf::Pixbuf#save})) instead. * Windows: Updated bundled gdk-pixbuf to 2.36.4. ==== Ruby/GDK3 * Improvements * Windows: Updated bundled GTK+ to 3.22.7. ==== Ruby/GTK3 * Improvements * (({Gtk::TreeViewColumn#initialize})): Supported option Hash. [GitHub#958][Patch by Detlef Wagner] * Updated samples. [Patch by cedlemo] * (({Gtk::Dialog#get_widget_for_response_id})): Supported (({Symbol})) as response ID. [GitHub#978][Patch by Detlef Wagner] * (({Gtk::Container#add})): Changed to return (({self})) again. * Windows: u ==== Ruby/Poppler * Fixes * (({Poppler::IndexIter})): Fixed a crash bug. * (({Poppler::IndexIter#child})): Added a missing (({NULL})) check. * Fixed types of action classes. They must be (({GLib::Boxed})). ==== Ruby/GStreamer * Improvements * Windows: Updated bundled GStreamer to 1.10.2. ==== Ruby/ClutterGStreamer * Improvements * Windows: Updated bundled Clutter-GStreamer to 3.0.22. ==== Ruby/GtkSourceView3 * Improvements * Windows: Updated bundled GtkSourceView to 3.22.2. ==== Ruby/GSF * Improvements * Windows: Updated bundled GSF to 1.14.41. === Thanks * Detlef Wagner * cedlemo * PeterWAWood
2017-01-29- Correction to HOMEPAGEmef1-2/+2
2017-01-28Revert, all the parts for tests were already, just not for interactive use.wiz1-5/+1
2017-01-28Run self-tests using py.test, better readable output.wiz1-6/+4
Remove mprotect comment; even with it turned off, a segfault happens.
2017-01-28Add test target. Result:wiz1-1/+5
# of expected passes 970 # of unexpected failures 450
2017-01-27Update swig3 to 3.0.11prlw13-9/+27
SWIG-3.0.11 summary: - PHP 7 support added. - C++11 alias templates and type aliasing support added. - Minor fixes and enhancements for C# Go Guile Java Javascript Octave PHP Python R Ruby Scilab XML.
2017-01-27Update devel/py-argcomplete to 1.8.2.fhajny2-7/+7
Changes for v1.8.2 (2017-01-26) - Fix bug introduced in v0.7.1 where completers would not receive the parser keyword argument. - Documentation improvements. Changes for v1.8.1 (2017-01-21) - Fix completion after tokens with wordbreak chars (#197)
2017-01-27Update 45.7.0ryoon1-2/+2
Security fixes: #CVE-2017-5375: Excessive JIT code allocation allows bypass of ASLR and DEP #CVE-2017-5376: Use-after-free in XSL #CVE-2017-5378: Pointer and frame data leakage of Javascript objects #CVE-2017-5380: Potential use-after-free during DOM manipulations #CVE-2017-5390: Insecure communication methods in Developer Tools JSON viewer #CVE-2017-5396: Use-after-free with Media Decoder #CVE-2017-5383: Location bar spoofing with unicode characters #CVE-2017-5386: WebExtensions can use data: protocol to affect other extensions #CVE-2017-5373: Memory safety bugs fixed in Firefox 51 and Firefox ESR 45.7
2017-01-26v33.1.1adam4-21/+26
------- * 921: Correct issue where certifi fallback not being reached on Windows. v33.1.0 ------- Installation via pip, as indicated in the `Python Packaging User's Guide <https://packaging.python.org/installing/>`_, is the officially-supported mechanism for installing Setuptools, and this recommendation is now explicit in the much more concise README. Other edits and tweaks were made to the documentation. The codebase is unchanged. v33.0.0 ------- * 619: Removed support for the ``tag_svn_revision`` distribution option. If Subversion tagging support is still desired, consider adding the functionality to setuptools_svn in setuptools_svn 2.
2017-01-26Updated devel/p5-CPAN-Perl-Releases to 3.08mef2-7/+7
----------------------------------------- version 3.08 at 2017-01-20 15:44:05 +0000 Updated for v5.25.9 version 3.06 at 2017-01-14 21:32:33 +0000 Updated for v5.22.3 && v5.24.1 version 3.04 at 2017-01-02 21:21:05 +0000 Updated for v5.22.3-RC5 and v5.24.1-RC5 version 3.02 at 2016-12-20 19:26:03 +0000 Updated for v5.25.8 version 3.00 at 2016-11-20 21:30:45 +0000 Updated for v5.25.7
2017-01-26Updated devel/p5-App-FatPacker to 0.010007mef2-8/+7
------------------------------------------ 0.010007 - 2017-01-22 - don't fail packlist finding if one module fails to load - don't fail tracing w/undef INC values due to failed optional module load 0.010_006 - 2017-01-20 - detect and handle packing from within inc dirs w/version part - fix tests to no longer rely on . being in @INC
2017-01-26For bsd audio backend, use correct prinfo for play and record.nat6-16/+43
Inform upper layer of blocksize in bsd audio backend. Bump PKGVERSION.
2017-01-25Version 2.1.10 - October, 2016adam2-8/+10
------------------------------- - Fixed bug in reporting named parse results for ZeroOrMore expressions, thanks Ethan Nash for reporting this! - Fixed behavior of LineStart to be much more predictable. LineStart can now be used to detect if the next parse position is col 1, factoring in potential leading whitespace (which would cause LineStart to fail). Also fixed a bug in col, which is used in LineStart, where '\n's were erroneously considered to be column 1. - Added support for multiline test strings in runTests. - Fixed bug in ParseResults.dump when keys were not strings. Also changed display of string values to show them in quotes, to help distinguish parsed numeric strings from parsed integers that have been converted to Python ints.