summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-10-07Changes 1.62.0:adam12-227/+390
New Libraries ------------- Fiber: * Framework for userland-threads/fibers, from Oliver Kowalke. QVM: * Boost QVM is a generic library for working with quaternions, vectors and matrices of static size with the emphasis on 2, 3 and 4-dimensional operations needed in graphics, video games and simulation applications, from Emil Dotchevski. Updated Libraries ----------------- Atomic: * Improved support for Oracle Studio and SPARC. The library now provides native atomic operations on SPARCv8+. Chrono: * 11330 boost::chrono::duration default constructor doesn't initialize rep_ * 11618 Chrono IO V2 doc ios_state.hpp does not exist * 11631 boost chrono io v2 does not let you support custom clocks Circular Buffer: * Debug implementation is no longer used by default in debug mode. Debug implementation does not have the same thread safety guarantees as the normal (release) implementation or other containers. As a result of this change BOOST_CB_DISABLE_DEBUG macro is no longer used. BOOST_CB_ENABLE_DEBUG=1 should be defined instead to enable debug support. Container: * Fixed bugs: Trac 9481: "Minor comment typo in Boost.Container". Trac 9689: "Add piecewise_construct to boost::container". Trac 11170: "Doc slip for index_of". Trac 11802: "Incorrect ordering after using insert() with ordered_range_t on a flat_multiset with a non-default sort order". Trac 12117: "flat_set constructor with ordered_unique_range". Trac 12177: "vector::priv_merge uses unqualified uintptr_t". Trac 12183: "GCC 6.1 thinks boost::container::string violates strict aliasing". Trac 12256: "set<std::pair<int,int>>::insert cause compilation error in debug configuration in Visual Studio 2012". Trac 12273: "static_vector max_size() and capacity() should be constant expressions". Added constant static_vector<>::static_capacity to use the configured capacity in constant expressions. Trac 12286: "PMR flat_map from Boost Container does not compile". Trac 12296: "{deque,string} combine for a memory leak". Trac 12319: "flat_set should be nothrow move constructible". * Revised noexcept expressions of default and move constructors in all containers. * Implemented C++17 insert_or_assign/try_emplace for map and flat_map. * Implemented C++17 extract/insert(node) for map, multimap, set, multiset. Context: * 12215 all stack corrupted on Windows using default fixedsize_stack * 12242 build issue with Intel C++ compiler for MacOS * fix stack unwinding for execution_context_v1 Coroutine: * deprecated in favour of Coroutine2 Coroutine2: * 12221 coroutine<>::push_type function starts without pushing * do not swallow exceptions thrown at coroutine<>::push_type construction DLL: * Mangled symbols and classes loading was implemented by Klemens Morgenstern * Suppress a 'unused parameter' warning in detail::aggressive_ptr_cast pull-request 9 * Allowed to query non-existant sections pull-request 32 * More tests and docs Functional/Forward: * Fix C++11 compile error. Interprocess: * Fixed bug GitHub Pull 27 ("Fix undefined behavior"). Intrusive: * Fixed bugs: Boost Trac 11476: has_member_function_callable_with.hpp is massively broken with BOOST_NO_CXX11_DECLTYPE Boost Trac 11994: Support intrusive container key extractors that return the key by value Boost Trac 12184: clang -Wdocumentation warning Boost Trac 12190: Intrusive List + Flat Map combination crashes Boost Trac 12229: intrusive::unordered_set<T>::rehash() broken Boost Trac 12245: bstree uses a shared static size_traits for constant_time_size<false> Lexical Cast: * Fix incorrect static assertion 11759 Log: * New features: Added new tools for inter-process logging on a local machine. The implementation includes a resource name wrapper, an inter-process message queue and a sink backend. Added a new character decorator called max_size_decor. The new decorator allows to limit the output of its adopted formatter up to the specified length. * Bug fixes: Fixed that logging streams could retain formatting settings across different log records. (12178) See changelog for more details. Math: * New Features: Enabled all the special function code to work correctly with types whose precision can change at runtime: for example type mpfr_float from Boost.Multiprecision. * Patches: Fix tgamma_delta_ratio for cases where the delta is small compared to the base. Fix misc GCC-4.4 test failures. Optional: * Fixed Trac 12179. Phoenix: * Fix compilation for MSVC 10. pull-request 18 * Remove unused preprocessed files. pull-request 28 * Fix erroneous doc for switch_ statement. 8156 * Cleanup config unordered. pull-request 33 * Suppress unused placeholder warnings. * Fix too few arguments error on binary math functions. Regex: * Fix buffer over-run error when parsing certain invalid regexes, see 12222. * Fix detection of ICU in library build, see 12152. * Fix bug in case sensitivity change, see 11940. * Allow types wider than int in \x{} expressions (for char32_t etc), see 11988. Test: * Boost.test v3.3 see the Change log section for more details. * New features dataset driven test-cases have now a unique name and all sample tests of a dataset live inside the same test suite Boost.test learned a new command line switch, --logger for setting a test logger as well as its parameter in one command Boost.test learned to have several loggers at the same time, each of which having their own log level and output stream Boost.test learned a new logger, JUNIT, that is able to output Junit/xUnit compatible streams It is now possible to specify several test filters through the environment variable BOOST_TEST_RUN_FILTERS * Bug fixes Trac tickets 8707, 8834, 11128, 11845, 11859, 12024, Trac tickets 12093, 12103, 12224, 12241, 12257, 12378 Thread: * 12102 condition_variable_fwd.hpp fails to compile when BOOST_THREAD_PROVIDES_INTERRUPTIONS is disabled * 12120 Performance improvement in thread/barrier.hpp * 12146 make_exceptional_future is not mentioned in the docs * 12202 shared_lock should be in shared_mutex header * 12371 boost thread/future.hpp fails to build * 88 fix typos in boost::upgrade_lock * 89 fix a bug in upgrade_to_unique_lock<>::operator=() * 90 fix a bug in try_lock_wrapper<>::operator=() * 91 Add shared_lock_guard to the included lock types * 92 Fixed compilation with MSVC-8. * 93 Fix variable shadowing warnings (Clang) * 94 fix bugs in boost::barrier * 95 fix a mistake in boost::completion_latch * 96 rename async_func.hpp to invoker.hpp. * 97 fix a mistake in sync_timed_queue<>::pull_until() TypeIndex: * ctti_type_index was made constexpr in C++14. Now it is possible to retrieve actual name of the type as const char* at compile time. So we can do a lot of interesting things at compile time: check namespace of a type, sort types according to their lexical representation, check that type is a template type and so on... A few examples were provided. * Fixed issue with noexcept on MSVC in type names and issue with space in type name (pulled from klemens-morgenstern/develop) * Fixed typos pull-request 7 * Improved CI testing Unordered: * Remove use of deprecated boost::iterator. * Fixed an exception safety issue in assignment of unordered_multiset and unordered_multimap. * See the changelog for more details. Variant: * Fixed variant construction from classes derived from variant 7120, 10278, 12155 * Variant constructors and assignment operators now do not participate in overload resolutions if variant can not hold the input type 5871, 11602 * Fixed the issue with implicit conversion operator in C++11 8555 * Fixed comparisons when variant holds non-const reference 11751 * Fixed noexcept for variant's move-assignment 11696 * Fixed double quotes in includes 12057 * Dropped BOOST_VARIANT_NO_REFERENCE_SUPPORT macro and dropped support for compilers without SFINAE 12250 * Suppress implicit instantiation of MPL end iterator * Multiple minor fixes (typos, missing includes)
2016-10-07Adjust comment to reflect reality.joerg1-3/+2
2016-10-07Use sanitized _USE_CWRAPPERS.joerg2-4/+4
2016-10-07Import dhcpcd-6.11.4 with the following changes:roy2-7/+7
* Fixed octal and hex string parsing in options. * Ignore bogus RTM_DELADDR on FreeBSD when the interface goes down. * Several statically sized buffers have been removed and replaced with dynamically sized ones where we have no real idea of what the size will be. * Reverse IPv4 route removal order. * Improved handling of Netlink messages on Linux. * Poll for tentative link-local addresses if needed. * Added --small configure directive to reduce binary size * Allow DHCPv6, IPv4lL and authentication to be compiled out * dhcpcd requries the interface to be up when considering link status * Add support for ifa_addrflags in getifaddrs(3) * Add support for ifam_addrflags and ifam_pid from route(4) * If T1 or T2 are not set in DHCPv6 messages, use a default from the lowest pltime instead of the expiration time. * Validate lease before moving to REQUEST when both ends use rapid commit. * If lease validation fails, don't restart the DISCOVER phase if we're already in it.
2016-10-07Updated time/khal to 0.8.4wiz1-1/+2
2016-10-07Updated khal to 0.8.4.wiz2-7/+7
0.8.4 ===== released 2016-10-06 * **IMPORTANT BUGFIX** fixed a bug that lead to imported events being erroneously shifted if they had a timezone identifier that wasn't an Olson database identifier. All users are advised to upgrade as soon as possible. To see if you are affected by this and how to resolve any issues, please see the release announcement (khal/doc/source/news/khal084.rst or http://lostpackets.de/khal/news/khal084.html). Thanks to Wayne Werner for finding and reporting this bug.
2016-10-07sortjnemeth1-2/+2
2016-10-07Updated sysutils/pciutils to 3.5.2msaitoh1-1/+2
2016-10-07Update sysutils/pciutils to 3.5.2.msaitoh3-12/+12
ChangeLog: 2016-10-03 Martin Mares <mj@ucw.cz> * Released as 3.5.2. * The L1 power management capability is now decoded more thoroughly. Thanks to Rajat Jain for the patch. * The table of configuration registers used by setpci had a bug in the definition of SUBSYSTEM_VENDOR_ID.
2016-10-06Updated math/isl to 0.17.1wiz2-3/+3
2016-10-06Updated isl to 0.17.1.wiz5-14/+56
Provided by Kai-Uwe Eckhardt in private mail. version: 0.17.1 date: Fri May 6 12:02:48 CEST 2016 changes: - fix bug in coalescing treatment --- version: 0.17 date: Tue May 3 14:26:43 CEST 2016 changes: - optionally combine SCCs incrementally in scheduler - optionally maximize coincidence in scheduler - optionally avoid loop coalescing in scheduler - fix handling of nested integer divisions - optionally detect min/max expressions during AST generation - minor AST generator improvements - simplify stride constraints - improve support for expansions in schedule trees --- version: 0.16.1 date: Thu Jan 14 18:08:06 CET 2016 changes: - fix bug in simplification --- version: 0.16 date: Tue Jan 12 09:56:16 CET 2016 changes: - add 32 bit integer optimization for IMath - minor AST generator improvements - add isl_union_flow_get_full_{may,must}_dependence - minor improvements to Python bindings - minor improvements to set and map printing --- version: 0.15 date: Thu Jun 11 12:45:33 CEST 2015 changes: - improve coalescing - add isl_union_access_info_compute_flow - add mark nodes in AST - add isl_union_pw_aff and isl_multi_union_pw_aff - add schedule trees - deprecate band forests - deprecate separation_class AST generation option - introduce isl_bool and isl_stat types
2016-10-06Updated editors/sasm to 3.6.0mef1-1/+2
2016-10-06Updated editors/sasm to 3.6.0mef2-7/+7
----------------------------- (from: Linux/share/doc/sasm/changelog.gz) sasm (3.6.0) stable; urgency=low * Update - 3.6.0 version - Turkish language has been added, tab key action has been improved.
2016-10-06Updated devel/lua-rocks to 2.4.1.alnsn1-1/+2
2016-10-06Update devel/lua-rocks to 2.4.1.alnsn5-29/+20
What's new since 2.3.0: * New test suite based on Busted; runs on Linux, OSX and Windows. This test suite was developed by Robert Karasek as his Google Summer of Code project for LabLua. You can check out the combined coverage of all platforms at CodeCov: https://codecov.io/gh/keplerproject/luarocks/ * git+ssh:// fetch protocol * Improved behavior preserving permissions * Improved listing of dependencies on installation * Improved behavior of argument handling in `pack` * MSYS and Haiku platform detection * Feature-based detection of internal bit32 and utf8 modules * Internal reorganization of luarocks.fs code * `remove` option --force=fast renamed to --force-fast * Plus assorted bugfixes and cleanups What's new since 2.4.0: * Avoid coroutine use inside luarocks.loader, that apparently affected OpenResty's require() * Fix upgrade issues for old versions (e.g. when upgrading from LuaRocks 2.1.0)
2016-10-06Comment out debug flags.wiz1-2/+2
2016-10-06Updated mail/neomutt to 20161003nb1wiz2-4/+5
2016-10-06Apply patch from upstream:wiz5-2/+189
fix: crash handling keywords/labels When an email is read by NeoMutt the labels are stored in linked list of strings. These strings are used as keys in a hash table of all labels. If NeoMutt reads another email with the same label, it's given a reference to the same hash. Now imagine that the first email is deleted -- the list of labels is also deleted, so that hash now has invalid keys. This commit maintains a linked list of all labels and uses that for the hash table keys. It's not very efficient, but it avoids having to change the hash table code. Note: dgc (the keywords author) has created a new version which will supplant this one, soon. https://github.com/neomutt/neomutt/commit/f8160285f285c0bc3c93a2672ea1169af2f04481 Bump PKGREVISION.
2016-10-06Updated devel/git to 2.10.1adam1-1/+2
2016-10-06ixes since v2.10adam2-7/+7
----------------- * Clarify various ways to specify the "revision ranges" in the documentation. * "diff-highlight" script (in contrib/) learned to work better with "git log -p --graph" output. * The test framework left the number of tests and success/failure count in the t/test-results directory, keyed by the name of the test script plus the process ID. The latter however turned out not to serve any useful purpose. The process ID part of the filename has been removed. * Having a submodule whose ".git" repository is somehow corrupt caused a few commands that recurse into submodules loop forever. * "git symbolic-ref -d HEAD" happily removes the symbolic ref, but the resulting repository becomes an invalid one. Teach the command to forbid removal of HEAD. * A test spawned a short-lived background process, which sometimes prevented the test directory from getting removed at the end of the script on some platforms. * Update a few tests that used to use GIT_CURL_VERBOSE to use the newer GIT_TRACE_CURL. * Update Japanese translation for "git-gui". * "git fetch http::/site/path" did not die correctly and segfaulted instead. * "git commit-tree" stopped reading commit.gpgsign configuration variable that was meant for Porcelain "git commit" in Git 2.9; we forgot to update "git gui" to look at the configuration to match this change. * "git log --cherry-pick" used to include merge commits as candidates to be matched up with other commits, resulting a lot of wasted time. The patch-id generation logic has been updated to ignore merges to avoid the wastage. * The http transport (with curl-multi option, which is the default these days) failed to remove curl-easy handle from a curlm session, which led to unnecessary API failures. * "git diff -W" output needs to extend the context backward to include the header line of the current function and also forward to include the body of the entire current function up to the header line of the next one. This process may have to merge to adjacent hunks, but the code forgot to do so in some cases. * Performance tests done via "t/perf" did not use the same set of build configuration if the user relied on autoconf generated configuration. * "git format-patch --base=..." feature that was recently added showed the base commit information after "-- " e-mail signature line, which turned out to be inconvenient. The base information has been moved above the signature line. * Even when "git pull --rebase=preserve" (and the underlying "git rebase --preserve") can complete without creating any new commit (i.e. fast-forwards), it still insisted on having a usable ident information (read: user.email is set correctly), which was less than nice. As the underlying commands used inside "git rebase" would fail with a more meaningful error message and advice text when the bogus ident matters, this extra check was removed. * "git gc --aggressive" used to limit the delta-chain length to 250, which is way too deep for gaining additional space savings and is detrimental for runtime performance. The limit has been reduced to 50. * Documentation for individual configuration variables to control use of color (like `color.grep`) said that their default value is 'false', instead of saying their default is taken from `color.ui`. When we updated the default value for color.ui from 'false' to 'auto' quite a while ago, all of them broke. This has been corrected. * A shell script example in check-ref-format documentation has been fixed. * "git checkout <word>" does not follow the usual disambiguation rules when the <word> can be both a rev and a path, to allow checking out a branch 'foo' in a project that happens to have a file 'foo' in the working tree without having to disambiguate. This was poorly documented and the check was incorrect when the command was run from a subdirectory. * Some codepaths in "git diff" used regexec(3) on a buffer that was mmap(2)ed, which may not have a terminating NUL, leading to a read beyond the end of the mapped region. This was fixed by introducing a regexec_buf() helper that takes a <ptr,len> pair with REG_STARTEND extension. * The procedure to build Git on Mac OS X for Travis CI hardcoded the internal directory structure we assumed HomeBrew uses, which was a no-no. The procedure has been updated to ask HomeBrew things we need to know to fix this. * When "git rebase -i" is given a broken instruction, it told the user to fix it with "--edit-todo", but didn't say what the step after that was (i.e. "--continue"). * "git add --chmod=+x" added recently lacked documentation, which has been corrected. * "git add --chmod=+x <pathspec>" added recently only toggled the executable bit for paths that are either new or modified. This has been corrected to flip the executable bit for all paths that match the given pathspec. * "git pack-objects --include-tag" was taught that when we know that we are sending an object C, we want a tag B that directly points at C but also a tag A that points at the tag B. We used to miss the intermediate tag B in some cases. * Documentation around tools to import from CVS was fairly outdated. * In the codepath that comes up with the hostname to be used in an e-mail when the user didn't tell us, we looked at ai_canonname field in struct addrinfo without making sure it is not NULL first. Also contains minor documentation updates and code clean-ups.
2016-10-05Update print/hplip to 3.16.9.schnoebe1-1/+2
2016-10-05Update to 3.16.9:schnoebe3-8/+23
Release Notes: HPLIP 3.16.9 - This release has the following changes: Added Support for the Following New Printers: - HP OfficeJet Pro 8732M All-in-One Printer - HP OfficeJet 8702 All-in-One Printer - HP OfficeJet 6960 All-in-One Printer - HP PageWide 377dw Multifunction Printer - HP PageWide 352dw Printer - HP PageWide Managed Color MFP E58650 series - HP PageWide Managed Color E55650 series HPLIP 3.16.8 - This release has the following changes: Added Support for the Following New Printers: - HP OfficeJet Pro 6970 All-in-One Printer - HP OfficeJet Pro 6960 All-in-One Printer - HP OfficeJet 250 Mobile All-in-One - HP DeskJet 3700 All-in-One - HP DeskJet Ink Advantage 3700 All-in-One Added support for the following new Distro's: - Linux Mint 18 - Fedora 24 - Debian 8.5 Significant Changes: - Modified the GUI representation of Secure PIN Printing
2016-10-05mark as only for linux and sunos, to quell expectationsjdolecek1-1/+3
2016-10-05Updated net/unbound to 1.5.10pettai1-1/+2
2016-10-05Featurespettai2-7/+7
- Create a pkg-config file for libunbound in contrib. - TCP Fast open. - Finegrained localzone control with define-tag, access-control-tag, access-control-tag-action, access-control-tag-data, local-zone-tag, and local-zone-override. And added types always_transparent, always_refuse, always_nxdomain with that. - If more than half of tcp connections are in use, a shorter timeout is used (200 msec, vs 2 minutes) to pressure tcp for new connects. - [bugzilla: 787 ] Fix #787: outgoing-interface netblock/64 ipv6 option to use linux freebind to use 64bits of entropy for every query with random local part. - For #787: prefer-ip6 option for unbound.conf prefers to send upstream queries to ipv6 servers. - Add default root hints for IPv6 E.ROOT-SERVERS.NET, 2001:500:a8::e. - keep debug symbols in windows build. Bug Fixes: ---------- - [bugzilla: 778 ] Fix unbound 1.5.9: -h segfault (null deref). - Fix unbound-anchor.exe file location defaults to Program Files with (x86) appended. - Fix to not ignore return value of chown() in daemon startup. - Better help text from -h. - [bugzilla: 773 ] Fix Non-standard Python location build failure with pyunbound. - Improve threadsafety for openssl 0.9.8 ecdsa dnssec signatures. - Revert fix for NetworkService account on windows due to breakage it causes. - Fix that windows install will not overwrite existing service.conf file (and ignore gui config choices if it exists). - And delete service.conf.shipped on uninstall. - In unbound.conf directory: dir immediately changes to that directory, so that include: file below that is relative to that directory. With chroot, make the directory an absolute path inside chroot. - do not delete service.conf on windows uninstall. - document directory immediate fix and allow EXECUTABLE syntax in it on windows. - Fix directory: fix for unbound-checkconf, it restores cwd. - Use QTYPE=A for QNAME minimisation. - Keep track of number of time-outs when performing QNAME minimisation. Stop minimising when number of time-outs for a QNAME/QTYPE pair is more than three. - [bugzilla: 775 ] Fix unbound-host and unbound-anchor crash on windows, ignore null delete for wsaevent. - Fix spelling in freebind option man page text. - Fix windows link of ssl with crypt32. - [bugzilla: 779 ] Fix Union casting is non-portable. - [bugzilla: 780 ] Fix MAP_ANON not defined in HP-UX 11.31. - [bugzilla: 781 ] Fix prealloc() is an HP-UX system library call. - Decrease dp attempts at each QNAME minimisation iteration - [bugzilla: 784 ] Fix Build configure assumess that having getpwnam means there is endpwent function available. - Updated repository with newer flex and bison output. - Fix static compile on windows missing gdi32. - Fix dynamic link of anchor-update.exe on windows. - Fix detect of mingw for MXE package build. - Fixes for 64bit windows compile. - [bugzilla: 788 ] Fix for nettle 3.0: Failed to build with Nettle >= 3.0 and --with-libunbound-only --with-nettle. - Fixed unbound.doxygen for 1.8.11. - [bugzilla: 798 ] Fix Client-side TCP fast open fails (Linux). - [bugzilla: 801 ] Fix missing error condition handling in daemon_create_workers(). - [bugzilla: 802 ] Fix workaround for function parameters that are "unused" without log_assert. - [bugzilla: 803 ] Fix confusing (and incorrect) code comment in daemon_cleanup(). - [bugzilla: 806 ] Fix wrong comment removed. - use sendmsg instead of sendto for TFO. - [bugzilla: 807 ] Fix workaround for possible some "unused" function parameters in test code. - Note that OPENPGPKEY type is RFC 7929. - [bugzilla: 804 ] Fix #804: unbound stops responding after outage. Fixes queries that attempt to wait for an empty list of subqueries. - Fix for #804: lower num_target_queries for iterator also for failed lookups. - [bugzilla: 820 ] Fix set sldns_str2wire_rr_buf() dual meaning len parameter in each iteration in find_tag_datas(). - [bugzilla: 777 ] Fix OpenSSL 1.1.0 compatibility. - RFC 7958 is now out, updated docs for unbound-anchor. - Fix for compile without warnings with openssl 1.1.0. - [bugzilla: 826 ] Fix refuse_non_local could result in a broken response. - iana portlist update. - Fix compile with openssl 1.1.0 with api=1.1.0. - [bugzilla: 829 ] Fix doc of sldns_wire2str_rdata_buf() return value has an off-by-one typo. - Fix incomplete prototypes reported by Dag-Erling Smørgrav. - [bugzilla: 828 ] Fix missing type in access-control-tag-action redirect results in NXDOMAIN. - Take configured minimum TTL into consideration when reducing TTL to original TTL from RRSIG. - [bugzilla: 831 ] Fix workaround for spurious fread_chk warning against petal.c - Silenced flex-generated sign-unsigned warning print with gcc diagnostic pragma. - Fix for new splint on FreeBSD. Fix cast for sockaddr_un.sun_len. - fix potential memory leak in daemon/remote.c and nullpointer dereference in validator/autotrust. - [bugzilla: 883 ] Fix error for duplicate local zone entry. - [bugzilla: 835 ] Fix --disable-dsa with nettle verify.
2016-10-05Update to 1.74. Random selection of changes since 1.23 (released 2009):shattered4-11/+10
- builds cleanly on recent Linux and Oracle clients - Added extended support for 64 bit clients - Added support for DCRP (Database Resident Connection Pooling) - Dropped Oraperl
2016-10-05Updated games/puzzles to 20160429wiz1-1/+2
2016-10-05Updated puzzles to 20160429.wiz4-27/+32
Adds three games: flood palisade tracks
2016-10-05Hook up the prepend support.joerg1-1/+4
2016-10-05Fix static array check in configure. Patch will be in next dovecot release,sborrill2-1/+19
so can be removed after that.
2016-10-05+ tk85-8.5.19.wiz1-2/+2
2016-10-05Updated textproc/py-html2text to 2016.9.19wiz2-3/+3
2016-10-05Updated py-html2text to 2016.9.19.wiz2-7/+7
2016.9.19 ========= ---- * Default image alt text option created and set to a default of empty string "" to maintain backward compatibility * Fix #136: --default-image-alt now takes a string as argument * Fix #113: Stop changing quiet levels on \/script tags. * Merge #126: Fix deprecation warning on py3 due to html.escape * Fix #145: Running test suite on Travis CI for Python 2.6.
2016-10-05Some cosmetic changesmorr2-3/+3
2016-10-05Updated devel/p5-Sub-Name to 0.21wiz1-1/+2
2016-10-05Updated p5-Sub-Name to 0.21.wiz2-7/+7
0.21 2016-10-02 05:00:12Z - no change since 0.20 0.20 2016-09-11 00:33:10Z (TRIAL RELEASE) - fix occasional segmentation fault on OpenBSD when malloc randomization causes nameptr to be at the beginning of the page (RT#117072, Alexander Bluhm)
2016-10-05Updated devel/p5-Specio to 0.28wiz1-1/+2
2016-10-05Updated p5-Specio to 0.28.wiz2-7/+7
0.28 2016-10-02 - Added a Test::Specio module to provide helpers for testing Specio libraries. - Fixed another bug with a subtype of special types and inlining. 0.27 2016-10-01 - Cloning a type with coercions defined on it would cause an exception. - Creating a subtype of a special type created by *_isa_type, *_can_type, or *_does_type, or enum would die when trying to inline the type constraint. - Removed the never-documented Any type. - Added documentation for each type in Specio::Library::Builtins.
2016-10-05Updated security/p5-Module-Signature to 0.81wiz2-3/+3
2016-10-05Updated p5-Module-Signature to 0.81.wiz2-7/+7
No changelog found.
2016-10-05Updated devel/py-uuid to 1.30nb1wiz1-1/+2
2016-10-05Convert to distutils.mk, bump PKGREVISION.wiz2-5/+5
2016-10-05Note update of graphics/gd package to 2.2.3nb1.taca1-1/+2
2016-10-05Add fix for CVE-2016-7568.taca3-2/+25
Bump PKGREVISION.
2016-10-05spidermonkey17: revert previous, reject n32maya2-18/+1
shouldn't work at runtime (can't run on netbsd nayway), thx khorben
2016-10-05Added devel/py-uuid version 1.30kamil1-1/+2
2016-10-05Add devel/py-uuidkamil1-1/+2
2016-10-05Import uuid-1.30 as devel/py-uuidkamil4-0/+30
UUID objects (universally unique identifiers) according to RFC 4122
2016-10-05Fix typoagc1-1/+1
2016-10-04churn for readability.maya2-6/+6
if not true -> if true.