All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lynx: fix checksums
@ 2011-06-01 12:07 Paul Menzel
  2011-06-01 14:52 ` Stanislav Brabec
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Menzel @ 2011-06-01 12:07 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1917 bytes --]

Date: Wed, 1 Jun 2011 13:41:59 +0200

This is a fixup for commit 06d31dc0 [1]

	commit 06d31dc06beb85a28ca3c2c2c0c2787267a24ff5
	Author: Stanislav Brabec <utx@penguin.cz>
	Date:   Tue May 31 22:28:20 2011 +0000

		  lynx: New recipe, version 2.8.7.

		  Signed-off-by: Stanislav Brabec <utx@penguin.cz>

	 recipes/lynx/lynx_2.8.7.bb |   40 ++++++++++++++++++++++++++++++++++++++++
	 1 files changed, 40 insertions(+), 0 deletions(-)

where task fetch failed with the following error message.

	ERROR: The checksums for "/oe/downloads/lynx2.8.7.tar.bz2" did not match.
		MD5: expected "cb936aef812e4e463ab86cbbe14d4db9", got "493af4c77ef6761e3f0157cd1be033a0"
		SHA256: expected "301bda96ad3cd5032805e8d5315a42061a11e472e3d3a7baee3a2879517ef627", got "40ec9774deb4a7acf69e1bcfb5e272a3857ccc17e20d923255d64cb5dbe55dad"

[1] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=06d31dc06beb85a28ca3c2c2c0c2787267a24ff5

Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
CC: Stanislav Brabec <utx@penguin.cz>
---
Dear Stanislav,


I did not push this patch, because I find it strange that the checksums
are incorrect when you did not copy it. Do you have an idea what might
have gone wrong?


Thanks,

Paul
---
 recipes/lynx/lynx_2.8.7.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/lynx/lynx_2.8.7.bb b/recipes/lynx/lynx_2.8.7.bb
index 77434d1..1d63e89 100644
--- a/recipes/lynx/lynx_2.8.7.bb
+++ b/recipes/lynx/lynx_2.8.7.bb
@@ -37,5 +37,5 @@ do_configure() {
 	ac_cv_path_INSTALL=${bindir}/install
 }
 
-SRC_URI[md5sum] = "cb936aef812e4e463ab86cbbe14d4db9"
-SRC_URI[sha256sum] = "301bda96ad3cd5032805e8d5315a42061a11e472e3d3a7baee3a2879517ef627"
+SRC_URI[md5sum] = "493af4c77ef6761e3f0157cd1be033a0"
+SRC_URI[sha256sum] = "40ec9774deb4a7acf69e1bcfb5e272a3857ccc17e20d923255d64cb5dbe55dad"
-- 
1.7.5.3

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH] lynx: fix checksums
  2011-06-01 12:07 [PATCH] lynx: fix checksums Paul Menzel
@ 2011-06-01 14:52 ` Stanislav Brabec
  2011-06-02 12:29   ` Stanislav Brabec
  0 siblings, 1 reply; 3+ messages in thread
From: Stanislav Brabec @ 2011-06-01 14:52 UTC (permalink / raw)
  To: Paul Menzel; +Cc: openembedded-devel

Paul Menzel wrote:
> Date: Wed, 1 Jun 2011 13:41:59 +0200
> 
> This is a fixup for commit 06d31dc0 [1]

> 	ERROR: The checksums for "/oe/downloads/lynx2.8.7.tar.bz2" did not match.
> 		MD5: expected "cb936aef812e4e463ab86cbbe14d4db9", got "493af4c77ef6761e3f0157cd1be033a0"
> 		SHA256: expected "301bda96ad3cd5032805e8d5315a42061a11e472e3d3a7baee3a2879517ef627", got "40ec9774deb4a7acf69e1bcfb5e272a3857ccc17e20d923255d64cb5dbe55dad"

> I did not push this patch, because I find it strange that the checksums
> are incorrect when you did not copy it. Do you have an idea what might
> have gone wrong?

wget -N http://lynx.isc.org/lynx2.8.7/lynx2.8.7.tar.bz2
md5sum lynx2.8.7.tar.bz2
493af4c77ef6761e3f0157cd1be033a0  lynx2.8.7.tar.bz2
ls -al lynx2.8.7.tar.bz2
-rw-r--r-- 1 sbrabec users 2432045 Jul  6  2009 lynx2.8.7.tar.bz2

For comparison with my copy:
ls -al ~/sources/lynx2.8.7.tar.bz2
-rw-r--r-- 1 sbrabec users 2436801 Jun 21  2010 /OE/home/sources/lynx2.8.7.tar.bz2

I had this recipe in my experimental repo for some time and it seems
that they silently changed (downgraded?) the main tarball in time
between. I can confirm your checksum with the fresh download.

It looks pretty strange. The new tarball misses one security update.
Maybe they did a mistake.

My (byte-to-byte equal) copy is now available as
http://lynx.isc.org/current/lynx2.8.7rel.2.tar.bz2

-- 
Stanislav Brabec
http://www.penguin.cz/~utx/zaurus




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

* Re: [PATCH] lynx: fix checksums
  2011-06-01 14:52 ` Stanislav Brabec
@ 2011-06-02 12:29   ` Stanislav Brabec
  0 siblings, 0 replies; 3+ messages in thread
From: Stanislav Brabec @ 2011-06-02 12:29 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

Stanislav Brabec wrote:

> I had this recipe in my experimental repo for some time and it seems
> that they silently changed (downgraded?) the main tarball in time
> between. I can confirm your checksum with the fresh download.
> 
> It looks pretty strange. The new tarball misses one security update.
> Maybe they did a mistake.

Here is the answer:
http://lists.nongnu.org/archive/html/lynx-dev/2011-06/msg00003.html

-- 
Stanislav Brabec
http://www.penguin.cz/~utx/zaurus




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

end of thread, other threads:[~2011-06-02 12:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-01 12:07 [PATCH] lynx: fix checksums Paul Menzel
2011-06-01 14:52 ` Stanislav Brabec
2011-06-02 12:29   ` Stanislav Brabec

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.