Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libreplaygain: update LIBREPLAYGAIN_VERSION
@ 2024-01-07 11:41 Fabrice Fontaine
  2024-01-07 16:04 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Fontaine @ 2024-01-07 11:41 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Update LIBREPLAYGAIN_VERSION to match what is returned by
https://release-monitoring.org/project/370816

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libreplaygain/libreplaygain.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libreplaygain/libreplaygain.mk b/package/libreplaygain/libreplaygain.mk
index ff0950c43d..129eb90d5f 100644
--- a/package/libreplaygain/libreplaygain.mk
+++ b/package/libreplaygain/libreplaygain.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-LIBREPLAYGAIN_VERSION = r475
+LIBREPLAYGAIN_VERSION = 475
 LIBREPLAYGAIN_SITE = http://files.musepack.net/source
-LIBREPLAYGAIN_SOURCE = libreplaygain_$(LIBREPLAYGAIN_VERSION).tar.gz
+LIBREPLAYGAIN_SOURCE = libreplaygain_r$(LIBREPLAYGAIN_VERSION).tar.gz
 # upstream doesn't ship configure
 LIBREPLAYGAIN_AUTORECONF = YES
 LIBREPLAYGAIN_INSTALL_STAGING = YES
-- 
2.43.0

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

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

* Re: [Buildroot] [PATCH 1/1] package/libreplaygain: update LIBREPLAYGAIN_VERSION
  2024-01-07 11:41 [Buildroot] [PATCH 1/1] package/libreplaygain: update LIBREPLAYGAIN_VERSION Fabrice Fontaine
@ 2024-01-07 16:04 ` Yann E. MORIN
  2024-01-13 10:57   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2024-01-07 16:04 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

Fabrice, All,

On 2024-01-07 12:41 +0100, Fabrice Fontaine spake thusly:
> Update LIBREPLAYGAIN_VERSION to match what is returned by
> https://release-monitoring.org/project/370816

I was wondering what this weird commit title was all about, rather than
just stating "bump version". So I changed it to:
    package/XXX: use version friendly to release-monitoring

both for this patch and the following, and applied to master, thanks.

Regards,
Yann E. MORIN.

> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/libreplaygain/libreplaygain.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/libreplaygain/libreplaygain.mk b/package/libreplaygain/libreplaygain.mk
> index ff0950c43d..129eb90d5f 100644
> --- a/package/libreplaygain/libreplaygain.mk
> +++ b/package/libreplaygain/libreplaygain.mk
> @@ -4,9 +4,9 @@
>  #
>  ################################################################################
>  
> -LIBREPLAYGAIN_VERSION = r475
> +LIBREPLAYGAIN_VERSION = 475
>  LIBREPLAYGAIN_SITE = http://files.musepack.net/source
> -LIBREPLAYGAIN_SOURCE = libreplaygain_$(LIBREPLAYGAIN_VERSION).tar.gz
> +LIBREPLAYGAIN_SOURCE = libreplaygain_r$(LIBREPLAYGAIN_VERSION).tar.gz
>  # upstream doesn't ship configure
>  LIBREPLAYGAIN_AUTORECONF = YES
>  LIBREPLAYGAIN_INSTALL_STAGING = YES
> -- 
> 2.43.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] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/libreplaygain: update LIBREPLAYGAIN_VERSION
  2024-01-07 16:04 ` Yann E. MORIN
@ 2024-01-13 10:57   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-01-13 10:57 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: Fabrice Fontaine, buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > Fabrice, All,
 > On 2024-01-07 12:41 +0100, Fabrice Fontaine spake thusly:
 >> Update LIBREPLAYGAIN_VERSION to match what is returned by
 >> https://release-monitoring.org/project/370816

 > I was wondering what this weird commit title was all about, rather than
 > just stating "bump version". So I changed it to:
 >     package/XXX: use version friendly to release-monitoring

 > both for this patch and the following, and applied to master, thanks.

Committed to 2023.02.x and 2023.11.x, thanks.

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

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

end of thread, other threads:[~2024-01-13 10:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-07 11:41 [Buildroot] [PATCH 1/1] package/libreplaygain: update LIBREPLAYGAIN_VERSION Fabrice Fontaine
2024-01-07 16:04 ` Yann E. MORIN
2024-01-13 10:57   ` Peter Korsgaard

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