Commit Graph

33 Commits

Author SHA1 Message Date
Jia Yuan Lo 09b3f6a48b chore(main,x11): fix duplicate newlines at the end
%ci:no-build
2024-05-02 13:58:51 +08:00
Tee KOBAYASHI 99b5c2734d alpine: Fix implicit function declaration
%ci:no-build
2023-04-12 20:35:52 +09:00
Tee KOBAYASHI d7659baee2 *: Disable clang16-porting for failing packages
%ci:no-build
2023-04-06 06:15:09 +09:00
Leonid Pliushch 33a7464965
upgpkg(main/alpine): v2.26 2022-10-10 20:41:43 +03:00
Henrik Grimler d5c9848a53
alpine: rebuild after SONAME was added to openssl
This was added in
https://github.com/termux/termux-packages/commit/6ec87d7b0a80.  Issue
was reported in https://github.com/termux/termux-packages/issues/9337.
2022-03-09 14:12:38 +01:00
Yaksh Bariya 10662599d3 alpine: depend on openssl 2022-02-26 14:46:07 +00:00
Tee KOBAYASHI f6cd9a3ed7 alpine: Depend on coreutils 2021-12-04 14:27:25 +01:00
Lucy Phipps e91e3d31c1
alpine: update to 2.25 2021-10-22 21:39:48 +01:00
Yaksh Bariya ebdcae3eac alpine: Bump to 2.24.2 2021-08-06 13:37:01 +02:00
Leonid Pliushch 37375312b9
explicitly set maintainer for each package
In issue https://github.com/termux/termux-packages/issues/6160 I have found
that community repo "its-pointless.github.io" specifies us as maintainer
for its packages. This is NOT TRUE and potentially misleads people using
these packages.

Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral
and not specify maintainer. So all packages now have to override it to
the correct value.

[skip ci]
%ci:no-build
2020-12-20 15:16:34 +02:00
Henrik Grimler 4d509b4987 alpine: update to 2.24 2020-11-04 20:53:18 +01:00
Leonid Pliushch cb281d5c41 alpine: remove imap-src-osdep-unix-Makefile.patch 2020-06-20 22:01:00 +03:00
Leonid Pliushch 9f83b43aef alpine: update to 2.23 2020-06-20 21:11:56 +03:00
Leonid Pliushch 91073bd6b3 alpine: update to 2.22 2020-01-30 20:19:17 +02:00
Fredrik Fornwall 5d7a32bfcc Get rid of more liblog linkage 2019-12-30 01:05:41 +01:00
Leonid Pliushch 05203b0b01 additional libraries should be specified in `LIBS` instead of `LDFLAGS` if using autotools
Fixes on-device build for: alpine, autossh, direvent, heyu, krb5, msmtp, redir,
screen, socat, tinyproxy, tor.
2019-08-13 17:13:50 +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 80a0cc6b86 alpine: update to 2.21.99999 2019-07-21 16:02:44 +03:00
Leonid Pliushch 49b6c5ee4b alpine: use https for homepage 2019-05-15 02:38:52 +03:00
Wetitpig d50c847f11 Shell script compliance 2019-02-15 18:01:09 +02:00
Wetitpig 5f8864c10d Improve formatting of parantheses for functions 2019-02-09 21:06:31 +02:00
Leonid Pliushch 361d8c519f [incomplete] set licenses for packages 2019-01-20 22:41:50 +01:00
Fredrik Fornwall fd72a74c42 openssl: Update from 1.0.2 to 1.1.1 (#2775) 2018-09-11 22:43:19 +02:00
Leonid Pliushch 6d33f94a5f fix packages that require getpass()
Changed packages:

  * alpine
  * dropbear
  * emacs
  * isync
  * lftp
  * msmtp
  * newsboat
  * rsync
  * screen
  * texlive-bin
  * unrar
  * w3m
2018-09-11 00:55:00 +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 79e376f7e2 alpine: Bump revision after patch 2018-02-11 22:20:03 +01:00
Quasic f5866510c8 alpine: use termux tmp dir for locks (#2127) 2018-02-11 22:19:12 +01:00
its-pointless f3889fbe75 alpine: passwordless masterpasword file 2018-02-09 00:57:35 +01:00
Fredrik Fornwall 545badd19e alpine: Update for alpine.freeiz.com being down 2017-12-07 02:52:28 +01:00
Fredrik Fornwall ea61862721 Add scripts/lint-packages.py
Harmonize the layout by having the first two lines of a package
definition always be the homepage and the description.
2017-12-05 22:48:12 +01:00
Fredrik Fornwall d99706564a Use @TERMUX_PREFIX@ in more patch files 2017-11-12 22:21:07 +01:00
Fredrik Fornwall f46ba73f16 alpine: Update homepage 2017-10-14 21:05:31 +02:00
its-pointless f5603b0d5e enable alpine email 2017-08-26 23:11:35 +02:00