-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathchangelog.upstream
1438 lines (969 loc) · 41.8 KB
/
changelog.upstream
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
commit 5be7f2e9331730bc12c96fa0bbfdb3712f210cfe
Author: Patrick Schleizer <[email protected]>
Date: Tue Dec 31 13:26:15 2024 -0500
copyright
commit 8355885a98c4ef17817fcf1c36f2d7489037a1e4
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 11 20:12:15 2023 +0000
bumped changelog version
commit 75c10acb25b239538eaf490cda5c516927c23b5e
Author: Patrick Schleizer <[email protected]>
Date: Sat Nov 11 13:41:30 2023 -0500
change license to AGPL-3+
https://forums.whonix.org/t/license-change-to-agplv3/17455
commit 9a785d14062bd90814dabe12b5c21a6e049b6910
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 17 11:31:59 2023 -0400
bumped changelog version
commit f3739a20be1267646446bb60237d932924dd880a
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 17 11:17:06 2023 -0400
Kicksecure
commit aeb678ab115592d2b7893230fd9d194ab91f1c3c
Author: Patrick Schleizer <[email protected]>
Date: Mon Jul 17 11:00:04 2023 -0400
Kicksecure
commit 96ff3c88e758c886a925f7df7d4b8459fa013eab
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 21 09:13:46 2023 +0000
bumped changelog version
commit 6ba24f29e0d23128e984c27db886d0efc0c3303d
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 21 09:11:25 2023 +0000
bookworm
commit 01778f495ea8524fe19f5d2376ba5f38aaf0eed0
Author: Patrick Schleizer <[email protected]>
Date: Fri Jun 16 10:50:41 2023 +0000
bumped changelog version
commit 9e7602154ed57699a5e201e820012a1791abc3bf
Author: Patrick Schleizer <[email protected]>
Date: Fri Jun 16 10:49:00 2023 +0000
readme
commit 4ed63cc41189b2ad4410dc6bc5f764b49f91e784
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 15 16:58:41 2023 +0000
bumped changelog version
commit c5993dcc9a63d68ade404abf1f6f360ba8ceba81
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 14 13:14:42 2023 +0000
copyright
commit d270217b614a85ec43d125fc47f39fce264a8c22
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 17:44:20 2023 +0000
bumped changelog version
commit e5e90d6fd6508edfa7ea6620c8b831155252d284
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 16:22:26 2023 +0000
Standards-Version: 4.6.1.0
commit 667e5f167fd53c20d1fff8d397fdac23deaad385
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 15:15:07 2023 +0000
bumped changelog version
commit 1e082deb643222271b3207fd6be8c51f6fa155ef
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 14:51:55 2023 +0000
update copyright year
commit 585ae0f97e2adbe065ee00f01adc92f69a49cb73
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 8 10:28:17 2022 -0400
bumped changelog version
commit d19ea3c73fa8a76f6d151fee6fa018a0c618bc3a
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 6 14:43:49 2022 -0400
description
commit 07034597cdb4db7ba93c2b38e6842275b6de48db
Merge: 78953ba ff65551
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 6 14:39:26 2022 -0400
Merge remote-tracking branch 'github-kicksecure/master'
commit ff6555190f8e95c87d09c16acb29d906cc6fba41
Merge: d934a03 e43d93c
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 6 11:51:41 2022 -0400
Merge pull request #4 from TNTBOMBOM/patch-1
Update control
commit d934a030fbc5c145d47f1c775fe3d82c666ffbc1
Merge: 78953ba e994d20
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 6 11:51:20 2022 -0400
Merge pull request #5 from TNTBOMBOM/patch-2
Update README.md
commit e994d209b83015908bb7e1b9d346dfbcfde0c06b
Author: TNT BOM BOM <[email protected]>
Date: Mon Jun 6 08:52:29 2022 +0000
Update README.md
Cleared enigmail, replaced apt-get with apt
commit e43d93cff09367a4d121618ea97526c74dac53ff
Author: TNT BOM BOM <[email protected]>
Date: Mon Jun 6 08:49:31 2022 +0000
Update control
Cleaned enigmail, Added more clarification.
commit 78953ba1256e9667189c54145d3fccc2bc770378
Author: Patrick Schleizer <[email protected]>
Date: Wed May 25 06:05:40 2022 -0400
bumped changelog version
commit 301ef068b3f7b3beabbba27931ab60c8798d91f4
Author: Patrick Schleizer <[email protected]>
Date: Fri May 20 15:27:03 2022 -0400
readme
commit a68f34db5d05a8a7e1efbe7eee0c0148fe4170b5
Author: Patrick Schleizer <[email protected]>
Date: Fri May 20 14:46:30 2022 -0400
copyright
commit cf4544a31eb474e28bcf42514256b2a3ea60cb78
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 10 12:37:32 2022 -0400
readme
commit b1ed90f5f7918464b0d00a76758b928e2df58a45
Author: Patrick Schleizer <[email protected]>
Date: Tue Nov 9 14:32:28 2021 -0500
readme
commit 7c3b0aef3709aa462376f2f61c77adc04835a4e8
Author: Patrick Schleizer <[email protected]>
Date: Sat Sep 11 18:36:09 2021 -0400
bumped changelog version
commit 29e7035dcb065e12064e9061f73ca647a773fbad
Author: Patrick Schleizer <[email protected]>
Date: Sat Sep 11 16:31:09 2021 -0400
readme
commit 7a6f614382d3f60b257cf7a712ca60914040234b
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 5 16:34:23 2021 -0400
bumped changelog version
commit a393b04f5693eb3c8306f16c540aea486a2fec2f
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 3 05:48:17 2021 -0400
bullseye
commit dd968256f50e22a8b6e444a1abe2500c5303180a
Author: Patrick Schleizer <[email protected]>
Date: Sun Aug 1 16:24:22 2021 -0400
readme
commit bf96427f509877f8c6f22e61d06d558c08ea7076
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 10:59:45 2021 -0400
bumped changelog version
commit 1d9f823aa55d41c0de75ccb3061eae5ef48792ad
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 10:59:44 2021 -0400
readme
commit 8712ee54334c1d4c5cf5f8e1e798c22d29e3ffa6
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 09:45:12 2021 -0400
copyright
commit c14250e536d42918c9c752fffd8084ea9291f155
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 16 08:24:51 2020 -0400
bumped changelog version
commit 096e67e484d8f8394f58681930e85a0c6e13c99d
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 15 14:05:28 2020 -0400
readme
commit dad0c4d3046ee497036aa8ed5bc84dbc02a02aa2
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 6 14:12:51 2020 -0400
bumped changelog version
commit c82dc08a87316ade0c28a63e0949e8395887e000
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 6 14:10:48 2020 -0400
readme
commit fe3c48572d550e31da3c4244665d1c1f03e6883f
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 6 14:07:12 2020 -0400
renamed: debian/apparmor-profile-icedove.install -> debian/apparmor-profile-thunderbird.install
renamed: debian/apparmor-profile-icedove.maintscript -> debian/apparmor-profile-thunderbird.maintscript
commit c02a2f6638170842f66a5b1fb0e23047c1c307b3
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 6 14:03:41 2020 -0400
Replaces: apparmor-profile-icedove;
description
commit 2d9b65eeecfa2248ed541bcd2baff3c96e221127
Author: Patrick Schleizer <[email protected]>
Date: Mon Apr 6 14:02:45 2020 -0400
rename package
commit 08ce3549e3fd1d5766a1192812f8037dc4cc4e52
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 13:25:31 2020 -0400
bumped changelog version
commit ee695c22f3b902f26f427a7a65c047952ad31493
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 13:18:10 2020 -0400
apparmor packaging fixes
commit 6c1aa6ce6f778d8064a5d128c1b4711db28907d6
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 13:17:10 2020 -0400
apparmor packaging fixes
commit 8c78195abb077d2ca4d67b7c850c542bfdae6da0
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:35:46 2020 -0400
bumped changelog version
commit f0d1e06f9432a7482f6777019c98271e259ecc72
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:22:19 2020 -0400
readme
commit e8899bf972fcd08b3e815aca5477c73fe4f9fc2a
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:57:28 2020 -0400
remove genmkfile
commit d22882633d953d7f0d06b30fbc1201a403851bdf
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:30:06 2020 -0400
add debian install file
commit 5b09577176d42dd88b41cf0748aa73c69a37d1cf
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 10:27:48 2020 -0400
bumped changelog version
commit a80c019acc7a2b9d18dd77c305a8c56bc60fcd8b
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 08:49:53 2020 -0400
update copyright year
commit a470c3f5dfa16f1db376b9c78cb61985093c28e6
Author: Patrick Schleizer <[email protected]>
Date: Tue Sep 17 13:40:20 2019 +0000
bumped changelog version
commit 6e0f0ff9b9382eef98e457b60b18d55921c06bc6
Author: Patrick Schleizer <[email protected]>
Date: Tue Sep 17 07:23:49 2019 +0000
fix, also run original dh_install from override_dh_install
commit 2ff3b7cb47d31270936f1879e647ad39c79b5708
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 11:25:46 2019 +0000
bumped changelog version
commit a9a842da4b755741c59810d37f7d28dffa8adf5b
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 1 11:13:34 2019 +0000
readme
commit 9124de0ff6dbc5eb5ff5de76d0d241ba13c4009f
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 20 12:22:27 2019 +0000
bumped changelog version
commit 483643b977afd9483e4c697906a413b142d228eb
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 20 07:47:24 2019 -0400
UsrMerge support
commit c5115d0b6f422cb5d0bc0e171d8c52a339543561
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 20 07:46:52 2019 -0400
refactoring
commit 0a05d6c31b17d7308bf945ce966de32bd05afde5
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 10:15:25 2019 +0000
bumped changelog version
commit 7b0402d15092f625c6b1ef132cb53f2add858ba6
Author: Patrick Schleizer <[email protected]>
Date: Sat Jun 8 00:05:30 2019 -0400
fix debian/watch lintian warning debian-watch-contains-dh_make-template
commit a8282fcdaafe42c2b5d723e34f97f872b5376387
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 20:11:54 2019 +0000
bumped changelog version
commit 7211478790f3edf10ae1073bd2898e967f6ecda9
Author: Patrick Schleizer <[email protected]>
Date: Fri May 24 12:28:55 2019 -0400
readme
commit 55cffc19c09ea30807bdf0dc9eceecdec70c9603
Author: Patrick Schleizer <[email protected]>
Date: Fri May 3 11:18:44 2019 +0000
bumped changelog version
commit 5a7ad33de0c0b897f5d50eecf74b9c9777fa4f61
Author: Patrick Schleizer <[email protected]>
Date: Fri May 3 10:56:52 2019 +0000
update
commit d7764e094eab35606e46718bff67ea4c75689e18
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 14 12:09:28 2019 +0000
bumped changelog version
commit 3a8627c95be55638e9b0e44b780ace89b72789ee
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 14 06:19:07 2019 -0400
license
commit 45aa7b3d5530c1102e548e70c577a085c0a6e66b
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 6 11:58:12 2019 +0000
bumped changelog version
commit 25534dc9fb3571f0e17cf6b8a74de9e0ed08c0e8
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 4 05:50:34 2019 -0400
port to debian buster
commit 90c1c04326c2b77b8fddb431cb1bf1bf01cc36b8
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 3 18:04:48 2019 -0400
readme
commit bbc8e055831e0d2a5b33ef69edbc7795ebad0760
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 29 09:47:50 2019 +0000
bumped changelog version
commit 46092be97bc4a579cb841c88ceae36381907cd91
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 29 09:02:45 2019 +0000
https://www.whonix.org/wiki/Dev/Licensing
commit bed843b33456e2d312b7a0e8cc51b4a8c9f33d75
Author: Patrick Schleizer <[email protected]>
Date: Tue Mar 12 11:21:11 2019 +0000
bumped changelog version
commit 904f8e12c2cbe8319953317aa6bf93d818b4f90d
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 1 14:31:49 2019 +0000
add improved legal protections clauses
The license for software created by Whonix is the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version with additional terms applicable per GNU GPL version 3 section 7.
The additional terms are based on the Doom 3 license which is Debian refers to as `GPL-3+-with-id-software-additional-terms`, which is Debian DFSG [1] (The Debian Free Software Guidelines) approved and which is therefore suitable for Debian `main`. Whonix made applied minimal changes to it:
* Rewrite `The Doom 3 BFG Edition GPL Source Code` to the more common `this program` which is used throughout the GPL.
* Added a "trump clause" [2], in other words, any conflicts or disputes between the additional terms and the GPLv3 shall be resolved in favor of the GPLv3 by adding `Notwithstanding any other provision of this License` (as mentioned in GPL FAQ [3]) at the beginning of the additional terms.
[1] https://www.debian.org/social_contract#guidelines
[2] https://www.fsf.org/news/canonical-updated-licensing-terms
[3] https://www.gnu.org/licenses/gpl-faq.html#v3Notwithstanding
For more considerations, see also:
https://www.whonix.org/wiki/Dev/Licensing
commit e038c3213b1bf1fcc8f24e67c37d2488985dc46f
Author: Patrick Schleizer <[email protected]>
Date: Mon Aug 27 15:55:36 2018 +0000
bumped changelog version
commit 5cc22c6c8a72c7d3843f08c91499a776094b7d28
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 21 05:17:55 2018 +0800
readme
commit 7acae86ebec03bc64a9b4c68f6a268554d32c274
Author: Patrick Schleizer <[email protected]>
Date: Thu Feb 1 14:53:46 2018 +0000
bumped changelog version
commit e458e68b311a5a848aa5d4c71959e8b9694e89ef
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:50:14 2018 +0000
readme
commit dde204d0ca180d89f351ba0cb7708b895de970ee
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:38:46 2018 +0000
update copyright
commit fe5b2e381c7a533d6331dbf43990cd812a1f00b8
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:21:53 2018 +0000
update copyright
commit 9949ae96c75e1b11ef71064aa1b01594257d2f89
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:15:05 2018 +0000
update copyright
commit 78c7c6d2a1c3f910a1b300898ead46dd17583ae5
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 29 15:09:30 2018 +0000
update copyright
commit 97aefca7f799a438fe76f90ae9db3f52d2d2764d
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 13 15:08:58 2017 +0200
bumped changelog version
commit 18d77e7af9857f11458595daaccd5e079055c938
Author: Patrick Schleizer <[email protected]>
Date: Thu Jul 13 15:08:43 2017 +0200
bumped changelog version
commit 6a051dc6512f8fe7daa9b5d62ec1a158ff01920b
Merge: b00a3d3 dc53a40
Author: name <[email protected]>
Date: Sat Apr 29 11:45:32 2017 +0200
Merge remote-tracking branch 'origin/master'
commit dc53a401cb652ce0631bb86abd2a55c439afc4d4
Merge: b00a3d3 5ffb372
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 29 11:44:47 2017 +0200
Merge pull request #3 from JeremyRand/rename-icedove-thunderbird
Rename icedove to thunderbird
commit 5ffb372d678f6689108f8401afd8b747dc1b09e9
Author: JeremyRand <[email protected]>
Date: Sat Apr 29 03:49:20 2017 +0000
Rename Icedove to Thunderbird in comment.
commit 6422af3146651774458cd785ee103c5b63bb2196
Author: JeremyRand <[email protected]>
Date: Sat Apr 29 03:47:46 2017 +0000
Fix for Debian renaming Icedove to Thunderbird.
commit b00a3d387fae958f91833044b02a837f8d56b2bf
Author: Patrick Schleizer <[email protected]>
Date: Tue Mar 28 21:06:45 2017 +0000
/usr/bin/qvm-open-in-vm rix,
Internally used by /usr/bin/qvm-open-in-dvm.
commit a5df4a2c5a9a8db8db2a895979905c700347eae2
Author: Patrick Schleizer <[email protected]>
Date: Fri Mar 10 18:29:12 2017 +0000
port to Debian stretch
which comes with its own icedove apparmor profile
therefore use that and only extend it with permissions required for Whonix/Qubes
commit 88de8ca9ab4a915761bf3205c6c116e0a3020572
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 17 13:47:31 2017 +0000
bumped changelog version
commit b7dd1d2f08293611b6f5d1bfc350b46af5f340a2
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 10 15:47:49 2017 +0000
remove faketime from Build-Depends:
since no longer used for reproducible builds
commit 1f8f93506ab0da14cceaf2046e2825bd427315fd
Author: Patrick Schleizer <[email protected]>
Date: Fri Feb 10 15:35:21 2017 +0000
remove debian/gain-root-command workaround
commit 4832b9414077064f19eb2feab5fef8cb9ff1111e
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 15:22:32 2017 +0000
bumped changelog version
commit 58a80634fab1cd2ae9be263ddf656787ab628165
Author: Patrick Schleizer <[email protected]>
Date: Sun Jan 15 08:35:28 2017 +0100
packaging, bumped Standards-Version from 3.9.6 to 3.9.8 for jessie support
commit 79a04bcc2033de5a261b11477bee27e8085381d8
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 10 00:19:11 2016 +0000
bumped changelog version
commit 4502052409278eafa28a096fb2400f1d7fe5fe8d
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 10 00:16:58 2016 +0000
sign commit
commit 458426ac61fd91833c985a14a62597ddfdfc4c00
Merge: 8e8df0a 35cf2e5
Author: Patrick Schleizer <[email protected]>
Date: Wed Dec 7 19:16:48 2016 +0100
Merge remote-tracking branch 'origin/master'
commit 35cf2e522c015e1899c1cb4afedb758a3ab79447
Merge: 8e8df0a b1edc0d
Author: Patrick Schleizer <[email protected]>
Date: Tue Dec 6 17:47:51 2016 +0100
Merge pull request #2 from 3n7r0p1/patch-1
Change `@{PROC}/xen/privcmd rw` to `/dev/xen/privcmd rw`
commit b1edc0dc210441630cd6f0cdd8efebab2204a4b5
Author: 3n7r0p1 <[email protected]>
Date: Mon Dec 5 23:56:49 2016 +0000
Change `@{PROC}/xen/privcmd rw` to `/dev/xen/privcmd rw`
commit 8e8df0a07c796a7d089f523dde49011a9b76614f
Author: Patrick Schleizer <[email protected]>
Date: Mon Nov 21 17:39:22 2016 +0000
readme
commit 9b9969e0e96030da0a833df53f8ee018d27573a8
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 7 22:54:30 2016 +0000
bumped changelog version
commit 3b1fa4aaf21bf66ada4d70627274b6bec083c6ff
Author: Patrick Schleizer <[email protected]>
Date: Fri Jan 29 22:10:37 2016 +0100
Qubes specific fixes
@{HOME}/.config/qvm-mru-filecopy mrwk,
@{HOME}/.local/share/gvfs-metadata r,
@{HOME}/.local/share/gvfs-metadata/** r,
commit e673fa7919ce4152049c8776546f389271782440
Merge: c647741 2ed73c4
Author: Patrick Schleizer <[email protected]>
Date: Thu Dec 10 17:29:07 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit 2ed73c484ffaadd4e82a760e657bfefc8a637336
Author: troubadoour <[email protected]>
Date: Thu Dec 10 17:11:49 2015 +0000
run /usr/bin/torbrowser unconfined after usr.bin.torbrowser profile was deprecated
commit c6477415e5dbc4d017d5d2e88447d4407c33fcd2
Merge: 923a06c 9ff1964
Author: Patrick Schleizer <[email protected]>
Date: Sat Dec 5 13:32:18 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit 9ff1964edc96feac948bad6e65a36b8b8eaa4d1c
Author: troubadoour <[email protected]>
Date: Fri Dec 4 21:55:43 2015 +0000
fix some denied messages due to installation of iceowl-extension in latest icedove
commit 923a06c15da335e513c2d44dee42571457e02054
Author: Patrick Schleizer <[email protected]>
Date: Fri Nov 13 15:50:37 2015 +0000
bumped changelog version
commit 9cef91ab25a7da4fb04016cdf1cfbc00ba9dcbf5
Merge: d05e785 a2859e5
Author: Patrick Schleizer <[email protected]>
Date: Fri Nov 13 15:49:11 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit a2859e5bb1e1d03a9dab7dce712a4e42f35b01d6
Author: troubadoour <[email protected]>
Date: Wed Nov 11 21:59:02 2015 +0000
+ /usr/bin/qubesdb-cmd rix,
commit d05e7851c6c7aaa2d73d855552c470e406256914
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 22 23:12:34 2015 +0000
bumped changelog version
commit 8c12286bef0f1b5dcd508550f51b51893e825d80
Author: Patrick Schleizer <[email protected]>
Date: Sat Sep 19 17:14:42 2015 +0000
replace i686 with wildcard *
commit 7987e4cbd188fcdf984f7df62e75fbcd441f3f6d
Merge: ce768f7 595e179
Author: Patrick Schleizer <[email protected]>
Date: Sat Sep 19 17:11:34 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit 595e17977ecd0220f691b6fc61920b5c47e63803
Author: troubadoour <[email protected]>
Date: Sat Sep 19 15:43:47 2015 +0000
replace tabs with spaces
commit f0efed06208be37926c0387bace9a4016a546414
Author: troubadoour <[email protected]>
Date: Sat Sep 19 15:40:14 2015 +0000
move /run/resolvconf/resolv.conf r,
commit 7f8b58b4dd97c95ce4c15efe05f829805f8f95ca
Author: troubadoour <[email protected]>
Date: Sat Sep 19 15:37:38 2015 +0000
remove double entry @{HOME}/.config/oxygen-gtk/* rw,
commit 069359e467057dd87c693a840666d65947118a5e
Merge: dd5d1b4 ce768f7
Author: troubadoour <[email protected]>
Date: Sat Sep 19 15:23:47 2015 +0000
Merge remote-tracking branch 'whonix/master'
commit dd5d1b4e73141b6cc8c1e137e91f122b821eb30b
Merge: fa0847a 9503ed7
Author: troubadoour <[email protected]>
Date: Sat Sep 19 15:16:22 2015 +0000
Merge remote-tracking branch 'origin/fixed_for_normal_debian_jessie'
commit fa0847add30a927915e0a5289bbebaa627bbe2ec
Author: troubadoour <[email protected]>
Date: Sat Sep 19 15:12:47 2015 +0000
Revert "updated after diecussion in https://github.com/Whonix/apparmor-profile-icedove/pull/1"
to resolve merge conflicts
This reverts commit 8a8c1efea28faa58722394fb39235760c20ff59c.
commit 9503ed725596069d1f7c712bb351378157b013a7
Author: troubadoour <[email protected]>
Date: Thu Sep 17 18:27:50 2015 +0000
add "deny /etc/machine-id r," required in jessie normal environment
commit a47f0e6805bb028a00b643c455378d7536d27ba9
Author: troubadoour <[email protected]>
Date: Thu Sep 17 18:24:32 2015 +0000
add "deny /dev/vboxuser rw," neceesary in VirtuakBox, harmless in other environments
commit 8a35da14a89bdba4e03a5a222202cbbf09cbc891
Author: troubadoour <[email protected]>
Date: Thu Sep 17 18:20:00 2015 +0000
"@{HOME}/.cache/icedove/*/ rw," <-> "@{HOME}/.cache/icedove/** rw,"
commit 7a594598754bcf4f7b1851dc9df8477e6df35694
Author: troubadoour <[email protected]>
Date: Thu Sep 17 18:17:56 2015 +0000
add "@{HOME}/.cache/icedove/ rwk,", required when Icedoce is tun for the first time
commit 824fb677cecd6812665e4b0b21e18f2bea879b83
Author: troubadoour <[email protected]>
Date: Thu Sep 17 18:15:42 2015 +0000
remove owner
commit e326d70a95eb16d33f189c79d4bd73071ef9920b
Author: troubadoour <[email protected]>
Date: Thu Sep 17 18:14:11 2015 +0000
add "@{HOME}/.config/oxygen-gtk/* rw," for KDE (Whonix)
commit 668297eb4b0c4519708a83d253f4d410e69909ee
Author: troubadoour <[email protected]>
Date: Thu Sep 17 18:09:28 2015 +0000
remove "@{HOME/ r,", "@{HOME}/** r,". Not required any longer.
commit ce768f737d2723affabdfe3536910400857d7806
Merge: 7a62b46 8a8c1ef
Author: Patrick Schleizer <[email protected]>
Date: Wed Sep 16 23:59:53 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit 8a8c1efea28faa58722394fb39235760c20ff59c
Author: troubadoour <[email protected]>
Date: Wed Sep 16 20:58:25 2015 +0000
updated after diecussion in https://github.com/Whonix/apparmor-profile-icedove/pull/1
commit 0c2c12cfa8beed7c76d352635e9e145c703608ef
Author: Robin Schneider <[email protected]>
Date: Tue Sep 8 11:38:47 2015 +0200
Reviewed and adopted for "normal" Debian Jessie installation.
* Untested on Qubes OS.
commit 7a62b46ab8a57f3da420b15e218926fbc43cf3f8
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 26 23:31:54 2015 +0000
bumped changelog version
commit 327e4962d953b600a08829249fcd6173bd3a50a2
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 26 22:24:34 2015 +0000
qubes-gpg-split, qubes-thunderbird and Whonix 12 related fixes
commit efdfcc2898fac7d9b7867097e542362cba40a2e8
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 25 14:07:50 2015 +0000
bumped changelog version
commit bae89bb0cad248b9ddacab1eb64d48432615ded9
Author: Patrick Schleizer <[email protected]>
Date: Mon Aug 24 17:47:15 2015 +0000
bumped changelog version
commit 629df0d656641cc60c14e807dd17ebf4db1a9495
Author: Patrick Schleizer <[email protected]>
Date: Mon Aug 24 15:31:25 2015 +0000
amd64 / jessie / Qubes specific fixes
commit fc5b2bf9be99264f13f5f751dfdd72ac9c90d30e
Merge: b767235 86ff02a
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 25 01:28:47 2015 +0200
Merge remote-tracking branch 'troubadoour/master'
commit 86ff02a2f73428763545a5e5a4d970c2828759aa
Author: troubadoour <[email protected]>
Date: Mon Jul 13 15:01:48 2015 +0000
- start-tor-browser
commit b767235bd72f8ca9ff185579b8e113e9c7f45e59
Merge: b4b5d10 be4bafb
Author: Patrick Schleizer <[email protected]>
Date: Tue Jun 30 13:38:07 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit be4bafb30fda136266a77a80ee1d424ebe30ea20
Author: troubadoour <[email protected]>
Date: Mon Jun 29 16:28:52 2015 +0000
/usr/bin/torbrowser Px, for opening links in TBB.
commit b4b5d10a1f9cf987ae5308cc580266c8959cdef2
Author: Patrick Schleizer <[email protected]>
Date: Sun Jun 28 21:34:07 2015 +0000
/usr/share/xul-ext/torbirdy/** r,
commit 12ef0850e0aa8ca3d2d3ef76e357e69976630ba0
Merge: 68a92bb 91263dc
Author: Patrick Schleizer <[email protected]>
Date: Sun Jun 28 20:02:33 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit 91263dc1a7ea42ced53c96dddabdaca512ccf2fd
Author: troubadoour <[email protected]>
Date: Sat Jun 27 21:15:14 2015 +0000
+ /usr/share/xul-ext/torbirdy/ r,
commit 68a92bbd0856bcc7a09d12d7386ec357fc06a8f1
Author: Patrick Schleizer <[email protected]>
Date: Tue Jun 16 19:20:24 2015 +0000
bumped changelog version
commit 4b8f47eb013184454d22899c5760c44953a90c96
Merge: ee126ac e77c90e
Author: Patrick Schleizer <[email protected]>
Date: Tue Jun 16 19:20:00 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit e77c90ed151d184dce13ee0fafa240ccd908ae11
Author: troubadoour <[email protected]>
Date: Tue Jun 16 18:22:47 2015 +0000
+ /usr/lib/gnupg2/gpg2keys_hkp
commit ee126ac592f5071b2ed0ba50e010bccece5dfc56
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 11 22:20:41 2015 +0000
bumped changelog version
commit 6474456f3d7f12ad25957fd373300643cf345e18
Merge: c4e639f 725beb0
Author: Patrick Schleizer <[email protected]>
Date: Thu Jun 11 22:20:20 2015 +0000
Merge remote-tracking branch 'troubadoour/master'
commit 725beb002ba482b04de693a8e1e741b1f5327c6f
Author: troubadoour <[email protected]>
Date: Thu Jun 11 21:04:24 2015 +0000
new denied messges in jessie
commit c4e639fb0041a230fce614fbe64fdcc220aaa11e
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 3 14:59:24 2015 +0000
bumped changelog version
commit c08c73ec68ebf664847bb39ced1ed37a50b6761b
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 30 17:56:03 2015 +0000
bumped changelog version
commit 389b38cf0a0e3810af78508aae19850d8aa76249
Author: Patrick Schleizer <[email protected]>
Date: Tue Apr 28 13:43:06 2015 +0000
added debian/source/lintian-overrides with debian-watch-may-check-gpg-signature to fix lintian warning - https://phabricator.whonix.org/T277
commit 598c40fa2ed8d6050d4e13abbfbe992fa3e19a6f
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 26 23:15:53 2015 +0000
packaging, bumped Standards-Version from 3.9.4 to 3.9.6 for jessie support
commit 4cd03197e56b73c91d112c5b07d6bdd2b95be242
Author: Patrick Schleizer <[email protected]>
Date: Tue Apr 7 17:41:25 2015 +0000
bumped changelog version
commit 9b6795c5a54cae1c59da25821aaece1c9e857701
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 18:41:04 2015 +0000
added genmkfile to Build-Depends
commit fd8f62bdbec25d94b96334d56b23b2cec9ee2e2a
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 18:25:42 2015 +0000
refactoring
commit 1e5be1198a459e3c090a3fac56d7805a89443f0e
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 17:40:30 2015 +0000
cleanup
commit d18da2b4bcd465ddb75a2575169e0bfa97ccaff3
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 17:24:26 2015 +0000
updated makefile generic to version 1.5