Commit graph

4282 commits

Author SHA1 Message Date
rillig
78b1ddc1e1 editors/emacs25: don't try to fix nonexistent grep-changelog 2020-05-22 05:51:19 +00:00
joerg
b6d835f1e4 When defining a macro for a very generic name like type, ensure to
include all system headers first.
2020-05-22 01:18:14 +00:00
ryoon
02a5ef8cc3 *: Recursive revbump from graphics/ilmbase 2020-05-21 20:53:37 +00:00
adam
27fe9944b1 py-jedi: add TEST_DEPENDS 2020-05-21 13:24:53 +00:00
wiz
63d6d7ab14 vile, xvile: update to 9.8u.
Provided by Thomas Dickey in private mail.

Changes:

 20200517 (u)
	> Brendan O'Dea:
	+ add smartcase mode (prompted by suggestion by Marc Simpson).
	> Michael von der Heide
	+ modify vile-spell-filt to allow for umlauts in UTF-8
	> Tom Dickey:
	+ add "install-keywords" and "uninstall-keywords" targets to the
	  top-level and filters makefiles.
	+ prove separate a "nmake" highlighter from "make", to color
	  conditional directives and handle special cases of trailing "\".
	+ modify winvile.iss to make the 64-bit installers more distinct from
	  the 32-bit installers.
	+ enable registry-lookup as getenv fallback for WinVile64
	+ modify nmakemode:
	  + allow for whitespace after "!" in conditional lines
	  + ignore case when matching keywords
	+ fix some issues found with Coverity.
	+ quiet a few gcc9 warnings
	+ correct size-parameter of ZeroMemory calls in ntwinio.c
	+ resave SVG-files with Inkscape 0.92.4 (5da689c313, 2019-01-14), to
	  accommodate version-creep.
	+ improved configure macros to lessen unused-variable warnings in
	  config.log
	+ workaround in configure checks for ncurses vs xcode's c99 "-W" option
	+ fix - python filter should recognize triple single-quoted string
	  (report/patch by Marc Simpson).
	+ fix typos reported by codespell.
	+ add null-pointer checks for continue-search and reverse-search to
	  handle the case where a pattern string was given, but it failed to
	  compile (report by Marc Simpson).
	+ improve configure script for MacOS port:
	  + check for X11 headers in /usr/X11, reflecting Apple's removal of
	    of /usr/include and /usr/include/X11
	  + suppress -Winline
	  + cleanup *.dSYM directories
	  + don't add gcc/clang options for c89/c99 wrappers which cannot tell
	    what version of gcc/clang they hide.
	+ add tpumode, separating it from dclmode because the keywords differ.
	  also add tpu syntax filter, since syntax differs.
	+ modified a configure-macro to appease autoheader-252.
	+ switch back to the original buffer after displaying result of the
	  show-marks command in "[Named Marks]" (report/patch by Marc Simpson).
	+ modify message when setting a mark in "[Named Marks]" to show that it
	  is ignored (report by Marc Simpson).
	+ regenerate the doc-files from html, using links2 2.14 in Debian 9.
	  also reformat the html files.
	+ trim some unwanted blanks in vile.hlp, overlooked in converting
	  to html (report by Marc Simpson).
	+ add "go" and "typescript" majormodes.
	+ fix a loop-limit in manfilt.c for ANSI CUP.
	+ clone pl-filt.c as pl6filt.c to support perl6, added corresponding
	  "perl6" mode (discussion with Steve Lembark).
	+ add a limit-check in reallyEditMiniBuffer to handle a case where
	  mini-edits clear the working buffer, including the padding (Savannah
	  #56627).
	+ fix no-return warnings from libXt 1.2.0 headers
	+ updated "rev=made" to "rel=author" in html-files.
	+ add configure check for handling of "const" with X Toolkit library
	+ improved configure macros:
	  CF_GNU_SOURCE, CF_INSTALL_OPTS, CF_INSTALL_OPT_S, CF_LD_RPATH_OPT,
	  CF_POSIX_C_SOURCE, CF_VA_COPY, CF_XOPEN_SOURCE, mainly to solve
	  two problems:
	  + non-POSIX use of predefined symbols on BSD platforms
	  + an install option was needed to preserve timestamps
	+ add html meta tags to atr2html for generator and charset.
	+ update gnreight.h from Debian/testing libc6 2.28-6
	+ add FreeBSD package-files to help with maintaining (FreeBSD #234527,
	  FreeBSD #234528).  Note that because of the distinfo files, those
	  will always be one patch behind.
	+ update config.guess, config.sub
2020-05-21 07:40:28 +00:00
wiz
de6f44f958 py-jedi: fix PLIST for python != 3.7 2020-05-20 16:19:22 +00:00
rillig
4f4f64fdce mark packages that fail with -Werror=char-subscripts
These packages are susceptible to bugs when confronted with non-ASCII
characters.

See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94182.

It takes some time to analyze and fix these individually, therefore they
are only marked as "needs work".
2020-05-20 06:09:03 +00:00
mef
677716ae60 (editors/TeXmacs) fix WARNING: [subst.mk:init] Nothing changed 2020-05-18 22:01:32 +00:00
wiz
0d7da6a802 0.17.0 (2020-04-14)
+++++++++++++++++++

- Added ``Project`` support. This allows a user to specify which folders Jedi
  should work with.
- Added support for Refactoring. The following refactorings have been
  implemented: ``Script.rename``, ``Script.inline``,
  ``Script.extract_variable`` and ``Script.extract_function``.
- Added ``Script.get_syntax_errors`` to display syntax errors in the current
  script.
- Added code search capabilities both for individual files and projects. The
  new functions are ``Project.search``, ``Project.complete_search``,
  ``Script.search`` and ``Script.complete_search``.
- Added ``Script.help`` to make it easier to display a help window to people.
  Now returns pydoc information as well for Python keywords/operators.  This
  means that on the class keyword it will now return the docstring of Python's
  builtin function ``help('class')``.
- The API documentation is now way more readable and complete. Check it out
  under https://jedi.readthedocs.io. A lot of it has been rewritten.
- Removed Python 3.4 support
- Many bugfixes

This is likely going to be the last minor version that supports Python 2 and
Python3.5. Bugfixes will be provided in 0.17.1+. The next minor/major version
will probably be Jedi 1.0.0.

0.16.0 (2020-01-26)
+++++++++++++++++++

- **Added** ``Script.get_context`` to get information where you currently are.
- Completions/type inference of **Pytest fixtures**.
- Tensorflow, Numpy and Pandas completions should now be about **4-10x faster**
  after the first time they are used.
- Dict key completions are working now. e.g. ``d = {1000: 3}; d[10`` will
  expand to ``1000``.
- Completion for "proxies" works now. These are classes that have a
  ``__getattr__(self, name)`` method that does a ``return getattr(x, name)``.
  after loading them initially.
- Goto on a function/attribute in a class now goes to the definition in its
  super class.
- Big **Script API Changes**:
    - The line and column parameters of ``jedi.Script`` are now deprecated
    - ``completions`` deprecated, use ``complete`` instead
    - ``goto_assignments`` deprecated, use ``goto`` instead
    - ``goto_definitions`` deprecated, use ``infer`` instead
    - ``call_signatures`` deprecated, use ``get_signatures`` instead
    - ``usages`` deprecated, use ``get_references`` instead
    - ``jedi.names`` deprecated, use ``jedi.Script(...).get_names()``
- ``BaseName.goto_assignments`` renamed to ``BaseName.goto``
- Add follow_imports to ``Name.goto``. Now its signature matches
  ``Script.goto``.
- **Python 2 support deprecated**. For this release it is best effort. Python 2
  has reached the end of its life and now it's just about a smooth transition.
  Bugs for Python 2 will not be fixed anymore and a third of the tests are
  already skipped.
- Removed ``settings.no_completion_duplicates``. It wasn't tested and nobody
  was probably using it anyway.
- Removed ``settings.use_filesystem_cache`` and
  ``settings.additional_dynamic_modules``, they have no usage anymore. Pretty
  much nobody was probably using them.

0.15.2 (2019-12-20)
+++++++++++++++++++

- Signatures are now detected a lot better
- Add fuzzy completions with ``Script(...).completions(fuzzy=True)``
- Files bigger than one MB (about 20kLOC) get cropped to avoid getting
  stuck completely.
- Many small Bugfixes
- A big refactoring around contexts/values

0.15.1 (2019-08-13)
+++++++++++++++++++

- Small bugfix and removal of a print statement

0.15.0 (2019-08-11)
+++++++++++++++++++

- Added file path completions, there's a **new** ``Completion.type`` now:
  ``path``. Example: ``'/ho`` -> ``'/home/``
- ``*args``/``**kwargs`` resolving. If possible Jedi replaces the parameters
  with the actual alternatives.
- Better support for enums/dataclasses
- When using Interpreter, properties are now executed, since a lot of people
  have complained about this. Discussion in #1299, #1347.

New APIs:

- ``Name.get_signatures() -> List[Signature]``. Signatures are similar to
  ``CallSignature``. ``Name.params`` is therefore deprecated.
- ``Signature.to_string()`` to format signatures.
- ``Signature.params -> List[ParamName]``, ParamName has the
  following additional attributes ``infer_default()``, ``infer_annotation()``,
  ``to_string()``, and ``kind``.
- ``Name.execute() -> List[Name]``, makes it possible to infer
  return values of functions.


0.14.1 (2019-07-13)
+++++++++++++++++++

- CallSignature.index should now be working a lot better
- A couple of smaller bugfixes

0.14.0 (2019-06-20)
+++++++++++++++++++

- Added ``goto_*(prefer_stubs=True)`` as well as ``goto_*(prefer_stubs=True)``
- Stubs are used now for type inference
- Typeshed is used for better type inference
- Reworked Name.full_name, should have more correct return values

0.13.3 (2019-02-24)
+++++++++++++++++++

- Fixed an issue with embedded Python, see https://github.com/davidhalter/jedi-vim/issues/870

0.13.2 (2018-12-15)
+++++++++++++++++++

- Fixed a bug that led to Jedi spawning a lot of subprocesses.

0.13.1 (2018-10-02)
+++++++++++++++++++

- Bugfixes, because tensorflow completions were still slow.

0.13.0 (2018-10-02)
+++++++++++++++++++

- A small release. Some bug fixes.
- Remove Python 3.3 support. Python 3.3 support has been dropped by the Python
  foundation.
- Default environments are now using the same Python version as the Python
  process. In 0.12.x, we used to load the latest Python version on the system.
- Added ``include_builtins`` as a parameter to usages.
- ``goto_assignments`` has a new ``follow_builtin_imports`` parameter that
  changes the previous behavior slightly.

0.12.1 (2018-06-30)
+++++++++++++++++++

- This release forces you to upgrade parso. If you don't, nothing will work
  anymore. Otherwise changes should be limited to bug fixes. Unfortunately Jedi
  still uses a few internals of parso that make it hard to keep compatibility
  over multiple releases. Parso >=0.3.0 is going to be needed.

0.12.0 (2018-04-15)
+++++++++++++++++++

- Virtualenv/Environment support
- F-String Completion/Goto Support
- Cannot crash with segfaults anymore
- Cleaned up import logic
- Understand async/await and autocomplete it (including async generators)
- Better namespace completions
- Passing tests for Windows (including CI for Windows)
- Remove Python 2.6 support
2020-05-18 08:35:13 +00:00
rillig
72dd7de20e editors/zim: clean up duplicate paths in SUBST_FILES 2020-05-18 05:12:51 +00:00
rillig
a9185d549c editors/zim: remove nonexistent file from SUBST block 2020-05-16 11:57:07 +00:00
joerg
c8d836431f Resolve various template matching issues when building with clang and
don't require relaxed instanciation.
2020-05-14 19:06:55 +00:00
joerg
85b6e97a52 Don't define __cplusplus, that's the job of the compiler. 2020-05-14 19:05:49 +00:00
joerg
8ba034bddb Don't order pointers relative to 0. 2020-05-14 19:05:27 +00:00
adam
7d4b705c63 revbump after boost update 2020-05-06 14:04:05 +00:00
pin
dba9a5ccdf editors/featherpad: Update to 0.14.1
ChangeLog:
V0.14.1
---------
 -Fixed a miscalculation in highlighting of multiline CSS values.
2020-05-06 07:40:37 +00:00
nia
01d16401c7 xournalpp: Missing patch. 2020-05-04 11:04:07 +00:00
morr
c9a831a8f8 Update vim to version 8.2.0683.
Changelog:
8.2.0304  terminal test if failing on some systems
8.2.0305  relativenumber test fails on some systems
8.2.0306  Vim9: :substitute(pat(repl does not work in Vim9 script
8.2.0307  Python 3 vim.eval not well tested
8.2.0308  'showbreak' does not work for a very long line
8.2.0309  window-local values have confusing name
8.2.0310  autocmd test fails on a slow system
8.2.0311  Vim9: insufficient script tests
8.2.0312  Vim9: insufficient script tests
8.2.0313  Vim9: insufficient script tests
8.2.0314  short name not set for terminal buffer
8.2.0315  build failure on HP-UX system
8.2.0316  ex_getln.c code has insufficient test coverage
8.2.0317  MSVC: _CRT_SECURE_NO_DEPRECATE not defined on DEBUG build
8.2.0318  Vim9: types not sufficiently tested
8.2.0319  file missing in distribution, comments outdated
8.2.0320  no Haiku support
8.2.0321  Vim9: ":execute" does not work yet
8.2.0322  Vim9: error checks not tested
8.2.0323  Vim9: calling a function that is defined later is slow
8.2.0324  text property not updated correctly when inserting/deleting
8.2.0325  ex_getln.c code not covered by tests
8.2.0326  compiler warning for using uninitialized variable
8.2.0327  crash when opening and closing two popup terminal windows
8.2.0328  no redraw when leaving term-normal mode in popup terminal
8.2.0329  popup filter converts 0x80 bytes
8.2.0330  build error with popup window but without terminal
8.2.0331  internal error when using test_void() and test_unknown()
8.2.0332  some code in ex_getln.c not covered by tests
8.2.0333  terminal in popup test is flaky
8.2.0334  abort called when using test_void()
8.2.0335  no completion for :disassemble
8.2.0336  Vim9: insufficient test coverage for compiling
8.2.0337  build fails on a few systems
8.2.0338  build failure without the channel feature
8.2.0339  Vim9: function return type may depend on arguments
8.2.0340  Vim9: function and partial types not tested
8.2.0341  using ":for" in Vim9 script gives an error
8.2.0342  some code in ex_getln.c not covered by tests
8.2.0343  Vim9: using wrong instruction, limited test coverage
8.2.0344  ":def" not skipped properly
8.2.0345  compiler warning when building without the float feature
8.2.0346  Vim9: finding common list type not tested
8.2.0347  various code not covered by tests
8.2.0348  Vim9: not all code tested
8.2.0349  Vim9: constant expression not well tested
8.2.0350  Vim9: expression tests don't use recognized constants
8.2.0351  terminal in popup test is still a bit flaky
8.2.0352  FreeBSD: test for sourcing utf-8 is skipped
8.2.0353  Vim9: while loop not tested
8.2.0354  Python 3.9 does not define _Py_DEC_REFTOTAL
8.2.0355  Vim9: str_val is confusing, it's a number
8.2.0356  MS-Windows: feedkeys() with VIMDLL cannot handle CSI
8.2.0357  cannot delete a text property matching both id and type
8.2.0358  insufficient testing for indent.c
8.2.0359  popup_atcursor() may hang
8.2.0360  yaml files are only recognized by the file extension
8.2.0361  internal error when using "0" for a callback
8.2.0362  MS-Windows: channel test fails if grep is not available
8.2.0363  some Normal mode commands not tested
8.2.0364  printf test failing on Haiku
8.2.0365  tag kind can't be a multi-byte character
8.2.0366  hardcopy command not tested enough
8.2.0367  can use :pedit in a popup window
8.2.0368  Vim9: import that redefines local variable does not fail
8.2.0369  various Normal mode commands not fully tested
8.2.0370  the typebuf_was_filled flag is sometimes not reset
8.2.0371  crash with combination of terminal popup and autocmd
8.2.0372  prop_find() may not find text property at start of the line
8.2.0373  type of term_sendkeys() is unknown
8.2.0374  using wrong printf directive for jump location
8.2.0375  Coverity warning for not using return value
8.2.0376  nasty callback test fails on some systems
8.2.0377  no CI test for a big-endian system
8.2.0378  prop_find() does not find all props
8.2.0379  gcc warns for ambiguous else
8.2.0380  tiny popup when creating a terminal popup without minwidth
8.2.0381  using freed memory with :lvimgrep and autocommand
8.2.0382  some tests fail when run under valgrind
8.2.0383  wrong feature check causes test not to be run
8.2.0384  Travis CI has warnings
8.2.0385  menu functionality insufficiently tested
8.2.0386  part from unfinished patch got included
8.2.0387  error for possible NULL argument to qsort()
8.2.0388  printmbcharset option not tested
8.2.0389  delayed redraw when shifting text from Insert mode
8.2.0390  terminal postponed scrollback test is flaky
8.2.0391  CI test coverage dropped
8.2.0392  Coverity warns for using array index out of range
8.2.0393  Coverity warns for not using return value
8.2.0394  Coverity complains about using NULL pointer
8.2.0395  build fails with FEAT_EVAL but without FEAT_MENU
8.2.0396  cmdexpand.c insufficiently tested
8.2.0397  delayed screen update when using undo from Insert mode
8.2.0398  profile test fails when two functions take same time
8.2.0399  various memory leaks
8.2.0400  not all tests using a terminal are in the list of flaky tests
8.2.0401  not enough test coverage for evalvars.c
8.2.0402  setting local instead of global flag
8.2.0403  when 'buftype' is "nofile" there is no overwrite check
8.2.0404  writefile() error does not give a hint
8.2.0405  MSVC: build fails with some combination of features
8.2.0406  FileReadCmd event not well tested
8.2.0407  no early check if :find and :sfind have an argument
8.2.0408  delete() commented out for testing
8.2.0409  search test leaves file behind
8.2.0410  channel test fails too often on slow Mac
8.2.0411  Mac: breakcheck is using a value from the stone ages
8.2.0412  MS-Windows: cannot use vimtutor from the start menu
8.2.0413  buffer menu does not handle special buffers properly
8.2.0414  channel connect_waittime() test is flaky
8.2.0415  bsdl filetype is not detected
8.2.0416  test leaves file behind
8.2.0417  Travis CI config can be improved
8.2.0418  code in eval.c not sufficiently covered by tests
8.2.0419  various memory leaks in Vim9 script code
8.2.0420  Vim9: cannot interrupt a loop with CTRL-C
8.2.0421  interrupting with CTRL-C does not always work
8.2.0422  crash when passing popup window to win_splitmove()
8.2.0423  in some environments a few tests are expected to fail
8.2.0424  checking for wrong return value
8.2.0425  code for modeless selection not sufficiently tested
8.2.0426  some errors were not tested for
8.2.0427  it is not possible to check for a typo in a feature name
8.2.0428  buffer name may leak
8.2.0429  no warning when test checks for option that never exists
8.2.0430  window creation failure not properly tested
8.2.0431  some compilers don't support using \e for Esc
8.2.0432  a few tests fail in a huge terminal
8.2.0433  INT signal not properly tested
8.2.0434  MS-Windows with VTP: Normal color not working
8.2.0435  channel contents might be freed twice
8.2.0436  no warnings for incorrect printf arguments
8.2.0437  MS-Windows installer contains old stuff
8.2.0438  terminal noblock test is very flaky on BSD
8.2.0439  :disassemble has minor flaws
8.2.0440  terminal noblock test is still very flaky on BSD
8.2.0441  terminal noblock test is still failing on BSD
8.2.0442  channel contents might be used after being freed
8.2.0443  clipboard code is spread out
8.2.0444  swap file test fails on some systems
8.2.0445  png and xpm files not in MS-Windows zip file
8.2.0446  listener with undo of deleting all lines not tested
8.2.0447  terminal scroll tests fails on some systems
8.2.0448  various functions not properly tested
8.2.0449  Vim9: crash if return type is invalid
8.2.0450  not enough testing for restricted mode and function calls
8.2.0451  Win32: double-width character displayed incorrectly
8.2.0452  channel_parse_messages() fails when called recursively
8.2.0453  trailing space in job_start() command causes empty argument
8.2.0454  some tests fail when the system is slow
8.2.0455  cannot set the highlight group for a specific terminal
8.2.0456  Test_confirm_cmd is flaky
8.2.0457  Test_quotestar() often fails when run under valgrind
8.2.0458  missing feature check in test function
8.2.0459  cannot check if a function name is correct
8.2.0460  build failure because of wrong feature name
8.2.0461  confirm test fails on amd64 system
8.2.0462  previewwindow test fails on some systems
8.2.0463  build error without float and channel feature
8.2.0464  typos and other small problems
8.2.0465  Vim9: dead code and wrong return type
8.2.0466  not parsing messages recursively breaks the govim plugin
8.2.0467  Vim9: some errors are not tested
8.2.0468  GUI: pixel dust with some fonts and characters
8.2.0469  Vim9: no error for missing ] after list
8.2.0470  Test_confirm_cmd_cancel() can fail on a slow system
8.2.0471  missing change to compile_list()
8.2.0472  terminal highlight name is set twice, leaking memory
8.2.0473  variables declared in an outer scope
8.2.0474  cannot use :write when using a plugin with BufWriteCmd
8.2.0475  channel out_cb test still fails sometimes on Mac
8.2.0476  terminal nasty callback test fails sometimes
8.2.0477  Vim9: error messages not tested
8.2.0478  new buffers are not added to the Buffers menu
8.2.0479  unloading shared libraries on exit has no purpose
8.2.0480  Vim9: some code is not tested
8.2.0481  Travis is still using trusty
8.2.0482  channel and sandbox code not sufficiently tested
8.2.0483  Vim9: "let x = x + 1" does not give an error
8.2.0484  Vim9: some error messages not tested
8.2.0485  Vim9 script test fails
8.2.0486  Vim9: some code and error messages not tested
8.2.0487  Vim9: compiling not sufficiently tested
8.2.0488  Vim9: compiling can break when using a lambda inside :def
8.2.0489  Vim9: memory leaks
8.2.0490  Win32: VTP doesn't respect 'restorescreen'
8.2.0491  cannot recognize a <script> mapping using maparg()
8.2.0492  Vim9: some error messages not tested
8.2.0493  Vim9: some error messages not tested
8.2.0494  Vim9: asan error
8.2.0495  Vim9: some code not tested
8.2.0496  Vim9: disassemble test fails
8.2.0497  too verbose output from the asan build in Travis
8.2.0498  Coverity complains about uninitialized field
8.2.0499  calling a lambda is slower than evaluating a string
8.2.0500  using the same loop in many places
8.2.0501  Vim9: script test fails when channel feature is missing
8.2.0502  Vim9: some code is not tested
8.2.0503  Vim9: some code is not tested
8.2.0504  Vim9: leaking scope memory when compilation fails
8.2.0505  term_getty() not sufficiently tested
8.2.0506  Coverity complains about ignoring return value
8.2.0507  getbufvar() may get the wrong dictionary
8.2.0508  Vim9: func and partial types not done yet
8.2.0509  various code is not properly tested.
8.2.0510  Coverity complains about using uninitialized variable
8.2.0511  Cscope code not fully tested
8.2.0512  Vim9: no optional arguments in func type
8.2.0513  reading past allocated memory when using varargs
8.2.0514  several global functions are used in only one file
8.2.0515  some compilers cannot add to "void *"
8.2.0516  client-server code is spread out
8.2.0517  Vim9: cannot separate "func" and "func(): void"
8.2.0518  a terminal falls back to setting $TERM to "xterm"
8.2.0519  Vim9: return type not properly checked
8.2.0520  tests are not listed in sorted order
8.2.0521  crash when reading a blob fails
8.2.0522  several errors are not tested for
8.2.0523  loops are repeated
8.2.0524  Win32: searching for file matches is slow
8.2.0525  Win32: typo in assignment and misplaced paren
8.2.0526  Gcc 9 complains about empty statement
8.2.0527  Vim9: function types insufficiently tested
8.2.0528  Vim9: function arguments insufficiently tested
8.2.0529  Vim9: function argument with default not checked
8.2.0530  test crashes on s390
8.2.0531  various errors not tested
8.2.0532  cannot use simplify() as a method
8.2.0533  tests using term_wait() can still be flaky
8.2.0534  client-server test fails under valgrind
8.2.0535  regexp patterns not fully tested
8.2.0536  Vim9: some compilation code not tested
8.2.0537  Vim9: no check for sandbox when setting v:var
8.2.0538  Vim9: VAR_PARTIAL is not used during compilation
8.2.0539  comparing two NULL list fails
8.2.0540  regexp and other code not tested
8.2.0541  Travis CI does not give compiler warnings
8.2.0542  no test for E386
8.2.0543  Vim9: function with varargs does not work properly
8.2.0544  memory leak in search test
8.2.0545  unused arguments ignored in non-standard way
8.2.0546  Vim9: varargs implementation is inefficient
8.2.0547  Win32: restoring screen not always done right
8.2.0548  Vim9: not all possible func type errors tested
8.2.0549  user systemd files not recognized
8.2.0550  some changes in the libvterm upstream code
8.2.0551  not all code for options is tested
8.2.0552  Vim9: some errors not covered by tests
8.2.0553  error for unused argument
8.2.0554  the GUI doesn't set t_Co
8.2.0555  Vim9: line continuation is not always needed
8.2.0556  Vim9: memory leak when finding common type
8.2.0557  no IPv6 support for channels
8.2.0558  Vim9: dict code not covered by tests
8.2.0559  clearing a struct is verbose
8.2.0560  compiler warning in tiny build
8.2.0561  Vim9: cannot split function call in multiple lines
8.2.0562  Vim9: cannot split an expression into multiple lines
8.2.0563  Vim9: cannot split a function line
8.2.0564  Vim9: calling a def function from non-vim9 may fail
8.2.0565  Vim9: tests contain superfluous line continuation
8.2.0566  Vim9: variable can be used uninitialized
8.2.0567  Vim9: cannot put comments halfway expressions
8.2.0568  the man filetype plugin overwrites the unnamed register
8.2.0569  build failure with tiny version
8.2.0570  Vim9: no error when omitting type from argument
8.2.0571  double free when passing invalid argument to job_start()
8.2.0572  using two lines for free and reset
8.2.0573  using :version twice leaks memory
8.2.0574  ipv6 feature not shown in :version output
8.2.0575  :digraph! not tested
8.2.0576  some errors are not covered by tests
8.2.0577  not all modifiers supported for :options
8.2.0578  heredoc for interfaces does not support "trim"
8.2.0579  Coverity warns for unused value
8.2.0580  window size wrong if 'ea' is off and 'splitright' is on
8.2.0581  Win32 console: the cursor position is always top-left
8.2.0582  color ramp test does not show text colors
8.2.0583  Vim9: # comment not recognized in :def function
8.2.0584  viminfo file uses obsolete function file_readable()
8.2.0585  Vim9: # comment not recognized after :vim9script
8.2.0586  Vim9: # comment not sufficiently tested
8.2.0587  compiler warning for unused variable
8.2.0588  Putty does not use "sgr" 'ttymouse' by default
8.2.0589  .bsd file type not recognized
8.2.0590  no 'backspace' value allows ignoring the insertion point
8.2.0591  MS-Windows: should always support IPv6
8.2.0592  MS-Windows with VTP: cursor is not made invisible
8.2.0593  finding a user command is not optimal
8.2.0594  MS-Windows: cannot build with WINVER set to 0x0501
8.2.0595  Vim9: not all commands using ends_excmd() tested
8.2.0596  crash in test49
8.2.0597  test_eval is old style
8.2.0598  test_eval_stuff fails in normal terminal
8.2.0599  Netbeans interface insufficiently tested
8.2.0600  Vim9: cannot read or write w:, t: and b: variables
8.2.0601  Vim9: :unlet is not compiled
8.2.0602  :unlet $VAR does not work properly
8.2.0603  configure does not detect moonjit
8.2.0604  :startinsert in a terminal window used later
8.2.0605  Vim9: cannot unlet an environment variable
8.2.0606  several syntax HL errors not checked
8.2.0607  gcc warns for using uninitialized variable
8.2.0608  warning from clang when building message test
8.2.0609  configure does not detect moonjit correctly
8.2.0610  some tests are still old style
8.2.0611  Vim9: no check for space before #comment
8.2.0612  Vim9: no check for space before #comment
8.2.0613  Vim9: no check for space before #comment
8.2.0614  get ml_get error when deleting a line in 'completefunc'
8.2.0615  regexp benchmark stest is old style
8.2.0616  build error when disabling the diff feature
8.2.0617  new error check triggers in Swedish menu
8.2.0618  echoing a null list results in no output
8.2.0619  null dict is not handled like an empty dict
8.2.0620  error in menu translations
8.2.0621  after running tests asan files may remain
8.2.0622  Haiku: GUI does not compile
8.2.0623  typo in test comment
8.2.0624  Vim9: no check for space before #comment
8.2.0625  Vim9: confusing error when calling unknown function
8.2.0626  Vim9: wrong syntax of function in Vim9 script
8.2.0627  Vim9: error message does not work
8.2.0628  error in menu translations
8.2.0629  setting a boolean option to v:false does not work
8.2.0630  "make tags" does not cover Haiku GUI file
8.2.0631  Haiku file formatted with wrong tabstop
8.2.0632  crash when using Haiku
8.2.0633  crash when using null partial in filter()
8.2.0634  crash with null partial and blob
8.2.0635  when using 256 colors DarkYellow does not show expected color
8.2.0636  :messages does not show the maintainer when $LANG is unset
8.2.0637  incsearch highlighting does not work for ":sort!"
8.2.0638  MS-Windows: messages test fails
8.2.0639  MS-Windows: messages test still fails
8.2.0640  Vim9: expanding `=expr` does not work
8.2.0641  Vim9: `=expr` not expanded in :hardcopy and syn-include
8.2.0642  Vim9: using invalid index
8.2.0643  terminal uses brown instead of dark yellow
8.2.0644  insufficient testing for invalid function arguments
8.2.0645  MS-Windows terminal: CTRL-C does not get to child job
8.2.0646  t_Co uses the value of $COLORS in the GUI
8.2.0647  MS-Windows: repeat count for events was not used
8.2.0648  semicolon search does not work in first line
8.2.0649  undo problem when an InsertLeave autocommand resets undo
8.2.0650  Vim9: script function can be deleted
8.2.0651  old style benchmark test still in list of distributed files
8.2.0652  compiler warning for char conversion
8.2.0653  using uninitialized pointer
8.2.0654  building with Python fails
8.2.0655  search code not sufficiently tested
8.2.0656  MS-Windows: redrawing right screen edge may not be needed
8.2.0657  Vim9: no check if called variable is a FuncRef
8.2.0658  HP-UX build fails when setenv() is not defined
8.2.0659  Vim9: no test for equal func type
8.2.0660  the search.c file is a bit big
8.2.0661  eval test is still old style
8.2.0662  cannot use input() in a channel callback
8.2.0663  not all systemd temp files are recognized
8.2.0664  included undesired changes in Makefile
8.2.0665  wrongly assuming Python executable is called "python"
8.2.0666  Ruby test fails on MS-Windows
8.2.0667  cannot install Haiku version from source
8.2.0668  compiler warning for int/size_t usage
8.2.0669  MS-Windows: display in VTP is a bit slow
8.2.0670  cannot change window when evaluating 'completefunc'
8.2.0671  Haiku: compiler warnings
8.2.0672  heredoc in scripts does not accept lower case marker
8.2.0673  cannot build Haiku in shadow directory
8.2.0674  some source files are too big
8.2.0675  Vim9: no support for closures
8.2.0676  pattern in list of distributed files does not match
8.2.0677  Vim9: no support for closures
8.2.0678  rare crash for popup menu
8.2.0679  Vim9: incomplete support for closures
8.2.0680  PTYGROUP and PTYMODE are unused
8.2.0681  pattern for 'hlsearch' highlighting may leak
8.2.0682  Vim9: parsing function argument type can get stuck
8.2.0683  Vim9: parsing type does not always work
2020-05-03 13:14:21 +00:00
tkusumi
186fee78cd editors/fileobj: Update to v0.7.97
ChangeLog:
- Minor fixes and cleanups
- Add --list_color option
- (Other minor changes that don't affect pkgsrc contents)
2020-04-28 15:25:57 +00:00
rillig
3a05f6ec8b editors/mg: honor INSTALL_UNSTRIPPED 2020-04-27 04:38:46 +00:00
rillig
bebc23e2db editors/mg: fix prefix 2020-04-27 04:22:22 +00:00
nia
a3450bf61c xournalpp: Update to 1.0.18. Patch from Yorick Hardy.
## 1.0.18

* Fixed a crash occurring when recent file entries are invalid (#1730, thanks to
  @iczero)
* Fixed translations not being built correctly, causing packaging issues (#1596)
* Fixed background PDF outlines not being saved in exported PDF (only available
  when compiled with Cairo 1.16 or newer)
* Fixed a deadlock occurring when a second PDF with an outline is opened (#1582).
* Fixed the settings file being written to when it is parsed (#1074, thanks to
  @Guldoman)
* Fixed dark mode icons not loading properly (#1767, thanks to @badshah400)
* Added missing dark mode icons (#1765, thanks to @badshah400)
* Fixed crash in `Export As ...` on some page range options (#1790)
* Fixed crash caused by custom colors in toolbar being "too close" (#1659)
* Windows: Fixed the LaTeX tool always failing to find kpsewhich (#1738). Note
  that to make this work properly, a console window will now flash briefly
  before Xournal++ starts.
2020-04-26 14:06:32 +00:00
pin
e9214f3122 /editors/featherpad: Update to 0.14.0
Changelog picked from https://github.com/tsujan/FeatherPad/releases:

V0.14.0

This release is mostly about speeding up syntax highlighting, especially for
big documents. In some cases (e.g., with HTML, XML, CSS, Bash or Perl),
the job is done multiple times faster.

Also:
- A bug is fixed in handling relative file paths that contain no slash.
- JavaScript template literals (back quotes) are supported.
- CSS syntax highlighting is fixed and improved.
- Small fixes.
2020-04-25 15:13:05 +00:00
dsainty
055cfb1d02 Pull in patch from upstream to fix a build failure under MacOS X.
Fix unexec failure on macOS 10.15.4
* src/unexmacosx.c (unexec_regions_merge): Align region start addresses to
page boundaries and then merge regions.

http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=888ffd960c06d56a409a7ff15b1d930d25c56089

Bump PKGREVISION of emacs26 and emacs26-nox11.
2020-04-25 05:56:36 +00:00
pin
adab9305f8 editors/feathernotes
Update maintainer e-mail
2020-04-22 08:24:45 +00:00
pin
7ffcbb93c1 editors/featherpad
Update maintainer e-mail
2020-04-22 08:23:13 +00:00
pin
2d4708cc3a update editors/focuswriter to 1.7.6
Changes in version 1.7.6

-FIXED: Did not load locales with underscores
-FIXED: Compile failure due to missing header
-Translation updates: Slovenian, Swedish, Turkish
2020-04-22 08:18:28 +00:00
joerg
e0c60f54da Actually declare msgfmt as tool in use. 2020-04-20 00:32:56 +00:00
ryoon
29ecddb392 OmegaT: Update to 5.2.0
Changelog:
OmegaT 5.2.0 brings 3 enhancements, 6 bug fixes, and 7 localization updates vs 5.1.0.

The TMX 'tuid' attribute is now supported as a segment ID for matching purposes. It is also included in the exported level-2 TMX.

Matching accuracy for tags in level-2 TMXs is improved.

Bugs in the following features were fixed:

    Saving LanguageTool settings
    The Moodle PHP filter
    MyMemory machine translation

The Brazilian Portuguese, Dutch, French, Italian, Simplified Chinese, and Turkmen localizations were updated. A new Finnish localization was added.

The OmegaT Project always welcomes developers, localizers and users to contribute their experience, knowledge and insights to the software we release.


OmegaT 5.1.0 brings the Mac and Windows packaging fixes from 4.3.1, plus 2 enhancements.

The Mac distribution has fixes for macOS 10.15 "Catalina". The Windows version has fixes for the installer. See here for details:
https://sourceforge.net/p/omegat/news/2019/11/omegat-standard-version-431-released/

You can now specify the server to connect to in the Apertium MT connector.

In the Glossary pane, tooltips on glossary entries reveal the files they originated from.

The Belarusian, Czech, Dutch, Italian, Russian, Turkish, and Ukranian localisations were updated.
2020-04-17 11:05:44 +00:00
joerg
55122710d6 Installs node script, so depend on it. Bump revision 2020-04-15 22:52:45 +00:00
wiz
90f664a809 editor/Makefile: + fileobj 2020-04-15 16:06:21 +00:00
wiz
a8843d119c editors/fileobj: import fileobj-0.7.96
Curses based hex editor with vi interface.

Based on the package by Tomohiro Kusumi in PR 55180.
2020-04-15 16:06:07 +00:00
joerg
e097da870f Don't use inline when the code can't deal with inlining not happening. 2020-04-12 19:49:18 +00:00
schwarz
768a202d1a updated editors/nano to 4.9.2 2020-04-12 14:41:14 +00:00
adam
24daafa112 Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
wiz
6c7358ab14 bvi: include termcap and, on NetBSD, link against libtermcap for tgetstr() 2020-04-07 09:22:36 +00:00
pin
9de94d2c53 Import focuswriter-1.7.5 as editors/focuswriter
FocusWriter is a simple, distraction-free word processor. It utilizes a
hide-away interface that you access by moving your mouse to the edges of
the screen, allowing the program to have a familiar look and feel to it
while still getting out of the way so that you can immerse yourself in
your work.

FocusWriter allows you to customize your environment by creating themes
that control the font, colors, and background image to add ambiance. It
also features on-the-fly updating statistics, daily goals, multiple open
documents, spell-checking, and much more.

Additionally, when you open the program your current work in progress will
automatically load and position you where you last left off so that you
can immediately jump back in.
2020-04-06 11:41:05 +00:00
pin
90ba4f79bc FocusWriter is a simple, distraction-free word processor. It utilizes a
hide-away interface that you access by moving your mouse to the edges of
the screen, allowing the program to have a familiar look and feel to it
while still getting out of the way so that you can immerse yourself in
your work.

FocusWriter allows you to customize your environment by creating themes
that control the font, colors, and background image to add ambiance. It
also features on-the-fly updating statistics, daily goals, multiple open
documents, spell-checking, and much more.

Additionally, when you open the program your current work in progress will
automatically load and position you where you last left off so that you
can immediately jump back in.
2020-04-06 08:28:38 +00:00
gutteridge
5ed492cef4 retext: update to 7.1.0
## ReText 7.1.0 (2020-04-04)

* General improvements:
    - New files are now opened in new tabs by default, not new windows
      (contributed by Daniele Scasciafratte in #476). This can be disabled
      using `openFilesInExistingWindow` configuration option.
    - Preferences dialog improvements: it now uses tabs; added a link to
      configuration file (contributed by Xavier Gouchet in #327); clicking on
      checkbox label now changes checkbox state.
    - Return key now automatically continues quote blocks and ordered lists
      (contributed by Xavier Gouchet in #298 and #326).
    - It is now possible to close the current tab with Ctrl+W (contributed by
      Xavier Gouchet in #283).
    - Ctrl+wheel on editor now increases/decreases font size (contributed by
      Xavier Gouchet in #328). Ctrl+wheel in preview zooms in/out (#400).
    - Alt+Up/Down arrow now moves the current line up/down (contributed by
      Xavier Gouchet in #337).
    - Added “Jump to Line” feature, with Ctrl+G shortcut (contributed by
      Xavier Gouchet in #382).
    - Table mode improvements (contributed by Maurice van der Pot).
    - “Paste Image” moved to a separate action, with Ctrl+Shift+V shortcut.
    - Added “Insert table” dialog (contributed by Changhee Kim in #431).
    - Clicking a link to nonexistent file now prompts the user to create it
      (contributed by red-kite in #436 and Xavier Gouchet in #459).
    - Added a menu action to insert images from filesystem (contributed by
      Daniel Venturini in #500).
* New options added:
    - `relativeLineNumbers` — count line numbers as relative to the current
      line (contributed by Xavier Gouchet in #270).
    - `documentStatsEnabled` — show text statistics in the lower left corner
      of the editor (contributed by Xavier Gouchet in #268 and #338).
    - `rightMarginWrap` — soft-wrap text at user specified margin line
      (contributed by Oğuzhan Öğreden in #313).
    - `paperSize` — set the default paper size for print or PDF export
      (contributed by mray271 in #335).
    - `recentDocumentsCount` — number of recent files to show in the menu
      (contributed by red-kite in #407).
    - `windowTitleFullPath` — show full path in window title (contributed by
      red-kite in #429).
    - `defaultPreviewState` — mode for new tabs: `editor`, `normal-preview` or
      `live-preview` (contributed by red-kite in #435). It replaces the old
      `livePreviewByDefault` option.
    - `wideCursor` — make cursor as wide as characters.
* Bugs fixed:
    - Issue #252 — Limit max-width of images to 100%.
    - Issue #267 — setup.py now installs retext.svg icon.
    - Issues #281, #469 — Autofill current filename for PDF export and Save As
      dialogs (the Save As part contributed by Xavier Gouchet in #474).
    - Issue #291 — Make sure search result does not overlap with stats/info
      areas.
    - Issue #301 — Made the Markdown include extension working.
    - PR #315 — Fixed handling multi-line rows in reStructuredText tables in
      table mode (contributed by R1dO).
    - Issue #346 — Ctrl+F now focuses the search field, not closes the search
      bar. To close the search bar, now the Escape key can be used.
    - Issue #378 — Ensure that cursor is visible after resizes.
    - Issue #397 — Only check whether .css file exists on initial page load.
    - Issue #399 — Try to load libGL.so.1 before creating QApplication.
    - Issue #408 — Fix printing with dark themes.
    - Issue #409 — Make the WebKit renderer use disk cache.
    - PRs #411, #417, #426, #494 — AppData file improvements (contributed by
      scx).
    - Issue #441 — Files reloading no longer triggers tab change.
    - Issue #445 — Implemented PDF export for the WebEngine renderer.
    - Issue #451 — Make the highlighter not break the pymdownx.highlight
      extension.
    - Issues #452, #497, #499 — Prevent pip from building wheels, as that
      results in broken desktop files.
    - Issues #467, #488 — WebEngine renderer broken with new Qt versions.
    - Issue #468 — Include the stylesheet in exported HTML.
    - Issue #479 — Display `*` in tab title when document is modified and
      unsaved (contributed by Xavier Gouchet in #480).
    - Issue #487 — Added a workaround for missing icons in Ubuntu 19.10 Yaru
      theme.
    - PR #496 — Enable HiDPI icons (contributed by Guo Yunhe).
* Translations updated:
    - Chinese (China) (contributed by liulitchi and the Chinese team).
    - Czech (contributed by David Kolibáč).
    - Danish (contributed by scootergrisen).
    - Dutch (contributed by Heimen Stoffels).
    - Finnish (contributed by elguitar).
    - German (contributed by Oliver A. Gubler in #370, Carsten Beck).
    - Italian (contributed by Alessandro Menti).
    - Korean (contributed by MukKim in #415).
    - Portuguese (Brazil) (contributed by EdemarSantos).
    - Portuguese (European) (contributed by Ricardo Simões in #278).
    - Russian (contributed by Vladislav Glinsky, Виктор Ерухин).
    - Serbian (contributed by Slobodan Simić).
    - Spanish (contributed by Félix Fischer, Fito JB).
    - Swedish (contributed by Philip Andersen).
    - Ukrainian (contributed by Vladislav Glinsky).
2020-04-06 00:08:07 +00:00
bsiegert
7da33feba7 Update all MATE packages (except system-monitor) to 1.24.0.
This release contains plenty of new features, bug-fixes, and general
improvements. Some of the most important highlights include:

  * We did it again, the MATE desktop environment is easier to use than before,
    once the user starts the session. Do you want to hide applications startup?
    Now you can set which applications to show on startup.
  * Engrampa now has support for a handful of extra formats, as well as fixed
    support for passwords and unicode characters in some of them.
  * Eye of MATE now has support for Wayland and we’ve added support for
    embedded color profiles.
      * The thumbnail generation has been reworked and fixed in several places.
      * Added support for webp files.
  * Our window manager, marco, has gotten quite a few changes:
      * We’ve brought a bunch of window decorations from the past to feed
        your nostalgia.
      * Finally added invisible resize borders. No more struggling to find a
        border to grab with your mouse!
      * All window controls (you know, the min, max, close buttons) are now
        rendered in HiDPI.
      * The Alt+Tab and Workspace Switcher popups have been entirely reworked.
        Now they render in beautiful OSD style, are more configurable, and can
        respond to keyboard arrows.
      * Tiling windows with the keyboard now allows you to cycle through
        different window sizes. You no longer need to feel constrained by only
        half of your screen.
  * The System Monitor panel applet now has support for NVMe drives.
  * Calculator now supports using either “pi” or “π”.
      * Scientific notation has been improved.
      * Some fixes for supporting pre-defined physical constants.
  * The Control Center now displays its icons correctly on HiDPI displays.
  * A brand new Time And Date Manager app has been added.
  * The Mouse app now supports acceleration profiles.
  * The Preferred Applications app has been improved for accessibility, as well
    as better support for integration with IM clients.
  * The Indicator Applet has slightly better interaction with
    oddly-sized icons.
  * Speaking of icons, the network manager applet icons in our own themes have
    been entirely redesigned and can now be enjoyed on HiDPI displays.
  * If you’re the type of person that does not like to be disturbed when busy,
    or giving a presentation, or watching a movie, you’ll be happy to know that
    the notification daemon now supports a Do-Not-Disturb mode.
  * The MATE Panel had several bugs that caused crashes in the past when
    changing layouts. Those are now fixed!
      * Support for Wayland compatibility has improved considerably.
      * Status icons (a.k.a. notification area, or system tray) have support
        for HiDPI displays.
      * Wanda the Fish got a make-over and now you can enjoy her in full
        HiDPI glory.
      * The window list applet now supports window thumbnails on hover.
      * Various accessibility improvements throughout the panel and its
        core applets.
  * If your system doesn’t, uh, support systemd you might be interested in
    knowing that we’ve added support for elogind to both the MATE Screensaver
    and the MATE Session.
  * We’ve also added a brand new MATE Disk Image Mounter utility.
  * Mozo, the menu editor, now supports Undo and Redo actions.
  * Pluma plugins have now fully switched to Python 3.
  * Pluma no longer has to envy anything from other complex editors, since it
    can now show the formatting marks.
  * i18n: All applications have been migrated from intltools to gettext.
2020-04-05 16:05:39 +00:00
wiz
3df634c36b *: recursive bump for poppler-0.87 2020-04-03 10:30:30 +00:00
schwarz
fbe5699a31 updated editors/nano to 4.9 2020-04-01 20:30:53 +00:00
joerg
b36df3e632 Force pkgsrc msgfmt. Fix socket vs <functional> conflict. 2020-03-30 19:31:19 +00:00
joerg
78a6b16a8b Resolve conflicting type resolution for std::abs. 2020-03-27 20:58:12 +00:00
joerg
2590b80828 Deal with kqueue changes in NetBSD. 2020-03-26 21:53:07 +00:00
nia
f3867267f6 dasher: Needs autopoint 2020-03-26 12:20:01 +00:00
nia
fa070636b5 ghex: Needs itstool 2020-03-26 12:19:19 +00:00
nia
7729842dab dhex: Make sure the correct curses library is used 2020-03-26 12:18:17 +00:00
joerg
0c64305ddd Avoid C++11 UDL 2020-03-26 02:36:02 +00:00
nia
6c512ac73f dhex: -The 2020-03-23 20:07:29 +00:00