* [Buildroot] [PATCH] tcl: add license information
@ 2012-12-07 21:15 Davide Viti
2012-12-07 21:15 ` Davide Viti
0 siblings, 1 reply; 5+ messages in thread
From: Davide Viti @ 2012-12-07 21:15 UTC (permalink / raw)
To: buildroot
During the review of the pach regarding the addition of tcllib
package, it was decided to set the _LICENSE variable to "tcl license"
since the "licence.terms" file is the same both fir tcl and tcllib
(see [1]).
This patch adds the lincence information to the tcl package
regards,
Davide
[1] http://lists.busybox.net/pipermail/buildroot/2012-December/062955.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] tcl: add license information
2012-12-07 21:15 [Buildroot] [PATCH] tcl: add license information Davide Viti
@ 2012-12-07 21:15 ` Davide Viti
2012-12-09 14:59 ` Arnout Vandecappelle
0 siblings, 1 reply; 5+ messages in thread
From: Davide Viti @ 2012-12-07 21:15 UTC (permalink / raw)
To: buildroot
Signed-off-by: Davide Viti <zinosat@tiscali.it>
---
package/tcl/tcl.mk | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/package/tcl/tcl.mk b/package/tcl/tcl.mk
index 606042e..ec089ee 100644
--- a/package/tcl/tcl.mk
+++ b/package/tcl/tcl.mk
@@ -8,6 +8,8 @@ TCL_VERSION_MINOR = 19
TCL_VERSION = $(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
TCL_SOURCE = tcl$(TCL_VERSION)-src.tar.gz
TCL_SITE = http://downloads.sourceforge.net/project/tcl/Tcl/$(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
+TCL_LICENSE = tcl license
+TCL_LICENSE_FILE = license.terms
TCL_SUBDIR = unix
TCL_CONF_OPT = \
--disable-symbols \
--
1.7.2.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] tcl: add license information
2012-12-07 21:15 ` Davide Viti
@ 2012-12-09 14:59 ` Arnout Vandecappelle
2013-03-24 13:04 ` Gustavo Zacarias
0 siblings, 1 reply; 5+ messages in thread
From: Arnout Vandecappelle @ 2012-12-09 14:59 UTC (permalink / raw)
To: buildroot
On 07/12/12 22:15, Davide Viti wrote:
>
> Signed-off-by: Davide Viti<zinosat@tiscali.it>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Regards,
Arnout
> ---
> package/tcl/tcl.mk | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/package/tcl/tcl.mk b/package/tcl/tcl.mk
> index 606042e..ec089ee 100644
> --- a/package/tcl/tcl.mk
> +++ b/package/tcl/tcl.mk
> @@ -8,6 +8,8 @@ TCL_VERSION_MINOR = 19
> TCL_VERSION = $(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
> TCL_SOURCE = tcl$(TCL_VERSION)-src.tar.gz
> TCL_SITE = http://downloads.sourceforge.net/project/tcl/Tcl/$(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
> +TCL_LICENSE = tcl license
> +TCL_LICENSE_FILE = license.terms
> TCL_SUBDIR = unix
> TCL_CONF_OPT = \
> --disable-symbols \
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] tcl: add license information
2012-12-09 14:59 ` Arnout Vandecappelle
@ 2013-03-24 13:04 ` Gustavo Zacarias
2013-03-24 13:11 ` Peter Korsgaard
0 siblings, 1 reply; 5+ messages in thread
From: Gustavo Zacarias @ 2013-03-24 13:04 UTC (permalink / raw)
To: buildroot
On 12/09/2012 11:59 AM, Arnout Vandecappelle wrote:
> On 07/12/12 22:15, Davide Viti wrote:
>>
>> Signed-off-by: Davide Viti<zinosat@tiscali.it>
>
> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] tcl: add license information
2013-03-24 13:04 ` Gustavo Zacarias
@ 2013-03-24 13:11 ` Peter Korsgaard
0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2013-03-24 13:11 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> On 12/09/2012 11:59 AM, Arnout Vandecappelle wrote:
>> On 07/12/12 22:15, Davide Viti wrote:
>>>
>>> Signed-off-by: Davide Viti<zinosat@tiscali.it>
>>
>> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Gustavo> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-03-24 13:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-07 21:15 [Buildroot] [PATCH] tcl: add license information Davide Viti
2012-12-07 21:15 ` Davide Viti
2012-12-09 14:59 ` Arnout Vandecappelle
2013-03-24 13:04 ` Gustavo Zacarias
2013-03-24 13:11 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox