openembedded-core.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] liba52: update SRC_URI
@ 2024-04-17 22:28 Jon Mason
  2024-04-17 22:28 ` [PATCH 2/2] liba52: remove UPSTREAM_CHECK_URI Jon Mason
  2024-04-18  5:57 ` [OE-core] [PATCH 1/2] liba52: update SRC_URI Martin Jansa
  0 siblings, 2 replies; 7+ messages in thread
From: Jon Mason @ 2024-04-17 22:28 UTC (permalink / raw)
  To: openembedded-core

The former SRC_URI was no longer working.  Update to one that is.  This
required updating the md5sum and sha256sum.  NOTE: SOURCEFORGE_MIRROR
(https://downloads.sourceforge.net) does not appear to be working for
liba52.

Signed-off-by: Jon Mason <jdmason@kudzu.us>
---
 meta/recipes-multimedia/liba52/liba52_0.7.4.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
index 7a3b4a43c8d4..684dd590ca15 100644
--- a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
+++ b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
@@ -10,11 +10,11 @@ SECTION = "libs"
 
 inherit autotools
 
-SRC_URI = "http://liba52.sourceforge.net/files/a52dec-${PV}.tar.gz \
+SRC_URI = "https://sourceforge.net/projects/liba52/files/a52dec-${PV}.tar.gz \
            file://buildcleanup.patch"
 
-SRC_URI[md5sum] = "caa9f5bc44232dc8aeea773fea56be80"
-SRC_URI[sha256sum] = "a21d724ab3b3933330194353687df82c475b5dfb997513eef4c25de6c865ec33"
+SRC_URI[md5sum] = "1a2e77b4f7aacd858961a6b727710551"
+SRC_URI[sha256sum] = "c1931bc511dc48987fdba6888be577f3035e3f0b6b81d3ea3e766fca8d18e128"
 
 UPSTREAM_CHECK_URI = "http://liba52.sourceforge.net/downloads.html"
 
-- 
2.30.2



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

* [PATCH 2/2] liba52: remove UPSTREAM_CHECK_URI
  2024-04-17 22:28 [PATCH 1/2] liba52: update SRC_URI Jon Mason
@ 2024-04-17 22:28 ` Jon Mason
  2024-04-18  5:37   ` [OE-core] " Alexander Kanavin
  2024-04-18  5:57 ` [OE-core] [PATCH 1/2] liba52: update SRC_URI Martin Jansa
  1 sibling, 1 reply; 7+ messages in thread
From: Jon Mason @ 2024-04-17 22:28 UTC (permalink / raw)
  To: openembedded-core

UPSTREAM_CHECK_URI pointed to a URL that does not exist, causing
UNKNOWN_BROKEN error when running `devtool check-upgrade-status`.
There doesn't appear to be a way to check on sourceforge for new
versions (and there hasn't been a new version in over a decade at this
point).  There is a way to use CVS, but sourceforge is decommissioning
CVS (and it doesn't make sense to switch to something that is being
removed).  So, just doing UPSTREAM_VERSION_UNKNOWN.

Signed-off-by: Jon Mason <jdmason@kudzu.us>
---
 meta/recipes-multimedia/liba52/liba52_0.7.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
index 684dd590ca15..d52310b8ca92 100644
--- a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
+++ b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
@@ -16,7 +16,7 @@ SRC_URI = "https://sourceforge.net/projects/liba52/files/a52dec-${PV}.tar.gz \
 SRC_URI[md5sum] = "1a2e77b4f7aacd858961a6b727710551"
 SRC_URI[sha256sum] = "c1931bc511dc48987fdba6888be577f3035e3f0b6b81d3ea3e766fca8d18e128"
 
-UPSTREAM_CHECK_URI = "http://liba52.sourceforge.net/downloads.html"
+UPSTREAM_VERSION_UNKNOWN = "1"
 
 S = "${WORKDIR}/a52dec-${PV}"
 
-- 
2.30.2



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

* Re: [OE-core] [PATCH 2/2] liba52: remove UPSTREAM_CHECK_URI
  2024-04-17 22:28 ` [PATCH 2/2] liba52: remove UPSTREAM_CHECK_URI Jon Mason
@ 2024-04-18  5:37   ` Alexander Kanavin
  2024-04-18 13:36     ` Jon Mason
  0 siblings, 1 reply; 7+ messages in thread
From: Alexander Kanavin @ 2024-04-18  5:37 UTC (permalink / raw)
  To: jdmason; +Cc: openembedded-core

I have actually queued a patch to remove this recipe altogether. It's
a dead project, and superseded by ffmpeg long time ago.

Alex

On Thu, 18 Apr 2024 at 00:28, Jon Mason via lists.openembedded.org
<jdmason=kudzu.us@lists.openembedded.org> wrote:
>
> UPSTREAM_CHECK_URI pointed to a URL that does not exist, causing
> UNKNOWN_BROKEN error when running `devtool check-upgrade-status`.
> There doesn't appear to be a way to check on sourceforge for new
> versions (and there hasn't been a new version in over a decade at this
> point).  There is a way to use CVS, but sourceforge is decommissioning
> CVS (and it doesn't make sense to switch to something that is being
> removed).  So, just doing UPSTREAM_VERSION_UNKNOWN.
>
> Signed-off-by: Jon Mason <jdmason@kudzu.us>
> ---
>  meta/recipes-multimedia/liba52/liba52_0.7.4.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> index 684dd590ca15..d52310b8ca92 100644
> --- a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> +++ b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> @@ -16,7 +16,7 @@ SRC_URI = "https://sourceforge.net/projects/liba52/files/a52dec-${PV}.tar.gz \
>  SRC_URI[md5sum] = "1a2e77b4f7aacd858961a6b727710551"
>  SRC_URI[sha256sum] = "c1931bc511dc48987fdba6888be577f3035e3f0b6b81d3ea3e766fca8d18e128"
>
> -UPSTREAM_CHECK_URI = "http://liba52.sourceforge.net/downloads.html"
> +UPSTREAM_VERSION_UNKNOWN = "1"
>
>  S = "${WORKDIR}/a52dec-${PV}"
>
> --
> 2.30.2
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#198489): https://lists.openembedded.org/g/openembedded-core/message/198489
> Mute This Topic: https://lists.openembedded.org/mt/105587759/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [OE-core] [PATCH 1/2] liba52: update SRC_URI
  2024-04-17 22:28 [PATCH 1/2] liba52: update SRC_URI Jon Mason
  2024-04-17 22:28 ` [PATCH 2/2] liba52: remove UPSTREAM_CHECK_URI Jon Mason
@ 2024-04-18  5:57 ` Martin Jansa
  2024-04-18 13:34   ` Jon Mason
  1 sibling, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2024-04-18  5:57 UTC (permalink / raw)
  To: jdmason; +Cc: openembedded-core

What is the difference between the tarballs that it requires checksum update?

On Thu, Apr 18, 2024 at 12:28 AM Jon Mason via lists.openembedded.org
<jdmason=kudzu.us@lists.openembedded.org> wrote:
>
> The former SRC_URI was no longer working.  Update to one that is.  This
> required updating the md5sum and sha256sum.  NOTE: SOURCEFORGE_MIRROR
> (https://downloads.sourceforge.net) does not appear to be working for
> liba52.
>
> Signed-off-by: Jon Mason <jdmason@kudzu.us>
> ---
>  meta/recipes-multimedia/liba52/liba52_0.7.4.bb | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> index 7a3b4a43c8d4..684dd590ca15 100644
> --- a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> +++ b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> @@ -10,11 +10,11 @@ SECTION = "libs"
>
>  inherit autotools
>
> -SRC_URI = "http://liba52.sourceforge.net/files/a52dec-${PV}.tar.gz \
> +SRC_URI = "https://sourceforge.net/projects/liba52/files/a52dec-${PV}.tar.gz \
>             file://buildcleanup.patch"
>
> -SRC_URI[md5sum] = "caa9f5bc44232dc8aeea773fea56be80"
> -SRC_URI[sha256sum] = "a21d724ab3b3933330194353687df82c475b5dfb997513eef4c25de6c865ec33"
> +SRC_URI[md5sum] = "1a2e77b4f7aacd858961a6b727710551"
> +SRC_URI[sha256sum] = "c1931bc511dc48987fdba6888be577f3035e3f0b6b81d3ea3e766fca8d18e128"
>
>  UPSTREAM_CHECK_URI = "http://liba52.sourceforge.net/downloads.html"
>
> --
> 2.30.2
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#198488): https://lists.openembedded.org/g/openembedded-core/message/198488
> Mute This Topic: https://lists.openembedded.org/mt/105587757/3617156
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [martin.jansa@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [OE-core] [PATCH 1/2] liba52: update SRC_URI
  2024-04-18  5:57 ` [OE-core] [PATCH 1/2] liba52: update SRC_URI Martin Jansa
@ 2024-04-18 13:34   ` Jon Mason
  2024-04-18 16:45     ` Martin Jansa
  0 siblings, 1 reply; 7+ messages in thread
From: Jon Mason @ 2024-04-18 13:34 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-core

On Thu, Apr 18, 2024 at 1:57 AM Martin Jansa <martin.jansa@gmail.com> wrote:
>
> What is the difference between the tarballs that it requires checksum update?

No idea, since I could not get the original tarballs because the
previous link doesn't work.  But given the comment on the other patch,
this recipe is being dropped anyway.  So..<shrug>

Thanks,
Jon

>
> On Thu, Apr 18, 2024 at 12:28 AM Jon Mason via lists.openembedded.org
> <jdmason=kudzu.us@lists.openembedded.org> wrote:
> >
> > The former SRC_URI was no longer working.  Update to one that is.  This
> > required updating the md5sum and sha256sum.  NOTE: SOURCEFORGE_MIRROR
> > (https://downloads.sourceforge.net) does not appear to be working for
> > liba52.
> >
> > Signed-off-by: Jon Mason <jdmason@kudzu.us>
> > ---
> >  meta/recipes-multimedia/liba52/liba52_0.7.4.bb | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > index 7a3b4a43c8d4..684dd590ca15 100644
> > --- a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > +++ b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > @@ -10,11 +10,11 @@ SECTION = "libs"
> >
> >  inherit autotools
> >
> > -SRC_URI = "http://liba52.sourceforge.net/files/a52dec-${PV}.tar.gz \
> > +SRC_URI = "https://sourceforge.net/projects/liba52/files/a52dec-${PV}.tar.gz \
> >             file://buildcleanup.patch"
> >
> > -SRC_URI[md5sum] = "caa9f5bc44232dc8aeea773fea56be80"
> > -SRC_URI[sha256sum] = "a21d724ab3b3933330194353687df82c475b5dfb997513eef4c25de6c865ec33"
> > +SRC_URI[md5sum] = "1a2e77b4f7aacd858961a6b727710551"
> > +SRC_URI[sha256sum] = "c1931bc511dc48987fdba6888be577f3035e3f0b6b81d3ea3e766fca8d18e128"
> >
> >  UPSTREAM_CHECK_URI = "http://liba52.sourceforge.net/downloads.html"
> >
> > --
> > 2.30.2
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#198488): https://lists.openembedded.org/g/openembedded-core/message/198488
> > Mute This Topic: https://lists.openembedded.org/mt/105587757/3617156
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [martin.jansa@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >


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

* Re: [OE-core] [PATCH 2/2] liba52: remove UPSTREAM_CHECK_URI
  2024-04-18  5:37   ` [OE-core] " Alexander Kanavin
@ 2024-04-18 13:36     ` Jon Mason
  0 siblings, 0 replies; 7+ messages in thread
From: Jon Mason @ 2024-04-18 13:36 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: openembedded-core

On Thu, Apr 18, 2024 at 1:37 AM Alexander Kanavin
<alex.kanavin@gmail.com> wrote:
>
> I have actually queued a patch to remove this recipe altogether. It's
> a dead project, and superseded by ffmpeg long time ago.
>
> Alex

No problem.  Feel free to drop this then in favor of dropping the
recipe completely.

Thanks,
Jon


>
> On Thu, 18 Apr 2024 at 00:28, Jon Mason via lists.openembedded.org
> <jdmason=kudzu.us@lists.openembedded.org> wrote:
> >
> > UPSTREAM_CHECK_URI pointed to a URL that does not exist, causing
> > UNKNOWN_BROKEN error when running `devtool check-upgrade-status`.
> > There doesn't appear to be a way to check on sourceforge for new
> > versions (and there hasn't been a new version in over a decade at this
> > point).  There is a way to use CVS, but sourceforge is decommissioning
> > CVS (and it doesn't make sense to switch to something that is being
> > removed).  So, just doing UPSTREAM_VERSION_UNKNOWN.
> >
> > Signed-off-by: Jon Mason <jdmason@kudzu.us>
> > ---
> >  meta/recipes-multimedia/liba52/liba52_0.7.4.bb | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > index 684dd590ca15..d52310b8ca92 100644
> > --- a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > +++ b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > @@ -16,7 +16,7 @@ SRC_URI = "https://sourceforge.net/projects/liba52/files/a52dec-${PV}.tar.gz \
> >  SRC_URI[md5sum] = "1a2e77b4f7aacd858961a6b727710551"
> >  SRC_URI[sha256sum] = "c1931bc511dc48987fdba6888be577f3035e3f0b6b81d3ea3e766fca8d18e128"
> >
> > -UPSTREAM_CHECK_URI = "http://liba52.sourceforge.net/downloads.html"
> > +UPSTREAM_VERSION_UNKNOWN = "1"
> >
> >  S = "${WORKDIR}/a52dec-${PV}"
> >
> > --
> > 2.30.2
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#198489): https://lists.openembedded.org/g/openembedded-core/message/198489
> > Mute This Topic: https://lists.openembedded.org/mt/105587759/1686489
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >


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

* Re: [OE-core] [PATCH 1/2] liba52: update SRC_URI
  2024-04-18 13:34   ` Jon Mason
@ 2024-04-18 16:45     ` Martin Jansa
  0 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2024-04-18 16:45 UTC (permalink / raw)
  To: Jon Mason; +Cc: openembedded-core

Have you tried:
https://sources.yoctoproject.org/mirror/sources/a52dec-0.7.4.tar.gz
that has the old caa9f5bc44232dc8aeea773fea56be80
?

https://sourceforge.net/projects/liba52/files/a52dec-0.7.4.tar.gz
returns just HTML to me with md5sum c9fe0eb75b290358b3948b58e9f10baa:

$ head a52dec-0.7.4.tar.gz
<!doctype html>

<html class="no-js" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0,
user-scalable=no" />
<script src="//a.fsdn.com/con/js/min/sf.sandiego-cmp-top.js?1713452475"></script>
<link rel="stylesheet"
href="//a.fsdn.com/con/css/sftheme/sandiego/cmp.css?1713452475">
<script>
        window.bizx.cmp.init({


Which might pass do_fetch task, but won't work well in do_unpack :).

On Thu, Apr 18, 2024 at 3:35 PM Jon Mason <jdmason@kudzu.us> wrote:
>
> On Thu, Apr 18, 2024 at 1:57 AM Martin Jansa <martin.jansa@gmail.com> wrote:
> >
> > What is the difference between the tarballs that it requires checksum update?
>
> No idea, since I could not get the original tarballs because the
> previous link doesn't work.  But given the comment on the other patch,
> this recipe is being dropped anyway.  So..<shrug>
>
> Thanks,
> Jon
>
> >
> > On Thu, Apr 18, 2024 at 12:28 AM Jon Mason via lists.openembedded.org
> > <jdmason=kudzu.us@lists.openembedded.org> wrote:
> > >
> > > The former SRC_URI was no longer working.  Update to one that is.  This
> > > required updating the md5sum and sha256sum.  NOTE: SOURCEFORGE_MIRROR
> > > (https://downloads.sourceforge.net) does not appear to be working for
> > > liba52.
> > >
> > > Signed-off-by: Jon Mason <jdmason@kudzu.us>
> > > ---
> > >  meta/recipes-multimedia/liba52/liba52_0.7.4.bb | 6 +++---
> > >  1 file changed, 3 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > > index 7a3b4a43c8d4..684dd590ca15 100644
> > > --- a/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > > +++ b/meta/recipes-multimedia/liba52/liba52_0.7.4.bb
> > > @@ -10,11 +10,11 @@ SECTION = "libs"
> > >
> > >  inherit autotools
> > >
> > > -SRC_URI = "http://liba52.sourceforge.net/files/a52dec-${PV}.tar.gz \
> > > +SRC_URI = "https://sourceforge.net/projects/liba52/files/a52dec-${PV}.tar.gz \
> > >             file://buildcleanup.patch"
> > >
> > > -SRC_URI[md5sum] = "caa9f5bc44232dc8aeea773fea56be80"
> > > -SRC_URI[sha256sum] = "a21d724ab3b3933330194353687df82c475b5dfb997513eef4c25de6c865ec33"
> > > +SRC_URI[md5sum] = "1a2e77b4f7aacd858961a6b727710551"
> > > +SRC_URI[sha256sum] = "c1931bc511dc48987fdba6888be577f3035e3f0b6b81d3ea3e766fca8d18e128"
> > >
> > >  UPSTREAM_CHECK_URI = "http://liba52.sourceforge.net/downloads.html"
> > >
> > > --
> > > 2.30.2
> > >
> > >
> > > -=-=-=-=-=-=-=-=-=-=-=-
> > > Links: You receive all messages sent to this group.
> > > View/Reply Online (#198488): https://lists.openembedded.org/g/openembedded-core/message/198488
> > > Mute This Topic: https://lists.openembedded.org/mt/105587757/3617156
> > > Group Owner: openembedded-core+owner@lists.openembedded.org
> > > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [martin.jansa@gmail.com]
> > > -=-=-=-=-=-=-=-=-=-=-=-
> > >


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

end of thread, other threads:[~2024-04-18 16:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-17 22:28 [PATCH 1/2] liba52: update SRC_URI Jon Mason
2024-04-17 22:28 ` [PATCH 2/2] liba52: remove UPSTREAM_CHECK_URI Jon Mason
2024-04-18  5:37   ` [OE-core] " Alexander Kanavin
2024-04-18 13:36     ` Jon Mason
2024-04-18  5:57 ` [OE-core] [PATCH 1/2] liba52: update SRC_URI Martin Jansa
2024-04-18 13:34   ` Jon Mason
2024-04-18 16:45     ` Martin Jansa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).