From patchwork Fri Jan 22 12:36:58 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vicente Olivert Riera X-Patchwork-Id: 571679 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id A53771402A9 for ; Fri, 22 Jan 2016 23:37:17 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 446BE8C0CC; Fri, 22 Jan 2016 12:37:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hbkiTRzhW79p; Fri, 22 Jan 2016 12:37:10 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 435EE8C17F; Fri, 22 Jan 2016 12:37:08 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 3A5721C0FE5 for ; Fri, 22 Jan 2016 12:37:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 34067896A1 for ; Fri, 22 Jan 2016 12:37:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MoAMyVWClydS for ; Fri, 22 Jan 2016 12:37:06 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by fraxinus.osuosl.org (Postfix) with ESMTP id E28B4896B9 for ; Fri, 22 Jan 2016 12:37:05 +0000 (UTC) Received: from hhmail02.hh.imgtec.org (unknown [10.100.10.20]) by Websense Email Security Gateway with ESMTPS id 85E2516E327A for ; Fri, 22 Jan 2016 12:37:02 +0000 (GMT) Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by hhmail02.hh.imgtec.org (10.100.10.20) with Microsoft SMTP Server (TLS) id 14.3.235.1; Fri, 22 Jan 2016 12:37:04 +0000 Received: from vriera-linux.le.imgtec.org (192.168.154.36) by LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id 14.3.210.2; Fri, 22 Jan 2016 12:37:03 +0000 From: Vicente Olivert Riera To: Date: Fri, 22 Jan 2016 12:36:58 +0000 Message-ID: <1453466218-63957-1-git-send-email-Vincent.Riera@imgtec.com> X-Mailer: git-send-email 2.4.10 MIME-Version: 1.0 X-Originating-IP: [192.168.154.36] Subject: [Buildroot] [PATCH] pulseaudio: bump to version 8.0 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" - Bump to version 8.0 - Update hash values - Remove upstreamed patch: http://cgit.freedesktop.org/pulseaudio/pulseaudio/commit/?id=1c5005ef77737a21b513eaa322d2f119e12f31e3 Signed-off-by: Vicente Olivert Riera --- ...acket-avoid-redefinition-of-pa_packet-str.patch | 64 ---------------------- package/pulseaudio/pulseaudio.hash | 6 +- package/pulseaudio/pulseaudio.mk | 2 +- 3 files changed, 4 insertions(+), 68 deletions(-) delete mode 100644 package/pulseaudio/0001-pulsecore-packet-avoid-redefinition-of-pa_packet-str.patch diff --git a/package/pulseaudio/0001-pulsecore-packet-avoid-redefinition-of-pa_packet-str.patch b/package/pulseaudio/0001-pulsecore-packet-avoid-redefinition-of-pa_packet-str.patch deleted file mode 100644 index 10741a1..0000000 --- a/package/pulseaudio/0001-pulsecore-packet-avoid-redefinition-of-pa_packet-str.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 0c9b79cd8f6b8a88d7e60741607173af5d320203 Mon Sep 17 00:00:00 2001 -From: Thomas Petazzoni -Date: Tue, 17 Nov 2015 12:00:53 +0100 -Subject: [PATCH] pulsecore/packet: avoid redefinition of pa_packet structure - -packet.h defines: - - typedef struct pa_packet pa_packet; - -and packet.c defines: - - typedef struct pa_packet { - ... - } pa_packet; - -With old versions of gcc (such as gcc 4.5) this causes a redefinition -error at compile time: - -pulsecore/packet.c:43:3: error: redefinition of typedef 'pa_packet' -pulsecore/packet.h:26:26: note: previous declaration of 'pa_packet' was here - -In order to fix this, this commit changes the definition in packet.c -to just: - - struct pa_packet { - ... - }; - -This way, the contents of the structure remain opaque to users of -pa_packet outside packet.c, and the 'pa_packet' type remains usable. - -Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=91334 - -Signed-off-by: Thomas Petazzoni -Submitted-upstream-at: http://lists.freedesktop.org/archives/pulseaudio-discuss/2015-November/024785.html ---- - src/pulsecore/packet.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/pulsecore/packet.c b/src/pulsecore/packet.c -index e275d23..2a61d58 100644 ---- a/src/pulsecore/packet.c -+++ b/src/pulsecore/packet.c -@@ -32,7 +32,7 @@ - - #define MAX_APPENDED_SIZE 128 - --typedef struct pa_packet { -+struct pa_packet { - PA_REFCNT_DECLARE; - enum { PA_PACKET_APPENDED, PA_PACKET_DYNAMIC } type; - size_t length; -@@ -40,7 +40,7 @@ typedef struct pa_packet { - union { - uint8_t appended[MAX_APPENDED_SIZE]; - } per_type; --} pa_packet; -+}; - - PA_STATIC_FLIST_DECLARE(packets, 0, pa_xfree); - --- -2.6.3 - diff --git a/package/pulseaudio/pulseaudio.hash b/package/pulseaudio/pulseaudio.hash index 7e9dcac..0d1a3d2 100644 --- a/package/pulseaudio/pulseaudio.hash +++ b/package/pulseaudio/pulseaudio.hash @@ -1,3 +1,3 @@ -# From http://freedesktop.org/software/pulseaudio/releases/pulseaudio-7.1.tar.xz.{md5,sha1} -md5 9d0a9817b632cac8e3f3834d7eb1c99d pulseaudio-7.1.tar.xz -sha1 dc35a8aa66c513ac989319e13a18e317d8e432b3 pulseaudio-7.1.tar.xz +# From http://freedesktop.org/software/pulseaudio/releases/pulseaudio-8.0.tar.xz.{md5,sha1} +md5 8678442ba0bb4b4c33ac6f62542962df pulseaudio-8.0.tar.xz +sha1 1399a2f6288ad743184b6c2192129fef033343ac pulseaudio-8.0.tar.xz diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk index a59a6c5..8450090 100644 --- a/package/pulseaudio/pulseaudio.mk +++ b/package/pulseaudio/pulseaudio.mk @@ -4,7 +4,7 @@ # ################################################################################ -PULSEAUDIO_VERSION = 7.1 +PULSEAUDIO_VERSION = 8.0 PULSEAUDIO_SOURCE = pulseaudio-$(PULSEAUDIO_VERSION).tar.xz PULSEAUDIO_SITE = http://freedesktop.org/software/pulseaudio/releases PULSEAUDIO_INSTALL_STAGING = YES