* [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it
@ 2012-09-06 11:35 ml
2012-09-06 11:35 ` [PATCHv5][meta-oe 2/2] libcec: update libcec to latest version (1.8.1) as to include RasPi support ml
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: ml @ 2012-09-06 11:35 UTC (permalink / raw)
To: openembedded-devel; +Cc: Jack Mitchell
From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
V5
- FILES_{PN} no loger required now libdir and includedir are passed to
oe_runmake
V4
- Remove debian packaging patch, it is not needed
Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
---
.../recipes-extended/liblockdev/liblockdev_1.0.3.bb | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb
diff --git a/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb b/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb
new file mode 100644
index 0000000..210a47b
--- /dev/null
+++ b/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "Manage character and block device lockfiles."
+HOMEPAGE = "http://anonscm.debian.org/gitweb/?p=lockdev/lockdev.git;a=summary"
+
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d8045f3b8f929c1cb29a1e3fd737b499"
+
+SRC_URI = "http://ftp.de.debian.org/debian/pool/main/l/lockdev/lockdev_${PV}.orig.tar.gz"
+
+SRC_URI[md5sum] = "64b9c1b87b125fc348e892e24625524a"
+SRC_URI[sha256sum] = "ccae635d7ac3fdd50897eceb250872b3d9a191d298f213e7f0c836910d869f82"
+
+S = "${WORKDIR}/lockdev-${PV}"
+
+do_compile() {
+ oe_runmake CC="${CC}" LD="${LD}" shared
+}
+
+do_install() {
+ oe_runmake basedir="${D}" incdir="${D}${includedir}" libdir="${D}${libdir}" install_dev
+}
--
1.7.12
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCHv5][meta-oe 2/2] libcec: update libcec to latest version (1.8.1) as to include RasPi support
2012-09-06 11:35 [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it ml
@ 2012-09-06 11:35 ` ml
2012-09-06 11:37 ` [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it Jack Mitchell
2012-09-10 20:13 ` Andrei Gherzan
2 siblings, 0 replies; 8+ messages in thread
From: ml @ 2012-09-06 11:35 UTC (permalink / raw)
To: openembedded-devel; +Cc: Jack Mitchell
From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
V2
- Change package version to 1.8.1
V1
- Now depends on liblockdev
- Slight licence change - new md5sum
Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
---
meta-oe/recipes-extended/libcec/libcec_git.bb | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/meta-oe/recipes-extended/libcec/libcec_git.bb b/meta-oe/recipes-extended/libcec/libcec_git.bb
index 142b2e2..81b518a 100644
--- a/meta-oe/recipes-extended/libcec/libcec_git.bb
+++ b/meta-oe/recipes-extended/libcec/libcec_git.bb
@@ -1,14 +1,13 @@
DESCRIPTION = "USB CEC Adaptor communication Library"
HOMEPAGE = "http://libcec.pulse-eight.com/"
-LICENSE = "GPLv2+"
-LIC_FILES_CHKSUM = "file://COPYING;md5=185ead350fec5fc223da0f65f9a802af"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=5e8e16396992369f73f3d28875f846da"
-DEPENDS = "udev"
+DEPENDS = "udev liblockdev"
-PR = "r1"
-PV = "1.4.0"
-SRCREV = "2db8981f49fbd167ddbbf19c1fbadd064abc332a"
+PV = "1.8.1"
+SRCREV = "34a9cecdd92f6b2844f9c4054da202b152ab2217"
SRC_URI = "git://github.com/Pulse-Eight/libcec.git"
S = "${WORKDIR}/git"
--
1.7.12
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it
2012-09-06 11:35 [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it ml
2012-09-06 11:35 ` [PATCHv5][meta-oe 2/2] libcec: update libcec to latest version (1.8.1) as to include RasPi support ml
@ 2012-09-06 11:37 ` Jack Mitchell
2012-09-10 20:13 ` Andrei Gherzan
2 siblings, 0 replies; 8+ messages in thread
From: Jack Mitchell @ 2012-09-06 11:37 UTC (permalink / raw)
To: openembedded-devel
On 06/09/12 12:35, ml@communistcode.co.uk wrote:
> From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
>
> V5
>
> - FILES_{PN} no loger required now libdir and includedir are passed to
> oe_runmake
>
> V4
>
> - Remove debian packaging patch, it is not needed
>
> Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
> ---
> .../recipes-extended/liblockdev/liblockdev_1.0.3.bb | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
> create mode 100644 meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb
>
> diff --git a/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb b/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb
> new file mode 100644
> index 0000000..210a47b
> --- /dev/null
> +++ b/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb
> @@ -0,0 +1,20 @@
> +DESCRIPTION = "Manage character and block device lockfiles."
> +HOMEPAGE = "http://anonscm.debian.org/gitweb/?p=lockdev/lockdev.git;a=summary"
> +
> +LICENSE = "LGPLv2.1"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=d8045f3b8f929c1cb29a1e3fd737b499"
> +
> +SRC_URI = "http://ftp.de.debian.org/debian/pool/main/l/lockdev/lockdev_${PV}.orig.tar.gz"
> +
> +SRC_URI[md5sum] = "64b9c1b87b125fc348e892e24625524a"
> +SRC_URI[sha256sum] = "ccae635d7ac3fdd50897eceb250872b3d9a191d298f213e7f0c836910d869f82"
> +
> +S = "${WORKDIR}/lockdev-${PV}"
> +
> +do_compile() {
> + oe_runmake CC="${CC}" LD="${LD}" shared
> +}
> +
> +do_install() {
> + oe_runmake basedir="${D}" incdir="${D}${includedir}" libdir="${D}${libdir}" install_dev
> +}
Sorry Koen,
I messed up the meta-oe bit but patchwork seems to have caught it anyway!
Cheers,
--
Jack Mitchell (jack@embed.me.uk)
Embedded Systems Engineer
http://www.embed.me.uk
--
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it
2012-09-06 11:35 [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it ml
2012-09-06 11:35 ` [PATCHv5][meta-oe 2/2] libcec: update libcec to latest version (1.8.1) as to include RasPi support ml
2012-09-06 11:37 ` [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it Jack Mitchell
@ 2012-09-10 20:13 ` Andrei Gherzan
2012-09-11 8:09 ` Jack Mitchell
2 siblings, 1 reply; 8+ messages in thread
From: Andrei Gherzan @ 2012-09-10 20:13 UTC (permalink / raw)
To: openembedded-devel
On Thu, Sep 6, 2012 at 2:35 PM, <ml@communistcode.co.uk> wrote:
> From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
>
> V5
>
> - FILES_{PN} no loger required now libdir and includedir are passed to
> oe_runmake
>
> V4
>
> - Remove debian packaging patch, it is not needed
>
> Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
> ---
> .../recipes-extended/liblockdev/liblockdev_1.0.3.bb | 20
> ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
> create mode 100644 meta-oe/recipes-extended/liblockdev/
> liblockdev_1.0.3.bb
>
> diff --git a/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bbb/meta-oe/recipes-extended/liblockdev/
> liblockdev_1.0.3.bb
> new file mode 100644
> index 0000000..210a47b
> --- /dev/null
> +++ b/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb
> @@ -0,0 +1,20 @@
> +DESCRIPTION = "Manage character and block device lockfiles."
> +HOMEPAGE = "
> http://anonscm.debian.org/gitweb/?p=lockdev/lockdev.git;a=summary"
> +
> +LICENSE = "LGPLv2.1"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=d8045f3b8f929c1cb29a1e3fd737b499"
> +
> +SRC_URI = "
> http://ftp.de.debian.org/debian/pool/main/l/lockdev/lockdev_${PV}.orig.tar.gz
> "
> +
> +SRC_URI[md5sum] = "64b9c1b87b125fc348e892e24625524a"
> +SRC_URI[sha256sum] =
> "ccae635d7ac3fdd50897eceb250872b3d9a191d298f213e7f0c836910d869f82"
> +
> +S = "${WORKDIR}/lockdev-${PV}"
> +
> +do_compile() {
> + oe_runmake CC="${CC}" LD="${LD}" shared
> +}
> +
> +do_install() {
> + oe_runmake basedir="${D}" incdir="${D}${includedir}"
> libdir="${D}${libdir}" install_dev
> +}
>
Why install only _dev? Why don't you use make install? It makes no sense to
compile shared and not install it... I just tested your recipe.
ag
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it
2012-09-10 20:13 ` Andrei Gherzan
@ 2012-09-11 8:09 ` Jack Mitchell
2012-09-13 21:54 ` Andrei Gherzan
0 siblings, 1 reply; 8+ messages in thread
From: Jack Mitchell @ 2012-09-11 8:09 UTC (permalink / raw)
To: openembedded-devel
On 10/09/12 21:13, Andrei Gherzan wrote:
> On Thu, Sep 6, 2012 at 2:35 PM, <ml@communistcode.co.uk> wrote:
>
>> From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
>>
>> V5
>>
>> - FILES_{PN} no loger required now libdir and includedir are passed to
>> oe_runmake
>>
>> V4
>>
>> - Remove debian packaging patch, it is not needed
>>
>> Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
>> ---
>> .../recipes-extended/liblockdev/liblockdev_1.0.3.bb | 20
>> ++++++++++++++++++++
>> 1 file changed, 20 insertions(+)
>> create mode 100644 meta-oe/recipes-extended/liblockdev/
>> liblockdev_1.0.3.bb
>>
>> diff --git a/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bbb/meta-oe/recipes-extended/liblockdev/
>> liblockdev_1.0.3.bb
>> new file mode 100644
>> index 0000000..210a47b
>> --- /dev/null
>> +++ b/meta-oe/recipes-extended/liblockdev/liblockdev_1.0.3.bb
>> @@ -0,0 +1,20 @@
>> +DESCRIPTION = "Manage character and block device lockfiles."
>> +HOMEPAGE = "
>> http://anonscm.debian.org/gitweb/?p=lockdev/lockdev.git;a=summary"
>> +
>> +LICENSE = "LGPLv2.1"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=d8045f3b8f929c1cb29a1e3fd737b499"
>> +
>> +SRC_URI = "
>> http://ftp.de.debian.org/debian/pool/main/l/lockdev/lockdev_${PV}.orig.tar.gz
>> "
>> +
>> +SRC_URI[md5sum] = "64b9c1b87b125fc348e892e24625524a"
>> +SRC_URI[sha256sum] =
>> "ccae635d7ac3fdd50897eceb250872b3d9a191d298f213e7f0c836910d869f82"
>> +
>> +S = "${WORKDIR}/lockdev-${PV}"
>> +
>> +do_compile() {
>> + oe_runmake CC="${CC}" LD="${LD}" shared
>> +}
>> +
>> +do_install() {
>> + oe_runmake basedir="${D}" incdir="${D}${includedir}"
>> libdir="${D}${libdir}" install_dev
>> +}
>>
> Why install only _dev? Why don't you use make install? It makes no sense to
> compile shared and not install it... I just tested your recipe.
>
> ag
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
Ah, well spotted I had -dev as that was what I needed to get libcec to
link - did you have to change anything other than install_dev to install?
Cheers,
--
Jack Mitchell (jack@embed.me.uk)
Embedded Systems Engineer
http://www.embed.me.uk
--
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it
2012-09-11 8:09 ` Jack Mitchell
@ 2012-09-13 21:54 ` Andrei Gherzan
2012-09-14 8:44 ` Jack Mitchell
0 siblings, 1 reply; 8+ messages in thread
From: Andrei Gherzan @ 2012-09-13 21:54 UTC (permalink / raw)
To: openembedded-devel
On Tue, Sep 11, 2012 at 11:09 AM, Jack Mitchell <ml@communistcode.co.uk>wrote:
> On 10/09/12 21:13, Andrei Gherzan wrote:
>
>> On Thu, Sep 6, 2012 at 2:35 PM, <ml@communistcode.co.uk> wrote:
>>
>> From: Jack Mitchell <jack.mitchell@dbbroadcast.co.**uk<jack.mitchell@dbbroadcast.co.uk>
>>> >
>>>
>>> V5
>>>
>>> - FILES_{PN} no loger required now libdir and includedir are passed to
>>> oe_runmake
>>>
>>> V4
>>>
>>> - Remove debian packaging patch, it is not needed
>>>
>>> Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.**uk<jack.mitchell@dbbroadcast.co.uk>
>>> >
>>> ---
>>> .../recipes-extended/**liblockdev/liblockdev_1.0.3.bb | 20
>>> ++++++++++++++++++++
>>> 1 file changed, 20 insertions(+)
>>> create mode 100644 meta-oe/recipes-extended/**liblockdev/
>>> liblockdev_1.0.3.bb
>>>
>>> diff --git a/meta-oe/recipes-extended/**liblockdev/liblockdev_1.0.3.**
>>> bbb/meta-oe/recipes-extended/**liblockdev/
>>> liblockdev_1.0.3.bb
>>> new file mode 100644
>>> index 0000000..210a47b
>>> --- /dev/null
>>> +++ b/meta-oe/recipes-extended/**liblockdev/liblockdev_1.0.3.bb
>>> @@ -0,0 +1,20 @@
>>> +DESCRIPTION = "Manage character and block device lockfiles."
>>> +HOMEPAGE = "
>>> http://anonscm.debian.org/**gitweb/?p=lockdev/lockdev.git;**a=summary<http://anonscm.debian.org/gitweb/?p=lockdev/lockdev.git;a=summary>
>>> "
>>> +
>>> +LICENSE = "LGPLv2.1"
>>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=**d8045f3b8f929c1cb29a1e3fd737b4
>>> **99"
>>> +
>>> +SRC_URI = "
>>> http://ftp.de.debian.org/**debian/pool/main/l/lockdev/**
>>> lockdev_${PV}.orig.tar.gz<http://ftp.de.debian.org/debian/pool/main/l/lockdev/lockdev_$%7BPV%7D.orig.tar.gz>
>>> "
>>> +
>>> +SRC_URI[md5sum] = "**64b9c1b87b125fc348e892e2462552**4a"
>>> +SRC_URI[sha256sum] =
>>> "**ccae635d7ac3fdd50897eceb250872**b3d9a191d298f213e7f0c836910d86**9f82"
>>> +
>>> +S = "${WORKDIR}/lockdev-${PV}"
>>> +
>>> +do_compile() {
>>> + oe_runmake CC="${CC}" LD="${LD}" shared
>>> +}
>>> +
>>> +do_install() {
>>> + oe_runmake basedir="${D}" incdir="${D}${includedir}"
>>> libdir="${D}${libdir}" install_dev
>>> +}
>>>
>>> Why install only _dev? Why don't you use make install? It makes no
>> sense to
>> compile shared and not install it... I just tested your recipe.
>>
>>
I cleaned a little your recipe and sent a pull request (added you as Signed
of by).
https://github.com/openembedded/meta-oe/pull/10
ag
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it
2012-09-13 21:54 ` Andrei Gherzan
@ 2012-09-14 8:44 ` Jack Mitchell
2012-09-14 9:46 ` Andrei Gherzan
0 siblings, 1 reply; 8+ messages in thread
From: Jack Mitchell @ 2012-09-14 8:44 UTC (permalink / raw)
To: openembedded-devel
On 13/09/12 22:54, Andrei Gherzan wrote:
> On Tue, Sep 11, 2012 at 11:09 AM, Jack Mitchell <ml@communistcode.co.uk>wrote:
>
>> On 10/09/12 21:13, Andrei Gherzan wrote:
>>
>>> On Thu, Sep 6, 2012 at 2:35 PM, <ml@communistcode.co.uk> wrote:
>>>
>>> From: Jack Mitchell <jack.mitchell@dbbroadcast.co.**uk<jack.mitchell@dbbroadcast.co.uk>
>>>> V5
>>>>
>>>> - FILES_{PN} no loger required now libdir and includedir are passed to
>>>> oe_runmake
>>>>
>>>> V4
>>>>
>>>> - Remove debian packaging patch, it is not needed
>>>>
>>>> Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.**uk<jack.mitchell@dbbroadcast.co.uk>
>>>> ---
>>>> .../recipes-extended/**liblockdev/liblockdev_1.0.3.bb | 20
>>>> ++++++++++++++++++++
>>>> 1 file changed, 20 insertions(+)
>>>> create mode 100644 meta-oe/recipes-extended/**liblockdev/
>>>> liblockdev_1.0.3.bb
>>>>
>>>> diff --git a/meta-oe/recipes-extended/**liblockdev/liblockdev_1.0.3.**
>>>> bbb/meta-oe/recipes-extended/**liblockdev/
>>>> liblockdev_1.0.3.bb
>>>> new file mode 100644
>>>> index 0000000..210a47b
>>>> --- /dev/null
>>>> +++ b/meta-oe/recipes-extended/**liblockdev/liblockdev_1.0.3.bb
>>>> @@ -0,0 +1,20 @@
>>>> +DESCRIPTION = "Manage character and block device lockfiles."
>>>> +HOMEPAGE = "
>>>> http://anonscm.debian.org/**gitweb/?p=lockdev/lockdev.git;**a=summary<http://anonscm.debian.org/gitweb/?p=lockdev/lockdev.git;a=summary>
>>>> "
>>>> +
>>>> +LICENSE = "LGPLv2.1"
>>>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=**d8045f3b8f929c1cb29a1e3fd737b4
>>>> **99"
>>>> +
>>>> +SRC_URI = "
>>>> http://ftp.de.debian.org/**debian/pool/main/l/lockdev/**
>>>> lockdev_${PV}.orig.tar.gz<http://ftp.de.debian.org/debian/pool/main/l/lockdev/lockdev_$%7BPV%7D.orig.tar.gz>
>>>> "
>>>> +
>>>> +SRC_URI[md5sum] = "**64b9c1b87b125fc348e892e2462552**4a"
>>>> +SRC_URI[sha256sum] =
>>>> "**ccae635d7ac3fdd50897eceb250872**b3d9a191d298f213e7f0c836910d86**9f82"
>>>> +
>>>> +S = "${WORKDIR}/lockdev-${PV}"
>>>> +
>>>> +do_compile() {
>>>> + oe_runmake CC="${CC}" LD="${LD}" shared
>>>> +}
>>>> +
>>>> +do_install() {
>>>> + oe_runmake basedir="${D}" incdir="${D}${includedir}"
>>>> libdir="${D}${libdir}" install_dev
>>>> +}
>>>>
>>>> Why install only _dev? Why don't you use make install? It makes no
>>> sense to
>>> compile shared and not install it... I just tested your recipe.
>>>
>>>
> I cleaned a little your recipe and sent a pull request (added you as Signed
> of by).
> https://github.com/openembedded/meta-oe/pull/10
>
> ag
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
Looks good, my only gripe is that you have listed basedir twice in the
EXTRA_OEMAKE.
Cheers,
--
Jack Mitchell (jack@embed.me.uk)
Embedded Systems Engineer
http://www.embed.me.uk
--
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it
2012-09-14 8:44 ` Jack Mitchell
@ 2012-09-14 9:46 ` Andrei Gherzan
0 siblings, 0 replies; 8+ messages in thread
From: Andrei Gherzan @ 2012-09-14 9:46 UTC (permalink / raw)
To: openembedded-devel
On Fri, Sep 14, 2012 at 11:44 AM, Jack Mitchell <ml@communistcode.co.uk>wrote:
> On 13/09/12 22:54, Andrei Gherzan wrote:
>
>> On Tue, Sep 11, 2012 at 11:09 AM, Jack Mitchell <ml@communistcode.co.uk
>> >wrote:
>>
>> On 10/09/12 21:13, Andrei Gherzan wrote:
>>>
>>> On Thu, Sep 6, 2012 at 2:35 PM, <ml@communistcode.co.uk> wrote:
>>>>
>>>> From: Jack Mitchell <jack.mitchell@dbbroadcast.co.****uk<
>>>> jack.mitchell@**dbbroadcast.co.uk <jack.mitchell@dbbroadcast.co.uk>>
>>>>
>>>>> V5
>>>>>
>>>>> - FILES_{PN} no loger required now libdir and includedir are passed to
>>>>> oe_runmake
>>>>>
>>>>> V4
>>>>>
>>>>> - Remove debian packaging patch, it is not needed
>>>>>
>>>>> Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.****uk<
>>>>> jack.mitchell@**dbbroadcast.co.uk <jack.mitchell@dbbroadcast.co.uk>>
>>>>> ---
>>>>> .../recipes-extended/****liblockdev/liblockdev_1.0.3.bb | 20
>>>>> ++++++++++++++++++++
>>>>> 1 file changed, 20 insertions(+)
>>>>> create mode 100644 meta-oe/recipes-extended/****liblockdev/
>>>>> liblockdev_1.0.3.bb
>>>>>
>>>>> diff --git a/meta-oe/recipes-extended/****
>>>>> liblockdev/liblockdev_1.0.3.**
>>>>> bbb/meta-oe/recipes-extended/****liblockdev/
>>>>> liblockdev_1.0.3.bb
>>>>> new file mode 100644
>>>>> index 0000000..210a47b
>>>>> --- /dev/null
>>>>> +++ b/meta-oe/recipes-extended/****liblockdev/liblockdev_1.0.3.bb
>>>>> @@ -0,0 +1,20 @@
>>>>> +DESCRIPTION = "Manage character and block device lockfiles."
>>>>> +HOMEPAGE = "
>>>>> http://anonscm.debian.org/****gitweb/?p=lockdev/lockdev.git;**
>>>>> **a=summary<http://anonscm.debian.org/**gitweb/?p=lockdev/lockdev.git;**a=summary>
>>>>> <http://anonscm.**debian.org/gitweb/?p=lockdev/**lockdev.git;a=summary<http://anonscm.debian.org/gitweb/?p=lockdev/lockdev.git;a=summary>
>>>>> >
>>>>> "
>>>>> +
>>>>> +LICENSE = "LGPLv2.1"
>>>>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=****
>>>>> d8045f3b8f929c1cb29a1e3fd737b4
>>>>> **99"
>>>>> +
>>>>> +SRC_URI = "
>>>>> http://ftp.de.debian.org/****debian/pool/main/l/lockdev/**<http://ftp.de.debian.org/**debian/pool/main/l/lockdev/**>
>>>>> lockdev_${PV}.orig.tar.gz<http**://ftp.de.debian.org/debian/**
>>>>> pool/main/l/lockdev/lockdev_$%**7BPV%7D.orig.tar.gz<http://ftp.de.debian.org/debian/pool/main/l/lockdev/lockdev_$%7BPV%7D.orig.tar.gz>
>>>>> >
>>>>> "
>>>>> +
>>>>> +SRC_URI[md5sum] = "****64b9c1b87b125fc348e892e2462552****4a"
>>>>> +SRC_URI[sha256sum] =
>>>>> "****ccae635d7ac3fdd50897eceb250872******
>>>>> b3d9a191d298f213e7f0c836910d86****9f82"
>>>>> +
>>>>> +S = "${WORKDIR}/lockdev-${PV}"
>>>>> +
>>>>> +do_compile() {
>>>>> + oe_runmake CC="${CC}" LD="${LD}" shared
>>>>> +}
>>>>> +
>>>>> +do_install() {
>>>>> + oe_runmake basedir="${D}" incdir="${D}${includedir}"
>>>>> libdir="${D}${libdir}" install_dev
>>>>> +}
>>>>>
>>>>> Why install only _dev? Why don't you use make install? It makes no
>>>>>
>>>> sense to
>>>> compile shared and not install it... I just tested your recipe.
>>>>
>>>>
>>>> I cleaned a little your recipe and sent a pull request (added you as
>> Signed
>> of by).
>> https://github.com/**openembedded/meta-oe/pull/10<https://github.com/openembedded/meta-oe/pull/10>
>>
>> ag
>> ______________________________**_________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.**openembedded.org<Openembedded-devel@lists.openembedded.org>
>> http://lists.linuxtogo.org/**cgi-bin/mailman/listinfo/**
>> openembedded-devel<http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel>
>>
>
> Looks good, my only gripe is that you have listed basedir twice in the
> EXTRA_OEMAKE.
>
> Don't ask. :) Amended. Thanks.
ag
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-09-14 9:59 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-06 11:35 [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it ml
2012-09-06 11:35 ` [PATCHv5][meta-oe 2/2] libcec: update libcec to latest version (1.8.1) as to include RasPi support ml
2012-09-06 11:37 ` [PATCHv5][meta-oe 1/2] liblockdev: new recipe, new version of libcec requires it Jack Mitchell
2012-09-10 20:13 ` Andrei Gherzan
2012-09-11 8:09 ` Jack Mitchell
2012-09-13 21:54 ` Andrei Gherzan
2012-09-14 8:44 ` Jack Mitchell
2012-09-14 9:46 ` Andrei Gherzan
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.