All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/flac: bump version to 1.4.2
@ 2022-10-30 19:44 Bernd Kuhls
  2022-10-31 10:02 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Bernd Kuhls @ 2022-10-30 19:44 UTC (permalink / raw)
  To: buildroot

Changelog: https://xiph.org/flac/changelog.html

Switched _SITE to https and update project URL.

Upstream removed the dependency to host-nasm:
https://github.com/xiph/flac/commit/75ef7958df603ca6de29fa00e82615e0da017903#diff-49473dca262eeab3b4a43002adb08b4db31020d190caaad1594b47f1d5daa810L474

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/flac/Config.in |  2 +-
 package/flac/flac.hash |  4 ++--
 package/flac/flac.mk   | 11 ++---------
 3 files changed, 5 insertions(+), 12 deletions(-)

diff --git a/package/flac/Config.in b/package/flac/Config.in
index 267acb7f34..62aca290fe 100644
--- a/package/flac/Config.in
+++ b/package/flac/Config.in
@@ -4,7 +4,7 @@ config BR2_PACKAGE_FLAC
 	help
 	  FLAC is an Open Source lossless audio codec.
 
-	  http://flac.sourceforge.net/
+	  https://xiph.org/flac/
 
 comment "flac needs a toolchain w/ wchar"
 	depends on !BR2_USE_WCHAR
diff --git a/package/flac/flac.hash b/package/flac/flac.hash
index 1f7763fd6e..b993ebd759 100644
--- a/package/flac/flac.hash
+++ b/package/flac/flac.hash
@@ -1,5 +1,5 @@
-# From http://downloads.xiph.org/releases/flac/SHA256SUMS.txt
-sha256  af41c0733c93c237c3e52f64dd87e3b0d9af38259f1c7d11e8cbf583c48c2506  flac-1.4.0.tar.xz
+# From https://ftp.osuosl.org/pub/xiph/releases/flac/SHA256SUMS.txt
+sha256  e322d58a1f48d23d9dd38f432672865f6f79e73a6f9cc5a5f57fcaa83eb5a8e4  flac-1.4.2.tar.xz
 # Locally computed
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING.GPL
 sha256  5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a  COPYING.LGPL
diff --git a/package/flac/flac.mk b/package/flac/flac.mk
index 91d5840d72..ebb4778521 100644
--- a/package/flac/flac.mk
+++ b/package/flac/flac.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-FLAC_VERSION = 1.4.0
-FLAC_SITE = http://downloads.xiph.org/releases/flac
+FLAC_VERSION = 1.4.2
+FLAC_SITE = https://ftp.osuosl.org/pub/xiph/releases/flac
 FLAC_SOURCE = flac-$(FLAC_VERSION).tar.xz
 FLAC_INSTALL_STAGING = YES
 FLAC_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
@@ -27,11 +27,4 @@ else
 FLAC_CONF_OPTS += --disable-ogg
 endif
 
-ifeq ($(BR2_X86_CPU_HAS_SSE),y)
-FLAC_DEPENDENCIES += host-nasm
-FLAC_CONF_OPTS += --enable-sse
-else
-FLAC_CONF_OPTS += --disable-sse
-endif
-
 $(eval $(autotools-package))
-- 
2.34.1

_______________________________________________
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/flac: bump version to 1.4.2
  2022-10-30 19:44 [Buildroot] [PATCH 1/1] package/flac: bump version to 1.4.2 Bernd Kuhls
@ 2022-10-31 10:02 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2022-10-31 10:02 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

Bernd, All,

On 2022-10-30 20:44 +0100, Bernd Kuhls spake thusly:
> Changelog: https://xiph.org/flac/changelog.html
> 
> Switched _SITE to https and update project URL.
> 
> Upstream removed the dependency to host-nasm:
> https://github.com/xiph/flac/commit/75ef7958df603ca6de29fa00e82615e0da017903#diff-49473dca262eeab3b4a43002adb08b4db31020d190caaad1594b47f1d5daa810L474
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/flac/Config.in |  2 +-
>  package/flac/flac.hash |  4 ++--
>  package/flac/flac.mk   | 11 ++---------
>  3 files changed, 5 insertions(+), 12 deletions(-)
> 
> diff --git a/package/flac/Config.in b/package/flac/Config.in
> index 267acb7f34..62aca290fe 100644
> --- a/package/flac/Config.in
> +++ b/package/flac/Config.in
> @@ -4,7 +4,7 @@ config BR2_PACKAGE_FLAC
>  	help
>  	  FLAC is an Open Source lossless audio codec.
>  
> -	  http://flac.sourceforge.net/
> +	  https://xiph.org/flac/
>  
>  comment "flac needs a toolchain w/ wchar"
>  	depends on !BR2_USE_WCHAR
> diff --git a/package/flac/flac.hash b/package/flac/flac.hash
> index 1f7763fd6e..b993ebd759 100644
> --- a/package/flac/flac.hash
> +++ b/package/flac/flac.hash
> @@ -1,5 +1,5 @@
> -# From http://downloads.xiph.org/releases/flac/SHA256SUMS.txt
> -sha256  af41c0733c93c237c3e52f64dd87e3b0d9af38259f1c7d11e8cbf583c48c2506  flac-1.4.0.tar.xz
> +# From https://ftp.osuosl.org/pub/xiph/releases/flac/SHA256SUMS.txt
> +sha256  e322d58a1f48d23d9dd38f432672865f6f79e73a6f9cc5a5f57fcaa83eb5a8e4  flac-1.4.2.tar.xz
>  # Locally computed
>  sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING.GPL
>  sha256  5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a  COPYING.LGPL
> diff --git a/package/flac/flac.mk b/package/flac/flac.mk
> index 91d5840d72..ebb4778521 100644
> --- a/package/flac/flac.mk
> +++ b/package/flac/flac.mk
> @@ -4,8 +4,8 @@
>  #
>  ################################################################################
>  
> -FLAC_VERSION = 1.4.0
> -FLAC_SITE = http://downloads.xiph.org/releases/flac
> +FLAC_VERSION = 1.4.2
> +FLAC_SITE = https://ftp.osuosl.org/pub/xiph/releases/flac
>  FLAC_SOURCE = flac-$(FLAC_VERSION).tar.xz
>  FLAC_INSTALL_STAGING = YES
>  FLAC_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
> @@ -27,11 +27,4 @@ else
>  FLAC_CONF_OPTS += --disable-ogg
>  endif
>  
> -ifeq ($(BR2_X86_CPU_HAS_SSE),y)
> -FLAC_DEPENDENCIES += host-nasm
> -FLAC_CONF_OPTS += --enable-sse
> -else
> -FLAC_CONF_OPTS += --disable-sse
> -endif
> -
>  $(eval $(autotools-package))
> -- 
> 2.34.1
> 
> _______________________________________________
> 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-10-31 10:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-30 19:44 [Buildroot] [PATCH 1/1] package/flac: bump version to 1.4.2 Bernd Kuhls
2022-10-31 10:02 ` 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.