termux-packages
6 years agotexlive: Reshaping termux_step_extract_package to enable moving files to standard...
Henrik Grimler [Wed, 8 Nov 2017 23:11:41 +0000 (00:11 +0100)]
texlive: Reshaping termux_step_extract_package to enable moving files to standard location

patch tlmgr to look for files in the right location. Patch texmf.cnf so that kpathsea finds files in the right location.

6 years agotexlive-bin: remove perl as dependency as it is only required for a few optional...
Henrik Grimler [Sat, 18 Nov 2017 22:03:22 +0000 (23:03 +0100)]
texlive-bin: remove perl as dependency as it is only required for a few optional scripts

6 years agoteckit: add package
Henrik Grimler [Fri, 10 Nov 2017 22:44:07 +0000 (23:44 +0100)]
teckit: add package

Make texlive-bin use system teckit. This makes it possible to build texlive-bin in debug mode (previously failed due to some linking error).

6 years agotexlive: move texmf.cnf from texlive to texlive-bin
Henrik Grimler [Thu, 9 Nov 2017 20:05:24 +0000 (21:05 +0100)]
texlive: move texmf.cnf from texlive to texlive-bin

Some files (like texmf.cnf) are patched/changed when building texlive-bin.
It is therefore better to include them in texlive-bin instead of using the
original files in texlive.

6 years agotexlive: Move files to std locations [WIP]
Henrik Grimler [Mon, 9 Oct 2017 07:31:25 +0000 (09:31 +0200)]
texlive: Move files to std locations [WIP]

6 years agopoppler: revert commit efabca9
Henrik Grimler [Tue, 23 Jan 2018 19:21:55 +0000 (20:21 +0100)]
poppler: revert commit efabca9

Possible thanks to new texlive-bin patches from upstream.
Valgrind no longer gives errors and pdflatex is about twice as fast when
including (some?) pdf images.

6 years agotexlive-bin: use latest poppler patches from upstream
Henrik Grimler [Tue, 23 Jan 2018 09:16:58 +0000 (10:16 +0100)]
texlive-bin: use latest poppler patches from upstream

6 years agoupdate gifsicle v1.91
kuburan [Sat, 27 Jan 2018 04:40:44 +0000 (11:40 +0700)]
update gifsicle v1.91

6 years agozstd: Update from 1.3.2 to 1.3.3
Fredrik Fornwall [Mon, 29 Jan 2018 14:41:21 +0000 (15:41 +0100)]
zstd: Update from 1.3.2 to 1.3.3

6 years agoncdu: Update from 1.12 to 1.13
Fredrik Fornwall [Mon, 29 Jan 2018 12:37:39 +0000 (13:37 +0100)]
ncdu: Update from 1.12 to 1.13

6 years agonano: Update from 2.9.2 to 2.9.3
Fredrik Fornwall [Mon, 29 Jan 2018 12:37:07 +0000 (13:37 +0100)]
nano: Update from 2.9.2 to 2.9.3

6 years agoranger: Skip running pylint
Fredrik Fornwall [Mon, 29 Jan 2018 10:40:44 +0000 (11:40 +0100)]
ranger: Skip running pylint

6 years agoranger: Update from 1.8.1 to 1.9.0
Fredrik Fornwall [Mon, 29 Jan 2018 09:38:31 +0000 (10:38 +0100)]
ranger: Update from 1.8.1 to 1.9.0

6 years agobinutils: Update from 2.29.1 to 2.30
Fredrik Fornwall [Mon, 29 Jan 2018 09:38:02 +0000 (10:38 +0100)]
binutils: Update from 2.29.1 to 2.30

6 years agomicro: Update from 1.3.4 to 1.4.0
Fredrik Fornwall [Mon, 29 Jan 2018 09:37:46 +0000 (10:37 +0100)]
micro: Update from 1.3.4 to 1.4.0

6 years agorsync: Update from 3.1.2 to 3.1.3
Fredrik Fornwall [Mon, 29 Jan 2018 09:37:25 +0000 (10:37 +0100)]
rsync: Update from 3.1.2 to 3.1.3

6 years agomutt: Update from 1.9.2 to 1.9.3
Fredrik Fornwall [Mon, 29 Jan 2018 09:37:06 +0000 (10:37 +0100)]
mutt: Update from 1.9.2 to 1.9.3

6 years agopwgen: Reset revision after version bump
Fredrik Fornwall [Thu, 25 Jan 2018 21:18:43 +0000 (22:18 +0100)]
pwgen: Reset revision after version bump

6 years agolibjansson: Skip default maintainer
Fredrik Fornwall [Thu, 25 Jan 2018 21:18:27 +0000 (22:18 +0100)]
libjansson: Skip default maintainer

6 years agoimagemagick: Update from 7.0.7.17 to 7.0.7.22
Fredrik Fornwall [Thu, 25 Jan 2018 21:17:56 +0000 (22:17 +0100)]
imagemagick: Update from 7.0.7.17 to 7.0.7.22

6 years agoUpdate parallel to 20180122 (#2053)
Auxilus [Thu, 25 Jan 2018 21:17:29 +0000 (02:47 +0530)]
Update parallel to 20180122 (#2053)

6 years agoadd libjansson package (#2058)
kuburan [Thu, 25 Jan 2018 21:17:17 +0000 (04:17 +0700)]
add libjansson package (#2058)

6 years agoVagrantfile tweaks
sogaiu [Thu, 25 Jan 2018 04:02:43 +0000 (13:02 +0900)]
Vagrantfile tweaks

Existing Vagrantfile lead to some problems here during provisioning:

  1. setup-ubuntu.sh would fail

and after:

  2. build-all.sh would run out of disk space
  3. build-all.sh would exit due to permission issues

Issue 1 can be addressed by running sudo apt-get update before setup-ubuntu.sh in the Vagrantfile.

One way to address issue 2 is to use the vagrant-disksize plugin:

  https://github.com/sprotheroe/vagrant-disksize

It can be installed by:

  vagrant plugin install vagrant-disksize

Then modifying Vagrantfile to contain a line like:

  config.disksize.size = '50GB'

causes the first partition to be enlarged to 50GB during provisioning.  Combined with an appropriate invocation of resize2fs:

  sudo resize2fs /dev/sda1

so that the filesystem in the partition is resized, the disk space issue seems alleviated.

Issue 3 can be addressed by changing the user from 'ubuntu' to 'vagrant' in the Vagrantfile -- at least that's what worked here.

6 years agoGBT version bump to v1.2.0
Jiri Tyr [Thu, 25 Jan 2018 08:46:58 +0000 (08:46 +0000)]
GBT version bump to v1.2.0

6 years agopicolisp: Update from 17.11.29 to 18.1.24
Fredrik Fornwall [Thu, 25 Jan 2018 19:48:54 +0000 (20:48 +0100)]
picolisp: Update from 17.11.29 to 18.1.24

6 years agow3m: Update from 20170102 to 20180125
Fredrik Fornwall [Thu, 25 Jan 2018 19:48:17 +0000 (20:48 +0100)]
w3m: Update from 20170102 to 20180125

6 years agolibcurl: Update from 7.57.0 to 7.58.0
Fredrik Fornwall [Thu, 25 Jan 2018 19:47:58 +0000 (20:47 +0100)]
libcurl: Update from 7.57.0 to 7.58.0

6 years agoredis: Update from 4.0.6 to 4.0.7
Fredrik Fornwall [Thu, 25 Jan 2018 19:47:45 +0000 (20:47 +0100)]
redis: Update from 4.0.6 to 4.0.7

6 years agolinux-man-pages: Update from 4.13 to 4.14
Fredrik Fornwall [Wed, 24 Jan 2018 16:33:11 +0000 (17:33 +0100)]
linux-man-pages: Update from 4.13 to 4.14

6 years agotermux-tools: Unset LD_PRELOAD when calling system
Fredrik Fornwall [Wed, 24 Jan 2018 16:20:25 +0000 (17:20 +0100)]
termux-tools: Unset LD_PRELOAD when calling system

Some 64-bit systems seems to have 32-bit binaries in /system/bin,
so unset LD_PRELOAD before calling them. See #551.

6 years agoVersion bump for GBT v1.1.7
Jiri Tyr [Wed, 24 Jan 2018 08:49:25 +0000 (08:49 +0000)]
Version bump for GBT v1.1.7

6 years agodropbear: Fix path to sftp-server (fixes #2059)
Fredrik Fornwall [Wed, 24 Jan 2018 10:03:11 +0000 (11:03 +0100)]
dropbear: Fix path to sftp-server (fixes #2059)

6 years agogegl: Update from 0.3.26 to 0.3.28
Fredrik Fornwall [Wed, 24 Jan 2018 09:50:01 +0000 (10:50 +0100)]
gegl: Update from 0.3.26 to 0.3.28

6 years agobabl: Update from 0.1.40 to 0.1.42
Fredrik Fornwall [Wed, 24 Jan 2018 09:49:35 +0000 (10:49 +0100)]
babl: Update from 0.1.40 to 0.1.42

6 years agolibjpeg-turbo: Update from 1.5.2 to 1.5.3
Fredrik Fornwall [Wed, 24 Jan 2018 09:49:21 +0000 (10:49 +0100)]
libjpeg-turbo: Update from 1.5.2 to 1.5.3

6 years agoleptonica: Update from 1.74.4 to 1.75.0
Fredrik Fornwall [Tue, 23 Jan 2018 22:11:01 +0000 (23:11 +0100)]
leptonica: Update from 1.74.4 to 1.75.0

6 years agolibsqlite: Update from 3.21.0 to 3.22.0
Fredrik Fornwall [Tue, 23 Jan 2018 21:35:31 +0000 (22:35 +0100)]
libsqlite: Update from 3.21.0 to 3.22.0

6 years agogolang: Update from 1.9.2 to 1.9.3
Fredrik Fornwall [Tue, 23 Jan 2018 21:35:15 +0000 (22:35 +0100)]
golang: Update from 1.9.2 to 1.9.3

6 years agogit: Update from 2.16.0 to 2.16.1
Fredrik Fornwall [Mon, 22 Jan 2018 09:14:04 +0000 (10:14 +0100)]
git: Update from 2.16.0 to 2.16.1

6 years agowget: Update from 1.19.3 to 1.19.4 (fixes #2052)
Fredrik Fornwall [Mon, 22 Jan 2018 08:56:26 +0000 (09:56 +0100)]
wget: Update from 1.19.3 to 1.19.4 (fixes #2052)

6 years agoapt: Depend on termux-exec
Fredrik Fornwall [Mon, 22 Jan 2018 08:54:00 +0000 (09:54 +0100)]
apt: Depend on termux-exec

By having apt (which is an essential package which every user has
installed) depend on termux-exec we push it out to everyone.

6 years agocommand-not-found: Update with latest setup
Fredrik Fornwall [Sun, 21 Jan 2018 20:11:08 +0000 (21:11 +0100)]
command-not-found: Update with latest setup

6 years agonodejs-current: Update from 9.3.0 to 9.4.0
Fredrik Fornwall [Sun, 21 Jan 2018 20:10:31 +0000 (21:10 +0100)]
nodejs-current: Update from 9.3.0 to 9.4.0

6 years agopar2: Update from 0.7.4 to 0.8.0
Fredrik Fornwall [Sun, 21 Jan 2018 20:07:31 +0000 (21:07 +0100)]
par2: Update from 0.7.4 to 0.8.0

6 years agonodejs: Update from 8.9.3 to 8.9.4
Fredrik Fornwall [Sun, 21 Jan 2018 20:07:10 +0000 (21:07 +0100)]
nodejs: Update from 8.9.3 to 8.9.4

6 years agoFix meson patch (fixes #2051)
Fredrik Fornwall [Sun, 21 Jan 2018 19:45:35 +0000 (20:45 +0100)]
Fix meson patch (fixes #2051)

6 years agosed: Bump and rebuild (see #2050)
Fredrik Fornwall [Sun, 21 Jan 2018 19:27:57 +0000 (20:27 +0100)]
sed: Bump and rebuild (see #2050)

6 years agoctags: Update to git master
Fredrik Fornwall [Sat, 20 Jan 2018 22:55:16 +0000 (23:55 +0100)]
ctags: Update to git master

6 years agocmake: Update from 3.10.1 to 3.10.2
Fredrik Fornwall [Sat, 20 Jan 2018 22:55:00 +0000 (23:55 +0100)]
cmake: Update from 3.10.1 to 3.10.2

6 years agographicsmagick: Update from 1.3.27 to 1.3.28
Fredrik Fornwall [Sat, 20 Jan 2018 22:14:38 +0000 (23:14 +0100)]
graphicsmagick: Update from 1.3.27 to 1.3.28

6 years agolibuv: Update from 1.18.0 to 1.19.1
Fredrik Fornwall [Sat, 20 Jan 2018 22:13:12 +0000 (23:13 +0100)]
libuv: Update from 1.18.0 to 1.19.1

6 years agolibmpc: Update from 1.0.3 to 1.1.0
Fredrik Fornwall [Sat, 20 Jan 2018 22:11:01 +0000 (23:11 +0100)]
libmpc: Update from 1.0.3 to 1.1.0

6 years agopngquant: Update from 2.11.4 to 2.11.7
Fredrik Fornwall [Sat, 20 Jan 2018 22:10:34 +0000 (23:10 +0100)]
pngquant: Update from 2.11.4 to 2.11.7

6 years agogit: Update from 2.15.1 to 2.16.0
Fredrik Fornwall [Sat, 20 Jan 2018 21:58:10 +0000 (22:58 +0100)]
git: Update from 2.15.1 to 2.16.0

6 years agoca-certificates: Update from 20170920 to 20180117
Fredrik Fornwall [Sat, 20 Jan 2018 21:57:36 +0000 (22:57 +0100)]
ca-certificates: Update from 20170920 to 20180117

6 years agowget: Update from 1.19.2 to 1.19.3
Fredrik Fornwall [Sat, 20 Jan 2018 21:57:19 +0000 (22:57 +0100)]
wget: Update from 1.19.2 to 1.19.3

6 years agolibgnutls: Update from 3.5.16 to 3.5.17
Fredrik Fornwall [Wed, 17 Jan 2018 15:38:45 +0000 (16:38 +0100)]
libgnutls: Update from 3.5.16 to 3.5.17

6 years agobabl: Update from 0.1.38 to 0.1.40
Fredrik Fornwall [Wed, 17 Jan 2018 15:38:32 +0000 (16:38 +0100)]
babl: Update from 0.1.38 to 0.1.40

6 years agoupdated sles module
its-pointless [Tue, 16 Jan 2018 08:37:19 +0000 (19:37 +1100)]
updated sles module

6 years agoreadline: Add inputrc
Marcel Dopita [Sun, 14 Jan 2018 21:20:48 +0000 (22:20 +0100)]
readline: Add inputrc

This makes Home/End keys working over SSH when connected from some clients like PuTTY on Windows.

Basically all Linux distributions provide some default /etc/inputrc configuration:
- Debian based distros in package readline-common (both Debian 9 and Ubuntu 17.10 share same config)
- Red Hat based distros in package setup (both CentOS 7 and Fedora 27 share same config)
- Arch Linux in package readline
- openSUSE in package aaa_base
- OpenWRT etc.

The proposed inputrc configuration is a intersection of default mappings used in Debian 9, CentOS 7 and Arch Linux. That should provide safe and expected mappings.

6 years agokrb5: Update from 1.15.2 to 1.16
Fredrik Fornwall [Tue, 16 Jan 2018 10:35:39 +0000 (11:35 +0100)]
krb5: Update from 1.15.2 to 1.16

6 years agoirssi: Update from 1.0.5 to 1.1.0
Fredrik Fornwall [Tue, 16 Jan 2018 10:33:50 +0000 (11:33 +0100)]
irssi: Update from 1.0.5 to 1.1.0

6 years agoAdding gbt package
Jiri Tyr [Sun, 14 Jan 2018 23:16:11 +0000 (23:16 +0000)]
Adding gbt package

6 years agousername fix for 64 bit archs...
its-pointless [Mon, 15 Jan 2018 00:10:19 +0000 (11:10 +1100)]
username fix for 64 bit archs...

6 years agohydra: Update to latest git master (see #2033)
Fredrik Fornwall [Sun, 14 Jan 2018 21:24:17 +0000 (22:24 +0100)]
hydra: Update to latest git master (see #2033)

6 years agoUpdate meson version from 0.43.0 to 0.44.0
Fredrik Fornwall [Sun, 14 Jan 2018 21:23:40 +0000 (22:23 +0100)]
Update meson version from 0.43.0 to 0.44.0

6 years agoRevert "Make cmath patch part of the toolchain (#1149)"
Fredrik Fornwall [Sun, 14 Jan 2018 21:17:12 +0000 (22:17 +0100)]
Revert "Make cmath patch part of the toolchain (#1149)"

This reverts commit 775ea81181bd15905613f1fd7124d0a1f95a5b69.

6 years agoglib: Update patch after upstream review
Fredrik Fornwall [Sun, 14 Jan 2018 21:15:05 +0000 (22:15 +0100)]
glib: Update patch after upstream review

6 years agoMake cmath patch part of the toolchain (#1149)
Fredrik Fornwall [Sun, 14 Jan 2018 20:50:44 +0000 (21:50 +0100)]
Make cmath patch part of the toolchain (#1149)

6 years agolibtalloc: Update from 2.1.10 to 2.1.11
Fredrik Fornwall [Sun, 14 Jan 2018 13:11:59 +0000 (14:11 +0100)]
libtalloc: Update from 2.1.10 to 2.1.11

6 years agonzbget: Add package
Marcel Dopita [Tue, 9 Jan 2018 17:54:15 +0000 (18:54 +0100)]
nzbget: Add package

6 years agoglib: Update from 2.54.2 to 2.54.3
Fredrik Fornwall [Wed, 10 Jan 2018 16:26:56 +0000 (17:26 +0100)]
glib: Update from 2.54.2 to 2.54.3

6 years agotor: Update from 0.3.1.9 to 0.3.2.9
Fredrik Fornwall [Wed, 10 Jan 2018 16:26:30 +0000 (17:26 +0100)]
tor: Update from 0.3.1.9 to 0.3.2.9

6 years agonotmuch: Update from 0.25.3 to 0.26
Fredrik Fornwall [Wed, 10 Jan 2018 16:26:16 +0000 (17:26 +0100)]
notmuch: Update from 0.25.3 to 0.26

6 years agolibgmime: Update from 3.0.5 to 3.2.0
Fredrik Fornwall [Wed, 10 Jan 2018 16:26:04 +0000 (17:26 +0100)]
libgmime: Update from 3.0.5 to 3.2.0

6 years agozsh: Build with ac_cv_func_getpwuid=yes
Fredrik Fornwall [Tue, 9 Jan 2018 13:51:09 +0000 (14:51 +0100)]
zsh: Build with ac_cv_func_getpwuid=yes

The build exports ac_cv_func_getpwuid=no to disable getpwuid as it
doesn't make much sense on Android. But we need it on zsh to get
the username part of the prompt working. Fixes #424.

6 years agophp: Update from 7.1.12 to 7.2.1
Fredrik Fornwall [Tue, 9 Jan 2018 08:43:59 +0000 (09:43 +0100)]
php: Update from 7.1.12 to 7.2.1

6 years agofreetype: Update from 2.8.1 to 2.9
Fredrik Fornwall [Tue, 9 Jan 2018 08:43:25 +0000 (09:43 +0100)]
freetype: Update from 2.8.1 to 2.9

6 years agogzip: Update from 1.8 to 1.9
Fredrik Fornwall [Mon, 8 Jan 2018 15:06:30 +0000 (16:06 +0100)]
gzip: Update from 1.8 to 1.9

6 years agopotrace: Fix homepage url
Fredrik Fornwall [Sun, 7 Jan 2018 21:50:34 +0000 (22:50 +0100)]
potrace: Fix homepage url

6 years agolibboost_python not linked to python fix
its-pointless [Sun, 7 Jan 2018 10:24:52 +0000 (21:24 +1100)]
libboost_python not linked to python fix

6 years agopotrace request from #1987
its-pointless [Sun, 7 Jan 2018 06:10:03 +0000 (17:10 +1100)]
potrace request from #1987

6 years agoRebuild gdbm-using packages
Fredrik Fornwall [Sun, 7 Jan 2018 04:42:55 +0000 (05:42 +0100)]
Rebuild gdbm-using packages

gdbm 14.4.1 bumped the library version.

6 years agompd: Update from 0.20.12 to 0.20.15
Fredrik Fornwall [Sat, 6 Jan 2018 21:21:30 +0000 (22:21 +0100)]
mpd: Update from 0.20.12 to 0.20.15

6 years agoremove unneeded travis group
Stephen [Thu, 4 Jan 2018 16:29:58 +0000 (08:29 -0800)]
remove unneeded travis group

6 years agogdbm: Update from 1.14 to 1.14.1
Fredrik Fornwall [Sat, 6 Jan 2018 19:31:11 +0000 (20:31 +0100)]
gdbm: Update from 1.14 to 1.14.1

6 years agoldc: Update from 1.6 to 1.7
Joakim [Sat, 6 Jan 2018 13:39:35 +0000 (13:39 +0000)]
ldc: Update from 1.6 to 1.7

6 years agoboost: Do not change the build id
Fredrik Fornwall [Sat, 6 Jan 2018 19:14:46 +0000 (20:14 +0100)]
boost: Do not change the build id

6 years agoncmpcpp: Update from 0.8 to 0.8.1
Fredrik Fornwall [Fri, 5 Jan 2018 23:16:05 +0000 (00:16 +0100)]
ncmpcpp: Update from 0.8 to 0.8.1

6 years agomariadb: Update from 10.2.10 to 10.2.12
Fredrik Fornwall [Fri, 5 Jan 2018 22:06:01 +0000 (23:06 +0100)]
mariadb: Update from 10.2.10 to 10.2.12

6 years agonano: Update from 2.9.1 to 2.9.2
Fredrik Fornwall [Fri, 5 Jan 2018 21:57:31 +0000 (22:57 +0100)]
nano: Update from 2.9.1 to 2.9.2

6 years agoboost add python3 lib
its-pointless [Fri, 5 Jan 2018 01:16:58 +0000 (12:16 +1100)]
boost add python3 lib

6 years agoupdate wol srcurl
Stephen [Thu, 4 Jan 2018 16:23:15 +0000 (08:23 -0800)]
update wol srcurl

remove dead links as well

6 years agocoreutils: commit f05fb1 removed host-build so this should be removed as well
Henrik Grimler [Wed, 3 Jan 2018 08:20:11 +0000 (09:20 +0100)]
coreutils: commit f05fb1 removed host-build so this should be removed as well

Package doesn't build otherwise.

6 years agopython: Remove more tests folders
Fredrik Fornwall [Wed, 3 Jan 2018 00:46:00 +0000 (01:46 +0100)]
python: Remove more tests folders

6 years agondk-stl: Attempt to fix math.h problem (#1149)
Fredrik Fornwall [Tue, 2 Jan 2018 23:53:56 +0000 (00:53 +0100)]
ndk-stl: Attempt to fix math.h problem (#1149)

6 years agogdbm: Update from 1.13 to 1.14
Fredrik Fornwall [Tue, 2 Jan 2018 22:06:37 +0000 (23:06 +0100)]
gdbm: Update from 1.13 to 1.14

6 years agopick: Update from 2.0.0 to 2.0.1
Fredrik Fornwall [Tue, 2 Jan 2018 22:06:24 +0000 (23:06 +0100)]
pick: Update from 2.0.0 to 2.0.1

6 years agotar: fix segfault when extracting archive that contains device files (block devices...
Leonid Plyushch [Fri, 29 Dec 2017 02:28:49 +0000 (04:28 +0200)]
tar: fix segfault when extracting archive that contains device files (block devices or such) (#1974)

6 years agoapt: Avoid needless dependency on libutil
Fredrik Fornwall [Fri, 29 Dec 2017 01:16:08 +0000 (02:16 +0100)]
apt: Avoid needless dependency on libutil