aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-05-21 23:50:52 -0300
committerLeo <thinkabit.ukim@gmail.com>2020-05-22 08:03:47 +0000
commit587061d250657107393c7d177270dc18176513be (patch)
tree08bfb768efbc7cea365cb71f7e48c943632c901a
parentc773d6d0d9b2afa790264a4aa5d455843e139d84 (diff)
downloadalpine_aports-587061d250657107393c7d177270dc18176513be.tar.bz2
alpine_aports-587061d250657107393c7d177270dc18176513be.tar.xz
alpine_aports-587061d250657107393c7d177270dc18176513be.zip
community/pipewire: upgrade to 0.3.5
-rw-r--r--community/pipewire/APKBUILD8
-rw-r--r--community/pipewire/e83bf8a33f720050c7f1ec5f00530fafd5af5698.patch28
2 files changed, 3 insertions, 33 deletions
diff --git a/community/pipewire/APKBUILD b/community/pipewire/APKBUILD
index 229547aa07..92e8153a2b 100644
--- a/community/pipewire/APKBUILD
+++ b/community/pipewire/APKBUILD
@@ -1,7 +1,7 @@
1# Contributor: Rasmus Thomsen <oss@cogitri.dev> 1# Contributor: Rasmus Thomsen <oss@cogitri.dev>
2# Maintainer: Rasmus Thomsen <oss@cogitri.dev> 2# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
3pkgname=pipewire 3pkgname=pipewire
4pkgver=0.3.4 4pkgver=0.3.5
5pkgrel=0 5pkgrel=0
6pkgdesc="Multimedia processing graphs" 6pkgdesc="Multimedia processing graphs"
7url="https://pipewire.org/" 7url="https://pipewire.org/"
@@ -14,7 +14,6 @@ options="!check" # no tests
14subpackages="$pkgname-dev $pkgname-doc" 14subpackages="$pkgname-dev $pkgname-doc"
15source="$pkgname-$pkgver.tar.gz::https://github.com/PipeWire/pipewire/archive/$pkgver.tar.gz 15source="$pkgname-$pkgver.tar.gz::https://github.com/PipeWire/pipewire/archive/$pkgver.tar.gz
16 fix-s390x.patch 16 fix-s390x.patch
17 e83bf8a33f720050c7f1ec5f00530fafd5af5698.patch
18 " 17 "
19 18
20build() { 19build() {
@@ -38,6 +37,5 @@ package() {
38 DESTDIR="$pkgdir" ninja -C output install 37 DESTDIR="$pkgdir" ninja -C output install
39} 38}
40 39
41sha512sums="d53990e54a657e58fcab52bb75c0b8b81cc621c8e1ed851d8780e2940bb19bdc8f9e894fe261a11180579a9536ade92f93278b31ff04bba35f51e252f00376eb pipewire-0.3.4.tar.gz 40sha512sums="caceee853cbe86fb248ac8f65847e8f5cc743f99e643f154a0f7db8bc57de84ea5993ec7dd1d45b4f6dc36e82f329e6554c07bd568073dbfcbcb87f439dcdfe3 pipewire-0.3.5.tar.gz
42576a6fbb7d457bda70822a175a188b6f9dbf3b5cf9efa660e458f6d54ff6b88376821164534ec073f20b929d81c2232783f63612fc9ec5803bfe23356449f314 fix-s390x.patch 41576a6fbb7d457bda70822a175a188b6f9dbf3b5cf9efa660e458f6d54ff6b88376821164534ec073f20b929d81c2232783f63612fc9ec5803bfe23356449f314 fix-s390x.patch"
435fca169b5f16b60cc3e0bd5ce9f3ee2a76300811868f11590dd4a752cb5dd63f98391e6b526c4711338b1829a0a6cd02b451aca53ad9936e87b99814b5ed8d5c e83bf8a33f720050c7f1ec5f00530fafd5af5698.patch"
diff --git a/community/pipewire/e83bf8a33f720050c7f1ec5f00530fafd5af5698.patch b/community/pipewire/e83bf8a33f720050c7f1ec5f00530fafd5af5698.patch
deleted file mode 100644
index da63b22a27..0000000000
--- a/community/pipewire/e83bf8a33f720050c7f1ec5f00530fafd5af5698.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1Upstream: Yes
2Reason: Fix compilation with -Werror=suggest-attribute=format
3From e83bf8a33f720050c7f1ec5f00530fafd5af5698 Mon Sep 17 00:00:00 2001
4From: Wim Taymans <wtaymans@redhat.com>
5Date: Fri, 1 May 2020 11:18:28 +0200
6Subject: [PATCH] log: use printf attribute for log fallback
7
8Fixes #233
9---
10 spa/include/spa/support/log.h | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/spa/include/spa/support/log.h b/spa/include/spa/support/log.h
14index c97cc8e5..51b3e741 100644
15--- a/spa/include/spa/support/log.h
16+++ b/spa/include/spa/support/log.h
17@@ -139,7 +139,7 @@ struct spa_log_methods {
18 #else
19
20 #define SPA_LOG_FUNC(name,lev) \
21-static inline void spa_log_##name (struct spa_log *l, const char *format, ...) \
22+static inline SPA_PRINTF_FUNC(2,3) void spa_log_##name (struct spa_log *l, const char *format, ...) \
23 { \
24 if (SPA_UNLIKELY(spa_log_level_enabled(l, lev))) { \
25 va_list varargs; \
26--
272.26.2
28