Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libsocketcan: license
@ 2014-01-16  9:00 yegorslists at googlemail.com
  2014-01-16  9:00 ` [Buildroot] [PATCH] libsocketcan: new package yegorslists at googlemail.com
  0 siblings, 1 reply; 4+ messages in thread
From: yegorslists at googlemail.com @ 2014-01-16  9:00 UTC (permalink / raw)
  To: buildroot

The GPL 2.1 LICENSE file is available in package's git repo and will be included in the next reslease.

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

* [Buildroot] [PATCH] libsocketcan: new package
  2014-01-16  9:00 [Buildroot] [PATCH] libsocketcan: license yegorslists at googlemail.com
@ 2014-01-16  9:00 ` yegorslists at googlemail.com
  2014-01-20 21:47   ` Peter Korsgaard
  2014-01-29  8:17   ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: yegorslists at googlemail.com @ 2014-01-16  9:00 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/Config.in                    |    1 +
 package/libsocketcan/Config.in       |    6 ++++++
 package/libsocketcan/libsocketcan.mk |   10 ++++++++++
 3 files changed, 17 insertions(+), 0 deletions(-)
 create mode 100644 package/libsocketcan/Config.in
 create mode 100644 package/libsocketcan/libsocketcan.mk

diff --git a/package/Config.in b/package/Config.in
index 2f62d6c..dca90d9 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -677,6 +677,7 @@ source "package/liboping/Config.in"
 source "package/libosip2/Config.in"
 source "package/libpcap/Config.in"
 source "package/librsync/Config.in"
+source "package/libsocketcan/Config.in"
 source "package/libsoup/Config.in"
 source "package/libtirpc/Config.in"
 source "package/libtorrent/Config.in"
diff --git a/package/libsocketcan/Config.in b/package/libsocketcan/Config.in
new file mode 100644
index 0000000..97903db
--- /dev/null
+++ b/package/libsocketcan/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_LIBSOCKETCAN
+	bool "libsocketcan"
+	help
+	  SocketCAN library to control CAN devices from C code.
+
+	  http://git.pengutronix.de/?p=tools/libsocketcan.git;a=summary
diff --git a/package/libsocketcan/libsocketcan.mk b/package/libsocketcan/libsocketcan.mk
new file mode 100644
index 0000000..920a900
--- /dev/null
+++ b/package/libsocketcan/libsocketcan.mk
@@ -0,0 +1,10 @@
+################################################################################
+#
+# libsocketcan
+#
+################################################################################
+LIBSOCKETCAN_VERSION = 0.0.9
+LIBSOCKETCAN_SITE = http://www.pengutronix.de/software/libsocketcan/download/
+LIBSOCKETCAN_SOURCE = libsocketcan-$(LIBSOCKETCAN_VERSION).tar.bz2
+
+$(eval $(autotools-package))
-- 
1.7.7

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

* [Buildroot] [PATCH] libsocketcan: new package
  2014-01-16  9:00 ` [Buildroot] [PATCH] libsocketcan: new package yegorslists at googlemail.com
@ 2014-01-20 21:47   ` Peter Korsgaard
  2014-01-29  8:17   ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2014-01-20 21:47 UTC (permalink / raw)
  To: buildroot

>>>>> "yegorslists" == yegorslists  <yegorslists@googlemail.com> writes:

 > From: Yegor Yefremov <yegorslists@googlemail.com>
 > Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] libsocketcan: new package
  2014-01-16  9:00 ` [Buildroot] [PATCH] libsocketcan: new package yegorslists at googlemail.com
  2014-01-20 21:47   ` Peter Korsgaard
@ 2014-01-29  8:17   ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2014-01-29  8:17 UTC (permalink / raw)
  To: buildroot

Hello Yegor,

On Thu, 16 Jan 2014 10:00:21 +0100, yegorslists at googlemail.com wrote:
> diff --git a/package/libsocketcan/libsocketcan.mk b/package/libsocketcan/libsocketcan.mk
> new file mode 100644
> index 0000000..920a900
> --- /dev/null
> +++ b/package/libsocketcan/libsocketcan.mk
> @@ -0,0 +1,10 @@
> +################################################################################
> +#
> +# libsocketcan
> +#
> +################################################################################
> +LIBSOCKETCAN_VERSION = 0.0.9

Missing empty newline between comment header and the first variable.

> +LIBSOCKETCAN_SITE = http://www.pengutronix.de/software/libsocketcan/download/
> +LIBSOCKETCAN_SOURCE = libsocketcan-$(LIBSOCKETCAN_VERSION).tar.bz2
> +
> +$(eval $(autotools-package))

Even if the license text is not available, it would have been good to
add LIBSOCKETCAN_LICENSE anyway.

Since Peter has already committed your patch, can you send a followup
patch to fix those two issues, against the latest master branch?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2014-01-29  8:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-16  9:00 [Buildroot] [PATCH] libsocketcan: license yegorslists at googlemail.com
2014-01-16  9:00 ` [Buildroot] [PATCH] libsocketcan: new package yegorslists at googlemail.com
2014-01-20 21:47   ` Peter Korsgaard
2014-01-29  8:17   ` Thomas Petazzoni

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