Commit Graph

172 Commits

Author SHA1 Message Date
Fredrik Fornwall 627c10851a vim: Update from 8.1.2300 to 8.1.2350 2019-11-27 21:23:06 +01:00
Fredrik Fornwall b7fe7b0f3a vim: Update from 8.1.2200 to 8.1.2300 2019-11-21 00:08:16 +01:00
Fredrik Fornwall 64322444f6 vim: Update from 8.1.2150 to 8.1.2200 2019-10-23 11:06:18 +02:00
Leonid Pliushch ceba598dd6 vim, vim-python: update to 8.1.2150 2019-10-18 14:07:47 +03:00
Fredrik Fornwall b169afe903 vim: Update from 8.1.2050 to 8.1.2100 2019-10-06 11:05:43 +02:00
Leonid Pliushch 59ed60d5c0 vim, vim-python: update to 8.1.2050 2019-09-18 15:21:25 +03:00
Leonid Pliushch 75122f6141 vim, vim-python: update to 8.1.2000
%ci:reset-backlog
2019-09-08 02:54:14 +03:00
Leonid Pliushch 51f7a626ad vim: fix subpackage script 2019-08-20 14:50:31 +03:00
Leonid Pliushch 847771aa92 vim, vim-python: update to 8.1.1850 2019-08-20 14:39:36 +03:00
Leonid Pliushch c352216c63 packages: standardize values of several control variables for build.sh
Variables

 TERMUX_PKG_PLATFORM_INDEPENDENT
 TERMUX_DEBUG
 TERMUX_PKG_HAS_DEBUG
 TERMUX_PKG_ESSENTIAL
 TERMUX_SUBPKG_ESSENTIAL
 TERMUX_PKG_NO_STATICSPLIT
 TERMUX_PKG_BUILD_IN_SRC
 TERMUX_PKG_FORCE_CMAKE
 TERMUX_PKG_HOSTBUILD

should not accept arbitrary values for marking them "enabled". Instead
they should accept boolean values which makes them easier to handle and
also makes their meaning clear.

build-package.sh should make decision based on variable's value but not on
whether it is set or empty.

%ci:no-build
2019-08-12 18:49:13 +03:00
Leonid Pliushch 27e89c15f5 alternatives: more editors can be used as alternative for /bin/editor 2019-08-10 22:34:54 +03:00
Leonid Pliushch 2e2f125476 vim, vim-python: add support for dpkg alternatives
Provide $PREFIX/bin/vim as alternative for $PREFIX/bin/editor.
2019-08-10 03:50:47 +03:00
Leonid Pliushch c81d4c8698 add stubs to prevent on-device building packages with dangerous operations in build.sh
%ci:no-build
2019-08-08 16:58:34 +03:00
Fredrik Fornwall fe2edbf43d vim: Update from 8.1.1750 to 8.1.1800 2019-08-06 19:23:03 +02:00
Leonid Pliushch 0c24304196 vim, vim-python: update to 8.1.1750 2019-07-28 01:02:06 +03:00
Fredrik Fornwall 98328665e1 vim: Update from 8.1.1650 to 8.1.1700 2019-07-16 17:07:21 +02:00
Fredrik Fornwall c15ee973b7 vim: Update from 8.1.1600 to 8.1.1650 2019-07-11 10:02:16 +02:00
Fredrik Fornwall 2ab1b6a1ac vim: Update from 8.1.1550 to 8.1.1600 2019-06-26 14:49:03 +02:00
Leonid Pliushch 0fbcdefa6d vim, vim-python: update to 8.1.1550 2019-06-16 18:28:24 +03:00
Leonid Pliushch 337cc7edb1 vim, vim-python: update to 8.1.1500 2019-06-09 14:09:29 +03:00
Leonid Pliushch 302cdfb1f8 vim, vim-python: update to 8.1.1450 2019-06-03 20:50:48 +03:00
Fredrik Fornwall e02722fa35 vim: Update from 8.1.1350 to 8.1.1400 2019-05-28 01:07:02 +02:00
Leonid Pliushch 44c5055ef4 vim, vim-python: update to 8.1.1350 2019-05-19 22:22:25 +03:00
Leonid Pliushch fb9dcccdf4 vim: bump revision again
To remove empty dependency list from vim-runtime.
2019-05-09 22:59:01 +03:00
Leonid Pliushch f67d8a86fe vim, vim-python: bump revision 2019-05-09 22:44:05 +03:00
Fredrik Fornwall d9274b596d vim: Update from 8.1.1200 to 8.1.1300 2019-05-09 10:03:04 +02:00
Leonid Pliushch b98ffcf631 add libiconv to dependencies where needed 2019-05-05 21:29:36 +02:00
Fredrik Fornwall bda02d488f vim: Update from 8.1.1150 to 8.1.1200 2019-04-24 14:28:13 +02:00
Leonid Pliushch 8f4004bfbf Merge branch 'master' into update-vimrc 2019-04-13 18:30:02 +03:00
Leonid Pliushch b598c47df7 vim, vim-python: replace /usr/bin with /data/data/com.termux/files/usr/bin in vimrc files 2019-04-13 18:27:01 +03:00
Leonid Pliushch 9a948e1bf5 vim: bump revision 2019-04-13 18:24:01 +03:00
Fredrik Fornwall 3ab819f01f vim: Update from 8.1.1100 to 8.1.1150 2019-04-11 22:50:01 +02:00
Shayne Holmes 5f630bd495 vim: Fix scroll mappings
The included `vimrc` file sets mappings for <ScrollWheelUp> and
<ScrollWheelDown>, so that scrolling is smooth. Unfortunately,
'compatible' is set by default [0], so the `<>` notation used for those
mappings isn't enabled. Instead of the key `<ScrollWheelUp>` being
mapped, the mapping is actually from the typed string "<ScrollWheelUp>".

[0]: `:help compatible-default` explains that vim will turn the
'compatible' option off when "a user vimrc is found", or under various
other conditions (note that the system-wide vimrc doesn't count [1]),
but even in the case where a user vimrc exists, this system-wide vimrc
is executed before that happens.

[1]: From `:help compatible-default`:

    Note that this does NOT happen when a system-wide vimrc file was
    found.
2019-04-09 15:18:12 -07:00
Shayne Holmes aa0c59c6cf vim: Update sensible.vim 2019-04-09 15:17:54 -07:00
Fredrik Fornwall 3887bd1c42 vim: Update from 8.1.1050 to 8.1.1100 2019-04-03 22:52:34 +02:00
Fredrik Fornwall 16638a4c47 vim: Update from 8.1.1000 to 8.1.1050 2019-03-30 00:18:09 +01:00
Fredrik Fornwall c60ed3f46f vim: Update from 8.1.0950 to 8.1.1000 2019-03-17 19:04:53 +01:00
Leonid Pliushch 530c88676e Merge branch 'master' into vimdiff 2019-03-03 20:46:55 +02:00
Fredrik Fornwall ac0f46ad3e vim: Update from 8.1.0900 to 8.1.0950 2019-02-24 18:22:20 +01:00
Leonid Pliushch c7646d4a61 vim: add 'diffutils' to recommends
Command 'vimdiff' is not working with busybox's 'diff'.
2019-02-20 16:53:13 +02:00
Fredrik Fornwall 6fcfdbc83e vim: Update from 8.1.0850 to 8.1.0900 2019-02-14 00:02:24 +01:00
Wetitpig 5f07ac4eb9 Change permissions 2019-02-09 21:06:31 +02:00
Wetitpig 5f8864c10d Improve formatting of parantheses for functions 2019-02-09 21:06:31 +02:00
Fredrik Fornwall 3d9211fc39 vim: Update from 8.1.0800 to 8.1.0850 2019-02-03 23:04:06 +01:00
Fredrik Fornwall 8ccbce4acd Revision-bump some packages 2019-01-27 15:19:15 +01:00
Fredrik Fornwall 9ede5e52c5 vim: Update from 8.1.0750 to 8.1.0800 2019-01-25 00:44:09 +01:00
Leonid Pliushch 6a3865aa08 fix licenses where possible
Some packages have license set to "custom" and this
should be fixed.
2019-01-21 17:17:53 +02:00
Leonid Pliushch 46d333adba add licenses for more packages 2019-01-21 17:17:53 +02:00
Fredrik Fornwall 49db072cb8 vim: Update from 8.1.0700 to 8.1.0750 2019-01-16 23:00:43 +01:00
Fredrik Fornwall edf56d4834 vim: Update from 8.1.0650 to 8.1.0700 2019-01-11 00:14:21 +01:00