Compare commits

...
9 Commits
Author SHA1 Message Date
EnumDev 79b34ac714 Update package version to 1.6.8 2026-07-16 21:57:58 +03:00
EnumDev bbb01d1d42 Rebuild package 2026-07-10 19:15:56 +03:00
EnumDev 303e77261d Update package version to 1.6.7 2026-06-21 11:34:13 +03:00
EnumDev 4882622f28 Switch to new package format 2026-06-13 20:00:52 +03:00
EnumDev 1d685b4265 Update package version to 1.6.6 2026-06-01 14:42:40 +03:00
EnumDev f35f648716 Rebuild with dconf 2026-05-21 19:41:34 +03:00
EnumDev 61e42ac4c2 Update package version to 1.6.5 2026-05-17 16:18:41 +03:00
EnumDev 972f362e4b Update package version to 1.6.4 2026-04-26 16:17:25 +03:00
EnumDev f8019c4de9 Update package version to 1.6.3 2026-04-20 12:19:21 +03:00
3 changed files with 7 additions and 38 deletions
+6 -5
View File
@@ -1,7 +1,7 @@
name: pipewire
description: Low-latency audio/video router and processor
version: 1.6.2
revision: 3
version: 1.6.8
revision: 1
url: https://pipewire.org/
license: LGPL2.1-or-later,MIT
maintainers:
@@ -44,7 +44,7 @@ downloads:
- url: https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/${BPM_PKG_VERSION}/pipewire-${BPM_PKG_VERSION}.tar.bz2
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 3649ff3502c93036088b61154aa12dc375c95031db18efb2c4abab691d2e758e
checksum: efbaedf80450e5b08bb3196a4ca7ea17850d4a71ec1a8ae321e8937a7c95779e
split_packages:
- name: pipewire
depends:
@@ -76,15 +76,16 @@ split_packages:
depends:
- pipewire
- sh
provides:
- jack
conflicts:
- jack
provides:
- jack
- name: pipewire-pulse
description: PulseAudio replacement for Pipewire
depends:
- avahi
- dbus
- dconf
- glibc
- pipewire
conflicts:
+1 -8
View File
@@ -1,14 +1,7 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
cd "$BPM_SOURCE"
patch -Np1 -i "$BPM_WORKDIR"/fix-build-errors.patch
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
-25
View File
@@ -1,25 +0,0 @@
From fb47e739d9f605772b5098421a809537c108d30c Mon Sep 17 00:00:00 2001
From: Wim Taymans <[email protected]>
Date: Mon, 16 Mar 2026 13:11:20 +0100
Subject: [PATCH] acp: fix -Werror=discarded-qualifiers error
---
spa/plugins/alsa/acp/compat.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/spa/plugins/alsa/acp/compat.h b/spa/plugins/alsa/acp/compat.h
index f7592e1a6e..0f7b959df9 100644
--- a/spa/plugins/alsa/acp/compat.h
+++ b/spa/plugins/alsa/acp/compat.h
@@ -429,9 +429,9 @@ static PA_PRINTF_FUNC(1,0) inline char *pa_vsprintf_malloc(const char *fmt, va_l
#define pa_fopen_cloexec(f,m) fopen(f,m"e")
-static inline char *pa_path_get_filename(const char *p)
+static inline const char *pa_path_get_filename(const char *p)
{
- char *fn;
+ const char *fn;
if (!p)
return NULL;
if ((fn = strrchr(p, PA_PATH_SEP_CHAR)))