Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 1/2] xl2tp: add licensing info
@ 2013-12-13  1:01 Axel Lin
  2013-12-13  1:02 ` [Buildroot] [PATCH v2 2/2] xl2tp: bump to version 1.3.2 Axel Lin
  2013-12-13  8:29 ` [Buildroot] [PATCH v2 1/2] xl2tp: add licensing info Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2013-12-13  1:01 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
v2: no change, just make version consistent in this serial
I separate "xl2tp: bump to version 1.3.2 and add licensing info" to 2 patches.
This one adds licensing info, next patch for bump version.
 package/xl2tp/xl2tp.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/xl2tp/xl2tp.mk b/package/xl2tp/xl2tp.mk
index cf496fe..07634a0 100644
--- a/package/xl2tp/xl2tp.mk
+++ b/package/xl2tp/xl2tp.mk
@@ -7,6 +7,8 @@
 XL2TP_VERSION = v1.3.1
 XL2TP_SITE = $(call github,xelerance,xl2tpd,$(XL2TP_VERSION))
 XL2TP_DEPENDENCIES = libpcap
+XL2TP_LICENSE = GPLv2+
+XL2TP_LICENSE_FILES = LICENSE
 
 define XL2TP_BUILD_CMDS
 	$(SED) 's/ -O2 //' $(@D)/Makefile
-- 
1.8.1.2

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

* [Buildroot] [PATCH v2 2/2] xl2tp: bump to version 1.3.2
  2013-12-13  1:01 [Buildroot] [PATCH v2 1/2] xl2tp: add licensing info Axel Lin
@ 2013-12-13  1:02 ` Axel Lin
  2013-12-13  8:34   ` Peter Korsgaard
  2013-12-13  8:29 ` [Buildroot] [PATCH v2 1/2] xl2tp: add licensing info Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Axel Lin @ 2013-12-13  1:02 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
v2: select BR2_PACKAGE_OPENSSL to fix build error.
 package/xl2tp/Config.in | 1 +
 package/xl2tp/xl2tp.mk  | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/xl2tp/Config.in b/package/xl2tp/Config.in
index 7e2d2f6..f0b1e83 100644
--- a/package/xl2tp/Config.in
+++ b/package/xl2tp/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_XL2TP
 	bool "xl2tp"
 	depends on BR2_USE_MMU # fork()
 	select BR2_PACKAGE_LIBPCAP
+	select BR2_PACKAGE_OPENSSL
 	help
 	  Layer 2 Tunnelling Protocol (RFC2661).
 
diff --git a/package/xl2tp/xl2tp.mk b/package/xl2tp/xl2tp.mk
index 07634a0..3e99a2e 100644
--- a/package/xl2tp/xl2tp.mk
+++ b/package/xl2tp/xl2tp.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-XL2TP_VERSION = v1.3.1
+XL2TP_VERSION = v1.3.2
 XL2TP_SITE = $(call github,xelerance,xl2tpd,$(XL2TP_VERSION))
-XL2TP_DEPENDENCIES = libpcap
+XL2TP_DEPENDENCIES = libpcap openssl
 XL2TP_LICENSE = GPLv2+
 XL2TP_LICENSE_FILES = LICENSE
 
-- 
1.8.1.2

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

* [Buildroot] [PATCH v2 1/2] xl2tp: add licensing info
  2013-12-13  1:01 [Buildroot] [PATCH v2 1/2] xl2tp: add licensing info Axel Lin
  2013-12-13  1:02 ` [Buildroot] [PATCH v2 2/2] xl2tp: bump to version 1.3.2 Axel Lin
@ 2013-12-13  8:29 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2013-12-13  8:29 UTC (permalink / raw)
  To: buildroot

>>>>> "Axel" == Axel Lin <axel.lin@ingics.com> writes:

 > Signed-off-by: Axel Lin <axel.lin@ingics.com>
 > ---
 > v2: no change, just make version consistent in this serial
 > I separate "xl2tp: bump to version 1.3.2 and add licensing info" to 2 patches.
 > This one adds licensing info, next patch for bump version.
 >  package/xl2tp/xl2tp.mk | 2 ++
 >  1 file changed, 2 insertions(+)

 > diff --git a/package/xl2tp/xl2tp.mk b/package/xl2tp/xl2tp.mk
 > index cf496fe..07634a0 100644
 > --- a/package/xl2tp/xl2tp.mk
 > +++ b/package/xl2tp/xl2tp.mk
 > @@ -7,6 +7,8 @@
 >  XL2TP_VERSION = v1.3.1
 >  XL2TP_SITE = $(call github,xelerance,xl2tpd,$(XL2TP_VERSION))
 >  XL2TP_DEPENDENCIES = libpcap
 > +XL2TP_LICENSE = GPLv2+
 > +XL2TP_LICENSE_FILES = LICENSE

The only hit for 'any later' is in the Makefile and it seems to contain
headers from the Linux kernel. The spec files list 'GPLv2' so I think
it's safer to call it GPLv2 only.

Committed with that fixed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH v2 2/2] xl2tp: bump to version 1.3.2
  2013-12-13  1:02 ` [Buildroot] [PATCH v2 2/2] xl2tp: bump to version 1.3.2 Axel Lin
@ 2013-12-13  8:34   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2013-12-13  8:34 UTC (permalink / raw)
  To: buildroot

>>>>> "Axel" == Axel Lin <axel.lin@ingics.com> writes:

 > Signed-off-by: Axel Lin <axel.lin@ingics.com>
 > ---
 > v2: select BR2_PACKAGE_OPENSSL to fix build error.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2013-12-13  8:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-13  1:01 [Buildroot] [PATCH v2 1/2] xl2tp: add licensing info Axel Lin
2013-12-13  1:02 ` [Buildroot] [PATCH v2 2/2] xl2tp: bump to version 1.3.2 Axel Lin
2013-12-13  8:34   ` Peter Korsgaard
2013-12-13  8:29 ` [Buildroot] [PATCH v2 1/2] xl2tp: add licensing info Peter Korsgaard

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