-
Notifications
You must be signed in to change notification settings - Fork 0
/
cheese.man.log
1741 lines (1738 loc) · 182 KB
/
cheese.man.log
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
Running phase: unpackPhase
@nix { "action": "setPhase", "phase": "unpackPhase" }
unpacking source archive /nix/store/y0qblch08hdmhhd69jk3jfvhfhwmmgq8-cheese-44.1.tar.xz
source root is cheese-44.1
setting SOURCE_DATE_EPOCH to timestamp 1689439065 of file cheese-44.1/tools/maintainer.sh
Running phase: patchPhase
@nix { "action": "setPhase", "phase": "patchPhase" }
Running phase: updateAutotoolsGnuConfigScriptsPhase
@nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" }
Running phase: configurePhase
@nix { "action": "setPhase", "phase": "configurePhase" }
mesonConfigurePhase flags: --prefix=/nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1 --libdir=/nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/lib --libexecdir=/nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/libexec --bindir=/nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/bin --sbindir=/nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/sbin --includedir=/nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/include --mandir=/nix/store/w6f3c03bmclxd2qh511r19bsvvn1wj2l-cheese-44.1-man/share/man --infodir=/nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/share/info --localedir=/nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/share/locale -Dauto_features=enabled -Dwrap_mode=nodownload --buildtype=plain
[1mThe Meson build system[0m
Version: 1.5.1
Source dir: [1m/build/cheese-44.1[0m
Build dir: [1m/build/cheese-44.1/build[0m
Build type: [1mnative build[0m
Project name: [1mcheese[0m
Project version: [1m44.1[0m
C compiler for the host machine: [1mgcc[0m (gcc 13.3.0 "gcc (GCC) 13.3.0")
C linker for the host machine: [1mgcc[0m ld.bfd 2.42
Vala compiler for the host machine: [1mvalac[0m (valac 0.56.17)
Host machine cpu family: [1mx86_64[0m
Host machine cpu: [1mx86_64[0m
Found pkg-config: [1;32mYES[0m [1m(/nix/store/02vzklfgfpaf457rq927fq3jj5hn133f-pkg-config-wrapper-0.29.2/bin/pkg-config)[0m [1;34m0.29.2[0m
Run-time dependency [1mclutter-1.0[0m found: [1;32mYES[0m [36m1.26.4[0m
Run-time dependency [1mclutter-gst-3.0[0m found: [1;32mYES[0m [36m3.0.27[0m
Run-time dependency [1mclutter-gtk-1.0[0m found: [1;32mYES[0m [36m1.8.4[0m
Run-time dependency [1mgdk-pixbuf-2.0[0m found: [1;32mYES[0m [36m2.42.12[0m
Run-time dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m
Run-time dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m
Run-time dependency [1mgnome-desktop-3.0[0m found: [1;32mYES[0m [36m44.0[0m
Run-time dependency [1mgstreamer-1.0[0m found: [1;32mYES[0m [36m1.24.3[0m
Run-time dependency [1mgstreamer-pbutils-1.0[0m found: [1;32mYES[0m [36m1.24.3[0m
Run-time dependency [1mgstreamer-plugins-bad-1.0[0m found: [1;32mYES[0m [36m1.24.3[0m
Run-time dependency [1mgtk+-3.0[0m found: [1;32mYES[0m [36m3.24.43[0m
Run-time dependency [1mlibcanberra[0m found: [1;32mYES[0m [36m0.30[0m
Library [1mcanberra-gtk3[0m found: [1;32mYES[0m
Library [1mm[0m found: [1;32mYES[0m
Library [1mcheese-common[0m found: [1;32mYES[0m
Library [1mcheese-thumbview[0m found: [1;32mYES[0m
Library [1mconfig[0m found: [1;32mYES[0m
Library [1meogthumbnav[0m found: [1;32mYES[0m
Library [1mposix[0m found: [1;32mYES[0m
Run-time dependency [1mx11[0m found: [1;32mYES[0m [36m1.8.10[0m
Has header "[1mX11/extensions/XTest.h[0m" with dependency x11: [1;31mNO[0m
Run-time dependency [1mdbus-1[0m found: [1;32mYES[0m [36m1.14.10[0m
Run-time dependency [1mgnome-video-effects[0m found: [1;32mYES[0m [36m0.6.0[0m
Program [1mgst-inspect-1.0[0m found: [1;32mYES[0m (/nix/store/pn7qndhy3npn3krigi4hwqlgcpb19yz0-gstreamer-1.24.3-bin/bin/gst-inspect-1.0)
Run-time dependency [1mgobject-introspection-1.0[0m found: [1;32mYES[0m [36m1.80.1[0m
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-resources)
Program [1mmsgfmt[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/msgfmt)
Configuring [1morg.gnome.Cheese.service[0m using configuration
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-schemas[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-schemas)
Dependency [1mgobject-introspection-1.0[0m found: [1;32mYES[0m [36m1.80.1[0m [1;34m(cached)[0m
Dependency [1mgobject-introspection-1.0[0m found: [1;32mYES[0m [36m1.80.1[0m [1;34m(cached)[0m
Program [1m/nix/store/2ivbi3zdfjxyasjbd4hz787kjp5ypsmj-gobject-introspection-1.80.1-dev/bin/g-ir-scanner[0m found: [1;32mYES[0m (/nix/store/2ivbi3zdfjxyasjbd4hz787kjp5ypsmj-gobject-introspection-1.80.1-dev/bin/g-ir-scanner)
Dependency [1mgobject-introspection-1.0[0m found: [1;32mYES[0m [36m1.80.1[0m [1;34m(cached)[0m
Program [1m/nix/store/2ivbi3zdfjxyasjbd4hz787kjp5ypsmj-gobject-introspection-1.80.1-dev/bin/g-ir-compiler[0m found: [1;32mYES[0m (/nix/store/2ivbi3zdfjxyasjbd4hz787kjp5ypsmj-gobject-introspection-1.80.1-dev/bin/g-ir-compiler)
Dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums)
Dependency [1mglib-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-mkenums)
Compiler for C supports link arguments -Wl,--version-script,/build/cheese-44.1/libcheese/cheese-gtk.map: [1;32mYES[0m
Program [1mmsginit[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/msginit)
Program [1mmsgmerge[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/msgmerge)
Program [1mxgettext[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/xgettext)
Program [1mitstool[0m found: [1;32mYES[0m (/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/itstool)
Program [1mmsgmerge[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/msgmerge)
Program [1mmsgfmt[0m found: [1;32mYES[0m (/nix/store/p1mg5zzs2bk762pamss9cdshdsr0n19p-gettext-0.21.1/bin/msgfmt)
Configuring [1mversion.xml[0m using configuration
Program [1mgtkdoc-scan[0m found: [1;32mYES[0m (/nix/store/gbi9fwqdsps73zrcjwb8z8hvyk0nb465-gtk-doc-1.34.0/bin/gtkdoc-scan)
Program [1mgtkdoc-scangobj[0m found: [1;32mYES[0m (/nix/store/gbi9fwqdsps73zrcjwb8z8hvyk0nb465-gtk-doc-1.34.0/bin/gtkdoc-scangobj)
Program [1mgtkdoc-mkdb[0m found: [1;32mYES[0m (/nix/store/gbi9fwqdsps73zrcjwb8z8hvyk0nb465-gtk-doc-1.34.0/bin/gtkdoc-mkdb)
Program [1mgtkdoc-mkhtml[0m found: [1;32mYES[0m (/nix/store/gbi9fwqdsps73zrcjwb8z8hvyk0nb465-gtk-doc-1.34.0/bin/gtkdoc-mkhtml)
Program [1mgtkdoc-fixxref[0m found: [1;32mYES[0m (/nix/store/gbi9fwqdsps73zrcjwb8z8hvyk0nb465-gtk-doc-1.34.0/bin/gtkdoc-fixxref)
Program [1mxsltproc[0m found: [1;32mYES[0m (/nix/store/g9aj2skqqhz6frsi5hdhc5pmrwwiip4d-libxslt-1.1.42-bin/bin/xsltproc)
Configuring [1mconfig.h[0m using configuration
Dependency [1mgio-2.0[0m found: [1;32mYES[0m [36m2.80.4[0m [1;34m(cached)[0m
Program [1m/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-schemas[0m found: [1;32mYES[0m (/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/bin/glib-compile-schemas)
Program [1mgtk4-update-icon-cache[0m found: [1;31mNO[0m
Program [1mgtk-update-icon-cache[0m found: [1;32mYES[0m (/nix/store/nzll3s1gzpmqiij4vyanpnpybryx8i0f-gtk+3-3.24.43/bin/gtk-update-icon-cache)
Build targets in project: [1m177[0m
cheese [36m44.1[0m
[1mUser defined options[0m
auto_features: enabled
bindir : /nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/bin
buildtype : plain
includedir : /nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/include
infodir : /nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/share/info
libdir : /nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/lib
libexecdir : /nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/libexec
localedir : /nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/share/locale
mandir : /nix/store/w6f3c03bmclxd2qh511r19bsvvn1wj2l-cheese-44.1-man/share/man
prefix : /nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1
sbindir : /nix/store/i7s3d101y5xclp9r0890pc2n41d8a03m-cheese-44.1/sbin
wrap_mode : nodownload
Found ninja-1.12.1 at /nix/store/m0g218hn4rbq2wj7szzg8a112alq1qvc-ninja-1.12.1/bin/ninja
mesonConfigurePhase: enabled\ parallel\ building
configurePhase completed in 57 seconds
Running phase: buildPhase
@nix { "action": "setPhase", "phase": "buildPhase" }
build flags: -j64
[1/175] Generating data/cheese-resource_c with a custom command
[2/175] Generating data/cheese-resource_h with a custom command
[3/175] Compiling gschemas data/gsettings-compile-data
[4/175] Generating yelp doc help/ca/help-cheese-ca-gmo
[5/175] Generating yelp doc help/cs/help-cheese-cs-gmo
[6/175] Generating yelp doc help/da/help-cheese-da-gmo
[7/175] Generating yelp doc help/de/help-cheese-de-gmo
[8/175] Generating yelp doc help/el/help-cheese-el-gmo
[9/175] Generating yelp doc help/es/help-cheese-es-gmo
[10/175] Generating yelp doc help/eu/help-cheese-eu-gmo
[11/175] Generating yelp doc help/fi/help-cheese-fi-gmo
[12/175] Generating yelp doc help/fr/help-cheese-fr-gmo
[13/175] Generating yelp doc help/gl/help-cheese-gl-gmo
[14/175] Generating yelp doc help/hu/help-cheese-hu-gmo
[15/175] Generating yelp doc help/id/help-cheese-id-gmo
[16/175] Generating yelp doc help/ko/help-cheese-ko-gmo
[17/175] Generating yelp doc help/nl/help-cheese-nl-gmo
[18/175] Generating yelp doc help/pl/help-cheese-pl-gmo
[19/175] Generating yelp doc help/pt_BR/help-cheese-pt_BR-gmo
[20/175] Generating yelp doc help/ru/help-cheese-ru-gmo
[21/175] Generating yelp doc help/sl/help-cheese-sl-gmo
[22/175] Generating yelp doc help/sv/help-cheese-sv-gmo
[23/175] Generating yelp doc help/tr/help-cheese-tr-gmo
[24/175] Generating yelp doc help/uk/help-cheese-uk-gmo
[25/175] Generating yelp doc help/zh_CN/help-cheese-zh_CN-gmo
[26/175] Building translation po/ab/LC_MESSAGES/cheese-ab.mo
[27/175] Building translation po/af/LC_MESSAGES/cheese-af.mo
[28/175] Building translation po/an/LC_MESSAGES/cheese-an.mo
[29/175] Building translation po/ar/LC_MESSAGES/cheese-ar.mo
[30/175] Building translation po/as/LC_MESSAGES/cheese-as.mo
[31/175] Building translation po/ast/LC_MESSAGES/cheese-ast.mo
[32/175] Building translation po/be/LC_MESSAGES/cheese-be.mo
[33/175] Building translation po/be@latin/LC_MESSAGES/cheese-be@latin.mo
[34/175] Building translation po/bg/LC_MESSAGES/cheese-bg.mo
[35/175] Building translation po/bn/LC_MESSAGES/cheese-bn.mo
[36/175] Building translation po/bn_IN/LC_MESSAGES/cheese-bn_IN.mo
[37/175] Building translation po/bs/LC_MESSAGES/cheese-bs.mo
[38/175] Building translation po/ca/LC_MESSAGES/cheese-ca.mo
[39/175] Building translation po/ca@valencia/LC_MESSAGES/cheese-ca@valencia.mo
[40/175] Building translation po/ckb/LC_MESSAGES/cheese-ckb.mo
[41/175] Building translation po/cs/LC_MESSAGES/cheese-cs.mo
[42/175] Building translation po/da/LC_MESSAGES/cheese-da.mo
[43/175] Building translation po/de/LC_MESSAGES/cheese-de.mo
[44/175] Building translation po/dz/LC_MESSAGES/cheese-dz.mo
[45/175] Building translation po/el/LC_MESSAGES/cheese-el.mo
[46/175] Building translation po/en_GB/LC_MESSAGES/cheese-en_GB.mo
[47/175] Building translation po/en@shaw/LC_MESSAGES/cheese-en@shaw.mo
[48/175] Building translation po/eo/LC_MESSAGES/cheese-eo.mo
[49/175] Building translation po/es/LC_MESSAGES/cheese-es.mo
[50/175] Building translation po/et/LC_MESSAGES/cheese-et.mo
[51/175] Building translation po/eu/LC_MESSAGES/cheese-eu.mo
[52/175] Building translation po/fa/LC_MESSAGES/cheese-fa.mo
[53/175] Generating GObject enum file libcheese/cheese-enums.c (wrapped by meson because command contains newlines, to capture output)
[54/175] Generating GObject enum file libcheese/cheese-enums.h (wrapped by meson because command contains newlines, to capture output)
[55/175] Building translation po/fi/LC_MESSAGES/cheese-fi.mo
[56/175] Building translation po/fr/LC_MESSAGES/cheese-fr.mo
[57/175] Building translation po/fur/LC_MESSAGES/cheese-fur.mo
[58/175] Building translation po/ga/LC_MESSAGES/cheese-ga.mo
[59/175] Building translation po/gl/LC_MESSAGES/cheese-gl.mo
[60/175] Building translation po/gu/LC_MESSAGES/cheese-gu.mo
[61/175] Building translation po/he/LC_MESSAGES/cheese-he.mo
[62/175] Building translation po/hi/LC_MESSAGES/cheese-hi.mo
[63/175] Building translation po/hr/LC_MESSAGES/cheese-hr.mo
[64/175] Building translation po/hu/LC_MESSAGES/cheese-hu.mo
[65/175] Building translation po/id/LC_MESSAGES/cheese-id.mo
[66/175] Building translation po/ie/LC_MESSAGES/cheese-ie.mo
[67/175] Building translation po/is/LC_MESSAGES/cheese-is.mo
[68/175] Building translation po/it/LC_MESSAGES/cheese-it.mo
[69/175] Building translation po/ja/LC_MESSAGES/cheese-ja.mo
[70/175] Building translation po/ka/LC_MESSAGES/cheese-ka.mo
[71/175] Building translation po/kk/LC_MESSAGES/cheese-kk.mo
[72/175] Building translation po/km/LC_MESSAGES/cheese-km.mo
[73/175] Building translation po/kn/LC_MESSAGES/cheese-kn.mo
[74/175] Building translation po/ko/LC_MESSAGES/cheese-ko.mo
[75/175] Building translation po/ku/LC_MESSAGES/cheese-ku.mo
[76/175] Building translation po/ky/LC_MESSAGES/cheese-ky.mo
[77/175] Building translation po/lo/LC_MESSAGES/cheese-lo.mo
[78/175] Building translation po/lt/LC_MESSAGES/cheese-lt.mo
[79/175] Building translation po/lv/LC_MESSAGES/cheese-lv.mo
[80/175] Building translation po/mai/LC_MESSAGES/cheese-mai.mo
[81/175] Building translation po/mjw/LC_MESSAGES/cheese-mjw.mo
[82/175] Building translation po/mk/LC_MESSAGES/cheese-mk.mo
[83/175] Building translation po/ml/LC_MESSAGES/cheese-ml.mo
[84/175] Building translation po/mr/LC_MESSAGES/cheese-mr.mo
[85/175] Building translation po/ms/LC_MESSAGES/cheese-ms.mo
[86/175] Building translation po/nb/LC_MESSAGES/cheese-nb.mo
[87/175] Building translation po/nds/LC_MESSAGES/cheese-nds.mo
[88/175] Building translation po/ne/LC_MESSAGES/cheese-ne.mo
[89/175] Building translation po/nl/LC_MESSAGES/cheese-nl.mo
[90/175] Building translation po/nn/LC_MESSAGES/cheese-nn.mo
[91/175] Building translation po/oc/LC_MESSAGES/cheese-oc.mo
[92/175] Building translation po/or/LC_MESSAGES/cheese-or.mo
[93/175] Building translation po/pa/LC_MESSAGES/cheese-pa.mo
[94/175] Building translation po/pl/LC_MESSAGES/cheese-pl.mo
[95/175] Building translation po/ps/LC_MESSAGES/cheese-ps.mo
[96/175] Building translation po/pt/LC_MESSAGES/cheese-pt.mo
[97/175] Building translation po/pt_BR/LC_MESSAGES/cheese-pt_BR.mo
[98/175] Building translation po/ro/LC_MESSAGES/cheese-ro.mo
[99/175] Building translation po/ru/LC_MESSAGES/cheese-ru.mo
[100/175] Building translation po/sk/LC_MESSAGES/cheese-sk.mo
[101/175] Building translation po/sl/LC_MESSAGES/cheese-sl.mo
[102/175] Building translation po/sq/LC_MESSAGES/cheese-sq.mo
[103/175] Building translation po/sr/LC_MESSAGES/cheese-sr.mo
[104/175] Building translation po/sr@latin/LC_MESSAGES/cheese-sr@latin.mo
[105/175] Compiling C object libcheese/libcheese.so.8.0.19.p/cheese-camera-device.c.o
[106/175] Compiling C object libcheese/libcheese.so.8.0.19.p/cheese-effect.c.o
[107/175] Compiling C object libcheese/libcheese.so.8.0.19.p/cheese-fileutil.c.o
[108/175] Building translation po/sv/LC_MESSAGES/cheese-sv.mo
[109/175] Building translation po/ta/LC_MESSAGES/cheese-ta.mo
[110/175] Building translation po/te/LC_MESSAGES/cheese-te.mo
[111/175] Building translation po/tg/LC_MESSAGES/cheese-tg.mo
[112/175] Building translation po/th/LC_MESSAGES/cheese-th.mo
[113/175] Building translation po/tr/LC_MESSAGES/cheese-tr.mo
[114/175] Building translation po/ug/LC_MESSAGES/cheese-ug.mo
[115/175] Building translation po/uk/LC_MESSAGES/cheese-uk.mo
[116/175] Building translation po/vi/LC_MESSAGES/cheese-vi.mo
[117/175] Building translation po/xh/LC_MESSAGES/cheese-xh.mo
[118/175] Building translation po/zh_CN/LC_MESSAGES/cheese-zh_CN.mo
[119/175] Building translation po/zh_HK/LC_MESSAGES/cheese-zh_HK.mo
[120/175] Building translation po/zh_TW/LC_MESSAGES/cheese-zh_TW.mo
[121/175] Building translation po/zu/LC_MESSAGES/cheese-zu.mo
[122/175] Merging translations for data/org.gnome.Cheese.desktop
[123/175] Compiling C object libcheese/libcheese.so.8.0.19.p/cheese-camera-device-monitor.c.o
[124/175] Merging translations for data/org.gnome.Cheese.appdata.xml
[125/175] Compiling C object libcheese/libcheese.so.8.0.19.p/cheese.c.o
[126/175] Generating yelp doc help/sv/help-cheese-sv
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[127/175] Generating yelp doc help/zh_CN/help-cheese-zh_CN
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[128/175] Generating yelp doc help/ko/help-cheese-ko
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[129/175] Generating yelp doc help/sl/help-cheese-sl
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[130/175] Generating yelp doc help/da/help-cheese-da
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[131/175] Generating yelp doc help/es/help-cheese-es
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[132/175] Generating yelp doc help/nl/help-cheese-nl
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[133/175] Generating yelp doc help/hu/help-cheese-hu
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[134/175] Generating yelp doc help/gl/help-cheese-gl
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[135/175] Generating yelp doc help/ca/help-cheese-ca
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[136/175] Generating yelp doc help/pl/help-cheese-pl
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[137/175] Generating yelp doc help/el/help-cheese-el
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[138/175] Compiling C object src/cheese.p/meson-generated_.._.._data_cheese-resource.c.o
[139/175] Generating yelp doc help/id/help-cheese-id
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[140/175] Generating yelp doc help/de/help-cheese-de
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[141/175] Generating docs/reference/cheese.1 with a custom command
Note: Writing cheese.1
[142/175] Generating yelp doc help/cs/help-cheese-cs
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[143/175] Compiling C object src/cheese.p/thumbview_cheese-thumbnail.c.o
[144/175] Generating yelp doc help/eu/help-cheese-eu
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[145/175] Generating yelp doc help/ru/help-cheese-ru
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[146/175] Generating yelp doc help/tr/help-cheese-tr
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[147/175] Compiling C object libcheese/libcheese-gtk.so.25.1.7.p/cheese-flash.c.o
../libcheese/cheese-flash.c: In function 'cheese_flash_init':
../libcheese/cheese-flash.c:101:3: warning: 'gtk_widget_override_background_color' is deprecated [-Wdeprecated-declarations]
101 | gtk_widget_override_background_color (GTK_WIDGET (window), GTK_STATE_NORMAL,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkapplication.h:27,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwindow.h:33,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkdialog.h:32,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:31,
from ../libcheese/cheese-flash.c:22:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwidget.h:1148:14: note: declared here
1148 | void gtk_widget_override_background_color (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/cheese-flash.c: In function 'cheese_flash_set_property':
../libcheese/cheese-flash.c:135:22: warning: assignment to 'GtkWidget *' {aka 'struct _GtkWidget *'} from incompatible pointer type 'GObject *' {aka 'struct _GObject *'} [-Wincompatible-pointer-types]
135 | priv->parent = g_object_ref (parent);
| ^
../libcheese/cheese-flash.c: In function 'cheese_flash_fire':
../libcheese/cheese-flash.c:273:3: warning: 'gdk_screen_get_monitor_at_window' is deprecated: Use 'gdk_display_get_monitor_at_window' instead [-Wdeprecated-declarations]
273 | monitor = gdk_screen_get_monitor_at_window (screen,
| ^~~~~~~
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdkapplaunchcontext.h:31,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdk.h:32,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:30:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdkscreen.h:91:15: note: declared here
91 | gint gdk_screen_get_monitor_at_window (GdkScreen *screen,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/cheese-flash.c:276:3: warning: 'gdk_screen_get_monitor_geometry' is deprecated: Use 'gdk_monitor_get_geometry' instead [-Wdeprecated-declarations]
276 | gdk_screen_get_monitor_geometry (screen, monitor, &rect);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdkscreen.h:78:14: note: declared here
78 | void gdk_screen_get_monitor_geometry (GdkScreen *screen,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/cheese-flash.c:277:3: warning: 'gdk_screen_get_monitor_workarea' is deprecated: Use 'gdk_monitor_get_workarea' instead [-Wdeprecated-declarations]
277 | gdk_screen_get_monitor_workarea (screen, monitor, &work_rect);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdkscreen.h:82:14: note: declared here
82 | void gdk_screen_get_monitor_workarea (GdkScreen *screen,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[148/175] Generating yelp doc help/fr/help-cheese-fr
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[149/175] Generating yelp doc help/pt_BR/help-cheese-pt_BR
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[150/175] Generating yelp doc help/fi/help-cheese-fi
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[151/175] Generating yelp doc help/uk/help-cheese-uk
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:224: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:322: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:460: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:462: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:893: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:928: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/nix/store/nq135hjklkwb28gjyy7k35h1vqk2a0ms-itstool-2.0.7/bin/.itstool-wrapped:1472: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
[152/175] Compiling C object libcheese/libcheese-gtk.so.25.1.7.p/cheese-gtk.c.o
[153/175] Compiling C object libcheese/libcheese-gtk.so.25.1.7.p/meson-generated_.._cheese-enums.c.o
[154/175] Compiling C object libcheese/libcheese-gtk.so.25.1.7.p/totem-aspect-frame.c.o
../libcheese/totem-aspect-frame.c: In function 'totem_aspect_frame_paint':
../libcheese/totem-aspect-frame.c:299:7: warning: 'cogl_clip_push_rectangle' is deprecated: Use 'cogl_framebuffer_push_rectangle_clip' instead [-Wdeprecated-declarations]
299 | cogl_clip_push_rectangle (0.0, 0.0, width, height);
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /nix/store/mc1r9vzpa3f1v632vnnfcdjwip0k05ib-cogl-1.22.8-dev/include/cogl/cogl/cogl.h:83,
from /nix/store/ppfjvjjh6z5rb193wm19bxg9gqbx4zvr-clutter-1.26.4-dev/include/clutter-1.0/clutter/clutter-types.h:32,
from /nix/store/ppfjvjjh6z5rb193wm19bxg9gqbx4zvr-clutter-1.26.4-dev/include/clutter-1.0/clutter/clutter.h:32,
from ../libcheese/totem-aspect-frame.h:26,
from ../libcheese/totem-aspect-frame.c:26:
/nix/store/mc1r9vzpa3f1v632vnnfcdjwip0k05ib-cogl-1.22.8-dev/include/cogl/cogl/deprecated/cogl-clip-state.h:126:1: note: declared here
126 | cogl_clip_push_rectangle (float x0,
| ^~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/totem-aspect-frame.c:301:7: warning: 'cogl_clip_pop' is deprecated: Use 'cogl_framebuffer_pop_clip' instead [-Wdeprecated-declarations]
301 | cogl_clip_pop ();
| ^~~~~~~~~~~~~
/nix/store/mc1r9vzpa3f1v632vnnfcdjwip0k05ib-cogl-1.22.8-dev/include/cogl/cogl/deprecated/cogl-clip-state.h:207:1: note: declared here
207 | cogl_clip_pop (void);
| ^~~~~~~~~~~~~
../libcheese/totem-aspect-frame.c: In function 'totem_aspect_frame_pick':
../libcheese/totem-aspect-frame.c:326:7: warning: 'cogl_clip_push_rectangle' is deprecated: Use 'cogl_framebuffer_push_rectangle_clip' instead [-Wdeprecated-declarations]
326 | cogl_clip_push_rectangle (0.0, 0.0, box.x2 - box.x1, box.y2 - box.y1);
| ^~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/mc1r9vzpa3f1v632vnnfcdjwip0k05ib-cogl-1.22.8-dev/include/cogl/cogl/deprecated/cogl-clip-state.h:126:1: note: declared here
126 | cogl_clip_push_rectangle (float x0,
| ^~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/totem-aspect-frame.c:328:7: warning: 'cogl_clip_pop' is deprecated: Use 'cogl_framebuffer_pop_clip' instead [-Wdeprecated-declarations]
328 | cogl_clip_pop ();
| ^~~~~~~~~~~~~
/nix/store/mc1r9vzpa3f1v632vnnfcdjwip0k05ib-cogl-1.22.8-dev/include/cogl/cogl/deprecated/cogl-clip-state.h:207:1: note: declared here
207 | cogl_clip_pop (void);
| ^~~~~~~~~~~~~
[155/175] Compiling C object libcheese/libcheese-gtk.so.25.1.7.p/um-crop-area.c.o
[156/175] Compiling C object src/cheese.p/thumbview_eog-thumb-nav.c.o
../src/thumbview/eog-thumb-nav.c: In function 'eog_thumb_nav_scroll_event':
../src/thumbview/eog-thumb-nav.c:121:3: warning: 'gtk_adjustment_value_changed' is deprecated [-Wdeprecated-declarations]
121 | gtk_adjustment_value_changed (priv->adj);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:38,
from ../src/thumbview/cheese-thumb-view.h:25,
from ../src/thumbview/eog-thumb-nav.h:25,
from ../src/thumbview/eog-thumb-nav.c:26:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkadjustment.h:89:12: note: declared here
89 | void gtk_adjustment_value_changed (GtkAdjustment *adjustment);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c: In function 'eog_thumb_nav_scroll_step':
../src/thumbview/eog-thumb-nav.c:246:5: warning: 'gtk_adjustment_value_changed' is deprecated [-Wdeprecated-declarations]
246 | gtk_adjustment_value_changed (priv->adj);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkadjustment.h:89:12: note: declared here
89 | void gtk_adjustment_value_changed (GtkAdjustment *adjustment);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c:257:5: warning: 'gtk_adjustment_value_changed' is deprecated [-Wdeprecated-declarations]
257 | gtk_adjustment_value_changed (priv->adj);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkadjustment.h:89:12: note: declared here
89 | void gtk_adjustment_value_changed (GtkAdjustment *adjustment);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c: In function 'eog_thumb_nav_init':
../src/thumbview/eog-thumb-nav.c:442:3: warning: 'gtk_arrow_new' is deprecated [-Wdeprecated-declarations]
442 | arrow = gtk_arrow_new (GTK_ARROW_LEFT, GTK_SHADOW_ETCHED_IN);
| ^~~~~
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:251:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/deprecated/gtkarrow.h:73:12: note: declared here
73 | GtkWidget* gtk_arrow_new (GtkArrowType arrow_type,
| ^~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c:508:3: warning: 'gtk_arrow_new' is deprecated [-Wdeprecated-declarations]
508 | arrow = gtk_arrow_new (GTK_ARROW_RIGHT, GTK_SHADOW_NONE);
| ^~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/deprecated/gtkarrow.h:73:12: note: declared here
73 | GtkWidget* gtk_arrow_new (GtkArrowType arrow_type,
| ^~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c:531:3: warning: 'gtk_arrow_new' is deprecated [-Wdeprecated-declarations]
531 | arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE);
| ^~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/deprecated/gtkarrow.h:73:12: note: declared here
73 | GtkWidget* gtk_arrow_new (GtkArrowType arrow_type,
| ^~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c:554:3: warning: 'gtk_arrow_new' is deprecated [-Wdeprecated-declarations]
554 | arrow = gtk_arrow_new (GTK_ARROW_UP, GTK_SHADOW_NONE);
| ^~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/deprecated/gtkarrow.h:73:12: note: declared here
73 | GtkWidget* gtk_arrow_new (GtkArrowType arrow_type,
| ^~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c:582:3: warning: 'gtk_adjustment_value_changed' is deprecated [-Wdeprecated-declarations]
582 | gtk_adjustment_value_changed (priv->hadj);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkadjustment.h:89:12: note: declared here
89 | void gtk_adjustment_value_changed (GtkAdjustment *adjustment);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c: In function 'eog_thumb_nav_set_vertical':
../src/thumbview/eog-thumb-nav.c:721:5: warning: 'gtk_adjustment_value_changed' is deprecated [-Wdeprecated-declarations]
721 | gtk_adjustment_value_changed (priv->vadj);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkadjustment.h:89:12: note: declared here
89 | void gtk_adjustment_value_changed (GtkAdjustment *adjustment);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/thumbview/eog-thumb-nav.c:745:5: warning: 'gtk_adjustment_value_changed' is deprecated [-Wdeprecated-declarations]
745 | gtk_adjustment_value_changed (priv->hadj);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkadjustment.h:89:12: note: declared here
89 | void gtk_adjustment_value_changed (GtkAdjustment *adjustment);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
[157/175] Compiling C object libcheese/libcheese-gtk.so.25.1.7.p/cheese-avatar-chooser.c.o
[158/175] Compiling C object src/cheese.p/thumbview_cheese-thumb-view.c.o
../src/thumbview/cheese-thumb-view.c: In function 'cheese_thumb_view_idle_append_item':
../src/thumbview/cheese-thumb-view.c:112:3: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
112 | GTimeVal mtime;
| ^~~~~~~~
In file included from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/galloca.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib.h:32,
from ../src/thumbview/cheese-thumb-view.c:26:
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
580 | struct _GTimeVal
| ^~~~~~~~~
../src/thumbview/cheese-thumb-view.c:127:3: warning: 'g_file_info_get_modification_time' is deprecated: Use 'g_file_info_get_modification_date_time' instead [-Wdeprecated-declarations]
127 | g_file_info_get_modification_time (info, &mtime);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gio/gio.h:85,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdkapplaunchcontext.h:28,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdk.h:32,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:30,
from ../src/thumbview/cheese-thumb-view.c:27:
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gio/gfileinfo.h:1438:19: note: declared here
1438 | void g_file_info_get_modification_time (GFileInfo *info,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[159/175] Compiling C object libcheese/libcheese-gtk.so.25.1.7.p/cheese-widget.c.o
../libcheese/cheese-widget.c: In function 'cheese_widget_spinner_invert':
../libcheese/cheese-widget.c:173:5: warning: 'gtk_style_context_get_background_color' is deprecated: Use 'gtk_render_background' instead [-Wdeprecated-declarations]
173 | gtk_style_context_get_background_color (context, gtk_style_context_get_state (context), &bg);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkicontheme.h:27,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:127,
from ../libcheese/cheese-widget.h:24,
from ../libcheese/cheese-widget.c:25:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkstylecontext.h:1201:6: note: declared here
1201 | void gtk_style_context_get_background_color (GtkStyleContext *context,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/cheese-widget.c:175:5: warning: 'gtk_widget_override_color' is deprecated [-Wdeprecated-declarations]
175 | gtk_widget_override_color (spinner, i, &bg);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkapplication.h:27,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwindow.h:33,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkdialog.h:32,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:31:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwidget.h:1144:14: note: declared here
1144 | void gtk_widget_override_color (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/cheese-widget.c:176:5: warning: 'gtk_widget_override_background_color' is deprecated [-Wdeprecated-declarations]
176 | gtk_widget_override_background_color (spinner, i, &fg);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwidget.h:1148:14: note: declared here
1148 | void gtk_widget_override_background_color (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/cheese-widget.c:178:5: warning: 'gtk_widget_override_color' is deprecated [-Wdeprecated-declarations]
178 | gtk_widget_override_color (parent, i, &bg);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwidget.h:1144:14: note: declared here
1144 | void gtk_widget_override_color (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/cheese-widget.c:179:5: warning: 'gtk_widget_override_background_color' is deprecated [-Wdeprecated-declarations]
179 | gtk_widget_override_background_color (parent, i, &fg);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwidget.h:1148:14: note: declared here
1148 | void gtk_widget_override_background_color (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[160/175] Compiling C object libcheese/libcheese-gtk.so.25.1.7.p/cheese-avatar-widget.c.o
[161/175] Compiling C object libcheese/libcheese.so.8.0.19.p/cheese-camera.c.o
../libcheese/cheese-camera.c: In function 'cheese_camera_photo_data':
../libcheese/cheese-camera.c:162:3: warning: 'g_memdup' is deprecated: Use 'g_memdup2' instead [-Wdeprecated-declarations]
162 | data = g_memdup (mapinfo.data, mapinfo.size);
| ^~~~
In file included from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstring.h:37,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/giochannel.h:36,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib.h:56,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gbinding.h:30,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib-object.h:24,
from ../libcheese/cheese-camera.c:28:
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gstrfuncs.h:350:23: note: declared here
350 | gpointer g_memdup (gconstpointer mem,
| ^~~~~~~~
../libcheese/cheese-camera.c: In function 'cheese_camera_create_video_filter_bin':
../libcheese/cheese-camera.c:631:3: warning: 'gst_element_get_request_pad' is deprecated: Use 'gst_element_request_pad_simple' instead [-Wdeprecated-declarations]
631 | gst_pad_link (gst_element_get_request_pad (priv->camera_tee, "src_%u"),
| ^~~~~~~~~~~~
In file included from /nix/store/bwr9rs0qwyjqdf03ka8n66yw9aqg0yj6-gstreamer-1.24.3-dev/include/gstreamer-1.0/gst/gstbin.h:27,
from /nix/store/bwr9rs0qwyjqdf03ka8n66yw9aqg0yj6-gstreamer-1.24.3-dev/include/gstreamer-1.0/gst/gst.h:35,
from /nix/store/i3jkbykpyxz3rj4qi16m1hii1ybih99k-clutter-gst-3.0.27-dev/include/clutter-gst-3.0/clutter-gst/clutter-gst-player.h:42,
from /nix/store/i3jkbykpyxz3rj4qi16m1hii1ybih99k-clutter-gst-3.0.27-dev/include/clutter-gst-3.0/clutter-gst/clutter-gst-content.h:30,
from /nix/store/i3jkbykpyxz3rj4qi16m1hii1ybih99k-clutter-gst-3.0.27-dev/include/clutter-gst-3.0/clutter-gst/clutter-gst-aspectratio.h:39,
from /nix/store/i3jkbykpyxz3rj4qi16m1hii1ybih99k-clutter-gst-3.0.27-dev/include/clutter-gst-3.0/clutter-gst/clutter-gst.h:35,
from ../libcheese/cheese-camera.c:32:
/nix/store/bwr9rs0qwyjqdf03ka8n66yw9aqg0yj6-gstreamer-1.24.3-dev/include/gstreamer-1.0/gst/gstelement.h:1042:25: note: declared here
1042 | GstPad* gst_element_get_request_pad (GstElement *element, const gchar *name);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../libcheese/cheese-camera.c: In function 'cheese_camera_set_effect':
../libcheese/cheese-camera.c:971:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
971 | else
| ^~~~
../libcheese/cheese-camera.c:974:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else'
974 | if (effect_filter != NULL)
| ^~
[162/175] Compiling Vala source ../src/vapi/libcanberra-gtk3.vapi ../src/cheese-application.vala ../src/cheese-countdown.vala ../src/cheese-effects-manager.vala ../src/cheese-main.vala ../src/cheese-preferences.vala ../src/cheese-window.vala
../src/cheese-window.vala:220.7-220.18: warning: `Gtk.show_uri' has been deprecated since 3.22
220 | Gtk.show_uri (screen, uri, Gtk.get_current_event_time ());
| ^~~~~~~~~~~~
../src/cheese-window.vala:1132.59-1132.85: warning: `Clutter.BinAlignment.CENTER' is deprecated
1132 | Clutter.BinLayout layout = new Clutter.BinLayout (Clutter.BinAlignment.CENTER,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/cheese-window.vala:1133.59-1133.85: warning: `Clutter.BinAlignment.CENTER' is deprecated
1133 | Clutter.BinAlignment.CENTER);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/cheese-preferences.vala:279.13-279.24: warning: `Gtk.show_uri' has been deprecated since 3.22
279 | Gtk.show_uri (this.get_screen (), "help:cheese/index#preferences",
| ^~~~~~~~~~~~
../src/cheese-application.vala:519.13-519.24: warning: `Gtk.show_uri' has been deprecated since 3.22
519 | Gtk.show_uri (screen, "help:cheese", Gtk.get_current_event_time ());
| ^~~~~~~~~~~~
../src/cheese-effects-manager.vala:98.3-98.31: warning: Method `Cheese.EffectsManager.cmp_value' never used
98 | private static bool cmp_value (Effect a, Effect b)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Compilation succeeded - 6 warning(s)
[163/175] Linking target libcheese/libcheese.so.8.0.19
[164/175] Generating symbol file libcheese/libcheese.so.8.0.19.p/libcheese.so.8.0.19.symbols
[165/175] Compiling C object src/cheese.p/meson-generated_cheese-effects-manager.c.o
src/cheese.p/cheese-effects-manager.c: In function 'cheese_effects_manager_load_effects':
src/cheese.p/cheese-effects-manager.c:209:40: warning: passing argument 2 of 'g_hash_table_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
209 | g_hash_table_foreach (_tmp13_, _cheese_effects_manager_add_effect_gh_func, self);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| void (*)(const void *, const void *, void *)
In file included from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib.h:52,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gbinding.h:30,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib-object.h:24,
from src/cheese.p/cheese-effects-manager.c:25:
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/ghash.h:114:61: note: expected 'GHFunc' {aka 'void (*)(void *, void *, void *)'} but argument is of type 'void (*)(const void *, const void *, void *)'
114 | GHFunc func,
| ~~~~~~~~~~~~~~~~^~~~
In file included from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gthread.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gasyncqueue.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib.h:34:
src/cheese.p/cheese-effects-manager.c: In function 'cheese_effects_manager_get_type':
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gatomic.h:131:5: warning: argument 2 of '__atomic_load' discards 'volatile' qualifier [-Wincompatible-pointer-types]
131 | __atomic_load (gapg_temp_atomic, &gapg_temp_newval, __ATOMIC_SEQ_CST); \
| ^~~~~~~~~~~~~
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gthread.h:272:7: note: in expansion of macro 'g_atomic_pointer_get'
272 | (!g_atomic_pointer_get (location) && \
| ^~~~~~~~~~~~~~~~~~~~
src/cheese.p/cheese-effects-manager.c:468:13: note: in expansion of macro 'g_once_init_enter'
468 | if (g_once_init_enter (&cheese_effects_manager_type_id__once)) {
| ^~~~~~~~~~~~~~~~~
src/cheese.p/cheese-effects-manager.c: At top level:
src/cheese.p/cheese-effects-manager.c:345:1: warning: 'cheese_effects_manager_cmp_value' defined but not used [-Wunused-function]
345 | cheese_effects_manager_cmp_value (CheeseEffect* a,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/cheese.p/cheese-effects-manager.c:65:20: warning: 'cheese_effects_manager_properties' defined but not used [-Wunused-variable]
65 | static GParamSpec* cheese_effects_manager_properties[CHEESE_EFFECTS_MANAGER_NUM_PROPERTIES];
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[166/175] Compiling C object src/cheese.p/meson-generated_cheese-main.c.o
[167/175] Compiling C object src/cheese.p/meson-generated_cheese-countdown.c.o
In file included from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gthread.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gasyncqueue.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/gobject/gbinding.h:30,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib-object.h:24,
from src/cheese.p/cheese-countdown.c:25:
src/cheese.p/cheese-countdown.c: In function 'cheese_countdown_get_type':
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gatomic.h:131:5: warning: argument 2 of '__atomic_load' discards 'volatile' qualifier [-Wincompatible-pointer-types]
131 | __atomic_load (gapg_temp_atomic, &gapg_temp_newval, __ATOMIC_SEQ_CST); \
| ^~~~~~~~~~~~~
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gthread.h:272:7: note: in expansion of macro 'g_atomic_pointer_get'
272 | (!g_atomic_pointer_get (location) && \
| ^~~~~~~~~~~~~~~~~~~~
src/cheese.p/cheese-countdown.c:349:13: note: in expansion of macro 'g_once_init_enter'
349 | if (g_once_init_enter (&cheese_countdown_type_id__once)) {
| ^~~~~~~~~~~~~~~~~
src/cheese.p/cheese-countdown.c: At top level:
src/cheese.p/cheese-countdown.c:65:20: warning: 'cheese_countdown_properties' defined but not used [-Wunused-variable]
65 | static GParamSpec* cheese_countdown_properties[CHEESE_COUNTDOWN_NUM_PROPERTIES];
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
[168/175] Linking target libcheese/libcheese-gtk.so.25.1.7
[169/175] Generating symbol file libcheese/libcheese-gtk.so.25.1.7.p/libcheese-gtk.so.25.1.7.symbols
[170/175] Compiling C object src/cheese.p/meson-generated_cheese-application.c.o
src/cheese.p/cheese-application.c: In function 'cheese_application_real_startup':
src/cheese.p/cheese-application.c:393:14: warning: variable '_arguments_size_' set but not used [-Wunused-but-set-variable]
393 | gint _arguments_size_;
| ^~~~~~~~~~~~~~~~
src/cheese.p/cheese-application.c:390:14: warning: variable '_args_size_' set but not used [-Wunused-but-set-variable]
390 | gint _args_size_;
| ^~~~~~~~~~~
src/cheese.p/cheese-application.c: In function 'cheese_application_common_init':
src/cheese.p/cheese-application.c:493:93: warning: passing argument 3 of 'gtk_application_set_accels_for_action' from incompatible pointer type [-Wincompatible-pointer-types]
493 | gtk_application_set_accels_for_action ((GtkApplication*) self, "app.shoot", _tmp8_);
| ^~~~~~
| |
| gchar ** {aka char **}
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwindow.h:33,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkdialog.h:32,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:31,
from src/cheese.p/cheese-application.c:25:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkapplication.h:156:89: note: expected 'const gchar * const*' {aka 'const char * const*'} but argument is of type 'gchar **' {aka 'char **'}
156 | const gchar * const *accels);
| ~~~~~~~~~~~~~~~~~~~~~~^~~~~~
src/cheese.p/cheese-application.c: In function 'cheese_application_real_handle_local_options':
src/cheese.p/cheese-application.c:596:29: warning: variable 'self' set but not used [-Wunused-but-set-variable]
596 | CheeseApplication * self;
| ^~~~
src/cheese.p/cheese-application.c: In function 'cheese_application_on_help':
src/cheese.p/cheese-application.c:1258:17: warning: 'gtk_show_uri' is deprecated: Use 'gtk_show_uri_on_window' instead [-Wdeprecated-declarations]
1258 | gtk_show_uri (screen, "help:cheese", gtk_get_current_event_time (), &_inner_error0_);
| ^~~~~~~~~~~~
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:200:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkshow.h:33:10: note: declared here
33 | gboolean gtk_show_uri (GdkScreen *screen,
| ^~~~~~~~~~~~
src/cheese.p/cheese-application.c: In function 'cheese_application_on_about':
src/cheese.p/cheese-application.c:1339:14: warning: variable '_documenters_size_' set but not used [-Wunused-but-set-variable]
1339 | gint _documenters_size_;
| ^~~~~~~~~~~~~~~~~~
src/cheese.p/cheese-application.c:1332:14: warning: variable '_authors_size_' set but not used [-Wunused-but-set-variable]
1332 | gint _authors_size_;
| ^~~~~~~~~~~~~~
src/cheese.p/cheese-application.c:1301:14: warning: variable '_artists_size_' set but not used [-Wunused-but-set-variable]
1301 | gint _artists_size_;
| ^~~~~~~~~~~~~~
In file included from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gthread.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gasyncqueue.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib.h:34,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdkconfig.h:8,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gdk/gdk.h:30,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:30:
src/cheese.p/cheese-application.c: In function 'cheese_application_get_type':
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gatomic.h:131:5: warning: argument 2 of '__atomic_load' discards 'volatile' qualifier [-Wincompatible-pointer-types]
131 | __atomic_load (gapg_temp_atomic, &gapg_temp_newval, __ATOMIC_SEQ_CST); \
| ^~~~~~~~~~~~~
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gthread.h:272:7: note: in expansion of macro 'g_atomic_pointer_get'
272 | (!g_atomic_pointer_get (location) && \
| ^~~~~~~~~~~~~~~~~~~~
src/cheese.p/cheese-application.c:1523:13: note: in expansion of macro 'g_once_init_enter'
1523 | if (g_once_init_enter (&cheese_application_type_id__once)) {
| ^~~~~~~~~~~~~~~~~
src/cheese.p/cheese-application.c: At top level:
src/cheese.p/cheese-application.c:85:20: warning: 'cheese_application_properties' defined but not used [-Wunused-variable]
85 | static GParamSpec* cheese_application_properties[CHEESE_APPLICATION_NUM_PROPERTIES];
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[171/175] Compiling C object src/cheese.p/meson-generated_cheese-window.c.o
In file included from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gthread.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gasyncqueue.h:34,
from /nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib.h:34,
from src/cheese.p/cheese-window.c:25:
src/cheese.p/cheese-window.c: In function 'cheese_main_window_delete_response_get_type':
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gatomic.h:131:5: warning: argument 2 of '__atomic_load' discards 'volatile' qualifier [-Wincompatible-pointer-types]
131 | __atomic_load (gapg_temp_atomic, &gapg_temp_newval, __ATOMIC_SEQ_CST); \
| ^~~~~~~~~~~~~
/nix/store/6r6rzv2v3x8mh2ki391gvc9y9954yzlg-glib-2.80.4-dev/include/glib-2.0/glib/gthread.h:272:7: note: in expansion of macro 'g_atomic_pointer_get'
272 | (!g_atomic_pointer_get (location) && \
| ^~~~~~~~~~~~~~~~~~~~
src/cheese.p/cheese-window.c:381:13: note: in expansion of macro 'g_once_init_enter'
381 | if (g_once_init_enter (&cheese_main_window_delete_response_type_id__once)) {
| ^~~~~~~~~~~~~~~~~
src/cheese.p/cheese-window.c: In function 'cheese_main_window_on_file_open':
src/cheese.p/cheese-window.c:673:17: warning: 'gtk_show_uri' is deprecated: Use 'gtk_show_uri_on_window' instead [-Wdeprecated-declarations]
673 | gtk_show_uri (_tmp9_, _tmp10_, gtk_get_current_event_time (), &_inner_error0_);
| ^~~~~~~~~~~~
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:200,
from src/cheese.p/cheese-window.c:26:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkshow.h:33:10: note: declared here
33 | gboolean gtk_show_uri (GdkScreen *screen,
| ^~~~~~~~~~~~
src/cheese.p/cheese-window.c: In function 'cheese_main_window_setup_ui':
src/cheese.p/cheese-window.c:3072:69: warning: passing argument 3 of 'gtk_application_set_accels_for_action' from incompatible pointer type [-Wincompatible-pointer-types]
3072 | gtk_application_set_accels_for_action (_tmp10_, "app.quit", _tmp13_);
| ^~~~~~~
| |
| gchar ** {aka char **}
In file included from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkwindow.h:33,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkdialog.h:32,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
from /nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtk.h:31:
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkapplication.h:156:89: note: expected 'const gchar * const*' {aka 'const char * const*'} but argument is of type 'gchar **' {aka 'char **'}
156 | const gchar * const *accels);
| ~~~~~~~~~~~~~~~~~~~~~~^~~~~~
src/cheese.p/cheese-window.c:3081:75: warning: passing argument 3 of 'gtk_application_set_accels_for_action' from incompatible pointer type [-Wincompatible-pointer-types]
3081 | gtk_application_set_accels_for_action (_tmp15_, "app.fullscreen", _tmp18_);
| ^~~~~~~
| |
| gchar ** {aka char **}
/nix/store/a9af132rd3pz7nzvb7znybgcw1vjwm0r-gtk+3-3.24.43-dev/include/gtk-3.0/gtk/gtkapplication.h:156:89: note: expected 'const gchar * const*' {aka 'const char * const*'} but argument is of type 'gchar **' {aka 'char **'}
156 | const gchar * const *accels);