forked from nayanranjankapri/empathy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GOSSIP-RELICENSING.txt
3789 lines (3409 loc) · 164 KB
/
GOSSIP-RELICENSING.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
== Relicensing for Telepathy logger ==
From [email protected] Tue Jun 15 16:28:08 2010
Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender:
sjoerd) with ESMTPSA id 0BEF66002FD
Received: by night.luon.net (Postfix, from userid 1000) id 3C2161A21B; Tue,
15 Jun 2010 16:28:08 +0100 (BST)
Date: Tue, 15 Jun 2010 16:28:08 +0100
From: Sjoerd Simons <[email protected]>
Cc: Robert McQueen <[email protected]>, Guillaume Desmottes <[email protected]>
Subject: Telepathy logger, good old Gossip and licenses
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.20 (2009-06-14)
X-Evolution-Source: imap://[email protected]/
Content-Transfer-Encoding: 8bit
Hey,
Long time ago that i talked with most of you, hopefully you're all doing
well and are having fun with your current endeavours :)
As a bit of background of why i'm mailing you all, we're building a logger
service for Telepathy. This allows any IM conversation done via telepathy
(whether it be in gnome shell, Empathy or whatever) to be automagically
logged. Part of this service will be a little library one can use for writing
log viewers.
The current storage backend is based on the logging code from Empathy, which
in turn has its origins in Gossip. Which means the library needs has to be
GPL currently, which is not great for obvious reasons. Hence we were
wondering if there is a possibility to relicense this code to LGPL v2.1+
To be more specific we tracked the code down the follow files from Gossip:
libgossip/gossip-time.c:
Copyright: Imendio AB
Main Author is Richard with contributions from Mikael and Martyn
libgossip/gossip-log.c:
Copyright: Imendio AB
No main author in the license header, code mostly written by Martyn
with contributions from Richard and Mikael
So what it in the end comes down to is: would you be happy to relicense this
code such that we can use it under the LGPL v2.1+ and are you able to make
that decision on behalf of Imendio AB (which from a legal perspective own
the copyrights ttbomk)
Sjoerd
--
One meets his destiny often on the road he takes to avoid it.
From [email protected] Wed Jun 16 11:58:43 2010
X-Greylist: delayed 434 seconds by postgrey-1.31 at bhuna; Wed, 16 Jun 2010
11:58:43 BST
Received: from lanedo.com (lanedo.com [85.214.136.179]) (using TLSv1 with
cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by
bhuna.collabora.co.uk (Postfix) with ESMTPS id 7D42D600304; Wed, 16 Jun
2010 11:58:43 +0100 (BST)
Received: from [192.168.0.2]
(host86-172-70-241.range86-172.btcentralplus.com [86.172.70.241])
(Authenticated sender: martyn) by lanedo.com (Postfix) with ESMTPSA id
A40DC7F407C; Wed, 16 Jun 2010 12:51:26 +0200 (CEST)
Subject: Re: Telepathy logger, good old Gossip and licenses
From: Martyn Russell <[email protected]>
To: Sjoerd Simons <[email protected]>
Cc: [email protected], [email protected], Robert McQueen <[email protected]>, Guillaume Desmottes <[email protected]>
In-Reply-To: <[email protected]>
References: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Date: Wed, 16 Jun 2010 11:51:26 +0100
Message-ID: <1276685486.1808.2.camel@petunia>
Mime-Version: 1.0
X-Mailer: Evolution 2.28.3
X-Evolution-Source: imap://[email protected]/
Content-Transfer-Encoding: 8bit
On Tue, 2010-06-15 at 16:28 +0100, Sjoerd Simons wrote:
> Hey,
Hi,
> Long time ago that i talked with most of you, hopefully you're all doing
> well and are having fun with your current endeavours :)
Certainly is :)
> As a bit of background of why i'm mailing you all, we're building a logger
> service for Telepathy. This allows any IM conversation done via telepathy
> (whether it be in gnome shell, Empathy or whatever) to be automagically
> logged. Part of this service will be a little library one can use for writing
> log viewers.
I see.
> The current storage backend is based on the logging code from Empathy, which
> in turn has its origins in Gossip. Which means the library needs has to be
> GPL currently, which is not great for obvious reasons. Hence we were
> wondering if there is a possibility to relicense this code to LGPL v2.1+
>
> To be more specific we tracked the code down the follow files from Gossip:
> libgossip/gossip-time.c:
> Copyright: Imendio AB
> Main Author is Richard with contributions from Mikael and Martyn
>
> libgossip/gossip-log.c:
> Copyright: Imendio AB
> No main author in the license header, code mostly written by Martyn
> with contributions from Richard and Mikael
>
> So what it in the end comes down to is: would you be happy to relicense this
> code such that we can use it under the LGPL v2.1+ and are you able to make
> that decision on behalf of Imendio AB (which from a legal perspective own
> the copyrights ttbomk)
Absolutely fine by me.
--
Regards,
Martyn
From [email protected] Thu Jun 17 09:21:13 2010
X-Greylist: delayed 331 seconds by postgrey-1.31 at bhuna; Thu, 17 Jun 2010
09:21:13 BST
Received: from mail.tinybird.com (static-212-247-165-146.cust.tele2.se
[212.247.165.146]) by bhuna.collabora.co.uk (Postfix) with ESMTP id
F34FF6006C3; Thu, 17 Jun 2010 09:21:13 +0100 (BST)
Received: from localhost (localhost [127.0.0.1]) by mail.tinybird.com
(Postfix) with ESMTP id 159649D8FC; Thu, 17 Jun 2010 10:15:42 +0200 (CEST)
X-Virus-Scanned: amavisd-new at tinybird.com
Received: from mail.tinybird.com ([127.0.0.1]) by localhost
(core.tinybird.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id
hqkRcJPolNBx; Thu, 17 Jun 2010 10:15:41 +0200 (CEST)
Received: from [192.168.50.6] (c80-216-159-112.bredband.comhem.se
[80.216.159.112]) by mail.tinybird.com (Postfix) with ESMTPSA id
A684F9D8F1; Thu, 17 Jun 2010 10:15:41 +0200 (CEST)
Subject: Re: Telepathy logger, good old Gossip and licenses
Mime-Version: 1.0 (Apple Message framework v1081)
Content-Type: text/plain; charset=us-ascii
From: Richard Hult <[email protected]>
In-Reply-To: <[email protected]>
Date: Thu, 17 Jun 2010 10:15:40 +0200
Cc: [email protected], [email protected], Robert McQueen <[email protected]>, Guillaume Desmottes <[email protected]>
Message-Id: <[email protected]>
References: <[email protected]>
To: Sjoerd Simons <[email protected]>
X-Mailer: Apple Mail (2.1081)
X-Evolution-Source: imap://[email protected]/
Content-Transfer-Encoding: 8bit
Hi Sjoerd,
Long time no see :) Hope everything is fine!
> To be more specific we tracked the code down the follow files from Gossip:
> libgossip/gossip-time.c:
> Copyright: Imendio AB
> Main Author is Richard with contributions from Mikael and Martyn
>
> libgossip/gossip-log.c:
> Copyright: Imendio AB
> No main author in the license header, code mostly written by Martyn
> with contributions from Richard and Mikael
> So what it in the end comes down to is: would you be happy to relicense this
> code such that we can use it under the LGPL v2.1+ and are you able to make
> that decision on behalf of Imendio AB (which from a legal perspective own
> the copyrights ttbomk)
Micke and I are fine with relicensing any Imendio and/or personally owned code in the mentioned files to LGPL v2.1+. I can make that decision on behalf of Imendio AB (now known as Tinybird Interactive AB).
Cheers,
Richard
--
Tinybird Interactive - Inspiring Software
From [email protected] Thu Jun 17 14:51:24 2010
Subject: Relicensing of empathy-log-store-empathy to LPGL
From: Guillaume Desmottes <[email protected]>
Cc: Robert McQueen <[email protected]>, Sjoerd Simons <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Message-ID: <[email protected]>
Mime-Version: 1.0
X-Mailer: Evolution 2.28.3
Date: Thu, 17 Jun 2010 14:51:24 +0200
X-Evolution-Format: text/plain
X-Evolution-Account: 1171035114.6047.0@cass-lpt
X-Evolution-Transport:
smtp://cassidy;[email protected]:587/;use_ssl=when-possible
X-Evolution-Fcc: mbox:/home/cassidy/.evolution/mail/local#Sent
Content-Transfer-Encoding: 8bit
Hi Nicolò,
Hi Lars-Peter,
As a bit of background of why i'm mailing you all, we're building a
logger service for Telepathy. This allows any IM conversation done via
telepathy (whether it be in gnome shell, Empathy or whatever) to be
automagically logged. Part of this service will be a little library one
can use for writing log viewers.
The current storage backend is based on the logging code from Empathy
which is currently GPL, which is not great for obvious reasons. Hence we
were wondering if there is a possibility to relicense this code to LGPL
v2.1+.
Both of you contributed to empathy-log-store-empathy. Would you agree to
relicense your contributions to LGPL v2.1+ ?
Nicolò:
http://git.gnome.org/browse/empathy/commit/?id=ee5227403193fe7b5dae7d5c15e33d8a9c385c3f
Lars-Peter:
http://git.gnome.org/browse/empathy/commit/?id=ddae3ae13b1bf6368bd91327357e3c6999ac6a45
http://git.gnome.org/browse/empathy/commit/?id=61226f8d9920b92dd5b2defa606efabde6367b2c
Regards,
G.
From [email protected] Thu Jun 17 16:14:56 2010
X-Greylist: delayed 562 seconds by postgrey-1.31 at bhuna; Thu, 17 Jun 2010
16:14:56 BST
Received: from mailhost.informatik.uni-hamburg.de
(mailhost.informatik.uni-hamburg.de [134.100.9.70]) (using TLSv1 with
cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested)
by bhuna.collabora.co.uk (Postfix) with ESMTPS id 241E66006C3; Thu, 17 Jun
2010 16:14:56 +0100 (BST)
Received: from localhost (localhost [127.0.0.1]) by
mailhost.informatik.uni-hamburg.de (Postfix) with ESMTP id 43812668; Thu,
17 Jun 2010 17:05:34 +0200 (CEST)
X-Virus-Scanned: amavisd-new at informatik.uni-hamburg.de
Received: from mailhost.informatik.uni-hamburg.de ([127.0.0.1]) by
localhost (mailhost.informatik.uni-hamburg.de [127.0.0.1]) (amavisd-new,
port 10024) with LMTP id WhF0cb1qF-Gb; Thu, 17 Jun 2010 17:05:33 +0200
(CEST)
Received: from [192.168.37.31] (port-91423.pppoe.wtnet.de [84.46.69.149])
(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not
present a certificate) (Authenticated sender: 7clausen) by
mailhost.informatik.uni-hamburg.de (Postfix) with ESMTPSA id 97DE0667; Thu,
17 Jun 2010 17:05:33 +0200 (CEST)
Message-ID: <[email protected]>
Date: Thu, 17 Jun 2010 17:05:08 +0200
From: Lars-Peter Clausen <[email protected]>
User-Agent: Mozilla-Thunderbird 2.0.0.24 (X11/20100329)
MIME-Version: 1.0
To: Guillaume Desmottes <[email protected]>
Subject: Re: Relicensing of empathy-log-store-empathy to LPGL
References: <[email protected]>
In-Reply-To: <[email protected]>
X-Enigmail-Version: 0.95.0
Content-Type: text/plain; charset=UTF-8
X-Evolution-Source: imap://[email protected]/
Content-Transfer-Encoding: 8bit
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Guillaume Desmottes wrote:
> Hi Nicolò, Hi Lars-Peter,
>
> [...] Both of you contributed to empathy-log-store-empathy. Would
> you agree to relicense your contributions to LGPL v2.1+ ?
>
> [...]
Hi
Fine with me.
- - Lars
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAkwaOaMACgkQBX4mSR26RiM/dQCaAzquubkWKf3jx1CyIHghWhhQ
d6YAnRAKhP9uN+NnmhC94ayMr+BeCRul
=B059
-----END PGP SIGNATURE-----
From [email protected] Thu Jun 17 16:24:40 2010
Received: from mail-wy0-f172.google.com (mail-wy0-f172.google.com
[74.125.82.172]) by bhuna.collabora.co.uk (Postfix) with ESMTP id
A2E0F6006C3; Thu, 17 Jun 2010 16:24:40 +0100 (BST)
Received: by wya21 with SMTP id 21so27253wya.31 for <multiple recipients>;
Thu, 17 Jun 2010 08:24:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
h=domainkey-signature:received:mime-version:sender:received
:in-reply-to:references:from:date:x-google-sender-auth:message-id
:subject:to:cc:content-type;
bh=hmyX3rIMLanTFUJL3nCeh5iR1GDib6JXQiw+blZttN0=;
b=U9/xsAQws3wrzopusunxTW9SAkHf1sBc84qe943kJ4kj9XRoSBDqrq5dC8BnLV3VNC
35EIahuYTPH9FEvSh+MBgWBECTLpBUilBizoKAtC+Nj0bk9Oy9TssNi/cNG0wjGqnkPT
HfBHHzdktmWKEeXCWqAY6M0CryrTkNHG0AHqI=
DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma;
h=mime-version:sender:in-reply-to:references:from:date
:x-google-sender-auth:message-id:subject:to:cc:content-type;
b=ppfACJwhVh5UUD4FBaNpAtvfscnd+Pz9bYgXfAY5m0BQ10BoSrWRe5/V6AoML76hDM
LMSvIHeusFiS/jX4S+hGIAQwK3+MkK7PXXtbiZK6IcBmmvOD1vHyESpAN6gxEIoZNVrM
PR8IpueImsXYO+x+IJmrFo1Pc1XTKK8A4kv70=
Received: by 10.227.137.205 with SMTP id x13mr113184wbt.6.1276787896890;
Thu, 17 Jun 2010 08:18:16 -0700 (PDT)
MIME-Version: 1.0
Sender: [email protected]
Received: by 10.216.180.78 with HTTP; Thu, 17 Jun 2010 08:17:55 -0700 (PDT)
In-Reply-To: <[email protected]>
References: <[email protected]>
From: "Nicolo' Chieffo" <[email protected]>
Date: Thu, 17 Jun 2010 17:17:55 +0200
X-Google-Sender-Auth: A9mwR_wn2kw1OycMVY0OShQudeo
Message-ID: <[email protected]>
Subject: Re: Relicensing of empathy-log-store-empathy to LPGL
To: Lars-Peter Clausen <[email protected]>
Cc: Guillaume Desmottes <[email protected]>, Robert McQueen <[email protected]>, Sjoerd Simons <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1
X-Evolution-Source: imap://[email protected]/
Content-Transfer-Encoding: 8bit
I'm not a license expert so I don't exactly know why GPL is not ok for
this log service.
So I just trust your decision.
From [email protected] Thu Jun 17 17:26:37 2010
Subject: Re: Relicensing of empathy-log-store-empathy to LPGL
From: Guillaume Desmottes <[email protected]>
To: Nicolo' Chieffo <[email protected]>
Cc: Lars-Peter Clausen <[email protected]>, Robert McQueen <[email protected]>, Sjoerd Simons <[email protected]>
In-Reply-To: <[email protected]>
References: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Message-ID: <[email protected]>
Mime-Version: 1.0
X-Mailer: Evolution 2.28.3
Date: Thu, 17 Jun 2010 17:26:37 +0200
X-Evolution-Format: text/plain
X-Evolution-Account: 1171035114.6047.0@cass-lpt
X-Evolution-Transport:
smtp://cassidy;[email protected]:587/;use_ssl=when-possible
X-Evolution-Fcc: mbox:/home/cassidy/.evolution/mail/local#Sent
Content-Transfer-Encoding: 8bit
Le jeudi 17 juin 2010 à 17:17 +0200, Nicolo' Chieffo a écrit :
> I'm not a license expert so I don't exactly know why GPL is not ok for
> this log service.
> So I just trust your decision.
We want libtelepathy-logger to be LGPL instead of GPL so non-GPL
application can link to it.
That's also a requirement for libraries in the GNOME platform.
G.
From [email protected] Thu Jun 17 16:27:58 2010
Received: from mail-wy0-f172.google.com (mail-wy0-f172.google.com
[74.125.82.172]) by bhuna.collabora.co.uk (Postfix) with ESMTP id
86CF86006C3 for <[email protected]>; Thu, 17 Jun 2010
16:27:58 +0100 (BST)
Received: by wya21 with SMTP id 21so30560wya.31 for
<[email protected]>; Thu, 17 Jun 2010 08:27:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;
h=domainkey-signature:received:mime-version:sender:received
:in-reply-to:references:from:date:x-google-sender-auth:message-id
:subject:to:cc:content-type;
bh=orax0p81ikSvJkK+LpN58Qx8sL4dnVGz74R8hVjlW1o=;
b=f83vuoMX92uBOszQlHtOpOoe1HF13I86nNH9aiLGzZUIW8cPYJbugmn0QstVoUiUWK
LNqLpXTplmG4nXG4R/6V17L4agMmodI4jdc3qUQQ56rN50T+8Hek4b+rXj8ZYbXgyw7X
x27V5GiyWGIgrhwb5T1yDcUrwCFox8QmA65Gk=
DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma;
h=mime-version:sender:in-reply-to:references:from:date
:x-google-sender-auth:message-id:subject:to:cc:content-type;
b=A3Za1Mf5DUGfRlP/NqXypn3b8TX7fP3lbsaqM8ZPVO6+TztvH38K7xzDQNMtwYa93c
jvWvuNbBGXgx4f1rxZekJrBYDMhPTWJZihJ/5DapW/81ru7iDRRkgEzCTrhvG6vlSjAs
axiXV36o28DJ2BZ0+Rsx84+VvUq316JHB9gIg=
Received: by 10.216.165.208 with SMTP id e58mr50808wel.57.1276788477987;
Thu, 17 Jun 2010 08:27:57 -0700 (PDT)
MIME-Version: 1.0
Sender: [email protected]
Received: by 10.216.180.78 with HTTP; Thu, 17 Jun 2010 08:27:37 -0700 (PDT)
In-Reply-To: <[email protected]>
References: <[email protected]>
From: "Nicolo' Chieffo" <[email protected]>
Date: Thu, 17 Jun 2010 17:27:37 +0200
X-Google-Sender-Auth: eHESWH-FxRr__2Ul8LGf0pj9RU0
Message-ID: <[email protected]>
Subject: Re: Relicensing of empathy-log-store-empathy to LPGL
To: Guillaume Desmottes <[email protected]>
Cc: Lars-Peter Clausen <[email protected]>, Robert McQueen <[email protected]>, Sjoerd Simons <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1
X-Evolution-Source: imap://[email protected]/
Content-Transfer-Encoding: 8bit
OK!
== Telepathy account widgets relicensing (Gossip contributors) ==
Message-ID: <1368796612.5620.19.camel@carbonara>
Subject: Relicensing some code from Gossip to LGPL
From: Marco Barisione <[email protected]>
To: Martyn Russell <[email protected]>, Richard Hult
<[email protected]>, Mikael Hallendal <[email protected]>
Date: Fri, 17 May 2013 14:16:52 +0100
Organization: Collabora Ltd.
Content-Type: text/plain; charset="UTF-8"
X-Mailer: Evolution 3.6.3-1
Mime-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Evolution-Source: 1205242379.4854.0@cordof
Hi,
I'm currently working on integrating IM account creation with
gnome-online-accounts. This would allow a Gnome user to create all types
of accounts directly in the “System Settings”.
To do so, I need to move to a separate module all the account widget
code that is currently in Empathy, plus some other utility functions.
The problem is that gnome-online-accounts is under LGPL, while the
Empathy code that comes from Gossip is under GPL.
Would it be possible for you (both personally and for Imendio AB) to
agree to relicense this code to LGPL version 2.1 or later?
Considering that this is the second time we ask your permission to
relicense code coming from Gossip, I was wondering if you would agree to
give us permission to relicense your code (to LGPL v2.1+) in case it
will be needed again for similar projects in the future.
Thanks!
--
Marco Barisione
X-Greylist: delayed 427 seconds by postgrey-1.32 at bhuna; Fri, 17 May 2013
15:05:02 BST
Received: from lanedo.com (lanedo.com [85.214.136.179]) (using TLSv1 with
cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by
bhuna.collabora.co.uk (Postfix) with ESMTPS id 828D4170864F for
<[email protected]>; Fri, 17 May 2013 15:05:02 +0100 (BST)
Received: from [192.168.1.77]
(host86-131-206-214.range86-131.btcentralplus.com [86.131.206.214])
(Authenticated sender: martyn) by lanedo.com (Postfix) with ESMTPSA id
81DC27F40AD; Fri, 17 May 2013 15:57:54 +0200 (CEST)
Message-ID: <[email protected]>
Date: Fri, 17 May 2013 14:57:53 +0100
From: Martyn Russell <[email protected]>
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130510
Thunderbird/17.0.6
MIME-Version: 1.0
To: Marco Barisione <[email protected]>
CC: Richard Hult <[email protected]>, Mikael Hallendal
Subject: Re: Relicensing some code from Gossip to LGPL
References: <1368796612.5620.19.camel@carbonara>
In-Reply-To: <1368796612.5620.19.camel@carbonara>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-DSPAM-Result: Innocent
X-DSPAM-Processed: Fri May 17 15:23:07 2013
X-DSPAM-Confidence: 0.5891
X-DSPAM-Probability: 0.0000
X-DSPAM-Signature: 12,51963d4b19129775617922
X-Evolution-Source: 1205242379.4854.0@cordof
On 17/05/13 14:16, Marco Barisione wrote:
> Hi,
>
> I'm currently working on integrating IM account creation with
> gnome-online-accounts. This would allow a Gnome user to create all types
> of accounts directly in the “System Settings”.
> To do so, I need to move to a separate module all the account widget
> code that is currently in Empathy, plus some other utility functions.
> The problem is that gnome-online-accounts is under LGPL, while the
> Empathy code that comes from Gossip is under GPL.
>
> Would it be possible for you (both personally and for Imendio AB) to
> agree to relicense this code to LGPL version 2.1 or later?
>
> Considering that this is the second time we ask your permission to
> relicense code coming from Gossip, I was wondering if you would agree to
> give us permission to relicense your code (to LGPL v2.1+) in case it
> will be needed again for similar projects in the future.
Hello Macro, which code exactly are we talking about out of interest?
--
Regards,
Martyn
Founder and CEO of Lanedo GmbH.
Message-ID: <1368804002.5620.42.camel@carbonara>
Subject: Re: Relicensing some code from Gossip to LGPL
From: Marco Barisione <[email protected]>
To: Martyn Russell <[email protected]>
Cc: Richard Hult <[email protected]>, Mikael Hallendal
Date: Fri, 17 May 2013 16:20:02 +0100
In-Reply-To: <[email protected]>
References: <1368796612.5620.19.camel@carbonara>
Organization: Collabora Ltd.
Content-Type: text/plain; charset="UTF-8"
X-Mailer: Evolution 3.6.3-1
Mime-Version: 1.0
Content-Transfer-Encoding: 7bit
X-Evolution-Source: 1205242379.4854.0@cordof
On Fri, 2013-05-17 at 14:57 +0100, Martyn Russell wrote:
> Hello Macro, which code exactly are we talking about out of interest?
It's difficult to pinpoint exactly what can be considered code coming
from Gossip and what not as most code was heavily changed.
I actually found it interesting how some functions was basically
completely rewritten and now uses a different library (GtkBuilder
instead of glade) but you can still see how they look similar to some
Gossip code written 10 years ago! (It's almost Gossip's 10th birthday as
the first commit was on the 19th May 2003.)
Anyway, this is the code we need that was written for Gossip under GPL:
* UI code for configuring accounts (coming from
gossip-account-widget-jabber.[ch]).
* Some utility functions related to GtkBuilder (they were
originally for Glade). See gossip-glade.[ch].
* Some utility code to get the toplevel GtkWindow of a widget (see
gossip-account-widget-jabber.c and gossip-presence-chooser.c)
* A utility function to present a window, see
gossip_window_present() in gossip-ui-utils.c.
--
Marco Barisione
Received: from lanedo.com (lanedo.com [85.214.136.179]) (using TLSv1 with
cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by
bhuna.collabora.co.uk (Postfix) with ESMTPS id DBC9916986FA for
<[email protected]>; Fri, 17 May 2013 18:00:58 +0100 (BST)
Received: from [192.168.1.77]
(host86-131-206-214.range86-131.btcentralplus.com [86.131.206.214])
(Authenticated sender: martyn) by lanedo.com (Postfix) with ESMTPSA id
80C287F40A5; Fri, 17 May 2013 19:00:57 +0200 (CEST)
Message-ID: <[email protected]>
Date: Fri, 17 May 2013 18:00:56 +0100
From: Martyn Russell <[email protected]>
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130510
Thunderbird/17.0.6
MIME-Version: 1.0
To: Marco Barisione <[email protected]>
CC: Richard Hult <[email protected]>, Mikael Hallendal
Subject: Re: Relicensing some code from Gossip to LGPL
References: <1368796612.5620.19.camel@carbonara>
<[email protected]> <1368804002.5620.42.camel@carbonara>
In-Reply-To: <1368804002.5620.42.camel@carbonara>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-DSPAM-Result: Innocent
X-DSPAM-Processed: Fri May 17 18:01:01 2013
X-DSPAM-Confidence: 0.9916
X-DSPAM-Probability: 0.0000
X-DSPAM-Signature: 12,5196624c19123502411123
X-Evolution-Source: 1205242379.4854.0@cordof
On 17/05/13 16:20, Marco Barisione wrote:
> On Fri, 2013-05-17 at 14:57 +0100, Martyn Russell wrote:
>> Hello Macro, which code exactly are we talking about out of interest?
>
> It's difficult to pinpoint exactly what can be considered code coming
> from Gossip and what not as most code was heavily changed.
> I actually found it interesting how some functions was basically
> completely rewritten and now uses a different library (GtkBuilder
> instead of glade) but you can still see how they look similar to some
> Gossip code written 10 years ago! (It's almost Gossip's 10th birthday as
> the first commit was on the 19th May 2003.)
>
> Anyway, this is the code we need that was written for Gossip under GPL:
> * UI code for configuring accounts (coming from
> gossip-account-widget-jabber.[ch]).
> * Some utility functions related to GtkBuilder (they were
> originally for Glade). See gossip-glade.[ch].
> * Some utility code to get the toplevel GtkWindow of a widget (see
> gossip-account-widget-jabber.c and gossip-presence-chooser.c)
> * A utility function to present a window, see
> gossip_window_present() in gossip-ui-utils.c.
Fine by me, was just interested :)
Please go ahead.
--
Regards,
Martyn
Founder and CEO of Lanedo GmbH.
Received: from mail-la0-f45.google.com (mail-la0-f45.google.com
[209.85.215.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No
client certificate requested) by bhuna.collabora.co.uk (Postfix) with
ESMTPS id 872DB1A8806E for <[email protected]>; Thu, 30 May
2013 16:32:08 +0100 (BST)
Received: by mail-la0-f45.google.com with SMTP id fr10so396796lab.4 for
<[email protected]>; Thu, 30 May 2013 08:32:07 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=google.com; s=20120113;
h=content-type:mime-version:subject:from:in-reply-to:date:cc
:content-transfer-encoding:message-id:references:to:x-mailer
:x-gm-message-state; bh=em3Xu/rdTkZodWe51PjShChayLOTdb68zV4rd6LL7g4=;
b=La4J6KZ/HixmKuI5gj1QqsVpSFy6o/c/kSO2wU6BUAX9El3V12zYyMj1wLEAmAw4Bf
DFz0+MX+uaJjF7Kb9NdIlGDUNLT/NLCzjwDwa4wMIeSVj03OLdXhj9O5xKRTr6DAGN6J
fUmUVNt14zmFCG+/YxcaaThd+QDkUQ5KXQPuwCKsqiS277LszpdK0mvz67SBr6Kv9Oid
1NQWMApL/Fu39RIkyBPhol9hNtWmtPRU4SrtI8AuQCTCTo5cWeuGTAo3tHCeXnOz4Oht
sfqeQlwkZu1Cfw56KF33Lo2shJwR8Aon7yQAx3cC15VglrgH+84j8Bk03tR/tWrwPRXi U/oQ==
X-Received: by 10.152.22.199 with SMTP id g7mr3105740laf.20.1369927927723;
Thu, 30 May 2013 08:32:07 -0700 (PDT)
Received: from [192.168.50.11] (c80-216-147-62.bredband.comhem.se.
[80.216.147.62]) by mx.google.com with ESMTPSA id
f8sm17212966lbr.10.2013.05.30.08.32.04 for <multiple recipients>
(version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 30 May 2013
08:32:06 -0700 (PDT)
Content-Type: text/plain; charset=us-ascii
Mime-Version: 1.0 (Mac OS X Mail 6.3 \(1503\))
Subject: Re: Relicensing some code from Gossip to LGPL
From: Richard Hult <[email protected]>
In-Reply-To: <1368804002.5620.42.camel@carbonara>
Date: Thu, 30 May 2013 17:32:03 +0200
Cc: Martyn Russell <[email protected]>
Content-Transfer-Encoding: quoted-printable
Message-Id: <[email protected]>
References: <1368796612.5620.19.camel@carbonara>
<[email protected]> <1368804002.5620.42.camel@carbonara>
To: Marco Barisione <[email protected]>
X-Mailer: Apple Mail (2.1503)
X-Gm-Message-State:
ALoCoQmf77Ca0NSy0HMMkExOPJLIE97QTjzE8LPDz6Z999SvJDGstgQWuhv8Gikd2hq9Ydj9G3PA
X-DSPAM-Result: Innocent
X-DSPAM-Processed: Thu May 30 16:37:13 2013
X-DSPAM-Confidence: 0.9915
X-DSPAM-Probability: 0.0000
X-DSPAM-Signature: 12,51a7722919121527013877
X-Evolution-Source: 1205242379.4854.0@cordof
Hi,
We (me and Micke, including Imendio / Tinybird) are fine with =
relicensing all our contributions in Gossip to LGPL v2.1+.
It's good to see that ancient thing come to use :)
Cheers,
Richard
17 maj 2013 kl. 17:20 skrev Marco Barisione =
> On Fri, 2013-05-17 at 14:57 +0100, Martyn Russell wrote:
>> Hello Macro, which code exactly are we talking about out of interest?
>=20
> It's difficult to pinpoint exactly what can be considered code coming
> from Gossip and what not as most code was heavily changed.
> I actually found it interesting how some functions was basically
> completely rewritten and now uses a different library (GtkBuilder
> instead of glade) but you can still see how they look similar to some
> Gossip code written 10 years ago! (It's almost Gossip's 10th birthday =
as
> the first commit was on the 19th May 2003.)
>=20
> Anyway, this is the code we need that was written for Gossip under =
GPL:
> * UI code for configuring accounts (coming from
> gossip-account-widget-jabber.[ch]).
> * Some utility functions related to GtkBuilder (they were
> originally for Glade). See gossip-glade.[ch].
> * Some utility code to get the toplevel GtkWindow of a widget =
(see
> gossip-account-widget-jabber.c and gossip-presence-chooser.c)
> * A utility function to present a window, see
> gossip_window_present() in gossip-ui-utils.c.
>=20
> --=20
> Marco Barisione
>=20
>=20
--=20
http://tinybird.com/ ~ Tinybird Interactive - Inspiring Software
== Telepathy account widgets relicensing (Collabora contributors) ==
Message-ID: <1368795514.5620.8.camel@carbonara>
Subject: Relicensing some Empathy code from GPL to LGPL
From: Marco Barisione <[email protected]>
To: Jonny Lamb <[email protected]>, Marco Barisione
<[email protected]>, Felix Kaser <[email protected]>, Cosimo Cecchi
<[email protected]>, Travis Reitter <[email protected]>, Xavier Claessens
<[email protected]>, Danielle Madeley <[email protected]>
Date: Fri, 17 May 2013 13:58:34 +0100
Organization: Collabora Ltd.
Content-Type: text/plain; charset="UTF-8"
X-Mailer: Evolution 3.6.3-1
Mime-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Evolution-Source: 1205242379.4854.0@cordof
Hi all,
I'm currently working on integrating IM account creation with
gnome-online-accounts. This would allow a Gnome user to create all types
of accounts directly in the “System Settings”.
To do so, I need to move all the account creation code to a separate git
submodule that can be used by gnome-online-accounts.
The problem is that gnome-online-account is under LGPL, while Empathy
contains some files under GPL and some files under LGPL.
I'm writing you because you contributed to some Empathy files under GPL
that we would like to use in gnome-online-accounts. These contributions
were done using your personal email addresses, so I'm not sure whether
you wrote the code in your free time or for Collabora.
In case some of the code was written outside work, would you agree to
relicense your code from GPL to LGPL (version 2.1 or later)?
Thanks!
--
Marco Barisione
X-Greylist: delayed 416 seconds by postgrey-1.32 at bhuna; Fri, 17 May 2013
14:30:36 BST
Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com
[66.111.4.26]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No
client certificate requested) by bhuna.collabora.co.uk (Postfix) with
ESMTPS id 5F2FA1708625 for <[email protected]>; Fri, 17 May
2013 14:30:36 +0100 (BST)
Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42])
by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id B03CC20A06; Fri, 17
May 2013 09:23:37 -0400 (EDT)
Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by
compute2.internal (MEProxy); Fri, 17 May 2013 09:23:37 -0400
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com;
h=message-id:subject:from:to:date
:in-reply-to:references:content-type:mime-version
:content-transfer-encoding; s=smtpout; bh=ao/XTCWVPrRO0biL9ndAnB w+QVk=;
b=H7DVExc4VMFzFtjndObVmJBjaHFaTJ1is040b9gk5UXA8xk40swh2B
b7Wqvmmis/uD4G+bkOwAys5fQyzLaAEJeOBK4GFgXKrhWrx7+BslocHL47lXdHLe
R1gYDTA2XHAR3eINRqyl46wGcpRbT+dYhyyo69U1CsjR1AUCkGOGE=
X-Sasl-enc: YaQs8RVRW4bZ4vRd7mOOG8Y768a4nwKSKJng7BgS5qdD 1368797017
Received: from [10.69.106.15] (unknown [93.45.233.185]) by
mail.messagingengine.com (Postfix) with ESMTPA id 11FC120008D for
<[email protected]>; Fri, 17 May 2013 09:23:36 -0400 (EDT)
Message-ID: <1368797015.19887.48.camel@reger>
Subject: Re: Relicensing some Empathy code from GPL to LGPL
From: Jonny Lamb <[email protected]>
To: Marco Barisione <[email protected]>
Date: Fri, 17 May 2013 15:23:35 +0200
In-Reply-To: <1368795514.5620.8.camel@carbonara>
References: <1368795514.5620.8.camel@carbonara>
Content-Type: text/plain; charset="UTF-8"
X-Mailer: Evolution 3.8.0-1
Mime-Version: 1.0
Content-Transfer-Encoding: 7bit
X-DSPAM-Result: Innocent
X-DSPAM-Processed: Fri May 17 14:34:23 2013
X-DSPAM-Confidence: 0.5660
X-DSPAM-Probability: 0.0354
X-DSPAM-Signature: 12,519631df19121547611730
X-Evolution-Source: 1205242379.4854.0@cordof
Il giorno ven, 17/05/2013 alle 13.58 +0100, Marco Barisione ha scritto:
> In case some of the code was written outside work, would you agree to
> relicense your code from GPL to LGPL (version 2.1 or later)?
Yes.
--
Jonny Lamb
X-Greylist: delayed 400 seconds by postgrey-1.32 at bhuna; Fri, 17 May 2013
14:37:27 BST
Received: from dwicky1.webinabox.net.au (dwicky1-3.webinabox.net.au
[110.173.224.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256
bits)) (No client certificate requested) by bhuna.collabora.co.uk (Postfix)
with ESMTPS id 87461170860A for <[email protected]>; Fri, 17
May 2013 14:37:27 +0100 (BST)
Received: (qmail 27127 invoked by uid 89); 17 May 2013 13:30:42 -0000
Received: by simscan 1.1.0 ppid: 27119, pid: 27122, t: 0.4232s scanners:
attach: 1.1.0 clamav: 0.88/m:35/d:1235 spam: 3.2.4
X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on
dwicky1.webinabox.net.au
X-Spam-Level:
X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,HTML_MESSAGE
autolearn=failed version=3.2.4
Received: from unknown (HELO mail-qc0-f180.google.com)
([email protected]@209.85.216.180) by dwicky1.webinabox.net.au with
ESMTPA; 17 May 2013 13:30:42 -0000
Received: by mail-qc0-f180.google.com with SMTP id a10so1664685qcx.39 for
<[email protected]>; Fri, 17 May 2013 06:30:39 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=google.com; s=20120113;
h=mime-version:x-received:in-reply-to:references:date:message-id
:subject:from:to:content-type;
bh=wYGY0zxDLIoZIN+pv6p78/LjECx1nPfqDufvDG8nVZ4=;
b=aLqZXAesRaCr8GuIypucFTsT/VcHfKgeUcY4hgiPsJZkAeB8vP/0BTKR0jmCivGGKH
w2axkj3lxAybck2oqj3ViTV73HuL6CJvtGqAFijmSxnyz1bkrPyCJd1L+9xi5F136mCv
BWElJG1gobWRyTQaeL0UVUo4tkSobBxNzMrDSmEIWQHWresZBFOpt0GpW34vmTo24qxe
EoAYXhnKLrpe0gk48Oa6R81Rmnz0qJ1es3uDiVof4mvuH0wKxrgWKKog2VFaLNlajlS4
eb+90OJzfJPoOqLZbt/7MAWI3zG4mj4SvHvRBFURcjB7ZcK5Ru3n8KwbPH56v1GTo6q0 N+pQ==
MIME-Version: 1.0
X-Received: by 10.224.192.6 with SMTP id do6mr37195109qab.82.1368797439221;
Fri, 17 May 2013 06:30:39 -0700 (PDT)
Received: by 10.49.117.195 with HTTP; Fri, 17 May 2013 06:30:39 -0700 (PDT)
In-Reply-To: <1368795514.5620.8.camel@carbonara>
References: <1368795514.5620.8.camel@carbonara>
Date: Fri, 17 May 2013 23:30:39 +1000
Message-ID: <CAKyTCxaNxZBoz99DFcSMkJpq+JJTXuXx5HrUdej6Q4Coi+tXyw@mail.gmail.com>
Subject: Re: Relicensing some Empathy code from GPL to LGPL
From: Danielle Madeley <[email protected]>
To: Marco Barisione <[email protected]>
Content-Type: multipart/alternative; boundary=20cf300fb1cb2267ec04dce9fdc8
X-DSPAM-Result: Innocent
X-DSPAM-Processed: Fri May 17 14:40:06 2013
X-DSPAM-Confidence: 0.5883
X-DSPAM-Probability: 0.0000
X-DSPAM-Signature: 12,5196333619122110957504
X-Evolution-Source: 1205242379.4854.0@cordof
--20cf300fb1cb2267ec04dce9fdc8
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Relicence away!
On Friday, 17 May 2013, Marco Barisione wrote:
> Hi all,
>
> I'm currently working on integrating IM account creation with
> gnome-online-accounts. This would allow a Gnome user to create all types
> of accounts directly in the =E2=80=9CSystem Settings=E2=80=9D.
> To do so, I need to move all the account creation code to a separate git
> submodule that can be used by gnome-online-accounts.
> The problem is that gnome-online-account is under LGPL, while Empathy
> contains some files under GPL and some files under LGPL.
>
> I'm writing you because you contributed to some Empathy files under GPL
> that we would like to use in gnome-online-accounts. These contributions
> were done using your personal email addresses, so I'm not sure whether
> you wrote the code in your free time or for Collabora.
> In case some of the code was written outside work, would you agree to
> relicense your code from GPL to LGPL (version 2.1 or later)?
>
> Thanks!
>
> --
> Marco Barisione
>
>
--20cf300fb1cb2267ec04dce9fdc8
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Relicence away!<span></span><br><br>On Friday, 17 May 2013, Marco Barisione=
wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;bo=
rder-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
I'm currently working on integrating IM account creation with<br>
gnome-online-accounts. This would allow a Gnome user to create all types<br=
>
of accounts directly in the =E2=80=9CSystem Settings=E2=80=9D.<br>
To do so, I need to move all the account creation code to a separate git<br=
>
submodule that can be used by gnome-online-accounts.<br>
The problem is that gnome-online-account is under LGPL, while Empathy<br>
contains some files under GPL and some files under LGPL.<br>
<br>
I'm writing you because you contributed to some Empathy files under GPL=
<br>
that we would like to use in gnome-online-accounts. These contributions<br>
were done using your personal email addresses, so I'm not sure whether<=
br>
you wrote the code in your free time or for Collabora.<br>
In case some of the code was written outside work, would you agree to<br>
relicense your code from GPL to LGPL (version 2.1 or later)?<br>
<br>
Thanks!<br>
<br>
--<br>
Marco Barisione<br>
<br>
</blockquote>
--20cf300fb1cb2267ec04dce9fdc8--
Received: from mail-ea0-f176.google.com (mail-ea0-f176.google.com
[209.85.215.176]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No
client certificate requested) by bhuna.collabora.co.uk (Postfix) with
ESMTPS id 186B11708614 for <[email protected]>; Fri, 17 May
2013 14:48:20 +0100 (BST)
Received: by mail-ea0-f176.google.com with SMTP id k11so2440251eaj.35 for
<[email protected]>; Fri, 17 May 2013 06:48:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com;
s=20120113; h=x-received:sender:message-id:subject:from:to:date:in-reply-to
:references:content-type:x-mailer:mime-version :content-transfer-encoding;
bh=ETuqIl7IDAWDEheKJ8nP+MeyQy1GN957saQXDCX81nE=;
b=hNdg84v8OuZqXILYOdfUalurTdkfz5eP9pfgO1T2zstl1tg+qu8BO6jLjHPmNN2Lek
hirUvvCpOb4wfurTvSG+CMEB2CjU/NRNCg6BVkQTe2YJNwQEDslV79oRma4gpj5CBatd
jqJHgz2E8tUMIu+HpZRjZ3NK0ZL9AYodaMnx1jepKuiwKee/UMUKSLG6BYs2IGLkBH0j
IL2NUVPLQzybm9DmYQ+xPyyx2asjRbYkPCgYrBw+y2sRgBOMgetHTq7tD2PplGAUMc1x
/srnWD9pxbu4oYkm+rDbgp53BDq8oWMTjx9uz2bhRlc1ZV3cw25SmrONfD6RHPpEROCN VbtQ==
X-Received: by 10.15.35.71 with SMTP id f47mr91722892eev.15.1368798499636;
Fri, 17 May 2013 06:48:19 -0700 (PDT)
Received: from [172.22.64.131] (pakora.collabora.co.uk. [93.93.133.71]) by
mx.google.com with ESMTPSA id i2sm18882677eeg.2.2013.05.17.06.48.18 for
<[email protected]> (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA
bits=128/128); Fri, 17 May 2013 06:48:18 -0700 (PDT)
Sender: Marco Barisione <[email protected]>
Message-ID: <1368798497.5620.25.camel@carbonara>
Subject: Re: Relicensing some Empathy code from GPL to LGPL
From: Marco Barisione <[email protected]>
To: Marco Barisione <[email protected]>
Date: Fri, 17 May 2013 14:48:17 +0100
In-Reply-To: <1368795514.5620.8.camel@carbonara>
References: <1368795514.5620.8.camel@carbonara>
Content-Type: text/plain; charset="UTF-8"
X-Mailer: Evolution 3.6.3-1
Mime-Version: 1.0
Content-Transfer-Encoding: 7bit
X-DSPAM-Result: Innocent
X-DSPAM-Processed: Fri May 17 14:51:19 2013
X-DSPAM-Confidence: 0.9906
X-DSPAM-Probability: 0.0000
X-DSPAM-Signature: 12,519635d719122019096701
X-Evolution-Source: 1205242379.4854.0@cordof
On Fri, 2013-05-17 at 13:58 +0100, Marco Barisione wrote:
> In case some of the code was written outside work, would you agree to
> relicense your code from GPL to LGPL (version 2.1 or later)?
Hi Marco,
I'm fine with relicensing.
--
Marco
Received: from mail-wg0-f44.google.com (mail-wg0-f44.google.com
[74.125.82.44]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client
certificate requested) by bhuna.collabora.co.uk (Postfix) with ESMTPS id
99A0D16986F8 for <[email protected]>; Fri, 17 May 2013
16:10:09 +0100 (BST)
Received: by mail-wg0-f44.google.com with SMTP id a12so1330250wgh.11 for
<[email protected]>; Fri, 17 May 2013 08:10:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com;
s=20120113; h=x-received:message-id:subject:from:to:cc:date:in-reply-to
:references:content-type:x-mailer:mime-version :content-transfer-encoding;
bh=b5rNuRG3vw5UbY/OnAj27wQAWhIx4lXLWkTUJXigGE8=;
b=tnYxJmDLfBBoT95ZDw7DCNH0SOXNq9U/lm2iZY2K29bXcd/GjmT5w8XTnsKZQYJaEf
xy3ULPyBqPvYWNaKBtd8mubwpk7+K9RNPfBMK/K5TfzSGwso1SuI+ug4ml8yEXme1W47
ZlbLweT9BWD9ydMRgRnElEmLYD6/zmQul62AF7OzEVRetFL+c47RR5zfB+2VvjFLFg/9
77OLEx3eR8SWvs9vHFvYwdIQSU+r+9E+rBrH5tsCUnKNzPOKTxS49+f6HCQUnc+mQJR5
JeurFsnUiVcNfZ8kgsVaXexisnqmz7itWmUTXA8HmPS8D5tsh+zuizMKlImgN+XhhHfv +Sww==
X-Received: by 10.181.13.112 with SMTP id
ex16mr16564844wid.28.1368803409040; Fri, 17 May 2013 08:10:09 -0700 (PDT)
Received: from [192.168.1.173] (cable-212.76.254.67.coditel.net.
[212.76.254.67]) by mx.google.com with ESMTPSA id
fz8sm10089134wib.2.2013.05.17.08.10.07 for <multiple recipients>
(version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 17 May 2013
08:10:08 -0700 (PDT)
Message-ID: <1368803406.23948.3.camel@X230>
Subject: Re: Relicensing some Empathy code from GPL to LGPL
From: Xavier Claessens <[email protected]>
To: Marco Barisione <[email protected]>
Cc: Jonny Lamb <[email protected]>, Marco Barisione
<[email protected]>, Felix Kaser <[email protected]>, Cosimo Cecchi
<[email protected]>, Travis Reitter <[email protected]>, Danielle Madeley
Date: Fri, 17 May 2013 17:10:06 +0200
In-Reply-To: <1368795514.5620.8.camel@carbonara>
References: <1368795514.5620.8.camel@carbonara>
Content-Type: text/plain; charset="UTF-8"
X-Mailer: Evolution 3.8.1-0ubuntu1~raring1
Mime-Version: 1.0
Content-Transfer-Encoding: 8bit