Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] lua: add hash
@ 2014-09-19 18:30 Francois Perrad
  2014-09-19 18:30 ` [Buildroot] [PATCH 2/2] luajit: " Francois Perrad
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Francois Perrad @ 2014-09-19 18:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/lua/lua.hash | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 package/lua/lua.hash

diff --git a/package/lua/lua.hash b/package/lua/lua.hash
new file mode 100644
index 0000000..7bc7933
--- /dev/null
+++ b/package/lua/lua.hash
@@ -0,0 +1,6 @@
+# Hashes from: http://www.lua.org/ftp/
+md5: dc7f94ec6ff15c985d2d6ad0f1b35654           lua-5.2.3.tar.gz
+sha1: 926b7907bc8d274e063d42804666b40a3f3c124c  lua-5.2.3.tar.gz
+
+md5: 2e115fe26e435e33b0d5c022e4490567           lua-5.1.5.tar.gz
+sha1: b3882111ad02ecc6b972f8c1241647905cb2e3fc  lua-5.1.5.tar.gz
-- 
1.9.1

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

* [Buildroot] [PATCH 2/2] luajit: add hash
  2014-09-19 18:30 [Buildroot] [PATCH 1/2] lua: add hash Francois Perrad
@ 2014-09-19 18:30 ` Francois Perrad
  2014-09-19 21:16   ` Peter Korsgaard
  2014-09-19 21:11 ` [Buildroot] [PATCH 1/2] lua: " Peter Korsgaard
  2014-09-19 21:17 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Francois Perrad @ 2014-09-19 18:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/luajit/luajit.hash | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 package/luajit/luajit.hash

diff --git a/package/luajit/luajit.hash b/package/luajit/luajit.hash
new file mode 100644
index 0000000..9c238e7
--- /dev/null
+++ b/package/luajit/luajit.hash
@@ -0,0 +1,2 @@
+# Hashes from: http://luajit.org/download.html
+md5 f14e9104be513913810cd59c8c658dc0    LuaJIT-2.0.3.tar.gz
-- 
1.9.1

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

* [Buildroot] [PATCH 1/2] lua: add hash
  2014-09-19 18:30 [Buildroot] [PATCH 1/2] lua: add hash Francois Perrad
  2014-09-19 18:30 ` [Buildroot] [PATCH 2/2] luajit: " Francois Perrad
@ 2014-09-19 21:11 ` Peter Korsgaard
  2014-09-19 21:17 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2014-09-19 21:11 UTC (permalink / raw)
  To: buildroot

>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:

 > Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
 > ---
 >  package/lua/lua.hash | 6 ++++++
 >  1 file changed, 6 insertions(+)
 >  create mode 100644 package/lua/lua.hash

 > diff --git a/package/lua/lua.hash b/package/lua/lua.hash
 > new file mode 100644
 > index 0000000..7bc7933
 > --- /dev/null
 > +++ b/package/lua/lua.hash
 > @@ -0,0 +1,6 @@
 > +# Hashes from: http://www.lua.org/ftp/
 > +md5: dc7f94ec6ff15c985d2d6ad0f1b35654           lua-5.2.3.tar.gz
 > +sha1: 926b7907bc8d274e063d42804666b40a3f3c124c  lua-5.2.3.tar.gz
 > +
 > +md5: 2e115fe26e435e33b0d5c022e4490567           lua-5.1.5.tar.gz
 > +sha1: b3882111ad02ecc6b972f8c1241647905cb2e3fc  lua-5.1.5.tar.gz

Ehh, have you tested this? (hint, no ':' after type):

make lua-patch
ERROR: unknown hash 'md5:' for 'lua-5.1.5.tar.gz'
package/pkg-generic.mk:73: recipe for target '/home/peko/source/buildroot/output/build/lua-5.1.5/.stamp_downloaded' failed
make: *** [/home/peko/source/buildroot/output/build/lua-5.1.5/.stamp_downloaded] Error 1

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] luajit: add hash
  2014-09-19 18:30 ` [Buildroot] [PATCH 2/2] luajit: " Francois Perrad
@ 2014-09-19 21:16   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2014-09-19 21:16 UTC (permalink / raw)
  To: buildroot

>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:

 > Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/2] lua: add hash
  2014-09-19 18:30 [Buildroot] [PATCH 1/2] lua: add hash Francois Perrad
  2014-09-19 18:30 ` [Buildroot] [PATCH 2/2] luajit: " Francois Perrad
  2014-09-19 21:11 ` [Buildroot] [PATCH 1/2] lua: " Peter Korsgaard
@ 2014-09-19 21:17 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2014-09-19 21:17 UTC (permalink / raw)
  To: buildroot

>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:

 > Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
 > ---
 >  package/lua/lua.hash | 6 ++++++
 >  1 file changed, 6 insertions(+)
 >  create mode 100644 package/lua/lua.hash

 > diff --git a/package/lua/lua.hash b/package/lua/lua.hash
 > new file mode 100644
 > index 0000000..7bc7933
 > --- /dev/null
 > +++ b/package/lua/lua.hash
 > @@ -0,0 +1,6 @@
 > +# Hashes from: http://www.lua.org/ftp/
 > +md5: dc7f94ec6ff15c985d2d6ad0f1b35654           lua-5.2.3.tar.gz
 > +sha1: 926b7907bc8d274e063d42804666b40a3f3c124c  lua-5.2.3.tar.gz
 > +
 > +md5: 2e115fe26e435e33b0d5c022e4490567           lua-5.1.5.tar.gz
 > +sha1: b3882111ad02ecc6b972f8c1241647905cb2e3fc  lua-5.1.5.tar.gz

Committed with the syntax corrected, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2014-09-19 21:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-19 18:30 [Buildroot] [PATCH 1/2] lua: add hash Francois Perrad
2014-09-19 18:30 ` [Buildroot] [PATCH 2/2] luajit: " Francois Perrad
2014-09-19 21:16   ` Peter Korsgaard
2014-09-19 21:11 ` [Buildroot] [PATCH 1/2] lua: " Peter Korsgaard
2014-09-19 21:17 ` Peter Korsgaard

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