* [PATCH] libmodbus: ported recipe from classic and updated
@ 2012-05-04 21:25 Andrea Galbusera
2012-05-04 21:49 ` Khem Raj
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Andrea Galbusera @ 2012-05-04 21:25 UTC (permalink / raw)
To: openembedded-devel
* based on recipe by Radoslav Kolev which was in classic
* updated to latest released version 3.0.2
* also provide an _git version with up-to-date SRCREV and
DEFAULT_PREFERENCE = "-1"
* common part factorized as libmodbus.inc
Signed-off-by: Andrea Galbusera <gizero@gmail.com>
---
meta-oe/recipes-extended/libmodbus/libmodbus.inc | 13 +++++++++++++
.../recipes-extended/libmodbus/libmodbus_3.0.2.bb | 8 ++++++++
.../recipes-extended/libmodbus/libmodbus_git.bb | 13 +++++++++++++
3 files changed, 34 insertions(+), 0 deletions(-)
create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus.inc
create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus.inc b/meta-oe/recipes-extended/libmodbus/libmodbus.inc
new file mode 100644
index 0000000..8e0e011
--- /dev/null
+++ b/meta-oe/recipes-extended/libmodbus/libmodbus.inc
@@ -0,0 +1,13 @@
+SUMMARY = "A Modbus library"
+DESCRIPTION = "libmodbus is a C library designed to provide a fast and robust \
+implementation of the Modbus protocol. It runs on Linux, Mac OS X, FreeBSD, \
+QNX and Windows."
+HOMEPAGE = "http://www.libmodbus.org/"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "LGPLv2.1+"
+LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c"
+
+INC_PR = "r0"
+
+inherit autotools pkgconfig
diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
new file mode 100644
index 0000000..7a99f72
--- /dev/null
+++ b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
@@ -0,0 +1,8 @@
+require libmodbus.inc
+
+PR = "${INC_PR}.0"
+
+SRC_URI = "http://github.com/downloads/stephane/libmodbus/libmodbus-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "1aaacce9d9779d3a84f7d1a75774c943"
+SRC_URI[sha256sum] = "927ec90e0e299a7d4ec7086b1e2590566bdfc3bbc22e12204229361c029f2615"
diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
new file mode 100644
index 0000000..793a9d6
--- /dev/null
+++ b/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
@@ -0,0 +1,13 @@
+require libmodbus.inc
+
+SRCREV = "23dd803f3f2b7be668408fa938e8d665249b4fba"
+
+PV = "3.0.2+gitr${SRCPV}"
+
+PR = "${INC_PR}.0"
+
+DEFAULT_PREFERENCE = "-1"
+
+SRC_URI = "git://github.com/stephane/libmodbus;branch=master;protocol=git"
+S = "${WORKDIR}/git"
+
--
1.7.5.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] libmodbus: ported recipe from classic and updated
2012-05-04 21:25 [PATCH] libmodbus: ported recipe from classic and updated Andrea Galbusera
@ 2012-05-04 21:49 ` Khem Raj
2012-05-05 15:52 ` Andrea Galbusera
2012-05-05 4:46 ` Martin Jansa
2012-05-05 15:51 ` [meta-oe][PATCH v2] " Andrea Galbusera
2 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2012-05-04 21:49 UTC (permalink / raw)
To: openembedded-devel
On Fri, May 4, 2012 at 2:25 PM, Andrea Galbusera <gizero@gmail.com> wrote:
> * based on recipe by Radoslav Kolev which was in classic
> * updated to latest released version 3.0.2
> * also provide an _git version with up-to-date SRCREV and
> DEFAULT_PREFERENCE = "-1"
You should always prefix the subject line with layername e.g.
[meta-oe]... so you get appropriate maintainers attention
Do we really need the git version ? if not then drop it.
> * common part factorized as libmodbus.inc
>
> Signed-off-by: Andrea Galbusera <gizero@gmail.com>
> ---
> meta-oe/recipes-extended/libmodbus/libmodbus.inc | 13 +++++++++++++
> .../recipes-extended/libmodbus/libmodbus_3.0.2.bb | 8 ++++++++
> .../recipes-extended/libmodbus/libmodbus_git.bb | 13 +++++++++++++
> 3 files changed, 34 insertions(+), 0 deletions(-)
> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus.inc
> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
>
> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus.inc b/meta-oe/recipes-extended/libmodbus/libmodbus.inc
> new file mode 100644
> index 0000000..8e0e011
> --- /dev/null
> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus.inc
> @@ -0,0 +1,13 @@
> +SUMMARY = "A Modbus library"
> +DESCRIPTION = "libmodbus is a C library designed to provide a fast and robust \
> +implementation of the Modbus protocol. It runs on Linux, Mac OS X, FreeBSD, \
> +QNX and Windows."
> +HOMEPAGE = "http://www.libmodbus.org/"
> +SECTION = "libs"
> +PRIORITY = "optional"
PRIORITY is no longer used drop it.
> +LICENSE = "LGPLv2.1+"
> +LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c"
> +
> +INC_PR = "r0"
if you are just having 1 recipe i.e. dropping git recipe then change that
to PR
> +
> +inherit autotools pkgconfig
> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> new file mode 100644
> index 0000000..7a99f72
> --- /dev/null
> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> @@ -0,0 +1,8 @@
> +require libmodbus.inc
> +
> +PR = "${INC_PR}.0"
> +
> +SRC_URI = "http://github.com/downloads/stephane/libmodbus/libmodbus-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "1aaacce9d9779d3a84f7d1a75774c943"
> +SRC_URI[sha256sum] = "927ec90e0e299a7d4ec7086b1e2590566bdfc3bbc22e12204229361c029f2615"
> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
> new file mode 100644
> index 0000000..793a9d6
> --- /dev/null
> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
> @@ -0,0 +1,13 @@
> +require libmodbus.inc
> +
> +SRCREV = "23dd803f3f2b7be668408fa938e8d665249b4fba"
> +
> +PV = "3.0.2+gitr${SRCPV}"
> +
> +PR = "${INC_PR}.0"
> +
> +DEFAULT_PREFERENCE = "-1"
> +
> +SRC_URI = "git://github.com/stephane/libmodbus;branch=master;protocol=git"
> +S = "${WORKDIR}/git"
> +
> --
> 1.7.5.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] libmodbus: ported recipe from classic and updated
2012-05-04 21:25 [PATCH] libmodbus: ported recipe from classic and updated Andrea Galbusera
2012-05-04 21:49 ` Khem Raj
@ 2012-05-05 4:46 ` Martin Jansa
2012-05-05 15:51 ` [meta-oe][PATCH v2] " Andrea Galbusera
2 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-05-05 4:46 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 3091 bytes --]
On Fri, May 04, 2012 at 11:25:08PM +0200, Andrea Galbusera wrote:
> * based on recipe by Radoslav Kolev which was in classic
> * updated to latest released version 3.0.2
> * also provide an _git version with up-to-date SRCREV and
> DEFAULT_PREFERENCE = "-1"
> * common part factorized as libmodbus.inc
>
> Signed-off-by: Andrea Galbusera <gizero@gmail.com>
> ---
> meta-oe/recipes-extended/libmodbus/libmodbus.inc | 13 +++++++++++++
> .../recipes-extended/libmodbus/libmodbus_3.0.2.bb | 8 ++++++++
> .../recipes-extended/libmodbus/libmodbus_git.bb | 13 +++++++++++++
> 3 files changed, 34 insertions(+), 0 deletions(-)
> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus.inc
> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
>
> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus.inc b/meta-oe/recipes-extended/libmodbus/libmodbus.inc
> new file mode 100644
> index 0000000..8e0e011
> --- /dev/null
> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus.inc
> @@ -0,0 +1,13 @@
> +SUMMARY = "A Modbus library"
> +DESCRIPTION = "libmodbus is a C library designed to provide a fast and robust \
> +implementation of the Modbus protocol. It runs on Linux, Mac OS X, FreeBSD, \
> +QNX and Windows."
> +HOMEPAGE = "http://www.libmodbus.org/"
> +SECTION = "libs"
> +PRIORITY = "optional"
you can drop this field too.
> +LICENSE = "LGPLv2.1+"
> +LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c"
> +
> +INC_PR = "r0"
> +
> +inherit autotools pkgconfig
> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> new file mode 100644
> index 0000000..7a99f72
> --- /dev/null
> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> @@ -0,0 +1,8 @@
> +require libmodbus.inc
> +
> +PR = "${INC_PR}.0"
> +
> +SRC_URI = "http://github.com/downloads/stephane/libmodbus/libmodbus-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "1aaacce9d9779d3a84f7d1a75774c943"
> +SRC_URI[sha256sum] = "927ec90e0e299a7d4ec7086b1e2590566bdfc3bbc22e12204229361c029f2615"
> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
> new file mode 100644
> index 0000000..793a9d6
> --- /dev/null
> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
> @@ -0,0 +1,13 @@
> +require libmodbus.inc
> +
> +SRCREV = "23dd803f3f2b7be668408fa938e8d665249b4fba"
> +
> +PV = "3.0.2+gitr${SRCPV}"
> +
> +PR = "${INC_PR}.0"
> +
> +DEFAULT_PREFERENCE = "-1"
> +
> +SRC_URI = "git://github.com/stephane/libmodbus;branch=master;protocol=git"
> +S = "${WORKDIR}/git"
> +
> --
> 1.7.5.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [meta-oe][PATCH v2] libmodbus: ported recipe from classic and updated
2012-05-04 21:25 [PATCH] libmodbus: ported recipe from classic and updated Andrea Galbusera
2012-05-04 21:49 ` Khem Raj
2012-05-05 4:46 ` Martin Jansa
@ 2012-05-05 15:51 ` Andrea Galbusera
2012-05-15 6:37 ` Andrea Galbusera
2012-05-15 7:48 ` Koen Kooi
2 siblings, 2 replies; 7+ messages in thread
From: Andrea Galbusera @ 2012-05-05 15:51 UTC (permalink / raw)
To: openembedded-devel
* based on recipe by Radoslav Kolev which was in classic
* updated to latest released version 3.0.2
* v2 drops git version of recipe
* v2 drops no longer used PRIORITY
Signed-off-by: Andrea Galbusera <gizero@gmail.com>
---
.../recipes-extended/libmodbus/libmodbus_3.0.2.bb | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
new file mode 100644
index 0000000..5926bc4
--- /dev/null
+++ b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
@@ -0,0 +1,18 @@
+SUMMARY = "A Modbus library"
+DESCRIPTION = "libmodbus is a C library designed to provide a fast and robust \
+implementation of the Modbus protocol. It runs on Linux, Mac OS X, FreeBSD, \
+QNX and Windows."
+HOMEPAGE = "http://www.libmodbus.org/"
+SECTION = "libs"
+
+LICENSE = "LGPLv2.1+"
+LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c"
+
+PR = "r0"
+
+SRC_URI = "http://github.com/downloads/stephane/libmodbus/libmodbus-${PV}.tar.gz"
+
+inherit autotools pkgconfig
+
+SRC_URI[md5sum] = "1aaacce9d9779d3a84f7d1a75774c943"
+SRC_URI[sha256sum] = "927ec90e0e299a7d4ec7086b1e2590566bdfc3bbc22e12204229361c029f2615"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] libmodbus: ported recipe from classic and updated
2012-05-04 21:49 ` Khem Raj
@ 2012-05-05 15:52 ` Andrea Galbusera
0 siblings, 0 replies; 7+ messages in thread
From: Andrea Galbusera @ 2012-05-05 15:52 UTC (permalink / raw)
To: openembedded-devel
Hi Khem and Martin,
On Fri, May 4, 2012 at 11:49 PM, Khem Raj <raj.khem@gmail.com> wrote:
> On Fri, May 4, 2012 at 2:25 PM, Andrea Galbusera <gizero@gmail.com> wrote:
>> * based on recipe by Radoslav Kolev which was in classic
>> * updated to latest released version 3.0.2
>> * also provide an _git version with up-to-date SRCREV and
>> DEFAULT_PREFERENCE = "-1"
>
> You should always prefix the subject line with layername e.g.
> [meta-oe]... so you get appropriate maintainers attention
Ok!
>
> Do we really need the git version ? if not then drop it.
Thank you for reviewing. I agree with you: the stable release should
be enough. git version was included only because it was there in
classic.
I'll update and resend as v2.
>> * common part factorized as libmodbus.inc
>>
>> Signed-off-by: Andrea Galbusera <gizero@gmail.com>
>> ---
>> meta-oe/recipes-extended/libmodbus/libmodbus.inc | 13 +++++++++++++
>> .../recipes-extended/libmodbus/libmodbus_3.0.2.bb | 8 ++++++++
>> .../recipes-extended/libmodbus/libmodbus_git.bb | 13 +++++++++++++
>> 3 files changed, 34 insertions(+), 0 deletions(-)
>> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus.inc
>> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
>> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
>>
>> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus.inc b/meta-oe/recipes-extended/libmodbus/libmodbus.inc
>> new file mode 100644
>> index 0000000..8e0e011
>> --- /dev/null
>> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus.inc
>> @@ -0,0 +1,13 @@
>> +SUMMARY = "A Modbus library"
>> +DESCRIPTION = "libmodbus is a C library designed to provide a fast and robust \
>> +implementation of the Modbus protocol. It runs on Linux, Mac OS X, FreeBSD, \
>> +QNX and Windows."
>> +HOMEPAGE = "http://www.libmodbus.org/"
>> +SECTION = "libs"
>> +PRIORITY = "optional"
>
> PRIORITY is no longer used drop it.
Good to know!
>> +LICENSE = "LGPLv2.1+"
>> +LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c"
>> +
>> +INC_PR = "r0"
>
> if you are just having 1 recipe i.e. dropping git recipe then change that
> to PR
>
>> +
>> +inherit autotools pkgconfig
>> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
>> new file mode 100644
>> index 0000000..7a99f72
>> --- /dev/null
>> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
>> @@ -0,0 +1,8 @@
>> +require libmodbus.inc
>> +
>> +PR = "${INC_PR}.0"
>> +
>> +SRC_URI = "http://github.com/downloads/stephane/libmodbus/libmodbus-${PV}.tar.gz"
>> +
>> +SRC_URI[md5sum] = "1aaacce9d9779d3a84f7d1a75774c943"
>> +SRC_URI[sha256sum] = "927ec90e0e299a7d4ec7086b1e2590566bdfc3bbc22e12204229361c029f2615"
>> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
>> new file mode 100644
>> index 0000000..793a9d6
>> --- /dev/null
>> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus_git.bb
>> @@ -0,0 +1,13 @@
>> +require libmodbus.inc
>> +
>> +SRCREV = "23dd803f3f2b7be668408fa938e8d665249b4fba"
>> +
>> +PV = "3.0.2+gitr${SRCPV}"
>> +
>> +PR = "${INC_PR}.0"
>> +
>> +DEFAULT_PREFERENCE = "-1"
>> +
>> +SRC_URI = "git://github.com/stephane/libmodbus;branch=master;protocol=git"
>> +S = "${WORKDIR}/git"
>> +
>> --
>> 1.7.5.4
>>
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [meta-oe][PATCH v2] libmodbus: ported recipe from classic and updated
2012-05-05 15:51 ` [meta-oe][PATCH v2] " Andrea Galbusera
@ 2012-05-15 6:37 ` Andrea Galbusera
2012-05-15 7:48 ` Koen Kooi
1 sibling, 0 replies; 7+ messages in thread
From: Andrea Galbusera @ 2012-05-15 6:37 UTC (permalink / raw)
To: openembedded-devel
Hi,
On Sat, May 5, 2012 at 5:51 PM, Andrea Galbusera <gizero@gmail.com> wrote:
> * based on recipe by Radoslav Kolev which was in classic
> * updated to latest released version 3.0.2
> * v2 drops git version of recipe
> * v2 drops no longer used PRIORITY
>
> Signed-off-by: Andrea Galbusera <gizero@gmail.com>
> ---
> .../recipes-extended/libmodbus/libmodbus_3.0.2.bb | 18 ++++++++++++++++++
> 1 files changed, 18 insertions(+), 0 deletions(-)
> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
>
> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> new file mode 100644
> index 0000000..5926bc4
> --- /dev/null
> +++ b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> @@ -0,0 +1,18 @@
> +SUMMARY = "A Modbus library"
> +DESCRIPTION = "libmodbus is a C library designed to provide a fast and robust \
> +implementation of the Modbus protocol. It runs on Linux, Mac OS X, FreeBSD, \
> +QNX and Windows."
> +HOMEPAGE = "http://www.libmodbus.org/"
> +SECTION = "libs"
> +
> +LICENSE = "LGPLv2.1+"
> +LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c"
> +
> +PR = "r0"
> +
> +SRC_URI = "http://github.com/downloads/stephane/libmodbus/libmodbus-${PV}.tar.gz"
> +
> +inherit autotools pkgconfig
> +
> +SRC_URI[md5sum] = "1aaacce9d9779d3a84f7d1a75774c943"
> +SRC_URI[sha256sum] = "927ec90e0e299a7d4ec7086b1e2590566bdfc3bbc22e12204229361c029f2615"
> --
> 1.7.5.4
>
Any comment on this patch respin?
Regards
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [meta-oe][PATCH v2] libmodbus: ported recipe from classic and updated
2012-05-05 15:51 ` [meta-oe][PATCH v2] " Andrea Galbusera
2012-05-15 6:37 ` Andrea Galbusera
@ 2012-05-15 7:48 ` Koen Kooi
1 sibling, 0 replies; 7+ messages in thread
From: Koen Kooi @ 2012-05-15 7:48 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 05-05-12 17:51, Andrea Galbusera schreef:
> * based on recipe by Radoslav Kolev which was in classic * updated to
> latest released version 3.0.2 * v2 drops git version of recipe * v2 drops
> no longer used PRIORITY
>
> Signed-off-by: Andrea Galbusera <gizero@gmail.com> ---
> .../recipes-extended/libmodbus/libmodbus_3.0.2.bb | 18
> ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-)
> create mode 100644 meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
>
> diff --git a/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb
> b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb new file mode
> 100644 index 0000000..5926bc4 --- /dev/null +++
> b/meta-oe/recipes-extended/libmodbus/libmodbus_3.0.2.bb @@ -0,0 +1,18 @@
> +SUMMARY = "A Modbus library" +DESCRIPTION = "libmodbus is a C library
> designed to provide a fast and robust \ +implementation of the Modbus
> protocol. It runs on Linux, Mac OS X, FreeBSD, \ +QNX and Windows."
> +HOMEPAGE = "http://www.libmodbus.org/" +SECTION = "libs" + +LICENSE =
> "LGPLv2.1+" +LIC_FILES_CHKSUM =
> "file://COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c" + +PR =
> "r0"
Drop that
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (Darwin)
Comment: GPGTools - http://gpgtools.org
iQIcBAEBAgAGBQJPsgoyAAoJEHZqAkdh1vT6jHsP/3FzoPMuoKnCpE8DS8r/7Tj6
iE126Y0KV7O8qb0Myr9EeUAFhuiuwp2RXJlznrMHVqNVOJa46dvAnmbcq6v/r/xR
QQQGuRnqLOJwSJpWuphxRqbUHKFIAQYePSuIdzqAydJxEH017yz+btAryoxHQd/g
He78sRYvpFkavoFhjBpcFXDYcW9JZFHc7iFKThv3qDaWNbbabd2p4McM8x1O0FjJ
pybhuLaAbsae5pB2BWItncf60IEY1BiKhjraJ6658XSLNZf8oEt8XOh3BzNRMTSC
AFwWZpvfIiz8h6IG7nYv5Cfnrw59mYoH+c5hLr8tRNpCsUSYr95uQc+oa1Y6ldrN
24bsgkQv4VPwH7yRVDruZSb3FJna99pP9KSmTzvOYCeJio/vIq1LyskCCSyiX09i
iB/P0QFubAH67k3m2VNrbFB+YZE/VSe7KJDAPbONKduaNKQQCSapAngi+4TWlsGR
5lR/e+LsPk4YpqWcm97L/beJfSLpwlNkhWrkGYjYtkxOztkvO7Tj1OoLiYMoFnIz
rW+FnLNk4pmhM6fD76yNpn9YtJCOCPIvNvTkKcfkRDR6UPK3Jvy9nWvNlgZvqnPr
F4PQ5mcqdR/3l9TM9iAIA6zX4tiIOMBef2Mxzk3z0MmGtIM6+FcZFGAin39ggA+z
dZyJP6aXgvnQehZhhAU4
=YKDQ
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2012-05-15 7:58 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-04 21:25 [PATCH] libmodbus: ported recipe from classic and updated Andrea Galbusera
2012-05-04 21:49 ` Khem Raj
2012-05-05 15:52 ` Andrea Galbusera
2012-05-05 4:46 ` Martin Jansa
2012-05-05 15:51 ` [meta-oe][PATCH v2] " Andrea Galbusera
2012-05-15 6:37 ` Andrea Galbusera
2012-05-15 7:48 ` Koen Kooi
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.