All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices.
@ 2011-12-10 23:23 Sagaert Johan
  2011-12-11 16:33 ` Luca Ceresoli
  2012-01-02 21:21 ` [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices Peter Korsgaard
  0 siblings, 2 replies; 5+ messages in thread
From: Sagaert Johan @ 2011-12-10 23:23 UTC (permalink / raw)
  To: buildroot


libmbus is an open source M-bus (Meter-Bus) library.
The Meter-Bus is a standard for reading out meter data from electricity meters, heat meters, gas meters, etc.

Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be>
---
 package/Config.in          |    1 +
 package/libmbus/Config.in  |    8 ++++++++
 package/libmbus/libmbus.mk |   14 ++++++++++++++
 3 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 package/libmbus/Config.in
 create mode 100644 package/libmbus/libmbus.mk

diff --git a/package/Config.in b/package/Config.in
index eb93b1c..9e9027d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -333,6 +333,7 @@ source "package/libmicrohttpd/Config.in"
 source "package/neon/Config.in"
 source "package/libmnl/Config.in"
 source "package/libmodbus/Config.in"
+source "package/libmbus/Config.in"
 source "package/libnl/Config.in"
 source "package/libpcap/Config.in"
 source "package/libosip2/Config.in"
diff --git a/package/libmbus/Config.in b/package/libmbus/Config.in
new file mode 100644
index 0000000..f545117
--- /dev/null
+++ b/package/libmbus/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LIBMBUS
+	bool "libmbus"
+	help
+	  libmbus is a library for communicating with energy metering devices.
+	  It supports TCP and RS232 M-bus gateways.
+	  (M-bus standard : http://www.m-bus.com/)
+	  
+	  http://www.freescada.com/libmbus
diff --git a/package/libmbus/libmbus.mk b/package/libmbus/libmbus.mk
new file mode 100644
index 0000000..a6d31da
--- /dev/null
+++ b/package/libmbus/libmbus.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# libmbus
+#
+#############################################################
+LIBMBUS_VERSION=0.6.1
+LIBMBUS_SITE=http://www.freescada.com/public-dist/
+LIBMBUS_INSTALL_STAGING=YES
+
+# Without this the build yields an error:
+#   cannot find input file: `test/Makefile.in'
+LIBMBUS_AUTORECONF=YES
+
+$(eval $(call AUTOTARGETS))
-- 
1.7.8

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

* [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices.
  2011-12-10 23:23 [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices Sagaert Johan
@ 2011-12-11 16:33 ` Luca Ceresoli
  2011-12-14 15:15   ` [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices. not in latest git pull Sagaert Johan
  2012-01-02 21:21 ` [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices Peter Korsgaard
  1 sibling, 1 reply; 5+ messages in thread
From: Luca Ceresoli @ 2011-12-11 16:33 UTC (permalink / raw)
  To: buildroot

Sagaert Johan wrote:
> libmbus is an open source M-bus (Meter-Bus) library.
> The Meter-Bus is a standard for reading out meter data from electricity meters, heat meters, gas meters, etc.
>
> Signed-off-by: Sagaert Johan<sagaert.johan@skynet.be>

Reviewed-by: Luca Ceresoli<luca@lucaceresoli.net>

Thanks for contributing.

For future patch submissions, you should remember to add "v2" (then "v3", "v4"
etc) to the [PATCH] prefix each time you resubmit a patch with modifications.
This avoids confusion to the people reviewing and merging your patches.
Take a look in the mailing-list for examples.

Luca


> ---
>   package/Config.in          |    1 +
>   package/libmbus/Config.in  |    8 ++++++++
>   package/libmbus/libmbus.mk |   14 ++++++++++++++
>   3 files changed, 23 insertions(+), 0 deletions(-)
>   create mode 100644 package/libmbus/Config.in
>   create mode 100644 package/libmbus/libmbus.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index eb93b1c..9e9027d 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -333,6 +333,7 @@ source "package/libmicrohttpd/Config.in"
>   source "package/neon/Config.in"
>   source "package/libmnl/Config.in"
>   source "package/libmodbus/Config.in"
> +source "package/libmbus/Config.in"
>   source "package/libnl/Config.in"
>   source "package/libpcap/Config.in"
>   source "package/libosip2/Config.in"
> diff --git a/package/libmbus/Config.in b/package/libmbus/Config.in
> new file mode 100644
> index 0000000..f545117
> --- /dev/null
> +++ b/package/libmbus/Config.in
> @@ -0,0 +1,8 @@
> +config BR2_PACKAGE_LIBMBUS
> +	bool "libmbus"
> +	help
> +	  libmbus is a library for communicating with energy metering devices.
> +	  It supports TCP and RS232 M-bus gateways.
> +	  (M-bus standard : http://www.m-bus.com/)
> +	
> +	  http://www.freescada.com/libmbus
> diff --git a/package/libmbus/libmbus.mk b/package/libmbus/libmbus.mk
> new file mode 100644
> index 0000000..a6d31da
> --- /dev/null
> +++ b/package/libmbus/libmbus.mk
> @@ -0,0 +1,14 @@
> +#############################################################
> +#
> +# libmbus
> +#
> +#############################################################
> +LIBMBUS_VERSION=0.6.1
> +LIBMBUS_SITE=http://www.freescada.com/public-dist/
> +LIBMBUS_INSTALL_STAGING=YES
> +
> +# Without this the build yields an error:
> +#   cannot find input file: `test/Makefile.in'
> +LIBMBUS_AUTORECONF=YES
> +
> +$(eval $(call AUTOTARGETS))

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

* [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices. not in latest git pull
  2011-12-11 16:33 ` Luca Ceresoli
@ 2011-12-14 15:15   ` Sagaert Johan
  2011-12-14 17:47     ` Luca Ceresoli
  0 siblings, 1 reply; 5+ messages in thread
From: Sagaert Johan @ 2011-12-14 15:15 UTC (permalink / raw)
  To: buildroot

Hi

I didn't notice the libmbus package in my latest git pull.
Is there something wrong wit hit ?

Johan


-----Oorspronkelijk bericht-----
Van: Luca Ceresoli [mailto:luca at lucaceresoli.net] 
Verzonden: zondag 11 december 2011 17:33
Aan: Sagaert Johan
CC: buildroot at busybox.net
Onderwerp: Re: [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices.

Sagaert Johan wrote:
> libmbus is an open source M-bus (Meter-Bus) library.
> The Meter-Bus is a standard for reading out meter data from electricity meters, heat meters, gas meters, etc.
>
> Signed-off-by: Sagaert Johan<sagaert.johan@skynet.be>

Reviewed-by: Luca Ceresoli<luca@lucaceresoli.net>

Thanks for contributing.

For future patch submissions, you should remember to add "v2" (then "v3", "v4"
etc) to the [PATCH] prefix each time you resubmit a patch with modifications.
This avoids confusion to the people reviewing and merging your patches.
Take a look in the mailing-list for examples.

Luca


> ---
>   package/Config.in          |    1 +
>   package/libmbus/Config.in  |    8 ++++++++
>   package/libmbus/libmbus.mk |   14 ++++++++++++++
>   3 files changed, 23 insertions(+), 0 deletions(-)
>   create mode 100644 package/libmbus/Config.in
>   create mode 100644 package/libmbus/libmbus.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index eb93b1c..9e9027d 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -333,6 +333,7 @@ source "package/libmicrohttpd/Config.in"
>   source "package/neon/Config.in"
>   source "package/libmnl/Config.in"
>   source "package/libmodbus/Config.in"
> +source "package/libmbus/Config.in"
>   source "package/libnl/Config.in"
>   source "package/libpcap/Config.in"
>   source "package/libosip2/Config.in"
> diff --git a/package/libmbus/Config.in b/package/libmbus/Config.in
> new file mode 100644
> index 0000000..f545117
> --- /dev/null
> +++ b/package/libmbus/Config.in
> @@ -0,0 +1,8 @@
> +config BR2_PACKAGE_LIBMBUS
> +	bool "libmbus"
> +	help
> +	  libmbus is a library for communicating with energy metering devices.
> +	  It supports TCP and RS232 M-bus gateways.
> +	  (M-bus standard : http://www.m-bus.com/)
> +	
> +	  http://www.freescada.com/libmbus
> diff --git a/package/libmbus/libmbus.mk b/package/libmbus/libmbus.mk
> new file mode 100644
> index 0000000..a6d31da
> --- /dev/null
> +++ b/package/libmbus/libmbus.mk
> @@ -0,0 +1,14 @@
> +#############################################################
> +#
> +# libmbus
> +#
> +#############################################################
> +LIBMBUS_VERSION=0.6.1
> +LIBMBUS_SITE=http://www.freescada.com/public-dist/
> +LIBMBUS_INSTALL_STAGING=YES
> +
> +# Without this the build yields an error:
> +#   cannot find input file: `test/Makefile.in'
> +LIBMBUS_AUTORECONF=YES
> +
> +$(eval $(call AUTOTARGETS))

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

* [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices. not in latest git pull
  2011-12-14 15:15   ` [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices. not in latest git pull Sagaert Johan
@ 2011-12-14 17:47     ` Luca Ceresoli
  0 siblings, 0 replies; 5+ messages in thread
From: Luca Ceresoli @ 2011-12-14 17:47 UTC (permalink / raw)
  To: buildroot

Sagaert Johan wrote:
> Hi
>
> I didn't notice the libmbus package in my latest git pull.
> Is there something wrong wit hit ?

I don't think there's anything wrong with your patch (My Reviewed-by
means exactly this).

But the maintainer of Buildroot is Peter Korsgaard, not me, so it's
him that chooses which patches to merge. It might take some days for
him to find time to take a look at your mail, so you should wait at
least 1~2 weeks before considering your patch "not merged".
And if this time elapses and nothing happens, then you might send a
ping email to revive the topic.

Luca

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

* [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices.
  2011-12-10 23:23 [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices Sagaert Johan
  2011-12-11 16:33 ` Luca Ceresoli
@ 2012-01-02 21:21 ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2012-01-02 21:21 UTC (permalink / raw)
  To: buildroot

>>>>> "Sagaert" == Sagaert Johan <sagaert.johan@skynet.be> writes:

 Sagaert> libmbus is an open source M-bus (Meter-Bus) library.
 Sagaert> The Meter-Bus is a standard for reading out meter data from electricity meters, heat meters, gas meters, etc.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-01-02 21:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-10 23:23 [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices Sagaert Johan
2011-12-11 16:33 ` Luca Ceresoli
2011-12-14 15:15   ` [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices. not in latest git pull Sagaert Johan
2011-12-14 17:47     ` Luca Ceresoli
2012-01-02 21:21 ` [Buildroot] [PATCH 1/1] New package libmbus library for communicating with M-bus energy metering devices Peter Korsgaard

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.