All of lore.kernel.org
 help / color / mirror / Atom feed
* lzo recipe
@ 2013-02-06 21:15 Zhou, Jingting
  2013-02-11 20:13 ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Zhou, Jingting @ 2013-02-06 21:15 UTC (permalink / raw)
  To: meta-arago@arago-project.org


[-- Attachment #1.1: Type: text/plain, Size: 89 bytes --]

Hey all, attached is the recipe for lzo. Please take a look. Thanks~

Jingting Zhou


[-- Attachment #1.2: Type: text/html, Size: 1951 bytes --]

[-- Attachment #2: 0001-lzo-recipe.patch --]
[-- Type: application/octet-stream, Size: 2213 bytes --]

From 6771be741248c9d71fb8636001cdec6514c4c065 Mon Sep 17 00:00:00 2001
From: Jingting Zhou <a0221004@ares-ubuntu>
Date: Wed, 6 Feb 2013 16:01:36 -0500
Subject: [PATCH] lzo recipe

---
 .../recipes-connectivity/lzo/lzo2_2.03.bb          |   23 ++++++++++++++++++++
 .../recipes-connectivity/lzo/lzo_1.08.bb           |   19 ++++++++++++++++
 2 files changed, 42 insertions(+)
 create mode 100755 meta-arago-distro/recipes-connectivity/lzo/lzo2_2.03.bb
 create mode 100755 meta-arago-distro/recipes-connectivity/lzo/lzo_1.08.bb

diff --git a/meta-arago-distro/recipes-connectivity/lzo/lzo2_2.03.bb b/meta-arago-distro/recipes-connectivity/lzo/lzo2_2.03.bb
new file mode 100755
index 0000000..ee540b1
--- /dev/null
+++ b/meta-arago-distro/recipes-connectivity/lzo/lzo2_2.03.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "Lossless data compression library"
+HOMEPAGE = "http://www.oberhumer.com/opensource/lzo/"
+LICENSE = "GPLv2+"
+SECTION = "libs"
+PRIORITY = "optional"
+
+SRC_URI = "http://www.oberhumer.com/opensource/lzo/download/lzo-${PV}.tar.gz"
+SRC_URI[md5sum] = "0c3d078c2e8ea5a88971089a2f02a726"
+SRC_URI[sha256sum] = "8b1b0da8f757b9ac318e1c15a0eac8bdb56ca902a2dd25beda06c0f265f22591"
+
+S = "${WORKDIR}/lzo-${PV}"
+
+inherit autotools
+
+EXTRA_OECONF = "--enable-shared"
+
+do_configure() {
+	gnu-configize --force
+	oe_runconf
+}
+
+BBCLASSEXTEND = "native"
+
diff --git a/meta-arago-distro/recipes-connectivity/lzo/lzo_1.08.bb b/meta-arago-distro/recipes-connectivity/lzo/lzo_1.08.bb
new file mode 100755
index 0000000..e218a6c
--- /dev/null
+++ b/meta-arago-distro/recipes-connectivity/lzo/lzo_1.08.bb
@@ -0,0 +1,19 @@
+DESCRIPTION = "Lossless data compression library"
+HOMEPAGE = "http://www.oberhumer.com/opensource/lzo/"
+LICENSE = "GPLv2"
+SECTION = "libs"
+PRIORITY = "optional"
+PR = "r15"
+
+LIC_FILES_CHKSUM = "file://Makefile.in;endline=14;md5=764d2275f40f1a67205558dd2af91708"
+
+SRC_URI = "http://www.oberhumer.com/opensource/lzo/download/lzo-${PV}.tar.gz"
+
+inherit autotools
+
+EXTRA_OECONF = "--enable-shared"
+
+BBCLASSEXTEND = "native"
+
+SRC_URI[md5sum] = "ab94d3da364c7cbd5b78d76f1875b0f6"
+SRC_URI[sha256sum] = "bcead46b0bd887c3987e977a0a7d4c547b0f70f926d45e253784137569f57b9a"
-- 
1.7.9.5


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

* Re: lzo recipe
  2013-02-06 21:15 lzo recipe Zhou, Jingting
@ 2013-02-11 20:13 ` Denys Dmytriyenko
  2013-02-11 22:25   ` Zhou, Jingting
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2013-02-11 20:13 UTC (permalink / raw)
  To: Zhou, Jingting; +Cc: meta-arago@arago-project.org

On Wed, Feb 06, 2013 at 09:15:44PM +0000, Zhou, Jingting wrote:
> Hey all, attached is the recipe for lzo. Please take a look. Thanks~

1. Why did you put it in recipes-connectivity?

2. Why do you even need to re-add it? oe-core already provides lzo_2.06

-- 
Denys


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

* Re: lzo recipe
  2013-02-11 20:13 ` Denys Dmytriyenko
@ 2013-02-11 22:25   ` Zhou, Jingting
  2013-02-11 22:34     ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Zhou, Jingting @ 2013-02-11 22:25 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org

1. I don't know where it fits.(The lzo_2.06 is in oe-core)

2. Now I recall why I re-added it. Vtun_2.6(I know it's a very old version, released in 2003) depends on lzo_1.08. I added a vtun patch to be compatible with lzo_2.06. 

-----Original Message-----
From: Dmytriyenko, Denys 
Sent: Monday, February 11, 2013 3:13 PM
To: Zhou, Jingting
Cc: meta-arago@arago-project.org
Subject: Re: [meta-arago] lzo recipe

On Wed, Feb 06, 2013 at 09:15:44PM +0000, Zhou, Jingting wrote:
> Hey all, attached is the recipe for lzo. Please take a look. Thanks~

1. Why did you put it in recipes-connectivity?

2. Why do you even need to re-add it? oe-core already provides lzo_2.06

-- 
Denys


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

* Re: lzo recipe
  2013-02-11 22:25   ` Zhou, Jingting
@ 2013-02-11 22:34     ` Denys Dmytriyenko
  0 siblings, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2013-02-11 22:34 UTC (permalink / raw)
  To: Zhou, Jingting; +Cc: meta-arago@arago-project.org

On Mon, Feb 11, 2013 at 10:25:40PM +0000, Zhou, Jingting wrote:
> 1. I don't know where it fits.(The lzo_2.06 is in oe-core)

lzo_2.06 is in recipes-support in oe-core


> 2. Now I recall why I re-added it. Vtun_2.6(I know it's a very old version, 
> released in 2003) depends on lzo_1.08. I added a vtun patch to be compatible 
> with lzo_2.06.

Can you update it to one of the latest from 3.0.x series? The latest 3.0.3 is 
from 2012...

-- 
Denys


> -----Original Message-----
> From: Dmytriyenko, Denys 
> Sent: Monday, February 11, 2013 3:13 PM
> To: Zhou, Jingting
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] lzo recipe
> 
> On Wed, Feb 06, 2013 at 09:15:44PM +0000, Zhou, Jingting wrote:
> > Hey all, attached is the recipe for lzo. Please take a look. Thanks~
> 
> 1. Why did you put it in recipes-connectivity?
> 
> 2. Why do you even need to re-add it? oe-core already provides lzo_2.06
> 
> -- 
> Denys
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


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

end of thread, other threads:[~2013-02-11 22:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-06 21:15 lzo recipe Zhou, Jingting
2013-02-11 20:13 ` Denys Dmytriyenko
2013-02-11 22:25   ` Zhou, Jingting
2013-02-11 22:34     ` Denys Dmytriyenko

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.