* [Buildroot] [PATCH] monit: add license information
@ 2013-04-15 7:40 spdawson at gmail.com
2013-04-15 21:54 ` Peter Korsgaard
0 siblings, 1 reply; 5+ messages in thread
From: spdawson at gmail.com @ 2013-04-15 7:40 UTC (permalink / raw)
To: buildroot
From: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
package/monit/monit.mk | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/monit/monit.mk b/package/monit/monit.mk
index a8b6447..0d24e05 100644
--- a/package/monit/monit.mk
+++ b/package/monit/monit.mk
@@ -6,6 +6,8 @@
MONIT_VERSION = 5.4
MONIT_SITE = http://mmonit.com/monit/dist/
+MONIT_LICENSE = AGPLv3+
+MONIT_LICENSE_FILES = COPYING
MONIT_CONF_ENV = \
libmonit_cv_setjmp_available=yes \
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] monit: add license information
2013-04-15 7:40 [Buildroot] [PATCH] monit: add license information spdawson at gmail.com
@ 2013-04-15 21:54 ` Peter Korsgaard
2013-04-16 13:48 ` Simon Dawson
0 siblings, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2013-04-15 21:54 UTC (permalink / raw)
To: buildroot
>>>>> "spdawson" == spdawson <spdawson@gmail.com> writes:
spdawson> From: Simon Dawson <spdawson@gmail.com>
spdawson> Signed-off-by: Simon Dawson <spdawson@gmail.com>
spdawson> ---
spdawson> package/monit/monit.mk | 2 ++
spdawson> 1 file changed, 2 insertions(+)
spdawson> diff --git a/package/monit/monit.mk b/package/monit/monit.mk
spdawson> index a8b6447..0d24e05 100644
spdawson> --- a/package/monit/monit.mk
spdawson> +++ b/package/monit/monit.mk
spdawson> @@ -6,6 +6,8 @@
spdawson> MONIT_VERSION = 5.4
spdawson> MONIT_SITE = http://mmonit.com/monit/dist/
spdawson> +MONIT_LICENSE = AGPLv3+
Hmm, I see very few files mentioning the 'any later version':
grep -rls 'any later version' *
aclocal.m4
config/config.sub
config/ltmain.sh
config/missing
config/config.guess
configure
COPYING
libmonit/config/config.sub
libmonit/config/ltmain.sh
libmonit/config/missing
libmonit/config/config.guess
libmonit/m4/libtool.m4
libmonit/configure
libmonit/aclocal.m4
libmonit/COPYING
libmonit/libtool
src/tokens.h
src/protocols/sip.c
src/protocols/lmtp.c
src/y.tab.c
E.G. basically no source files.
src/monit.c also talks about a special openssl exception.
How should we handle this?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] monit: add license information
2013-04-15 21:54 ` Peter Korsgaard
@ 2013-04-16 13:48 ` Simon Dawson
2013-04-17 16:04 ` Arnout Vandecappelle
0 siblings, 1 reply; 5+ messages in thread
From: Simon Dawson @ 2013-04-16 13:48 UTC (permalink / raw)
To: buildroot
Hi Peter; thanks for looking at this.
On 15 April 2013 22:54, Peter Korsgaard <jacmet@uclibc.org> wrote:
> Hmm, I see very few files mentioning the 'any later version':
Yes, okay; it should be AGPLv3.
> src/monit.c also talks about a special openssl exception.
>
> How should we handle this?
Awkward. I wonder if it's simply a case of saying
MONIT_LICENSE = AGPLv3 OpenSSL
?
Simon
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] monit: add license information
2013-04-16 13:48 ` Simon Dawson
@ 2013-04-17 16:04 ` Arnout Vandecappelle
2013-04-18 9:24 ` Simon Dawson
0 siblings, 1 reply; 5+ messages in thread
From: Arnout Vandecappelle @ 2013-04-17 16:04 UTC (permalink / raw)
To: buildroot
On 16/04/13 15:48, Simon Dawson wrote:
> Hi Peter; thanks for looking at this.
>
> On 15 April 2013 22:54, Peter Korsgaard <jacmet@uclibc.org> wrote:
>> Hmm, I see very few files mentioning the 'any later version':
>
> Yes, okay; it should be AGPLv3.
>
>> src/monit.c also talks about a special openssl exception.
>>
>> How should we handle this?
>
> Awkward. I wonder if it's simply a case of saying
>
> MONIT_LICENSE = AGPLv3 OpenSSL
We usually say "AGPLv3 with exceptions". Since it's one pretty well
defined exception here, we could make it "AGPLv3 with OpenSSL exception".
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
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] monit: add license information
2013-04-17 16:04 ` Arnout Vandecappelle
@ 2013-04-18 9:24 ` Simon Dawson
0 siblings, 0 replies; 5+ messages in thread
From: Simon Dawson @ 2013-04-18 9:24 UTC (permalink / raw)
To: buildroot
On 17 April 2013 17:04, Arnout Vandecappelle <arnout@mind.be> wrote:
> We usually say "AGPLv3 with exceptions". Since it's one pretty well defined
> exception here, we could make it "AGPLv3 with OpenSSL exception".
Okay; thanks for the suggestion Arnout.
Simon.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-04-18 9:24 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-15 7:40 [Buildroot] [PATCH] monit: add license information spdawson at gmail.com
2013-04-15 21:54 ` Peter Korsgaard
2013-04-16 13:48 ` Simon Dawson
2013-04-17 16:04 ` Arnout Vandecappelle
2013-04-18 9:24 ` Simon Dawson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox