* [Buildroot] [PATCH 1/2] package/libilbc: switch to github
@ 2024-09-26 6:15 Bernd Kuhls
2024-09-26 6:15 ` [Buildroot] [PATCH 2/2] package/libilbc: bump version Bernd Kuhls
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2024-09-26 6:15 UTC (permalink / raw)
To: buildroot
The previous repo is not available anymore.
Fixes:
https://autobuild.buildroot.org/results/8c8b073ce163131763fca978b400e596fcf39e62
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
This patch is suitable to be backported to LTS releases.
package/libilbc/Config.in | 2 +-
package/libilbc/libilbc.hash | 2 +-
package/libilbc/libilbc.mk | 3 +--
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/package/libilbc/Config.in b/package/libilbc/Config.in
index 89d5db2fd6..db3486c1cb 100644
--- a/package/libilbc/Config.in
+++ b/package/libilbc/Config.in
@@ -4,4 +4,4 @@ config BR2_PACKAGE_LIBILBC
iLBC (internet Low Bitrate Codec) is a FREE speech codec
suitable for robust voice communication over IP.
- http://www.webrtc.org/license-rights/ilbc-freeware
+ https://github.com/freeswitch/libilbc
diff --git a/package/libilbc/libilbc.hash b/package/libilbc/libilbc.hash
index bd0bf89d42..be88d6f9c3 100644
--- a/package/libilbc/libilbc.hash
+++ b/package/libilbc/libilbc.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 ba11bc22e353887cd7c605a25a5b9bac464f11f8cb103f652e095ae7e0f04f77 libilbc-829b08c7902ceb87a261279fabb36b6d523c6e07-git4.tar.gz
+sha256 fe4827a548e96f0549dd8f30eb6a48c6c55fd4535de6c8e9c6e4f38bea6190bf libilbc-829b08c7902ceb87a261279fabb36b6d523c6e07.tar.gz
sha256 b7f4cbb4a12cd11a3d1aeda9bd17c99f59b054de4b3ee53045531cd2fa74dd2a gips_iLBClicense.pdf
diff --git a/package/libilbc/libilbc.mk b/package/libilbc/libilbc.mk
index 06d94eb36d..d8139ba205 100644
--- a/package/libilbc/libilbc.mk
+++ b/package/libilbc/libilbc.mk
@@ -5,8 +5,7 @@
################################################################################
LIBILBC_VERSION = 829b08c7902ceb87a261279fabb36b6d523c6e07
-LIBILBC_SITE = https://freeswitch.org/stash/scm/sd/libilbc.git
-LIBILBC_SITE_METHOD = git
+LIBILBC_SITE = $(call github,freeswitch,libilbc,$(LIBILBC_VERSION))
LIBILBC_LICENSE = Global IP Sound iLBC Public License v2.0
LIBILBC_LICENSE_FILES = gips_iLBClicense.pdf
LIBILBC_AUTORECONF = YES
--
2.39.5
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] package/libilbc: bump version
2024-09-26 6:15 [Buildroot] [PATCH 1/2] package/libilbc: switch to github Bernd Kuhls
@ 2024-09-26 6:15 ` Bernd Kuhls
2024-10-02 21:20 ` [Buildroot] [PATCH 1/2] package/libilbc: switch to github Thomas Petazzoni via buildroot
2024-10-19 19:46 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2024-09-26 6:15 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/libilbc/libilbc.hash | 2 +-
package/libilbc/libilbc.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/libilbc/libilbc.hash b/package/libilbc/libilbc.hash
index be88d6f9c3..dbd1795765 100644
--- a/package/libilbc/libilbc.hash
+++ b/package/libilbc/libilbc.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 fe4827a548e96f0549dd8f30eb6a48c6c55fd4535de6c8e9c6e4f38bea6190bf libilbc-829b08c7902ceb87a261279fabb36b6d523c6e07.tar.gz
+sha256 a09a244e5e24607303478aa9995765d2b26c52b15c2721cae5a83c109ed51ed3 libilbc-51d3cf8e157c3c80d7169b738073865eca83f5a3.tar.gz
sha256 b7f4cbb4a12cd11a3d1aeda9bd17c99f59b054de4b3ee53045531cd2fa74dd2a gips_iLBClicense.pdf
diff --git a/package/libilbc/libilbc.mk b/package/libilbc/libilbc.mk
index d8139ba205..089215f204 100644
--- a/package/libilbc/libilbc.mk
+++ b/package/libilbc/libilbc.mk
@@ -4,7 +4,7 @@
#
################################################################################
-LIBILBC_VERSION = 829b08c7902ceb87a261279fabb36b6d523c6e07
+LIBILBC_VERSION = 51d3cf8e157c3c80d7169b738073865eca83f5a3
LIBILBC_SITE = $(call github,freeswitch,libilbc,$(LIBILBC_VERSION))
LIBILBC_LICENSE = Global IP Sound iLBC Public License v2.0
LIBILBC_LICENSE_FILES = gips_iLBClicense.pdf
--
2.39.5
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/libilbc: switch to github
2024-09-26 6:15 [Buildroot] [PATCH 1/2] package/libilbc: switch to github Bernd Kuhls
2024-09-26 6:15 ` [Buildroot] [PATCH 2/2] package/libilbc: bump version Bernd Kuhls
@ 2024-10-02 21:20 ` Thomas Petazzoni via buildroot
2024-10-19 19:46 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-10-02 21:20 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: buildroot
On Thu, 26 Sep 2024 08:15:11 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> The previous repo is not available anymore.
>
> Fixes:
> https://autobuild.buildroot.org/results/8c8b073ce163131763fca978b400e596fcf39e62
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> This patch is suitable to be backported to LTS releases.
Series applied, thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/libilbc: switch to github
2024-09-26 6:15 [Buildroot] [PATCH 1/2] package/libilbc: switch to github Bernd Kuhls
2024-09-26 6:15 ` [Buildroot] [PATCH 2/2] package/libilbc: bump version Bernd Kuhls
2024-10-02 21:20 ` [Buildroot] [PATCH 1/2] package/libilbc: switch to github Thomas Petazzoni via buildroot
@ 2024-10-19 19:46 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2024-10-19 19:46 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> The previous repo is not available anymore.
> Fixes:
> https://autobuild.buildroot.org/results/8c8b073ce163131763fca978b400e596fcf39e62
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> This patch is suitable to be backported to LTS releases.
Committed to 2024.02.x and 2024.08.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-19 19:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-26 6:15 [Buildroot] [PATCH 1/2] package/libilbc: switch to github Bernd Kuhls
2024-09-26 6:15 ` [Buildroot] [PATCH 2/2] package/libilbc: bump version Bernd Kuhls
2024-10-02 21:20 ` [Buildroot] [PATCH 1/2] package/libilbc: switch to github Thomas Petazzoni via buildroot
2024-10-19 19:46 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox