diff mbox series

[AUH] alsa-plugins: upgrading to 1.2.12 SUCCEEDED

Message ID 010101901d23bd6b-4134aa09-0461-41cd-986f-6a5794381f0b-000000@us-west-2.amazonses.com
State New
Headers show
Series [AUH] alsa-plugins: upgrading to 1.2.12 SUCCEEDED | expand

Commit Message

auh@yoctoproject.org June 15, 2024, 6:23 p.m. UTC
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *alsa-plugins* to *1.2.12* has Succeeded.

Next steps:
    - apply the patch: git am 0001-alsa-plugins-upgrade-1.2.7.1-1.2.12.patch
    - check the changes to upstream patches and summarize them in the commit message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update failures.
Any problem please file a bug at https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
From 842eddd99d20f2291eeed420fc1d2d3b75e71130 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <auh@yoctoproject.org>
Date: Sat, 15 Jun 2024 15:00:20 +0000
Subject: [PATCH] alsa-plugins: upgrade 1.2.7.1 -> 1.2.12

---
 ...-arcam_av.c-Include-missing-string.h.patch | 25 -------
 ...gins_1.2.7.1.bb => alsa-plugins_1.2.12.bb} | 72 +++++++++++++++++--
 2 files changed, 67 insertions(+), 30 deletions(-)
 delete mode 100644 meta/recipes-multimedia/alsa/alsa-plugins/0001-arcam_av.c-Include-missing-string.h.patch
 rename meta/recipes-multimedia/alsa/{alsa-plugins_1.2.7.1.bb => alsa-plugins_1.2.12.bb} (77%)
diff mbox series

Patch

diff --git a/meta/recipes-multimedia/alsa/alsa-plugins/0001-arcam_av.c-Include-missing-string.h.patch b/meta/recipes-multimedia/alsa/alsa-plugins/0001-arcam_av.c-Include-missing-string.h.patch
deleted file mode 100644
index ff7745d637..0000000000
--- a/meta/recipes-multimedia/alsa/alsa-plugins/0001-arcam_av.c-Include-missing-string.h.patch
+++ /dev/null
@@ -1,25 +0,0 @@ 
-From b01b176a665ba65979d74922955f51dc4888a713 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 23 Aug 2022 15:21:16 -0700
-Subject: [PATCH] arcam_av.c: Include missing string.h
-
-bzero() function needs this header to be included
-
-Upstream-Status: Submitted [https://github.com/alsa-project/alsa-plugins/pull/47]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- arcam-av/arcam_av.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/arcam-av/arcam_av.c b/arcam-av/arcam_av.c
-index 63f9b4e..29fc537 100644
---- a/arcam-av/arcam_av.c
-+++ b/arcam-av/arcam_av.c
-@@ -27,6 +27,7 @@
- #include <signal.h>
- #include <stddef.h>
- #include <stdio.h>
-+#include <string.h>
- #include <termios.h>
- #include <unistd.h>
- 
diff --git a/meta/recipes-multimedia/alsa/alsa-plugins_1.2.7.1.bb b/meta/recipes-multimedia/alsa/alsa-plugins_1.2.12.bb
similarity index 77%
rename from meta/recipes-multimedia/alsa/alsa-plugins_1.2.7.1.bb
rename to meta/recipes-multimedia/alsa/alsa-plugins_1.2.12.bb
index 9500462d5c..fb604c811b 100644
--- a/meta/recipes-multimedia/alsa/alsa-plugins_1.2.7.1.bb
+++ b/meta/recipes-multimedia/alsa/alsa-plugins_1.2.12.bb
@@ -1,3 +1,67 @@ 
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- rate/rate_samplerate.c
+# +++ rate/rate_samplerate.c
+# @@ -2,26 +2,6 @@
+#   * Rate converter plugin using libsamplerate
+#   *
+#   * Copyright (c) 2006 by Takashi Iwai <tiwai@suse.de>
+# - *
+# - * This plugin code is supposed to be used and distributed primarily
+# - * under GPL v2 or later, in order to follow the license of libsamplerate.
+# - * However, if you already own a commercial license to use libsamplerate
+# - * for dynamic linking, this plugin code can be used and distributed also
+# - * under LGPL v2.1 or later.
+# - *
+# - * For GPL-2.0+:
+# - *
+# - * This program is free software; you can redistribute it and/or modify
+# - * it under the terms of the GNU General Public License as published by
+# - * the Free Software Foundation; either version 2 of the License, or
+# - * (at your option) any later version.
+# - *
+# - * This program is distributed in the hope that it will be useful,
+# - * but WITHOUT ANY WARRANTY; without even the implied warranty of
+# - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# - * GNU General Public License for more details.
+# - *
+# - * For LGPL-2.1+:
+#   *
+#   * This library is free software; you can redistribute it and/or
+#   * modify it under the terms of the GNU Lesser General Public
+# @@ -33,3 +13,23 @@
+#   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#   * Lesser General Public License for more details.
+#   */
+# +
+# +#include <stdio.h>
+# +#include <samplerate.h>
+# +#include <alsa/asoundlib.h>
+# +#include <alsa/pcm_rate.h>
+# +
+# +struct rate_src {
+# +	unsigned int version;
+# +	double ratio;
+# +	int converter;
+# +	unsigned int channels;
+# +	int in_int;
+# +	int out_int;
+# +	float *src_buf;
+# +	float *dst_buf;
+# +	SRC_STATE *state;
+# +	SRC_DATA data;
+# +};
+# +
+# +static snd_pcm_uframes_t input_frames(void *obj, snd_pcm_uframes_t frames)
+# 
+#
+
 SUMMARY = "ALSA Plugins"
 DESCRIPTION = "Used to create virtual devices that can be used like normal \
 hardware devices but cause extra processing of the sound stream to take place. \
@@ -19,13 +83,11 @@  LICENSE = "LGPL-2.1-only & GPL-2.0-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7 \
                     file://COPYING.GPL;md5=59530bdf33659b29e73d4adb9f9f6552 \
                     file://m4/attributes.m4;endline=33;md5=bb8c6b2a67ac15156961e242fec33e50 \
-                    file://rate/rate_samplerate.c;endline=35;md5=fd77bce85f4a338c0e8ab18430b69fae \
+                    file://rate/rate_samplerate.c;endline=35;md5=07fcfc9e83a7159ad14a7196ecdc7d48 \
                     "
 
-SRC_URI = "https://www.alsa-project.org/files/pub/plugins/${BP}.tar.bz2 \
-           file://0001-arcam_av.c-Include-missing-string.h.patch \
-           "
-SRC_URI[sha256sum] = "8c337814954bb7c167456733a6046142a2931f12eccba3ec2a4ae618a3432511"
+SRC_URI = "https://www.alsa-project.org/files/pub/plugins/${BP}.tar.bz2"
+SRC_URI[sha256sum] = "7bd8a83d304e8e2d86a25895d8dcb0ef0245a8df32e271959cdbdc6af39b66f2"
 
 DEPENDS += "alsa-lib"