Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/alsa-lib: bump version to 1.2.7.1
@ 2022-07-05 17:11 Bernd Kuhls
  2022-07-08  7:37 ` Peter Korsgaard
  0 siblings, 1 reply; 2+ messages in thread
From: Bernd Kuhls @ 2022-07-05 17:11 UTC (permalink / raw)
  To: buildroot

Changelog: https://www.alsa-project.org/wiki/Changes_v1.2.7_v1.2.7.1

Removed patch which was applied upstream:
https://github.com/alsa-project/alsa-lib/commit/92fff4e9d06922fa3648d85c8501638c869d6184

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 .../0002-output-include-stdarg.h.patch        | 40 -------------------
 package/alsa-lib/alsa-lib.hash                |  2 +-
 package/alsa-lib/alsa-lib.mk                  |  2 +-
 3 files changed, 2 insertions(+), 42 deletions(-)
 delete mode 100644 package/alsa-lib/0002-output-include-stdarg.h.patch

diff --git a/package/alsa-lib/0002-output-include-stdarg.h.patch b/package/alsa-lib/0002-output-include-stdarg.h.patch
deleted file mode 100644
index cf7c25becd..0000000000
--- a/package/alsa-lib/0002-output-include-stdarg.h.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From b7c0169a62d4e6ad1a0a9de4ef8ae8089ee98872 Mon Sep 17 00:00:00 2001
-From: Bernd Kuhls <bernd.kuhls@t-online.de>
-Date: Sat, 11 Jun 2022 19:12:19 +0200
-Subject: [PATCH] output: include stdarg.h
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Fixes a build error with alsa-utils when build with a uClibc toolchain:
-
-alsa-utils/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/alsa/output.h:75:66:
- error: unknown type name ‘va_list’
-   75 | int snd_output_vprintf(snd_output_t *output, const char *format, va_list args);
-      |                                                                  ^~~~~~~
-alsa-utils/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/alsa/output.h:1:1:
- note: ‘va_list’ is defined in header ‘<stdarg.h>’; did you forget to ‘#include <stdarg.h>’?
-
-Patch sent upstream: https://github.com/alsa-project/alsa-lib/pull/237
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
----
- include/output.h | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/include/output.h b/include/output.h
-index 4a970dc4..5e16420b 100644
---- a/include/output.h
-+++ b/include/output.h
-@@ -28,6 +28,8 @@
- #ifndef __ALSA_OUTPUT_H
- #define __ALSA_OUTPUT_H
- 
-+#include <stdarg.h>
-+
- #ifdef __cplusplus
- extern "C" {
- #endif
--- 
-2.30.2
-
diff --git a/package/alsa-lib/alsa-lib.hash b/package/alsa-lib/alsa-lib.hash
index a859505372..7c17e18ec3 100644
--- a/package/alsa-lib/alsa-lib.hash
+++ b/package/alsa-lib/alsa-lib.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256  8814e61f7ec6812c76e23a85cab00e0b0d3bba40816af36b726beb1bc04c74a7  alsa-lib-1.2.7.tar.bz2
+sha256  046dc42dfcfad269217be05954686137e5e7397f3041372f8c6dcd7d79461e61  alsa-lib-1.2.7.1.tar.bz2
 sha256  32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b  COPYING
 sha256  bfe16cf823bcff261fc6a062c07ee96660e3c39678f42f39a788a68dbc234ced  aserver/COPYING
diff --git a/package/alsa-lib/alsa-lib.mk b/package/alsa-lib/alsa-lib.mk
index d6054bb000..61f625bcff 100644
--- a/package/alsa-lib/alsa-lib.mk
+++ b/package/alsa-lib/alsa-lib.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-ALSA_LIB_VERSION = 1.2.7
+ALSA_LIB_VERSION = 1.2.7.1
 ALSA_LIB_SOURCE = alsa-lib-$(ALSA_LIB_VERSION).tar.bz2
 ALSA_LIB_SITE = https://www.alsa-project.org/files/pub/lib
 ALSA_LIB_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (aserver)
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/alsa-lib: bump version to 1.2.7.1
  2022-07-05 17:11 [Buildroot] [PATCH 1/1] package/alsa-lib: bump version to 1.2.7.1 Bernd Kuhls
@ 2022-07-08  7:37 ` Peter Korsgaard
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2022-07-08  7:37 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Changelog: https://www.alsa-project.org/wiki/Changes_v1.2.7_v1.2.7.1
 > Removed patch which was applied upstream:
 > https://github.com/alsa-project/alsa-lib/commit/92fff4e9d06922fa3648d85c8501638c869d6184

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-07-08  7:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-05 17:11 [Buildroot] [PATCH 1/1] package/alsa-lib: bump version to 1.2.7.1 Bernd Kuhls
2022-07-08  7:37 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox