Commit Graph

31938 Commits

Author SHA1 Message Date
termux-pacman-bot
fdb4c03df6 bump(main/7zip): 24.07 (#20643) 2024-06-23 15:37:08 +00:00
termux-pacman-bot
059ac1db8f bump(main/texlab): 5.17.0
This commit has been automatically submitted by Github Actions.
2024-06-23 12:44:26 +00:00
termux-pacman-bot
e0bc57ce61 bump(main/newsboat): 2.36 2024-06-23 06:38:21 +00:00
termux-pacman-bot
00ab68ca33 bump(main/vivid): 0.10.1
This commit has been automatically submitted by Github Actions.
2024-06-23 00:27:59 +00:00
termux-pacman-bot
942cb26f00 rebuild(main/command-not-found): to update database 2024-06-23 00:27:58 +00:00
termux-pacman-bot
1bb77e4581 libandroid-support: update to v29 (#13943) 2024-06-23 00:27:58 +00:00
termux-pacman-bot
13967506ad enhance(main/neovim): Add tree sitter parsers
Backport fix for tree-sitter-vimdoc 3.0.0 parser
2024-06-22 19:37:07 +00:00
termux-pacman-bot
b85d1f4b7a bump(main/libzim): 9.2.2
This commit has been automatically submitted by Github Actions.
2024-06-22 18:37:43 +00:00
termux-pacman-bot
0c3d021a39 bump(main/cppcheck): 2.14.2
This commit has been automatically submitted by Github Actions.
2024-06-22 18:37:42 +00:00
termux-pacman-bot
8520f71e67 fix(main/qemu): Remove duplicate fdt headers (#20633)
This uses system provided dtc package to link with fdt library.
Otherwise, dtc subproject is used which install duplicate fdt
header files - fdt.h, libfdt_env.h and libfdt.h.
2024-06-22 16:38:55 +00:00
termux-pacman-bot
e2364e180d addpkg(main/libgtop): For showing system info in xfce about dialog 2024-06-22 16:38:53 +00:00
termux-pacman-bot
e4bd9b4aa6 bump(main/weechat): 4.3.3
This commit has been automatically submitted by Github Actions.
2024-06-22 12:44:07 +00:00
termux-pacman-bot
7f0746a97a bump(main/neocmakelsp): 0.7.6
This commit has been automatically submitted by Github Actions.
2024-06-22 12:44:06 +00:00
termux-pacman-bot
d2affc8b87 bump(main/mupdf): 1.24.4
This commit has been automatically submitted by Github Actions.
2024-06-22 12:44:05 +00:00
termux-pacman-bot
e154e9672f bump(main/minio): 2024.06.22.05.26.45
This commit has been automatically submitted by Github Actions.
2024-06-22 12:44:04 +00:00
termux-pacman-bot
47f6ef862e bump(main/telegram-bot-api): 20240618 (#20589) 2024-06-22 10:08:42 +00:00
termux-pacman-bot
70e8790d33 bump(main/walk): 1.9.0
This commit has been automatically submitted by Github Actions.
2024-06-22 00:52:16 +00:00
termux-pacman-bot
9058fc2642 bump(main/libksba): 1.6.7
This commit has been automatically submitted by Github Actions.
2024-06-22 00:25:23 +00:00
termux-pacman-bot
90fce7ba95 bump(main/buf): 1.34.0
This commit has been automatically submitted by Github Actions.
2024-06-22 00:25:22 +00:00
termux-pacman-bot
96b10113c2 fix(main/python-pip): actually try to auto update if available 2024-06-21 23:08:20 +00:00
termux-pacman-bot
e9ce8ad1a1 bump(main/zrok): 0.4.32
This commit has been automatically submitted by Github Actions.
2024-06-21 18:38:39 +00:00
termux-pacman-bot
7d414ff519 bump(main/walk): 1.8.0
This commit has been automatically submitted by Github Actions.
2024-06-21 18:38:38 +00:00
termux-pacman-bot
4135ca25aa bump(main/jql): 7.1.12
This commit has been automatically submitted by Github Actions.
2024-06-21 18:38:37 +00:00
termux-pacman-bot
16a168b4ee chore(main/python-pip): fix the autoupdate regex, again 2024-06-21 18:10:29 +00:00
termux-pacman-bot
c9bb405d65 new package: arturo (#20458) 2024-06-21 17:37:15 +00:00
termux-pacman-bot
3a6a3361c1 fix(main/flang): Fix unmet dependencies problem (#20593)
Currently `pkg install flang` gives the below error:

> The following packages have unmet dependencies:
> flang : Depends: libllvm (= 18.1.7) but 18.1.7-1 is to be installed
>         Depends: clang (= 18.1.7) but 18.1.7-1 is to be installed
>         Depends: lld (= 18.1.7) but 18.1.7-1 is to be installed
>         Depends: mlir (= 18.1.7) but 18.1.7-1 is to be installed
> E: Unable to correct problems, you have held broken packages.

This is due to the `(= $TERMUX_PKG_VERSION)` dependency qualifier on
llvm dependencies, introduced in 50737838a5344f1e128f4164b90af07378945cc0
to make sure that llvm matches the flang version.

This is fine for the upstream version (version `18.1.7` of flang should
depend on version `18.1.7`).

But when bumping the `TERMUX_PKG_REVISION` on llvm, which was done in
58811a96a6db7f8282bd8e1ad2c99b44d0b1b253, it results in a problem such as
we have now: flang `18.1.7` depends on exactly `18.1.7`, while the
repository has `18.1.7-1`.

Ideally we would probably want to ignore the package revision, and
allow all revisions of flang 18.1.7 to depend on all revisions of llvm
18.1.7 - effectively a revision wildcard. Is that possible with debian
version qualifiers?

This patch just bumps the `TERMUX_PKG_REVISION` of `flang` and uses that
to match the current llvm revision in the dependency, so that the flang
package is installable again. If we can't come up with a better approach
short term we can probably go for this now to make the package
installable again.

Reported by @timstrom in https://github.com/termux-play-store/termux-packages/issues/3
2024-06-21 17:09:07 +00:00
termux-pacman-bot
34b214a3f3 bump(main/pycairo): 1.26.1
This commit has been automatically submitted by Github Actions.
2024-06-21 12:45:14 +00:00
termux-pacman-bot
aaa5e85eb4 bump(main/oh-my-posh): 21.16.0
This commit has been automatically submitted by Github Actions.
2024-06-21 12:45:14 +00:00
termux-pacman-bot
2d6a9569a8 enhance(main/libxml2): Enable legacy APIs
This enables http support which was disabled by-default.
3018842c07

Fixes the following runtime error with gnumeric.
CANNOT LINK EXECUTABLE "gnumeric": cannot locate symbol "xmlNanoHTTPOpen" referenced by
"/data/data/com.termux/files/usr/lib/libgsf-1.so"
2024-06-21 05:10:52 +00:00
termux-pacman-bot
f02f4787ee rebuild(packages/sensible-utils): auto check by @termux-pacman-bot 2024-06-21 04:09:43 +00:00
termux-pacman-bot
f28387b806 termux-pacman/auto-check-repo: preparing to recompile packages
[skip ci]
2024-06-21 04:09:42 +00:00
termux-pacman-bot
373864789e rebuild(packages/rbw): auto check by @termux-pacman-bot 2024-06-21 02:42:54 +00:00
termux-pacman-bot
856837bb46 rebuild(packages/neocmakelsp): auto check by @termux-pacman-bot 2024-06-21 02:42:53 +00:00
termux-pacman-bot
cd5812b188 termux-pacman/auto-check-repo: preparing to recompile packages
[skip ci]
2024-06-21 02:42:52 +00:00
termux-pacman-bot
f2b842e34f bump(main/sundials): 7.1.0
This commit has been automatically submitted by Github Actions.
2024-06-21 00:52:21 +00:00
termux-pacman-bot
900b983e65 bump(main/gst-python): 1.24.5
This commit has been automatically submitted by Github Actions.
2024-06-21 00:25:29 +00:00
termux-pacman-bot
0b5d4de82f bump(main/gstreamer): 1.24.5
This commit has been automatically submitted by Github Actions.
2024-06-21 00:25:28 +00:00
termux-pacman-bot
604a9293d5 tree-wide: use SUBPKG_DEPEND_ON_PARENT=false instead of =no
Fixed already in commit 2b65bc0e6717, but I missed the quoted "no":es.
Convert those as well to false.

No functional changes:
%ci:no-build

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch depend-on-parent-fix
# Changes to be committed:
#	modified:   packages/libglvnd/libglvnd-dev.subpackage.sh
#	modified:   packages/mesa/mesa-dev.subpackage.sh
#	modified:   packages/mesa/mesa-vulkan-icd-freedreno.subpackage.sh
#	modified:   packages/mesa/mesa-vulkan-icd-swrast.subpackage.sh
#	modified:   packages/util-linux/blk-utils.subpackage.sh
#	modified:   packages/util-linux/fdisk.subpackage.sh
#	modified:   packages/util-linux/libblkid.subpackage.sh
#	modified:   packages/util-linux/libfdisk.subpackage.sh
#	modified:   packages/util-linux/libmount.subpackage.sh
#	modified:   packages/util-linux/libsmartcols.subpackage.sh
#	modified:   packages/util-linux/libuuid.subpackage.sh
#	modified:   packages/util-linux/mount-utils.subpackage.sh
#	modified:   packages/util-linux/uuid-utils.subpackage.sh
#	modified:   x11-packages/mesa-demos/eglinfo-system.subpackage.sh
#	modified:   x11-packages/xorg-server/xorg-server-xephyr.subpackage.sh
#
2024-06-20 20:11:01 +00:00
termux-pacman-bot
f3d025f619 bump(main/wasmtime): 22.0.0
This commit has been automatically submitted by Github Actions.
2024-06-20 19:09:03 +00:00
termux-pacman-bot
7c79c707f4 bump(main/tdl): 0.17.2
This commit has been automatically submitted by Github Actions.
2024-06-20 19:09:02 +00:00
termux-pacman-bot
47ca219d7d bump(main/sensible-utils): 0.0.23
This commit has been automatically submitted by Github Actions.
2024-06-20 19:09:01 +00:00
termux-pacman-bot
3378c1796d bump(main/ruff): 0.4.10
This commit has been automatically submitted by Github Actions.
2024-06-20 19:09:00 +00:00
termux-pacman-bot
8982d81bc0 bump(main/libtiledb): 2.24.1
This commit has been automatically submitted by Github Actions.
2024-06-20 18:41:10 +00:00
termux-pacman-bot
1fc6df8608 bump(main/libgmime): 3.2.15
This commit has been automatically submitted by Github Actions.
2024-06-20 18:41:08 +00:00
termux-pacman-bot
001a543f2f bump(main/hcloud): 1.44.0
This commit has been automatically submitted by Github Actions.
2024-06-20 18:41:07 +00:00
termux-pacman-bot
aa19553243 bump(main/gst-plugins-ugly): 1.24.5
This commit has been automatically submitted by Github Actions.
2024-06-20 18:41:06 +00:00
termux-pacman-bot
767fb4d021 bump(main/gst-plugins-good): 1.24.5
This commit has been automatically submitted by Github Actions.
2024-06-20 18:41:05 +00:00
termux-pacman-bot
e376868a86 bump(main/gst-plugins-bad): 1.24.5
This commit has been automatically submitted by Github Actions.
2024-06-20 18:41:04 +00:00
termux-pacman-bot
e4810952a6 bump(main/gst-plugins-base): 1.24.5
This commit has been automatically submitted by Github Actions.
2024-06-20 18:41:03 +00:00
termux-pacman-bot
b7787ca93f bump(main/gst-libav): 1.24.5
This commit has been automatically submitted by Github Actions.
2024-06-20 18:41:01 +00:00