All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/shairport-sync: bump to version 3.3.9
@ 2021-12-30 23:07 Fabrice Fontaine
  2022-01-01 10:13 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-12-30 23:07 UTC (permalink / raw
  To: buildroot; +Cc: Jörg Krause, Fabrice Fontaine

Drop second patch (already in version)

https://github.com/mikebrady/shairport-sync/releases/tag/3.3.9

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...re.ac-fix-build-with-automake-1.16.5.patch | 48 -------------------
 package/shairport-sync/shairport-sync.hash    |  2 +-
 package/shairport-sync/shairport-sync.mk      |  2 +-
 3 files changed, 2 insertions(+), 50 deletions(-)
 delete mode 100644 package/shairport-sync/0002-configure.ac-fix-build-with-automake-1.16.5.patch

diff --git a/package/shairport-sync/0002-configure.ac-fix-build-with-automake-1.16.5.patch b/package/shairport-sync/0002-configure.ac-fix-build-with-automake-1.16.5.patch
deleted file mode 100644
index 2ee8f59fee..0000000000
--- a/package/shairport-sync/0002-configure.ac-fix-build-with-automake-1.16.5.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From ad22edb303a470b6f9eda9fd9d3f588bb2eff8cb Mon Sep 17 00:00:00 2001
-From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Date: Fri, 15 Oct 2021 08:02:23 +0200
-Subject: [PATCH] configure.ac: fix build with automake 1.16.5
-
-Fix the following build failure with convolution raised since automake
-1.16.5 and
-https://git.savannah.gnu.org/cgit/automake.git/commit/?id=f4a3a70f69e1dbccb6578f39ef47835098a04624:
-
-configure.ac:305: error: AM_INIT_AUTOMAKE expanded multiple times
-/home/giuliobenetti/autobuild/run/instance-1/output-1/host/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from...
-configure.ac:6: the top level
-/home/giuliobenetti/autobuild/run/instance-1/output-1/host/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from...
-configure.ac:305: the top level
-
-Fixes:
- - http://autobuild.buildroot.org/results/464148bdccb705d8992dc860262bfdeb01b7e2a1
-
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-[Upstream status: https://github.com/mikebrady/shairport-sync/pull/1314]
----
- configure.ac | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index f77087c5..aa533a2d 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -3,7 +3,7 @@
- 
- AC_PREREQ([2.50])
- AC_INIT([shairport-sync], [3.3.8], [4265913+mikebrady@users.noreply.github.com])
--AM_INIT_AUTOMAKE
-+AM_INIT_AUTOMAKE([subdir-objects])
- AC_CONFIG_SRCDIR([shairport.c])
- AC_CONFIG_HEADERS([config.h])
- AC_PROG_RANLIB
-@@ -302,7 +302,6 @@ AM_CONDITIONAL([USE_PA], [test "x$with_pa" = "xyes"])
- # Look for Convolution flag
- AC_ARG_WITH(convolution, [AS_HELP_STRING([--with-convolution],[choose audio DSP convolution support])])
- if test "x$with_convolution" = "xyes" ; then
--  AM_INIT_AUTOMAKE([subdir-objects])
-   AC_DEFINE([CONFIG_CONVOLUTION], 1, [Include audio DSP convolution support.])
-   AC_CHECK_LIB([sndfile], [sf_open], , AC_MSG_ERROR(Convolution support requires the sndfile library -- libsndfile1-dev suggested!))
- fi
--- 
-2.33.0
-
diff --git a/package/shairport-sync/shairport-sync.hash b/package/shairport-sync/shairport-sync.hash
index ebc81dedc1..331866a379 100644
--- a/package/shairport-sync/shairport-sync.hash
+++ b/package/shairport-sync/shairport-sync.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  c92f9a2d86dd1138673abc66e0010c94412ad6a46da8f36c3d538f4fa6b9faca  shairport-sync-3.3.8.tar.gz
+sha256  17990cb2620551caa07a1c3b371889e55803071eaada04e958c356547a7e1795  shairport-sync-3.3.9.tar.gz
 sha256  1daaa904985807b7f9f2fa91f6b19f3faadf8df4e813f7451a691f89a6965e3f  LICENSES
diff --git a/package/shairport-sync/shairport-sync.mk b/package/shairport-sync/shairport-sync.mk
index ba8b44a621..cf49f2b2ed 100644
--- a/package/shairport-sync/shairport-sync.mk
+++ b/package/shairport-sync/shairport-sync.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SHAIRPORT_SYNC_VERSION = 3.3.8
+SHAIRPORT_SYNC_VERSION = 3.3.9
 SHAIRPORT_SYNC_SITE = $(call github,mikebrady,shairport-sync,$(SHAIRPORT_SYNC_VERSION))
 
 SHAIRPORT_SYNC_LICENSE = MIT, BSD-3-Clause
-- 
2.33.0

_______________________________________________
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/shairport-sync: bump to version 3.3.9
  2021-12-30 23:07 [Buildroot] [PATCH 1/1] package/shairport-sync: bump to version 3.3.9 Fabrice Fontaine
@ 2022-01-01 10:13 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2022-01-01 10:13 UTC (permalink / raw
  To: Fabrice Fontaine; +Cc: Jörg Krause, buildroot

Fabrice, All,

On 2021-12-31 00:07 +0100, Fabrice Fontaine spake thusly:
> Drop second patch (already in version)
> 
> https://github.com/mikebrady/shairport-sync/releases/tag/3.3.9
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  ...re.ac-fix-build-with-automake-1.16.5.patch | 48 -------------------
>  package/shairport-sync/shairport-sync.hash    |  2 +-
>  package/shairport-sync/shairport-sync.mk      |  2 +-
>  3 files changed, 2 insertions(+), 50 deletions(-)
>  delete mode 100644 package/shairport-sync/0002-configure.ac-fix-build-with-automake-1.16.5.patch
> 
> diff --git a/package/shairport-sync/0002-configure.ac-fix-build-with-automake-1.16.5.patch b/package/shairport-sync/0002-configure.ac-fix-build-with-automake-1.16.5.patch
> deleted file mode 100644
> index 2ee8f59fee..0000000000
> --- a/package/shairport-sync/0002-configure.ac-fix-build-with-automake-1.16.5.patch
> +++ /dev/null
> @@ -1,48 +0,0 @@
> -From ad22edb303a470b6f9eda9fd9d3f588bb2eff8cb Mon Sep 17 00:00:00 2001
> -From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> -Date: Fri, 15 Oct 2021 08:02:23 +0200
> -Subject: [PATCH] configure.ac: fix build with automake 1.16.5
> -
> -Fix the following build failure with convolution raised since automake
> -1.16.5 and
> -https://git.savannah.gnu.org/cgit/automake.git/commit/?id=f4a3a70f69e1dbccb6578f39ef47835098a04624:
> -
> -configure.ac:305: error: AM_INIT_AUTOMAKE expanded multiple times
> -/home/giuliobenetti/autobuild/run/instance-1/output-1/host/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from...
> -configure.ac:6: the top level
> -/home/giuliobenetti/autobuild/run/instance-1/output-1/host/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from...
> -configure.ac:305: the top level
> -
> -Fixes:
> - - http://autobuild.buildroot.org/results/464148bdccb705d8992dc860262bfdeb01b7e2a1
> -
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> -[Upstream status: https://github.com/mikebrady/shairport-sync/pull/1314]
> ----
> - configure.ac | 3 +--
> - 1 file changed, 1 insertion(+), 2 deletions(-)
> -
> -diff --git a/configure.ac b/configure.ac
> -index f77087c5..aa533a2d 100644
> ---- a/configure.ac
> -+++ b/configure.ac
> -@@ -3,7 +3,7 @@
> - 
> - AC_PREREQ([2.50])
> - AC_INIT([shairport-sync], [3.3.8], [4265913+mikebrady@users.noreply.github.com])
> --AM_INIT_AUTOMAKE
> -+AM_INIT_AUTOMAKE([subdir-objects])
> - AC_CONFIG_SRCDIR([shairport.c])
> - AC_CONFIG_HEADERS([config.h])
> - AC_PROG_RANLIB
> -@@ -302,7 +302,6 @@ AM_CONDITIONAL([USE_PA], [test "x$with_pa" = "xyes"])
> - # Look for Convolution flag
> - AC_ARG_WITH(convolution, [AS_HELP_STRING([--with-convolution],[choose audio DSP convolution support])])
> - if test "x$with_convolution" = "xyes" ; then
> --  AM_INIT_AUTOMAKE([subdir-objects])
> -   AC_DEFINE([CONFIG_CONVOLUTION], 1, [Include audio DSP convolution support.])
> -   AC_CHECK_LIB([sndfile], [sf_open], , AC_MSG_ERROR(Convolution support requires the sndfile library -- libsndfile1-dev suggested!))
> - fi
> --- 
> -2.33.0
> -
> diff --git a/package/shairport-sync/shairport-sync.hash b/package/shairport-sync/shairport-sync.hash
> index ebc81dedc1..331866a379 100644
> --- a/package/shairport-sync/shairport-sync.hash
> +++ b/package/shairport-sync/shairport-sync.hash
> @@ -1,3 +1,3 @@
>  # Locally calculated
> -sha256  c92f9a2d86dd1138673abc66e0010c94412ad6a46da8f36c3d538f4fa6b9faca  shairport-sync-3.3.8.tar.gz
> +sha256  17990cb2620551caa07a1c3b371889e55803071eaada04e958c356547a7e1795  shairport-sync-3.3.9.tar.gz
>  sha256  1daaa904985807b7f9f2fa91f6b19f3faadf8df4e813f7451a691f89a6965e3f  LICENSES
> diff --git a/package/shairport-sync/shairport-sync.mk b/package/shairport-sync/shairport-sync.mk
> index ba8b44a621..cf49f2b2ed 100644
> --- a/package/shairport-sync/shairport-sync.mk
> +++ b/package/shairport-sync/shairport-sync.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -SHAIRPORT_SYNC_VERSION = 3.3.8
> +SHAIRPORT_SYNC_VERSION = 3.3.9
>  SHAIRPORT_SYNC_SITE = $(call github,mikebrady,shairport-sync,$(SHAIRPORT_SYNC_VERSION))
>  
>  SHAIRPORT_SYNC_LICENSE = MIT, BSD-3-Clause
> -- 
> 2.33.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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-01-01 10:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-30 23:07 [Buildroot] [PATCH 1/1] package/shairport-sync: bump to version 3.3.9 Fabrice Fontaine
2022-01-01 10:13 ` Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.