Commit graph

27404 commits

Author SHA1 Message Date
mef
82cf66a98a Updated devel/py-dialog to 3.4.0
--------------------------------
2016-05-07  Florent Rougon  <f.rougon@free.fr>

        Release 3.4.0

        README.rst: link to the blessings library, add link to ncurses home page

2016-05-07  Florent Rougon  <f.rougon@free.fr>

        Add 'week_start' common option, mapped to dialog's --week-start option

        * The value may be an integer or a string (cf. dialog's man page for
        more details).

        * Using this requires dialog 1.3-20160126 or later.

2016-05-07  Florent Rougon  <f.rougon@free.fr>

        Update copyright notices and demo version

        Fix typo

2016-05-07  Florent Rougon  <f.rougon@free.fr>

        Doc build: suppress warnings about :option:`--unknown-option` references

        * The documentation contains many references to dialog options. These
        are not defined in the pythondialog Manual, which with recent Sphinx
        (>= 1.3 or something like that) causes a lot of warnings. Fortunately,
        these can be suppressed (specifically for unknown option references)
        with 'suppress_warnings' in conf.py starting from Sphinx 1.4.0.

        * This is what this commit does. Alternatively, the option references
        could be replaced with dumb markup such as ``--unknown-option``.

2016-05-07  Florent Rougon  <f.rougon@free.fr>

        Add demo example for Dialog.editbox_str()

2016-05-06  Florent Rougon  <f.rougon@free.fr>

        Add Dialog.editbox_str()

        * dialog.py (Dialog.editbox_str): new method. It is a convenience
        wrapper around Dialog.editbox() that automatically creates and deletes a
        temporary file containing the initial box contents which is passed as a
        string (Dialog.editbox() needs it in a file).

2016-01-28  Florent Rougon  <f.rougon@free.fr>

        Fix bug in demo.py when /etc/passwd is inexistent

        * examples/demo.py (MyApp.editbox_demo): display a message when
        /etc/passwd is inexistent instead of raising an exception (trying to
        display the result, which doesn't exist).
2016-11-13 10:52:28 +00:00
wen
0995924fa7 Update to 1.045
Upstream changes:
1.045     2016-11-11 21:52:46-06:00 America/Chicago

    - No changes from previous (trial) release 1.044

1.044     2016-11-06 15:30:35-06:00 America/Chicago (TRIAL RELEASE)

    [Fixed]

    - Imported log object can now be called anything instead of just
      `$log`. This means `use Log::Any '$LOG'` or `use Log::Any '$foo'`
      now work.

1.043     2016-11-03 21:31:18-05:00 America/Chicago (TRIAL RELEASE)

    [Fixed]

    - Objects that overload stringification are now stringified
      correctly (instead of run through Data::Dumper). Thanks @mephinet!
2016-11-13 01:51:40 +00:00
adam
82895362e0 Some of the more significant changes in CMake 3.7 are:
CMake now supports Cross Compiling for Android with simple toolchain files.
The “Ninja” generator learned to conditionally support Fortran when using a “ninja” tool that has the necessary features. See generator documentation for details.
The “if()” command gained new boolean comparison operations “LESS_EQUAL”, “GREATER_EQUAL”, “STRLESS_EQUAL”, “STRGREATER_EQUAL”, “VERSION_LESS_EQUAL”, and “VERSION_GREATER_EQUAL”.
The “try_compile()” command source file signature now honors configuration-specific flags (e.g. “CMAKE_<LANG>_FLAGS_DEBUG”) in the generated test project. Previously only the default such flags for the current toolchain were used. See policy “CMP0066”.
“Toolchain files” may now set “CMAKE_EXE_LINKER_FLAGS_INIT”, “CMAKE_SHARED_LINKER_FLAGS_INIT”, and “CMAKE_MODULE_LINKER_FLAGS_INIT” variables to initialize the “CMAKE_EXE_LINKER_FLAGS”, “CMAKE_SHARED_LINKER_FLAGS”, and “CMAKE_MODULE_LINKER_FLAGS” cache entries the first time a language is enabled in a build tree.
CTest now supports test fixtures through the new “FIXTURES_SETUP”, “FIXTURES_CLEANUP” and “FIXTURES_REQUIRED” test properties. When using regular expressions or “–rerun-failed” to limit the tests to be run, a fixture’s setup and cleanup tests will automatically be added to the execution set if any test requires that fixture.
We no longer provide Linux i386 binaries for download from “cmake.org” for new versions of CMake.
Vim support files “cmake-indent.vim”, “cmake-syntax.vim”, and “cmake-help.vim” have been removed in favor of the files now provided from the vim-cmake-syntax project.
Support for building CMake itself with some compilers was dropped:
Visual Studio 7.1 and 2005 — superseded by VS 2008 and above
MinGW.org mingw32 — superseded by MSYS2 mingw32 and mingw64
CMake still supports generating build systems for other projects using these compilers.
2016-11-12 07:49:18 +00:00
adam
b358d6ce21 Changes 1.10.0:
* Now working on version 1.9.2 (Saúl Ibarra Corretgé)
* doc: add cjihrig GPG ID (cjihrig)
* win,build: fix compilation on old Windows / MSVC (Saúl Ibarra Corretgé)
* darwin: fix setting fd to non-blocking in select(() trick (Saúl Ibarra
  Corretgé)
* unix: allow nesting of kqueue fds in uv_poll_start (Ben Noordhuis)
* doc: fix generation the first time livehtml runs (Saúl Ibarra Corretgé)
* test: fix test_close_accept flakiness on Centos5 (Santiago Gimeno)
* license: libuv is no longer a Node project (Saúl Ibarra Corretgé)
* license: add license text we've been using for a while (Saúl Ibarra Corretgé)
* doc: add licensing information to README (Saúl Ibarra Corretgé)
* win,pipe: fixed formatting, DWORD is long unsigned (Miodrag Milanovic)
* win: support sub-second precision in uv_fs_futimes() (Jason Ginchereau)
* unix: ignore EINPROGRESS in uv__close (Saúl Ibarra Corretgé)
* doc: add Imran Iqbal (iWuzHere) to maintainers (Imran Iqbal)
* doc: update docs with AIX related information (Imran Iqbal)
* test: silence build warnings (Kári Tristan Helgason)
* doc: add iWuzHere GPG ID (Imran Iqbal)
* linux-core: fix uv_get_total/free_memory on uclibc (Nicolas Cavallari)
* build: fix build on DragonFly (Michael Neumann)
* unix: correctly detect named pipes on DragonFly (Michael Neumann)
* test: make tap output the default (Ben Noordhuis)
* test: don't dump output for skipped tests (Ben Noordhuis)
* test: improve formatting of diagnostic messages (Ben Noordhuis)
* test: remove unused RETURN_TODO macro (Ben Noordhuis)
* doc: fix stream typos (Pierre-Marie de Rodat)
* doc: update coding style link (Imran Iqbal)
* unix,fs: use uint64_t instead of unsigned long (Imran Iqbal)
* build: check for warnings for -fvisibility=hidden (Imran Iqbal)
* unix: remove unneeded TODO note (Saúl Ibarra Corretgé)
* test: skip tty_pty test if pty is not available (Luca Bruno)
* sunos: set phys_addr of interface_address using ARP (Brian Maher)
* doc: clarify callbacks won't be called in error case (Saúl Ibarra Corretgé)
* unix: don't convert stat buffer when syscall fails (Ben Noordhuis)
* win: compare entire filename in watch events (cjihrig)
* doc: add a note on safe reuse of uv_write_t (neevek)
* linux: fix potential event loop stall (Ben Noordhuis)
* unix,win: make uv_get_process_title() stricter (cjihrig)
* test: close server before initiating new connection (John Barboza)
* test: account for multiple handles in one ipc read (John Barboza)
* unix: fix errno and retval conflict (liuxiaobo)
* doc: add missing entry in uv_fs_type enum (Michele Caini)
* unix: preserve loop->data across loop init/done (Ben Noordhuis)
* win: return UV_EINVAL on bad uv_tty_mode mode arg (Ben Noordhuis)
* win: simplify memory copy logic in fs.c (Ben Noordhuis)
* win: fix compilation on mingw (Bartosz Sosnowski)
* win: ensure 32-bit printf precision (Matej Knopp)
* darwin: handle EINTR in /dev/tty workaround (Ben Noordhuis)
* test: fix OOB buffer access (Saúl Ibarra Corretgé)
* test: don't close CRT fd handed off to uv_pipe_t (Saúl Ibarra Corretgé)
* test: fix android build error. (sunjin.lee)
* win: evaluate timers when system wakes up (Bartosz Sosnowski)
* doc: add supported platforms description (Saúl Ibarra Corretgé)
* win: fix lstat reparse point without link data (Jason Ginchereau)
* unix,win: make on_alloc_cb failures more resilient (Saúl Ibarra Corretgé)
* zos: add support for new platform (John Barboza)
* test: make tcp_close_while_connecting more resilient (Saúl Ibarra Corretgé)
* build: use '${prefix}' for pkg-config 'exec_prefix' (Matt Clarkson)
* build: GNU/kFreeBSD support (Jeffrey Clark)
* zos: use PLO instruction for atomic operations (John Barboza)
* zos: use pthread helper functions (John Barboza)
* zos: implement uv__fs_futime (John Barboza)
* unix: expand range of values for usleep (John Barboza)
* zos: track unbound handles and bind before listen (John Barboza)
* test: improve tap output on test failures (Santiago Gimeno)
* test: refactor fs_event_close_in_callback (Julien Gilli)
* zos: implement uv__io_check_fd (John Barboza)
* unix: unneccessary use const qualifier in container_of (John Barboza)
* win,tty: add support for ANSI codes in win10 v1511 (Imran Iqbal)
* doc: add santigimeno to maintainers (Santiago Gimeno)
* win: fix typo in type name (Saúl Ibarra Corretgé)
* unix: always define pthread barrier fallback pad (Saúl Ibarra Corretgé)
* test: use RETURN_SKIP in spawn_setuid_setgid test (Santiago Gimeno)
* win: add disk read/write count to uv_getrusage (Imran Iqbal)
* doc: document uv_fs_realpath caveats (Saúl Ibarra Corretgé)
* test: improve spawn_setuid_setgid test (Santiago Gimeno)
* test: fix building pty test on Android (Saúl Ibarra Corretgé)
* doc: uv_buf_t members are not readonly (Saúl Ibarra Corretgé)
* doc: improve documentation on uv_alloc_cb (Saúl Ibarra Corretgé)
* fs: fix uv_fs_fstat on platforms using musl libc (Santiago Gimeno)
* doc: update supported fields for uv_rusage_t (Imran Iqbal)
* test: fix test-tcp-writealot flakiness on arm (Santiago Gimeno)
* test: fix fs_event_watch_dir flakiness on arm (Santiago Gimeno)
* unix: don't use alphasort in uv_fs_scandir() (Ben Noordhuis)
* doc: fix confusing doc of uv_tcp_nodelay (Bart Robinson)
* build,osx: fix warnings on tests compilation with gyp (Santiago Gimeno)
* doc: add ABI tracker link to README (Saúl Ibarra Corretgé)
* win,tty: fix uv_tty_set_mode race conditions (Bartosz Sosnowski)
* test: fix fs_fstat on Android (Vit Gottwald)
* win, test: fix fs_event_watch_dir_recursive (Bartosz Sosnowski)
* doc: add description of uv_handle_type (Vit Gottwald)
* build: use -pthreads for tests with autotools (Julien Gilli)
* win: fix leaky fs request buffer (Jason Ginchereau)
* doc: note buffer lifetime requirements in uv_write (Vladimír Čunát)
* doc: add reference to uv_update_time on uv_timer_start (Alex Hultman)
* win: fix winapi function pointer typedef syntax (Brad King)
* test: fix tcp_close_while_connecting CI failures (Ben Noordhuis)
* test: make threadpool_cancel_single deterministic (Ben Noordhuis)
* test: make threadpool saturation reliable (Ben Noordhuis)
* unix: don't malloc in uv_thread_create() (Ben Noordhuis)
* unix: don't include CoreServices globally on macOS (Brad King)
* unix,win: add uv_translate_sys_error() public API (Philippe Laferriere)
* win: remove unused static variables (Ben Noordhuis)
* win: silence -Wmaybe-uninitialized warning (Ben Noordhuis)
* signal: replace pthread_once with uv_once (Santiago Gimeno)
* test: fix sign-compare warning (Will Speak)
* common: fix unused variable warning (Brad King)
2016-11-12 07:47:34 +00:00
fhajny
ed23488456 Update devel/py-dialog2 to 3.4.0.
- The Python 2 backport has been updated to this version.
- Add method Dialog.editbox_str(). This is a convenience wrapper around
  Dialog.editbox() that automatically creates and deletes a temporary
  file containing the initial box contents, which is passed as a string
  (Dialog.editbox() needs it in a file).
- Add the week_start common option, mapped to dialog's --week-start
  option (it is useful with the calendar widget). The value may be an
  integer or a string (cf. dialog's manual page for more details).
2016-11-11 10:11:07 +00:00
fhajny
da7109cbf7 Update devel/py-ZopeComponent to 4.3.0.
- When testing PURE_PYTHON environments under tox, avoid poisoning the
  user's global wheel cache.
- Drop support for Python 2.6 and 3.2.
- Add support for Python 3.5.
2016-11-11 09:45:13 +00:00
fhajny
7ee46312a0 Update devel/py-configargparse to 0.11.0.
- moved existing config file parsing logic into DefaultConfigFileParser,
  and added YAMLConfigFileParser. The config file format can now be
  selected by setting the config_file_parser_class constructor arg
  to one of these Parser classes.
- fixes for various bugs mostly related to config file parsing
2016-11-11 09:33:57 +00:00
fhajny
8378a95efa Update devel/py-requests to 2.11.1.
2.11.1

Bugfixes

- Fixed a bug when using ``iter_content`` with ``decode_unicode=True``
  for streamed bodies would raise ``AttributeError``. This bug was
  introduced in 2.11.
- Strip Content-Type and Transfer-Encoding headers from the header block
  when following a redirect that transforms the verb from POST/PUT to GET.

2.11.0

Improvements

- Added support for the ``ALL_PROXY`` environment variable.
- Reject header values that contain leading whitespace or newline
  characters to reduce risk of header smuggling.

Bugfixes

- Fixed occasional ``TypeError`` when attempting to decode a JSON
  response that occurred in an error case. Now correctly returns
  a ``ValueError``.
- Requests would incorrectly ignore a non-CIDR IP address in the
  ``NO_PROXY`` environment variables: Requests now treats it as
  a specific IP.
- Fixed a bug when sending JSON data that could cause us to encounter
  obscure OpenSSL errors in certain network conditions (yes, really).
- Added type checks to ensure that ``iter_content`` only accepts
  integers and ``None`` for chunk sizes.
- Fixed issue where responses whose body had not been fully consumed
  would have the underlying connection closed but not returned to
  the connection pool, which could cause Requests to hang in situations
  where the ``HTTPAdapter`` had been configured to use a blocking
  connection pool.

Miscellaneous

- Updated bundled urllib3 to 1.16.
- Some previous releases accidentally accepted non-strings as acceptable
  header values. This release does not.
2016-11-11 09:27:21 +00:00
wiz
e8ed0658cd Add workaround for fixing the build of lilypond-2.18.2.
See https://github.com/westes/flex/issues/124

Bump PKGREVISION.
2016-11-11 08:14:54 +00:00
fhajny
06f350d10d Update devel/p5-Search-Elasticsearch to 5.01.
* Clear up dependencies, enable test target.

5.01
- Doc fixes

5.00
- This version adds Elasticsearch 5.x compatibility, and makes it
  the default.
- It also adds deprecation logging which logs to STDERR by default.

- The Hijk backend will not work with Elasticsearch 5.x until this bug
  is fixed: https://rt.cpan.org/Ticket/Display.html?id=118425

BREAKING CHANGES:
- The 0.90, 1.x, and 2.x compatible clients no longer ship by default.
  You should install one of the following:
      * Search::Elasticsearch::Client::2_0
      * Search::Elasticsearch::Client::2_0::Async
      * Search::Elasticsearch::Client::1_0
      * Search::Elasticsearch::Client::1_0::Async
      * Search::Elasticsearch::Client::0_90
      * Search::Elasticsearch::Client::0_90::Async
- The code has been reorganised so that all client-related modules
  are under the S::E::API_VERSION::Client namespace.
  This includes S::E::Bulk and S::E::Scroll.
- Plugin authors note: the format for the API in ...Role::API has changed.
- S::E::Cxn::HTTP has been rolled into S::E::Cxn as Elasticsearch
  no longer supports other protocols.
2016-11-08 12:08:44 +00:00
fhajny
0fabe788b3 Enable p5-Log-Any-Adapter-Callback 2016-11-08 12:05:30 +00:00
fhajny
219877d763 Import Log::Any::Adapter::Callback 0.09 as devel/p5-Log-Any-Adapter-Callback.
Send Log::Any logs to a subroutine.

This adapter lets you specify callback subroutine to be called by
Log::Any's logging methods (like $log->debug(), $log->error(), etc) and
detection methods (like $log->is_warning(), $log->is_fatal(), etc.).
2016-11-08 12:04:43 +00:00
wiz
3ed9e06b34 Do not install same files that mercurial itself installs.
Bump PKGREVISION.
2016-11-08 08:19:37 +00:00
mef
95980fcc88 Update devel/p5-MetaCPAN-Client to 1.028003
-------------------------------------------
1.028003    23.10.16
            * Removed AutoPrereqs from dist.ini (Mickey)

1.028002    23.10.16
            * GH #53 a few small dist.ini tweaks (Karen Etheridge)
            * Even more dist.ini tweaks (Mickey, thanks to Grinnz)

1.028001    22.10.16
            * GH #51 Adds eumm_version to dist.ini (Olaf Alders)
            * GH #52 Stop excluding cpanfile from being copied to
              build (Olaf Alders)

1.028000    21.10.16
            * GH #50 Remove hard-deps for HTTP::Tiny::Mech and
              WWW::Mechanize::Cached (Paul Howarth)
            * dist.ini: don't automatically update cpanfile (Mickey)

1.027000    20.10.16
            * GH #49 Convert values of JSON::PP::Boolean objects in output
              so they are not skipped when expeting scalars (Mickey)

1.026001    19.10.16
            * Fixed version range for Search::Elasticsearch (Mickey)

1.026000    19.10.16
            * Moved distini prereqs to cpanfile (Mickey)
            * Limit Search::Elasticsearch version to 2.02 (Mickey)
            * Updated docs (Thomas Sibley)
(pkgsrc changes)
 - Add BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=7.11.01
2016-11-07 22:54:51 +00:00
mef
28ef533391 Updated devel/p5-Test-Deep to 1.124
------------------------------------
1.124     2016-11-05
- avoid an uninitialized warning when array_each() compares to a
  non-reference (thanks, Максим Вуец!, Maxim Vuets)
2016-11-07 14:12:58 +00:00
mef
4422df3a3c Update devel/p5-Term-ReadLine to 1.35
-------------------------------------
1.35  2016-11-03
        - readline-7.0 support
            new function
                rl_clear_visible_line
                rl_tty_set_echoing
                rl_pending_signal
            new variable
                rl_persistent_signal_handlers
        - Gnu.xs: fix a bug of rl_readline_state variable causing on a
          big-endian, sizeof(int)==4, and sizeof(long)==8 platform
          with the GNU Readline Library 7.0. [rt.cpan.org #118371]
2016-11-07 14:04:32 +00:00
mef
04683c1088 Update devel/p5-Specio to 0.31
------------------------------
0.31     2016-11-05
- The stack trace contained by Specio::Exception objects no longer includes a
  stack frames for the Specio::Exception package.

- Made the inline_environment() and description() methods public on type and
  coercion objects.
2016-11-07 13:30:04 +00:00
wiz
e741870f05 Updated py-tortoisehg to 4.0.
TortoiseHg 4.0

TortoiseHg 4.0 is a quarterly feature release

Improvements

    graph: make annotate/history graph work with a shallow (remotefilelog) repo
    repoagent: light-weight suspend of repository monitor while running commands
    repofilter: adjust branch combo to content every time model changed
    repofilter: do not calculate width of revset combo from contents (fixes #4035)

hgext:

    extension: rename the extension from 'lighthg' to 'thg'
    extension: restrict to only 'view' as a command name
    light-ui: update the windows name to mention TortoiseHg and reponame
2016-11-07 11:27:13 +00:00
wiz
30c3fab890 Updated py-setuptools to 28.8.0.
v28.8.0
-------

* #629: Per the discussion, refine the sorting to use version
  value order for more accurate detection of the latest
  available version when scanning for packages. See also
  #829.

* #837: Rely on the config var "SO" for Python 3.3.0 only
  when determining the ext filename.
2016-11-07 11:24:31 +00:00
wiz
50fc2e42cc Updated py-pkginfo to 1.4.0.
1.4.0 (2016-11-04)
------------------

- Relicense under MIT license:  the PSF license is not suitable for
  third-party libraries.
2016-11-07 11:16:29 +00:00
wiz
b179ca5580 Updated py-nosexcover to 1.0.11.
Set LICENSE.

Changes:
Release as a wheel
2016-11-07 11:12:27 +00:00
wiz
fb3ba1bf08 Updated py-hypothesis to 3.6.0.
3.6.0 - 2016-10-31

This release reverts Hypothesis to its old pretty printing of lambda
functions based on attempting to extract the source code rather
than decompile the bytecode. This is unfortunately slightly inferior
in some cases and may result in you occasionally seeing things like
lambda x: <unknown> in statistics reports and strategy reprs.

This removes the dependencies on uncompyle6, xdis and spark-parser.

The reason for this is that the new functionality was based on
uncompyle6, which turns out to introduce a hidden GPLed dependency
- it in turn depended on xdis, and although the library was licensed
under the MIT license, it contained some GPL licensed source code
and thus should have been released under the GPL.

My interpretation is that Hypothesis itself was never in violation
of the GPL (because the license it is under, the Mozilla Public
License v2, is fully compatible with being included in a GPL licensed
work), but I have not consulted a lawyer on the subject. Regardless
of the answer to this question, adding a GPLed dependency will
likely cause a lot of users of Hypothesis to inadvertently be in
violation of the GPL.

As a result, if you are running Hypothesis 3.5.x you really should
upgrade to this release immediately.
2016-11-07 11:10:24 +00:00
wiz
c2ea7a6d87 Updated p5-Params-ValidationCompiler to 0.17.
Add missing test dependencies.

0.17     2016-11-04

- When using positional parameters, parameters with a default are now
  optional. For named parameters, this was already the case.


0.16     2016-11-03

- Moose and Specio types (and coercions) which provide variables to close over
  when being inlined did not always compile properly. Most notable, this was
  not being handled at all for Moose types, and not completely handled for
  Specio coercions.


0.15     2016-11-03

- Previously, using a default with a positional parameter would result in an
  error when compiling the validator subroutine. Defaults now work with
  positional parameters. Implemented by Greg Oschwald. Based on PR #5.


0.14     2016-11-02

- Added a "named_to_list" option to support returning only the parameter
  values from a named parameter validator rather than the key-value
  pairs. Implemented by Greg Oschwald. Based on PR #4.

- Errors from calls to validation_for() now use croak so as to show up at the
  call site, rather than in the internals
2016-11-07 10:45:25 +00:00
wiz
9f9e7e0578 + p5-Test2-Plugin-NoWarnings 2016-11-07 10:44:05 +00:00
wiz
6db0459e66 Import p5-Test2-Plugin-NoWarnings-0.04 as devel/p5-Test2-Plugin-NoWarnings.
Loading this plugin causes your tests to fail if there any warnings
while they run. Each warning generates a new failing test and the
warning content is outputted via diag.
2016-11-07 10:43:08 +00:00
wiz
d4274ee4fc + p5-Test-Suite. 2016-11-07 10:39:01 +00:00
wiz
93d5ad3590 Import p5-Test2-Suite-0.000060 as devel/p5-Test2-Suite.
Rich set of tools, plugins, bundles, etc built upon the Test2
testing library. If you are interested in writing tests, this is
the distribution for you.
2016-11-07 10:38:31 +00:00
wiz
152422122e + p5-Importer. 2016-11-07 10:36:34 +00:00
wiz
bb12782781 Import p5-Importer-0.024 as devel/p5-Importer.
This module acts as a layer between Exporter and modules which
consume exports. It is feature-compatible with Exporter, plus some
much needed extras. You can use this to import symbols from any
exporter that follows Exporters specification. The exporter modules
themselves do not need to use or inherit from the Exporter module,
they just need to set @EXPORT and/or other variables.
2016-11-07 10:36:06 +00:00
wiz
ed62b17ee3 Add upstream bug report URL. 2016-11-06 21:33:44 +00:00
wiz
0b7c7788f2 Updated flex to 2.6.2.
Slightly based on wip/flex by Makoto Fujiwara and Juraj Lutter.

* version 2.6.2 released 2016-10-24

** flex internals

*** a segfalt involving yyrestart(NULL) has been fixed

*** flex should now handle quoting when mixed with m4 processing correctly

*** flex handles `[[' and `]]' correctly

*** flex no longer generates non-ANSI code

*** more compilation warnings were squashed in generated scanners

*** prevented a buffer overflow that could occur when input buffers were the exact wrong size

** test suite

*** input filenames on MSWindows are now calculated correctly

*** general code cleanups in a number of tests now make the test suite compile much more cleanly

** build system

*** the xz archive has been replaced with an lzip archive

*** a new option to configure --enable-warnings to encapsulate passing
    of warning-related flags which is useful in testing flex

*** make indent now works for out of source builds

*** Portability warnings when generating Makefile.in files are now suppressed; they were just noise and the use of GNU extensions in Makefile.{am,in,} was intentional and well known.

** bugs

*** resolved gh#67

** new sv translation from the translation project

* version 2.6.1 released 2016-03-01

** flex resources

*** The flex project is now hosted at github. Consider this a "period of transition". In particular, you should start at https://github.com/westes/flex for the flex codebase, issue tracking and pull requests.

*** New releases of flex are to be found at https://github.com/westes/flex/releases.

** flex internals

*** Flex now uses more modern and more standard names for variable types. There's more work to be done on that front yet, though.

*** A number of compiler warnings have been remedied.

*** Line directives should now  work as expected and be absent when that is expected.

** test suite

*** When running the test suite, c++ files are compiled with the c++ header inside the flex distribution, rather than relying on the build system's flex header , which might not be installed yet or which might be out of date with respect to what flex tests expect.

*** Some portability fixes in the test suite such as opening files for reading in binary mode

** Building flex

*** The file src/scan.c asdistributed  with flex source is now built with the current version of flex. Occasionally this had to be done manually to pick up new flex features. It's now just a part of flex's build system.

*** The pdf version of the manual is no longer distributed with flex, although if you have the texinfo package installed, you can still build it.

*** lots of general build system cleanup

*** the build system tries a bit harder to find libtoolize and texi2dvi.

*** When help2man and texi2dvi are missing, the error messages are now much more helpful.

** bug fixes

*** resolved github issues #53, #54, #55, #61.

*** Resolved sf bugs #128, #129, #155, #160, #184, #187, #195.
2016-11-06 21:31:38 +00:00
wiz
9f2b1dc329 Updated tcllib to 1.18.
Provided by Kai-Uwe Eckhardt <kuehro@posteo.de> in private mail.

Changes in 1.18:

Overview
========

    18  new packages                in 14  modules
    32  changed packages            in 22  modules
    24  internally changed packages in 18  modules
    357 unchanged packages          in 97  modules
    438 packages, total             in 126 modules, total

New in tcllib 1.18
==================

    Module          Package             New Version   Comments
    --------------- ------------------- ------------- ----------
    dicttool        dicttool            1.0
    --------------- ------------------- ------------- ----------
    httpd           httpd               4.0
                    httpd::content      4.0
                    httpd::dispatch     4.0
                    scgi::app           0.1
    --------------- ------------------- ------------- ----------
    httpwget        http::wget          0.1
    markdown        Markdown            1.0
    math            math::exact         1.0
    nns             nameserv::cluster   0.2.3
    oodialect       oo::dialect         0.3
    --------------- ------------------- ------------- ----------
    oometa          oo::meta            0.4.1
                    oo::option          0.3
    --------------- ------------------- ------------- ----------
    processman      processman          0.3
    tool            tool                0.5
    tool_datatype   tool::datatype      0.1
    try             throw               1
    yaml            huddle::json        0.1
    zip             zipfile::mkzip      1.2
    --------------- ------------------- ------------- ----------

Changes from tcllib 1.17 to 1.18
================================

                                          tcllib 1.17   tcllib 1.18
    Module      Package                   Old Version   New Version   Comments
    ----------- ------------------------- ------------- ------------- ----------
    cron        cron                      1.1           1.2.1         B EF
    csv         csv                       0.8           0.8.1         B
    ----------- ------------------------- ------------- ------------- ----------
    debug       debug                     1.0.5         1.0.6         B D EF
                debug::caller             1             1.1           EF
    ----------- ------------------------- ------------- ------------- ----------
    docstrip    docstrip::util            1.3           1.3.1         B D
    dtplite     dtplite                   1.2           1.3           B EF
    ----------- ------------------------- ------------- ------------- ----------
    fileutil    fileutil                  1.14.10       1.15          B D EF T
                fileutil::traverse        0.5           0.6           B D T
    ----------- ------------------------- ------------- ------------- ----------
    ftp         ftp::geturl               0.2.1         0.2.2         B
    ftpd        ftpd                      1.2.6         1.3           B EF
    htmlparse   htmlparse                 1.2.1         1.2.2         D EF T
    imap4       imap4                     0.5.2         0.5.3         D EF
    irc         picoirc                   0.5.1         0.5.2         B D
    map         map::slippy::fetcher      0.3           0.4           D EF
    ----------- ------------------------- ------------- ------------- ----------
    math        math::calculus::symdiff   1.0           1.0.1         B T
                math::constants           1.0.1         1.0.2         B D
                math::statistics          0.9.3                       B EF
                math::statistics                        1.0           B EF
    ----------- ------------------------- ------------- ------------- ----------
    nettool     nettool                   0.4           0.5.1         B EF I
    ooutil      oo::util                  1.2.1         1.2.2         B D T
    ----------- ------------------------- ------------- ------------- ----------
    pt          pt::pe::op                1             1.0.1         B D T
                pt::peg::to::tclparam     1.0.2         1.0.3         B D T
                pt::rde                   1.0.3         1.1           B D I T
                pt::rde::oo               1.0.3         1.1           D I
                pt::util                  1             1.1           B
    ----------- ------------------------- ------------- ------------- ----------
    rest        rest                      1.0.1         1.0.2         B D
    tie         tie::std::rarray          1.0           1.0.1         B D T
    uri         uri                       1.2.5         1.2.6         D EF T
    uuid        uuid                      1.0.4         1.0.5         B I
    ----------- ------------------------- ------------- ------------- ----------
    yaml        huddle                    0.1.5         0.2           D I T
                yaml                      0.3.7         0.3.9         D I T
    ----------- ------------------------- ------------- ------------- ----------
    zip         zipfile::decode           0.6.1         0.7           EF I
                zipfile::encode           0.3           0.4           B D
    ----------- ------------------------- ------------- ------------- ----------


Changes in 1.17:
Overview
========

    6   new packages                in 5   modules
    66  changed packages            in 39  modules
    46  internally changed packages in 31  modules
    293 unchanged packages          in 74  modules
    418 packages, total             in 118 modules, total

New in tcllib 1.17
==================

    Module       Package                          New Version   Comments
    ------------ -------------------------------- ------------- ----------
    cron         cron                             1.1
    nettool      nettool                          0.4
    oauth        oauth                            1
    processman   odie::processman                 0.3
    ------------ -------------------------------- ------------- ----------
    pt           pt::cparam::configuration::tea   0.1
                 pt::util                         1
    ------------ -------------------------------- ------------- ----------

Changes from tcllib 1.16 to 1.17
================================

                                                                 tcllib 1.16   tcllib 1.17
    Module                  Package                              Old Version   New Version   Comments
    ----------------------- ------------------------------------ ------------- ------------- ----------
    aes                     aes                                  1.1.1         1.2.1         I P
    amazon-s3               S3                                   1.0.0         1.0.3         B D P
    bibtex                  bibtex                               0.5           0.6           B EF
    cmdline                 cmdline                              1.3.3         1.5           D EF I T
    comm                    comm                                 4.6.2         4.6.3.1       B D
    ----------------------- ------------------------------------ ------------- ------------- ----------
    coroutine               coroutine                            1.1           1.1.3         B D
                            coroutine::auto                      1.1.1         1.1.3         B D
    ----------------------- ------------------------------------ ------------- ------------- ----------
    crc                     cksum                                1.1.3         1.1.4         B D I
                            crc32                                1.3.1         1.3.2         B D I
                            sum                                  1.1.0         1.1.2         B D I T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    debug                   debug                                1.0.2         1.0.5         B D EF
    ----------------------- ------------------------------------ ------------- ------------- ----------
    dns                     dns                                  1.3.3         1.3.5         B D I
                            ip                                   1.2.2         1.3           D EF I T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    doctools                doctools                             1.4.17        1.4.19        B D I
                            doctools::idx                        1.0.4         1.0.5         B D I
                            doctools::idx                        2             2             B D I
                            doctools::toc                        1.1.3         1.1.4         B D I
                            doctools::toc                        2             2             B D I
    ----------------------- ------------------------------------ ------------- ------------- ----------
    doctools2idx            doctools::idx                        1.0.4         1.0.5         B D I
                            doctools::idx                        2             2             B D I
    ----------------------- ------------------------------------ ------------- ------------- ----------
    doctools2toc            doctools::toc                        1.1.3         1.1.4         B D I
                            doctools::toc                        2             2             B D I
    ----------------------- ------------------------------------ ------------- ------------- ----------
    dtplite                 dtplite                              1.1           1.2           D I
    ----------------------- ------------------------------------ ------------- ------------- ----------
    fileutil                fileutil                             1.14.6        1.14.10       B D T
                            fileutil::traverse                   0.4.3         0.5           B D T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    ftp                     ftp                                  2.4.12        2.4.13        B D
    html                    html                                 1.4           1.4.4         B D T
    inifile                 inifile                              0.2.5         0.3           D EF I T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    json                    json                                 1.3.2         1.3.3         B D T
                            json::write                          1.0.2         1.0.3         B D T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    log                     logger                               0.9.3         0.9.4         B D T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    math                    math::bigfloat                       1.2.2         1.2.2         B T
                            math::bigfloat                       2.0.1         2.0.2         B T
                            math::calculus                       0.7.2         0.8.1         B D EF T
                            math::linearalgebra                  1.1.4         1.1.5         B D T
                            math::optimize                       1.0           1.0.1         B T
                            math::special                        0.2.2         0.3.0         D EF T
                            math::statistics                     0.9           0.9.3         B D EF T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    md4                     md4                                  1.0.5         1.0.6         B D I
    ncgi                    ncgi                                 1.4.2         1.4.3         B D T
    ooutil                  oo::util                             1.2           1.2.1         B D T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    pt                      char                                 1             1.0.1         D I T
                            pt::cparam::configuration::critcl    1.0.1         1.0.2         B D I T
                            pt::parse::peg                       1             1.0.1         B I T
                            pt::pe                               1             1.0.2         B D EF I
                            pt::peg::from::peg                   1.0.2         1.0.3         D EF
                            pt::peg::interp                      1             1.0.1         D EF
                            pt::peg::to::cparam                  1.0.1         1.1.3         B D EF
                            pt::peg::to::param                   1             1.0.1         B
                            pt::peg::to::peg                     1.0.1         1.0.2         D EF
                            pt::peg::to::tclparam                1             1.0.2         B D EF
                            pt::pgen                             1.0.2         1.0.3         EF T
                            pt::rde                              1.0.2         1.0.3         B D EF
                            pt::rde::oo                          1.0.2         1.0.3         B
                            pt::tclparam::configuration::snit    1.0.1         1.0.2         D EF
                            pt::tclparam::configuration::tcloo   1.0.3         1.0.4         D EF
    ----------------------- ------------------------------------ ------------- ------------- ----------
    report                  report                               0.3.1         0.3.2         D EF
    ----------------------- ------------------------------------ ------------- ------------- ----------
    ripemd                  ripemd128                            1.0.4         1.0.5         B D I
                            ripemd160                            1.0.4         1.0.5         B D I
    ----------------------- ------------------------------------ ------------- ------------- ----------
    sha1                    sha1                                 1.1.0         1.1.1         B I T
                            sha1                                 2.0.3         2.0.3         B I T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    string                  string::token::shell                 1.1           1.2           D EF T
    struct                  struct::pool                         1.2.1         1.2.3         D I T
    tar                     tar                                  0.9           0.10          B D T
    tepam                   tepam                                0.5.0         0.5           I
    textutil                textutil::adjust                     0.7.1         0.7.3         B D T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    uri                     uri                                  1.2.4         1.2.5         B D T
                            uri::urn                             1.0.2         1.0.3         B D I T
    ----------------------- ------------------------------------ ------------- ------------- ----------
    uuid                    uuid                                 1.0.2         1.0.4         B D I
    valtype                 valtype::iban                        1.4           1.5           B D EF T
    virtchannel_transform   tcl::transform::zlib                 1             1.0.1         B
    websocket               websocket                            1.3           1.4           B D EF
    yaml                    yaml                                 0.3.6         0.3.7         B D T
    zip                     zipfile::decode                      0.4           0.6.1         B D EF
    ----------------------- ------------------------------------ ------------- ------------- ----------

Changes in 1.16:

Overview
========

    11  new packages                in 7   modules
    45  changed packages            in 26  modules
    288 internally changed packages in 100 modules
    61  unchanged packages          in 11  modules
    411 packages, total             in 114 modules, total

New in tcllib 1.16
==================

    Module      Package                New Version   Comments
    ----------- ---------------------- ------------- ----------
    debug       debug                  1.0.2
                debug::caller          1
                debug::heartbeat       1
                debug::timestamp       1
    ----------- ---------------------- ------------- ----------
    dtplite     dtplite                1.1
    pt          pt::rde::oo            1.0.2
    sasl        SASL::SCRAM            0.1
    ----------- ---------------------- ------------- ----------
    string      string::token          1
                string::token::shell   1.1
    ----------- ---------------------- ------------- ----------
    tepam       tepam::doc_gen         0.1.1
    websocket   websocket              1.3
    ----------- ---------------------- ------------- ----------

Changes from tcllib 1.15 to 1.16
================================

                                                            tcllib 1.15   tcllib 1.16
    Module             Package                              Old Version   New Version   Comments
    ------------------ ------------------------------------ ------------- ------------- ----------
    aes                aes                                  1.1           1.1.1         B D T
    coroutine          coroutine::auto                      1.1           1.1.1         B D
    dns                ip                                   1.2           1.2.2         B D T
    ------------------ ------------------------------------ ------------- ------------- ----------
    doctools           doctools                             1.4.14        1.4.17        B D T
                       doctools::changelog                  1             1.1           D
    ------------------ ------------------------------------ ------------- ------------- ----------
    fileutil           fileutil                             1.14.5        1.14.6        B D T
                       fileutil::decode                     0.1           0.2           B
    ------------------ ------------------------------------ ------------- ------------- ----------
    ftp                ftp                                  2.4.11        2.4.12        B D
    grammar_fa         grammar::fa                          0.4           0.5           B D
    imap4              imap4                                0.4           0.5.2         B D EF
    jpeg               jpeg                                 0.4.0         0.5           B D T
    json               json                                 1.1.2         1.3.2         D EF T
    ------------------ ------------------------------------ ------------- ------------- ----------
    math               math::calculus                       0.7.1         0.7.2         B D
                       math::decimal                        1.0.2         1.0.3         B D
                       math::geometry                       1.1.2         1.1.3         B D
                       math::interpolate                    1.0.3         1.1           B D T
                       math::statistics                     0.8.0         0.9           D EF T
    ------------------ ------------------------------------ ------------- ------------- ----------
    mime               mime                                 1.5.6         1.6           D EF T
    ncgi               ncgi                                 1.4.1         1.4.2         B D T
    ooutil             oo::util                             1.1           1.2           D EF
    ------------------ ------------------------------------ ------------- ------------- ----------
    pt                 pt::peg::from::peg                   1             1.0.2         B D T
                       pt::peg::op                          1             1.0.1         B D
                       pt::peg::to::peg                     1             1.0.1         B D T
                       pt::pgen                             1.0.1         1.0.2         B D
                       pt::tclparam::configuration::tcloo   1.0.2         1.0.3         D T
    ------------------ ------------------------------------ ------------- ------------- ----------
    rest               rest                                 1.0           1.0.1         B D
    ------------------ ------------------------------------ ------------- ------------- ----------
    sasl               SASL                                 1.3.2         1.3.3         B D T
                       SASL::NTLM                           1.1.1         1.1.2         B D T
    ------------------ ------------------------------------ ------------- ------------- ----------
    struct             struct::list                         1.8.2         1.8.3         B D T
                       struct::matrix                       1.2.1         1.2.1         D
                       struct::matrix                       2.0.2         2.0.3         D
                       struct::queue                        1.4.4         1.4.5         B D T
    ------------------ ------------------------------------ ------------- ------------- ----------
    tar                tar                                  0.7.1         0.9           B D T
    tepam              tepam                                0.4.0         0.5.0         B D T
    ------------------ ------------------------------------ ------------- ------------- ----------
    term               term::ansi::code                     0.1           0.2           B D
                       term::ansi::code::ctrl               0.1.2         0.2           B D
                       term::ansi::send                     0.1           0.2           B D
    ------------------ ------------------------------------ ------------- ------------- ----------
    textutil           textutil                             0.7.1         0.8           D EF
                       textutil::string                     0.7.1         0.8           D EF T
    ------------------ ------------------------------------ ------------- ------------- ----------
    uri                uri                                  1.2.2         1.2.4         B D T
    valtype            valtype::iban                        1.1           1.4           D EF T
    ------------------ ------------------------------------ ------------- ------------- ----------
    virtchannel_base   tcl::chan::memchan                   1.0.2         1.0.3         B D
                       tcl::chan::string                    1.0.1         1.0.2         B D
                       tcl::chan::variable                  1.0.2         1.0.3         B D
    ------------------ ------------------------------------ ------------- ------------- ----------
    zip                zipfile::decode                      0.2           0.4           B D
                       zipfile::encode                      0.1           0.3           B D
    ------------------ ------------------------------------ ------------- ------------- ----------
2016-11-06 19:55:15 +00:00
adam
3a4c009372 Sync with sqlite3.15.1 2016-11-06 14:51:49 +00:00
mef
a6d58177b9 Update devel/p5-Devel-GlobalDestruction to 0.14
-----------------------------------------------
0.14 - 2016-10-31
  - stop relying on . being in @INC
  - switch to ExtUtils::HasCompiler to detect presence of a compiler
2016-11-06 04:48:07 +00:00
mef
1adc7e41a0 Updated devel/p5-Devel-CheckOS to 1.79
--------------------------------------
1.79    2016-10-30 Fix another minor bug
                   (https://github.com/DrHyde/perl-modules-Devel-CheckOS/issues/17)

1.78    2016-10-30 Fix an isue that made it uninstallable on some systems
		   (https://github.com/DrHyde/perl-modules-Devel-CheckOS/issues/16)
2016-11-06 04:38:18 +00:00
mef
8d8a2c2d8e Updated devel/p5-CPAN-Perl-Releases to 2.98
-------------------------------------------
version 2.98 at 2016-10-20 15:53:14 +0000
    Updated for v5.25.6

version 2.96 at 2016-10-12 23:51:51 +0000
    Updated for v5.22.3-RC4 and v5.24.1-RC4
2016-11-06 04:31:09 +00:00
wen
18d7bd3474 Update to 9.0.0
Upstream changes:
9.0.0 (2016-11-02)

    BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=.
    DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways.
    Add a pip check command to check installed packages dependencies (PR #3750).
    Added option to allow user to abort pip operation if file/directory exists
    Added Appveyor CI
    Uninstall existing packages when performing an editable installation of the same packages (#1548).
    Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858).
    Added optional column formatting to pip list (#3651).
    Add --not-required option to pip list to list packages that are not dependencies of other packages.
    Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701).
    Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616).
    Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681).
    Support multiple --requirement files in pip freeze (PR #3703).
    Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement.
    Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291).
    Load credentials from .netrc files (PR #3715, #3569).
    Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760)
    Skip scanning virtual environments even when venv/bin/python is a dangling symlink.
    Added pip completion support for fish shell.
    Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000).
    Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791)
    Normalize package names before using in pip show (#3976)
    Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846).
    Report the correct installed version when performing an upgrade in some corner cases (#2382)
    Add -i shorthand for --index flag in pip search
    Do not optionally load C dependencies in requests (#1840, #2930, #3024)
    Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209).
    Also install in platlib with --target option (PR #3694, #3682).
    Restore the ability to use inline comments in requirements files passed to pip freeze (#3680).
    Deprecate --default-vcs option (#4052).
2016-11-06 00:32:12 +00:00
adam
971f65d704 Changes in 3.6.3 since 3.6.2:
FindHDF5: Restore pre-3.6 behavior of finding only C by default CMake 3.6.3
cmake-gui: Do not remove library paths for Qt5 plugins.
2016-11-04 20:41:09 +00:00
maya
ffc39ce7a7 boost-libs: don't include fiber PLIST on NetBSD 6 as well
As an alternative, it's possible to require a higher GCC version,
note that it's necessary to require a higher GCC on other boost-*
packages (probably boost-headers).

fix build on netbsd 6.1.5
2016-11-04 13:45:31 +00:00
fhajny
c9abf99a0e Update devel/py-argcomplete to 1.6.0.
1.6.0
- Add support for tcsh
- Fix handling of unquoted completions containing $
- Don't insert unnecessary leading quote char in completions
- Fix parser reuse with positional arguments
- Tests: Add simple pexpect tests for bash; Add test case to
  verify #20 is fixed

1.5.1
- Packaging fix

1.5.0
- Do not suggest options from mutually exclusive groups
2016-11-04 10:55:44 +00:00
fhajny
d4612ba7d9 Update devel/ivykis to 0.40.
- Don't forget to ship src/pthr.h in 'make dist' generated tarballs.
- test/Makefile.am: Include dependencies for all test programs.
- Guard against multiple inclusion of mutex.h and pthr.h.
- Rename mutex_*() functions to __mutex_*().
- test/avl: Reduce test AVL tree size.
- Turn iv_validate_now() into a no-op.
- iv_fd: Let ->poll() return whether a timeout could have occurred.
- iv_fd: Allow timeout handling optimizations in poll methods.
- epoll: Implement ->set_poll_timeout() using timerfd_create(2).
- kqueue: Implement ->set_poll_timeout() using EVFILT_TIMER.
- port: Implement ->set_poll_timeout() using timer_create(3C).
- spinlock.h: Fix pthread_sigmask() pointer aliasing issue.
- Use a maxium event polling timeout of a day.
- iv_task: Allow task registered by another task to run immediately.
- Split off implementations of iv_thread_get_id() into separate files.
- Further mangle names of the __mutex_*() functions.
- Add EINTR check loops to a few more write(2) call instances.
- test/: Avoid long long printf format specifiers.
2016-11-04 10:47:36 +00:00
wen
ba5ef2b732 Update to 2.002005
Update DEPENDS

Upstream changes:
2.002005 - 2016-10-31
  - fix accessor extensions that need captured variables for clearers and
    predicates. (RT#118453)
  - avoid relying on '.' being in @INC in tests
  - fix Sub::Quote test when run with perl -C or PERL_UNICODE on perl 5.10
    (RT#117844)
  - improved error messages for invalid sub names in Sub::Quote (RT#116416,
    RT#117711)
  - clarify meta method documentation
  - bump Role::Tiny prereq version to get stub in role fix (RT#116674)
2016-11-03 14:52:46 +00:00
wen
56eea76954 Update to 2.000005
Upstream changes:
2.000005 - 2016-11-01
  - revert change to MRO::Compat usage

2.000004 - 2016-10-31
  - Fix consuming stubs from roles (RT#116674).
  - Fix error message when applying conflicting roles to an object.
  - Drop prerequisite on MRO::Compat on perl 5.8.
2016-11-03 14:46:04 +00:00
maya
689fb6ba3a libffi: remove some netbsd/mips specific patches that are uneeded
(and may be harmful).

we don't need a definition to declare we're definitely totally o32,
especially since the vast majority will be n32. this is potentially
harmful, but I cannot confirm any resulting harm.

don't try to avoid compiler builtins, we have them and I expect that
they will work, however, only build tested (on netbsd 7.99.41 mips64eb),
no tests run.

bump PKGREVISION.
2016-11-03 11:40:28 +00:00
wiz
1ee5c3780e Updated py-mercurial to 4.0.
1. Features

    The following commands now also have experimental formatter support: 'hg version', 'hg grep' and 'hg config'
    New template keywords and functions: termwidth, mod(a, b), relpath(path)
    Basic arithmetic operations in template such as termwidth - 10
    follow() revset takes new startrev parameter
    Bash completion now allows skipping potentially expensive status call for completing 'hg status' arguments, using $HGCOMPLETE_NOSTATUS environment variable

2. Improvements

    A number of changes were made to move and copy tracking, to make sure move and copy information is not lost during commands like 'hg graft'
    Compound revset expression is now properly ordered
    Python 3 support has received a lot of improvements (but will take a lot of additional work)
    zlib performance in hgweb is improved, and it's possible to control zlib compression level using server.zliblevel option

Detailed changelog:

1.1. commands

    annotate: calculate line count correctly
    branchmap: acquires lock before writting the rev branch cache
    clone: set default path correctly when doing a clone+share (issue5378)
    copy: distinguish "file exists" cases and add a hint (BC)
    commit: return 1 for interactive commit with no changes (issue5397)
    config: add template support
    debugobsolete: add formatter support (issue5134)
    files: change documentation to match its behaviour (issue5276)
    grep: add formatter support
    help: show content for explicitly disabled extension (issue5228)
    import: abort instead of crashing when copy source does not exist (issue5375)
    import: report directory-relative paths in error messages (issue5224)
    log: copy the way of ancestor traversal to --follow matcher (issue5376)
    log: preserve topo sort in graph even if additional filter options specified
    merge: add conflict labels to merge command
    merge: avoid superfluous filemerges when grafting through renames (issue5407)
    strip: report both bundle files in case of exception (issue5368)
    tag: clarify warning about making a tag on a branch head
    version: add formatter support
    flags: allow specifying --no-boolean-flag on the command line (BC)

1.2. core

    changelog: disable delta chains
    copies: make _checkcopies handle copy sequences spanning the TCA (issue4028)
    formatter: add function to convert list to appropriate format (issue5217)
    lock: show more detail for new-style locks in lock waiting message (issue4752)
    revset: do not rewrite ':y' to '0:y' (issue5385)
    revset: fix order of nested '_(|int|hex)list' expression (BC)
    revset: fix order of nested 'or' expression (BC)
    revset: fix order of nested 'range' expression (BC)
    revset: make reverse() and sort() no-ops when ordering requirement allows (BC)
    revset: support "follow(renamed.py, e22f4f3f06c3)" (issue5334)
    templater: provide a termwidth keyword (issue5395)
    templater: add inheritance support to style maps
    templater: add relpath() to convert repo path to relative path (issue5394)
    templater: make pad() evaluate boolean argument (BC)
    wireproto: unescape argument names in batch command (BC)

1.3. extensions

    journal: properly check for held lock (issue5349)
    journal: use fm.formatdate() to pass date tuple in appropriate type (BC)
    journal: use fm.formatlist() to pass hashes in appropriate type (BC)
    journal: use fm.hexfunc() to get full hash in JSON/template output (BC)
    largefiles: fix 'deleted' files sometimes persistently appearing with R status
    largefiles: handle that a found standin file doesn't exist when removing it
    largefiles: more safe handling of interruptions while updating modifications
    largefiles: when setting/clearing x bit on largefiles, don't change other bits
    mq: release lock after transaction in qrefresh
    mq: take wlock when 'qqueue' is doing write operations
    rebase: properly calculate total commits to rebase (issue5347)
    rebase: rebase changesets in topo order (issue5370) (BC)

1.4. hgweb

    hgweb: avoid line wrap between revision and annotate-info (issue5398)
    hgweb: config option to control zlib compression level
2016-11-03 11:13:36 +00:00
joerg
c9ee0f07de + creduce 2016-11-02 13:06:00 +00:00
joerg
0d4deaf2b7 Add creduce-2.5.0:
C-Reduce is a tool that takes a large C, C++, or OpenCL file that has a
property of interest (such as triggering a compiler bug) and
automatically produces a much smaller C/C++ file that has the same
property. It is intended for use by people who discover and report bugs
in compilers and other tools that process source code.
2016-11-02 00:15:43 +00:00
taca
d2b7927c00 Update ruby-memoist to 0.15.0.
* Add the frozen string literal pragma for ruby 2.3.0.
* Add a benchmark for basic performance of memoised methods
* Add a hit counter... 90s style
* Use SVG badge over PNG
* Ensure we don't load uninitialized variables in the test
* Avoid overwriting the memoized_methods helper
2016-11-01 16:50:31 +00:00
taca
ee6ef1a256 Update ruby-flexmock to 2.3.1.
* fix mocking methods that are defined as private on Object
* remove test of experimental stuff I can't understand
* allow to stack verification contexts recursively using FlexMock.use
* add some missing tests
* fix stubbing the same method multiple times on a partial mock when
  partials_verify_signatures is set
* fix signature validation when the last positional argument of a call is
  a hash
* fix signature validation in presence of both keywords and blocks
2016-11-01 16:49:22 +00:00
wiz
06e2137dc3 Remove gmock, integrated into googletest. 2016-11-01 15:32:59 +00:00