Browse Source
* cpio: update to 2.13 * gmic: update to 2.9.0 * ffsend: update to 0.2.59 * libgrpc: update to 1.28.0 * librsvg: update to 2.48.2 * perl: update to 5.30.2 * ruby: update to 2.7.1 * ripgrep: update to 12.0.1 * repology/excluded_packages: ignore aircrack-ng and guile18 * mpd: update to 0.21.22master
Henrik Grimler
5 years ago
committed by
GitHub
13 changed files with 82 additions and 34 deletions
@ -1,9 +1,9 @@ |
|||
TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/cpio/ |
|||
TERMUX_PKG_DESCRIPTION="CPIO implementation from the GNU project" |
|||
TERMUX_PKG_LICENSE="GPL-2.0" |
|||
TERMUX_PKG_VERSION=2.12 |
|||
TERMUX_PKG_VERSION=2.13 |
|||
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/cpio/cpio-$TERMUX_PKG_VERSION.tar.bz2 |
|||
TERMUX_PKG_SHA256=70998c5816ace8407c8b101c9ba1ffd3ebbecba1f5031046893307580ec1296e |
|||
TERMUX_PKG_SHA256=eab5bdc5ae1df285c59f2a4f140a98fc33678a0bf61bdba67d9436ae26b46f6d |
|||
TERMUX_PKG_DEPENDS="tar" |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-rmt=$TERMUX_PREFIX/libexec/rmt" |
|||
|
|||
|
@ -0,0 +1,29 @@ |
|||
Fix ../gnu/libgnu.a(hash.o):hash.c:function compute_bucket_size: error: undefined reference to '__muloti4' |
|||
(same patch as for m4). |
|||
--- ../xalloc-oversized.h.orig 2020-04-03 20:50:58.942285629 +0200
|
|||
+++ ./gnu/xalloc-oversized.h 2020-04-03 20:53:22.281922797 +0200
|
|||
@@ -46,23 +46,6 @@
|
|||
positive and N must be nonnegative. This is a macro, not a |
|||
function, so that it works correctly even when SIZE_MAX < N. */ |
|||
|
|||
-#if 7 <= __GNUC__ || __has_builtin (__builtin_add_overflow_p)
|
|||
-# define xalloc_oversized(n, s) \
|
|||
- __builtin_mul_overflow_p (n, s, (__xalloc_count_type) 1)
|
|||
-#elif ((5 <= __GNUC__ \
|
|||
- || (__has_builtin (__builtin_mul_overflow) \
|
|||
- && __has_builtin (__builtin_constant_p))) \
|
|||
- && !__STRICT_ANSI__)
|
|||
-# define xalloc_oversized(n, s) \
|
|||
- (__builtin_constant_p (n) && __builtin_constant_p (s) \
|
|||
- ? __xalloc_oversized (n, s) \
|
|||
- : ({ __xalloc_count_type __xalloc_count; \
|
|||
- __builtin_mul_overflow (n, s, &__xalloc_count); }))
|
|||
-
|
|||
-/* Other compilers use integer division; this may be slower but is
|
|||
- more portable. */
|
|||
-#else
|
|||
-# define xalloc_oversized(n, s) __xalloc_oversized (n, s)
|
|||
-#endif
|
|||
+#define xalloc_oversized(n, s) __xalloc_oversized (n, s)
|
|||
|
|||
#endif /* !XALLOC_OVERSIZED_H_ */ |
@ -1,9 +1,9 @@ |
|||
TERMUX_PKG_HOMEPAGE=https://gitlab.com/timvisee/ffsend |
|||
TERMUX_PKG_DESCRIPTION="A fully featured Firefox Send client" |
|||
TERMUX_PKG_LICENSE="GPL-3.0" |
|||
TERMUX_PKG_VERSION=0.2.58 |
|||
TERMUX_PKG_VERSION=0.2.59 |
|||
TERMUX_PKG_SRCURL=https://gitlab.com/timvisee/ffsend/-/archive/v$TERMUX_PKG_VERSION/ffsend-v$TERMUX_PKG_VERSION.tar.gz |
|||
TERMUX_PKG_SHA256=5a2e2b792d6763fdce4db6b4e815bbaa822bd7d4e6cf6c19fd3ec21ed4937700 |
|||
TERMUX_PKG_SHA256=02df26f8f880b9f991656c6f4cf0c95bee6636dbe1ce7c120ae424c0cbfe81c4 |
|||
TERMUX_PKG_DEPENDS="openssl" |
|||
TERMUX_PKG_BUILD_IN_SRC=true |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--no-default-features --features send2,send3,history,archive,qrcode,urlshorten,infer-command" |
|||
|
@ -0,0 +1,19 @@ |
|||
Reverts commit 81c16273c543822fa8b87522cb1146a7859edd7a in the mpd repo |
|||
|
|||
--- ../SlesOutputPlugin.cxx.orig 2020-04-03 22:18:11.070009046 +0200
|
|||
+++ ./src/output/plugins/sles/SlesOutputPlugin.cxx 2020-04-03 22:18:58.189898556 +0200
|
|||
@@ -28,7 +28,6 @@
|
|||
#include "util/Macros.hxx" |
|||
#include "util/Domain.hxx" |
|||
#include "system/ByteOrder.hxx" |
|||
-#include "mixer/MixerList.hxx"
|
|||
#include "Log.hxx" |
|||
|
|||
#include <SLES/OpenSLES.h> |
|||
@@ -413,5 +412,5 @@
|
|||
"sles", |
|||
sles_test_default_device, |
|||
SlesOutput::Create, |
|||
- &android_mixer_plugin,
|
|||
+ nullptr,
|
|||
}; |
Loading…
Reference in new issue