Commit Graph

29 Commits

Author SHA1 Message Date
Leonid Pliushch
e0999e5279 nginx: update to 1.17.4 2019-09-29 13:00:26 +03:00
Fredrik Fornwall
bb02561af4 nginx: Update from 1.17.2 to 1.17.3 2019-08-18 22:07:02 +02: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
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
Leonid Pliushch
c2b888b463 nginx: update to 1.17.2 2019-07-24 14:29:13 +03:00
Fredrik Fornwall
4278ddae27 nginx: Update from 1.17.0 to 1.17.1 2019-06-28 00:28:26 +02:00
Fredrik Fornwall
26579666a8 nginx: Update from 1.16.0 to 1.17.0 2019-05-29 23:44:57 +02:00
Fredrik Fornwall
d45e6079d8 nginx: Update from 1.15.12 to 1.16.0 2019-05-08 01:54:11 +02:00
Fredrik Fornwall
7e16fcf9be nginx: Update from 1.5.11 to 1.5.12 2019-04-17 22:41:47 +02:00
Leonid Pliushch
11200afa32 add zlib to dependencies where needed 2019-04-14 16:00:23 +03:00
Fredrik Fornwall
12e610bc30 nginx: Update from 1.15.10 to 1.15.11 2019-04-12 01:32:35 +02:00
Fredrik Fornwall
f3c746ba87 nginx: Update from 1.15.9 to 1.15.10 2019-03-30 00:40:43 +01:00
Fredrik Fornwall
fe2fbba877 nginx: Update from 1.15.8 to 1.15.9 2019-03-02 23:05:35 +01:00
Wetitpig
5f8864c10d Improve formatting of parantheses for functions 2019-02-09 21:06:31 +02: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
58c6ce8882 nginx: Update from 1.15.7 to 1.15.8 2018-12-28 00:58:45 +01:00
Fredrik Fornwall
a090b5f01a nginx: Update from 1.15.6 to 1.15.7 2018-11-28 01:38:34 +01:00
Leonid Pliushch
145c26ca8d nginx: update to 1.15.6 2018-11-10 23:23:43 +01:00
Fredrik Fornwall
5252a7ba3d nginx: Update from 1.15.4 to 1.15.5 2018-10-07 19:19:40 +02:00
Fredrik Fornwall
eb1da6d335 nginx: Update from 1.15.3 to 1.15.4 2018-09-27 00:08:53 +02:00
Fredrik Fornwall
9e26046912 nginx: Update from 1.14.0 to 1.15.3
Also fix compilation error with ndk r18.

Also remove use of aio due to seccomp filter.
2018-09-20 00:41:19 +02:00
Fredrik Fornwall
fd72a74c42 openssl: Update from 1.0.2 to 1.1.1 (#2775) 2018-09-11 22:43:19 +02:00
Henrik Grimler
c1b82abd09 Add fixes for debug builds (#2296)
* build-package.sh: add possibility for debug patches and TERMUX_PKG_HAS_DEBUG

Setting TERMUX_PKG_HAS_DEBUG=no disables attempt to build debug build of
package.
Useful for example if a debug build doesn't make sense, as for python-packages
and texlive.

* aapt: skip D_FORTIFY_SOURCE=2 for libandroid-cutils when doing debug build

* lftp: skip D_FORTIFY_SOURCE=2 for debug build

* libflac: don't use -g3 for debug build

Configure script removes it otherwise.

* nano: skip -D_FORTIFY_SOURCE=2 for debug build

* vifm: skip -D_FORTIFY_SOURCE=2 for debug build

* mc: skip -D_FORTIFY_SOURCE=2 for debug build

* dropbear: add __attribute__((overloadable)) to XMEMSET and XMEMCPY if debug

* gdb: add __attribute__((overloadable)) to strchr if debug

* gnuit: add __attribute__((overloadable)) to strchr and strcpy if debug

* gperf: add __attribute__((overloadable)) to strlen if debug

* inetutils: add __attribute__((overloadable)) to strrchr and strchr if debug

* readline: add __attribute__((overloadable)) to strchr if debug

* tsocks: add __attribute__((overloadable)) to poll if debug

* units: add __attribute__((overloadable)) to strchr if debug

* liblua: fix bug in loslib.c that emerged in debug build

Use strncpy instead of strcpy.
Original error message:
loslib.c:169:3: error: 'strcpy' called with string bigger than buffer
  lua_tmpnam(buff, err);
  ^
loslib.c:122:37: note: expanded from macro 'lua_tmpnam'
       strcpy(b, LUA_TMPNAMTEMPLATE); \
                                   ^

* alpine: include our getpass.h in imap's mtest.c to declare getpass

Debug build complained about the previous implicit declaration.

* nginx: use --with-debug instead of --debug

* cboard: skip -D_FORTIFY_SOURCE=2 for debug build

* gettext: add __attribute__((overloadable)) to getcwd if debug

* oathtool: skip -D_FORTIFY_SOURCE=2 for debug build

* php: add __attribute__((overloadable)) to strlcpy and strlcat if debug

* expect: add __attribute__((overloadable)) to strchr if debug

* texlive: set TERMUX_PKG_HAS_DEBUG=no

* asciinema: set TERMUX_PKG_HAS_DEBUG=no

* libllvm: set TERMUX_PKG_HAS_DEBUG=no

Debug build fails with:
home/builder/.termux-build/libllvm/src/lib/Support/Unix/Path.inc:740:19: error: no matching function for call to 'RetryAfterSignal'                                                                                                      if ((ResultFD = sys::RetryAfterSignal(-1, open, P.begin(), OpenFlags)) < 0)

* build-package.sh: set TERMUX_PKG_REPLACES=package if debug build

Hopefully allows us to install debug packages without breaking dependecies.

Should be looked over and be made more similar to how debian does this in any case

* Update build.sh
2018-06-13 02:12:36 +02:00
Fredrik Fornwall
2db10a2925 nginx: Update from 1.12.2 to 1.14.0 2018-05-19 03:50:28 +02:00
Fredrik Fornwall
4a08751d96 nginx: Update from 1.12.1 to 1.12.2 2017-10-28 15:56:10 +02:00
vishalbiswas
947121967f nginx: update from 1.12.0 to 1.12.1 2017-07-12 18:54:03 +02:00
Vishal Biswas
b4a559a5a3 nginx: update from 1.10.3 to 1.12.0 (#929) 2017-04-13 11:15:51 +02:00
Vishal Biswas
0a5412793e nginx: add package (#859) 2017-03-20 21:00:47 +01:00