aboutsummaryrefslogtreecommitdiff
path: root/flatpak/org.onionshare.OnionShare.yaml
blob: 0139d0328ff0788c3894e673286347c0fa8c7745 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
---
app-id: org.onionshare.OnionShare
command: onionshare
runtime: org.kde.Platform
runtime-version: "6.4"
sdk: org.kde.Sdk
sdk-extensions:
  - org.freedesktop.Sdk.Extension.golang
  - org.freedesktop.Sdk.Extension.llvm15
separate-locales: false
finish-args:
  - "--device=dri"
  - "--share=ipc"
  - "--share=network"
  - "--socket=wayland"
  - "--socket=fallback-x11"
  - "--talk-name=org.freedesktop.Notifications"
  - "--talk-name=org.freedesktop.secrets"
  - "--filesystem=~/OnionShare:create"
  - "--filesystem=xdg-config/onionshare:create"
cleanup:
  - "/go"
  - "/bin/scripts"
modules:
  - name: pyside6
    buildsystem: simple
    build-commands: []
    modules:
      - name: pyside6-essentials
        only-arches:
          - x86_64
        buildsystem: simple
        build-commands:
          - pip3 install --verbose --exists-action=i --no-index --find-links="file://${PWD}"
            --prefix=${FLATPAK_DEST} "pyside6-essentials" --no-build-isolation
        sources:
          - type: file
            url: https://files.pythonhosted.org/packages/d0/de/9a089e91c2e0fe4f122218bba4f9dbde46338659f412739bd9db1ed9df4f/PySide6_Essentials-6.5.2-cp37-abi3-manylinux_2_28_x86_64.whl
            sha256: 1620e82b38714a1570b142c01694d0415a25526517b24620ff9b00c9f76cfca9
        modules:
          - name: shiboken6
            buildsystem: simple
            build-commands:
              - pip3 install --verbose --exists-action=i --no-index --find-links="file://${PWD}"
                --prefix=${FLATPAK_DEST} "shiboken6" --no-build-isolation
            sources:
              - type: file
                url: https://files.pythonhosted.org/packages/55/44/d8c366dd4f069166ab9890acb44d004c5e6122714e44c169273dcbbca897/shiboken6-6.5.2-cp37-abi3-manylinux_2_28_x86_64.whl
                sha256: 3fbc35ff3c19e7d39433671bfc1be3d7fa9d071bfdd0ffe1c2a4d27acd6cf6a5
  - name: tor
    buildsystem: autotools
    sources:
      - type: archive
        sha256: 6957cfd14a29eee7555c52f8387a46f2ce2f5fe7dadf93547f1bc74b1657e119
        url: https://dist.torproject.org/tor-0.4.8.5.tar.gz
    modules:
      - name: libevent
        buildsystem: autotools
        sources:
          - type: archive
            url: https://github.com/libevent/libevent/releases/download/release-2.1.12-stable/libevent-2.1.12-stable.tar.gz
            sha256: 92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb
  - name: obfs4proxy
    build-commands:
      - . /usr/lib/sdk/golang/enable.sh; export GOPATH=$PWD; export GO111MODULE=off; go
        install gitlab.com/yawning/obfs4.git/obfs4.git
    build-options:
      env:
        GOBIN: /app/bin/
    buildsystem: simple
    sources:
      - dest: src/filippo/io/edwards25519
        tag: v1.0.0-rc.1.0.20210721174708-390f27c3be20
        type: git
        url: https://filippo.io/edwards25519.git
      - dest: src/git/torproject/org/pluggable-transports/goptlib/git
        tag: v1.0.0
        type: git
        url: https://git.torproject.org/pluggable-transports/goptlib.git.git
      - dest: src/github/com/dchest/siphash
        tag: v1.2.1
        type: git
        url: https://github.com/dchest/siphash.git
      - dest: src/gitlab/com/yawning/edwards25519-extra/git
        tag: v0.0.0-20211229043746-2f91fcc9fbdb
        type: git
        url: https://gitlab.com/yawning/edwards25519-extra.git.git
      - dest: src/golang/org/x/crypto
        tag: v0.0.0-20210711020723-a769d52b0f97
        type: git
        url: https://golang.org/x/crypto.git
      - dest: src/golang/org/x/net
        tag: v0.0.0-20210226172049-e18ecbb05110
        type: git
        url: https://golang.org/x/net.git
      - dest: src/golang/org/x/sys
        tag: v0.0.0-20210615035016-665e8c7367d1
        type: git
        url: https://golang.org/x/sys.git
      - dest: src/golang/org/x/term
        tag: v0.0.0-20201126162022-7de9c90e9dd1
        type: git
        url: https://golang.org/x/term.git
      - dest: src/golang/org/x/text
        tag: v0.3.3
        type: git
        url: https://golang.org/x/text.git
      - dest: src/golang/org/x/tools
        tag: v0.0.0-20180917221912-90fa682c2a6e
        type: git
        url: https://golang.org/x/tools.git
  - name: meek-client
    build-commands:
      - . /usr/lib/sdk/golang/enable.sh; export GOPATH=$PWD; export GO111MODULE=off; go
        install git.torproject.org/pluggable-transports/meek.git/meek.git
    build-options:
      env:
        GOBIN: /app/bin/
    buildsystem: simple
    sources:
      - dest: src/git/torproject/org/pluggable-transports/goptlib/git
        tag: v1.1.0
        type: git
        url: https://git.torproject.org/pluggable-transports/goptlib.git.git
      - dest: src/github/com/andybalholm/brotli
        tag: v1.0.4
        type: git
        url: https://github.com/andybalholm/brotli.git
      - dest: src/github/com/klauspost/compress
        tag: v1.15.9
        type: git
        url: https://github.com/klauspost/compress.git
      - dest: src/github/com/refraction-networking/utls
        tag: v1.1.5
        type: git
        url: https://github.com/refraction-networking/utls.git
      - dest: src/golang/org/x/crypto
        tag: v0.0.0-20220829220503-c86fa9a7ed90
        type: git
        url: https://golang.org/x/crypto.git
      - dest: src/golang/org/x/net
        tag: v0.0.0-20220909164309-bea034e7d591
        type: git
        url: https://golang.org/x/net.git
      - dest: src/golang/org/x/sys
        tag: v0.0.0-20220728004956-3c1f35247d10
        type: git
        url: https://golang.org/x/sys.git
      - dest: src/golang/org/x/term
        tag: v0.0.0-20210927222741-03fcf44c2211
        type: git
        url: https://golang.org/x/term.git
      - dest: src/golang/org/x/text
        tag: v0.3.7
        type: git
        url: https://golang.org/x/text.git
      - dest: src/golang/org/x/tools
        tag: v0.0.0-20180917221912-90fa682c2a6e
        type: git
        url: https://golang.org/x/tools.git
  - name: snowflake-client
    build-commands:
      - . /usr/lib/sdk/golang/enable.sh; export GOPATH=$PWD; export GO111MODULE=off; go
        install git.torproject.org/pluggable-transports/snowflake.git/snowflake.git
      - mv /app/bin/client /app/bin/snowflake-client
    build-options:
      env:
        GOBIN: /app/bin/
    buildsystem: simple
    sources:
      - dest: src/cloud/google/com/go
        tag: v0.34.0
        type: git
        url: https://cloud.google.com/go.git
      - dest: src/github/com/BurntSushi/toml
        tag: v0.3.1
        type: git
        url: https://github.com/BurntSushi/toml.git
      - dest: src/github/com/Knetic/govaluate
        tag: v3.0.1-0.20171022003610-9aa49832a739+incompatible
        type: git
        url: https://github.com/Knetic/govaluate.git
      - dest: src/github/com/Shopify/sarama
        tag: v1.19.0
        type: git
        url: https://github.com/Shopify/sarama.git
      - dest: src/github/com/Shopify/toxiproxy
        tag: v2.1.4+incompatible
        type: git
        url: https://github.com/Shopify/toxiproxy.git
      - dest: src/github/com/VividCortex/gohistogram
        tag: v1.0.0
        type: git
        url: https://github.com/VividCortex/gohistogram.git
      - dest: src/github/com/afex/hystrix-go
        tag: v0.0.0-20180502004556-fa1af6a1f4f5
        type: git
        url: https://github.com/afex/hystrix-go.git
      - dest: src/github/com/alecthomas/template
        tag: v0.0.0-20190718012654-fb15b899a751
        type: git
        url: https://github.com/alecthomas/template.git
      - dest: src/github/com/alecthomas/units
        tag: v0.0.0-20190924025748-f65c72e2690d
        type: git
        url: https://github.com/alecthomas/units.git
      - dest: src/github/com/apache/thrift
        tag: v0.13.0
        type: git
        url: https://github.com/apache/thrift.git
      - dest: src/github/com/armon/circbuf
        tag: v0.0.0-20150827004946-bbbad097214e
        type: git
        url: https://github.com/armon/circbuf.git
      - dest: src/github/com/armon/go-metrics
        tag: v0.0.0-20180917152333-f0300d1749da
        type: git
        url: https://github.com/armon/go-metrics.git
      - dest: src/github/com/armon/go-radix
        tag: v0.0.0-20180808171621-7fddfc383310
        type: git
        url: https://github.com/armon/go-radix.git
      - dest: src/github/com/aryann/difflib
        tag: v0.0.0-20170710044230-e206f873d14a
        type: git
        url: https://github.com/aryann/difflib.git
      - dest: src/github/com/aws/aws-lambda-go
        tag: v1.13.3
        type: git
        url: https://github.com/aws/aws-lambda-go.git
      - dest: src/github/com/aws/aws-sdk-go
        tag: v1.27.0
        type: git
        url: https://github.com/aws/aws-sdk-go.git
      - dest: src/github/com/aws/aws-sdk-go-v2
        tag: v0.18.0
        type: git
        url: https://github.com/aws/aws-sdk-go-v2.git
      - dest: src/github/com/beorn7/perks
        tag: v1.0.1
        type: git
        url: https://github.com/beorn7/perks.git
      - dest: src/github/com/bgentry/speakeasy
        tag: v0.1.0
        type: git
        url: https://github.com/bgentry/speakeasy.git
      - dest: src/github/com/casbin/casbin/v2
        tag: v2.1.2
        type: git
        url: https://github.com/casbin/casbin/v2.git
      - dest: src/github/com/cenkalti/backoff
        tag: v2.2.1+incompatible
        type: git
        url: https://github.com/cenkalti/backoff.git
      - dest: src/github/com/census-instrumentation/opencensus-proto
        tag: v0.2.1
        type: git
        url: https://github.com/census-instrumentation/opencensus-proto.git
      - dest: src/github/com/cespare/xxhash/v2
        tag: v2.1.1
        type: git
        url: https://github.com/cespare/xxhash/v2.git
      - dest: src/github/com/clarkduvall/hyperloglog
        tag: v0.0.0-20171127014514-a0107a5d8004
        type: git
        url: https://github.com/clarkduvall/hyperloglog.git
      - dest: src/github/com/clbanning/x2j
        tag: v0.0.0-20191024224557-825249438eec
        type: git
        url: https://github.com/clbanning/x2j.git
      - dest: src/github/com/client9/misspell
        tag: v0.3.4
        type: git
        url: https://github.com/client9/misspell.git
      - dest: src/github/com/cockroachdb/datadriven
        tag: v0.0.0-20190809214429-80d97fb3cbaa
        type: git
        url: https://github.com/cockroachdb/datadriven.git
      - dest: src/github/com/codahale/hdrhistogram
        tag: v0.0.0-20161010025455-3a0bb77429bd
        type: git
        url: https://github.com/codahale/hdrhistogram.git
      - dest: src/github/com/coreos/go-semver
        tag: v0.2.0
        type: git
        url: https://github.com/coreos/go-semver.git
      - dest: src/github/com/coreos/go-systemd
        tag: v0.0.0-20180511133405-39ca1b05acc7
        type: git
        url: https://github.com/coreos/go-systemd.git
      - dest: src/github/com/coreos/pkg
        tag: v0.0.0-20160727233714-3ac0863d7acf
        type: git
        url: https://github.com/coreos/pkg.git
      - dest: src/github/com/cpuguy83/go-md2man/v2
        tag: v2.0.0-20190314233015-f79a8a8ca69d
        type: git
        url: https://github.com/cpuguy83/go-md2man/v2.git
      - dest: src/github/com/creack/pty
        tag: v1.1.7
        type: git
        url: https://github.com/creack/pty.git
      - dest: src/github/com/davecgh/go-spew
        tag: v1.1.1
        type: git
        url: https://github.com/davecgh/go-spew.git
      - dest: src/github/com/dgrijalva/jwt-go
        tag: v3.2.0+incompatible
        type: git
        url: https://github.com/dgrijalva/jwt-go.git
      - dest: src/github/com/dustin/go-humanize
        tag: v0.0.0-20171111073723-bb3d318650d4
        type: git
        url: https://github.com/dustin/go-humanize.git
      - dest: src/github/com/eapache/go-resiliency
        tag: v1.1.0
        type: git
        url: https://github.com/eapache/go-resiliency.git
      - dest: src/github/com/eapache/go-xerial-snappy
        tag: v0.0.0-20180814174437-776d5712da21
        type: git
        url: https://github.com/eapache/go-xerial-snappy.git
      - dest: src/github/com/eapache/queue
        tag: v1.1.0
        type: git
        url: https://github.com/eapache/queue.git
      - dest: src/github/com/edsrzf/mmap-go
        tag: v1.0.0
        type: git
        url: https://github.com/edsrzf/mmap-go.git
      - dest: src/github/com/envoyproxy/go-control-plane
        tag: v0.9.1-0.20191026205805-5f8ba28d4473
        type: git
        url: https://github.com/envoyproxy/go-control-plane.git
      - dest: src/github/com/envoyproxy/protoc-gen-validate
        tag: v0.1.0
        type: git
        url: https://github.com/envoyproxy/protoc-gen-validate.git
      - dest: src/github/com/fatih/color
        tag: v1.7.0
        type: git
        url: https://github.com/fatih/color.git
      - dest: src/github/com/franela/goblin
        tag: v0.0.0-20200105215937-c9ffbefa60db
        type: git
        url: https://github.com/franela/goblin.git
      - dest: src/github/com/franela/goreq
        tag: v0.0.0-20171204163338-bcd34c9993f8
        type: git
        url: https://github.com/franela/goreq.git
      - dest: src/github/com/fsnotify/fsnotify
        tag: v1.4.9
        type: git
        url: https://github.com/fsnotify/fsnotify.git
      - dest: src/github/com/ghodss/yaml
        tag: v1.0.0
        type: git
        url: https://github.com/ghodss/yaml.git
      - dest: src/github/com/go-kit/kit
        tag: v0.10.0
        type: git
        url: https://github.com/go-kit/kit.git
      - dest: src/github/com/go-logfmt/logfmt
        tag: v0.5.0
        type: git
        url: https://github.com/go-logfmt/logfmt.git
      - dest: src/github/com/go-sql-driver/mysql
        tag: v1.4.0
        type: git
        url: https://github.com/go-sql-driver/mysql.git
      - dest: src/github/com/go-stack/stack
        tag: v1.8.0
        type: git
        url: https://github.com/go-stack/stack.git
      - dest: src/github/com/go-task/slim-sprig
        tag: v0.0.0-20210107165309-348f09dbbbc0
        type: git
        url: https://github.com/go-task/slim-sprig.git
      - dest: src/github/com/gogo/googleapis
        tag: v1.1.0
        type: git
        url: https://github.com/gogo/googleapis.git
      - dest: src/github/com/gogo/protobuf
        tag: v1.2.1
        type: git
        url: https://github.com/gogo/protobuf.git
      - dest: src/github/com/golang/glog
        tag: v0.0.0-20160126235308-23def4e6c14b
        type: git
        url: https://github.com/golang/glog.git
      - dest: src/github/com/golang/groupcache
        tag: v0.0.0-20190702054246-869f871628b6
        type: git
        url: https://github.com/golang/groupcache.git
      - dest: src/github/com/golang/mock
        tag: v1.1.1
        type: git
        url: https://github.com/golang/mock.git
      - dest: src/github/com/golang/protobuf
        tag: v1.5.2
        type: git
        url: https://github.com/golang/protobuf.git
      - dest: src/github/com/golang/snappy
        tag: v0.0.0-20180518054509-2e65f85255db
        type: git
        url: https://github.com/golang/snappy.git
      - dest: src/github/com/google/btree
        tag: v1.0.0
        type: git
        url: https://github.com/google/btree.git
      - dest: src/github/com/google/go-cmp
        tag: v0.5.5
        type: git
        url: https://github.com/google/go-cmp.git
      - dest: src/github/com/google/gofuzz
        tag: v1.0.0
        type: git
        url: https://github.com/google/gofuzz.git
      - dest: src/github/com/google/renameio
        tag: v0.1.0
        type: git
        url: https://github.com/google/renameio.git
      - dest: src/github/com/google/uuid
        tag: v1.3.0
        type: git
        url: https://github.com/google/uuid.git
      - dest: src/github/com/gopherjs/gopherjs
        tag: v0.0.0-20181017120253-0766667cb4d1
        type: git
        url: https://github.com/gopherjs/gopherjs.git
      - dest: src/github/com/gorilla/context
        tag: v1.1.1
        type: git
        url: https://github.com/gorilla/context.git
      - dest: src/github/com/gorilla/mux
        tag: v1.7.3
        type: git
        url: https://github.com/gorilla/mux.git
      - dest: src/github/com/gorilla/websocket
        tag: v1.5.0
        type: git
        url: https://github.com/gorilla/websocket.git
      - dest: src/github/com/grpc-ecosystem/go-grpc-middleware
        tag: v1.0.1-0.20190118093823-f849b5445de4
        type: git
        url: https://github.com/grpc-ecosystem/go-grpc-middleware.git
      - dest: src/github/com/grpc-ecosystem/go-grpc-prometheus
        tag: v1.2.0
        type: git
        url: https://github.com/grpc-ecosystem/go-grpc-prometheus.git
      - dest: src/github/com/grpc-ecosystem/grpc-gateway
        tag: v1.9.5
        type: git
        url: https://github.com/grpc-ecosystem/grpc-gateway.git
      - dest: src/github/com/hashicorp/consul/api
        tag: v1.3.0
        type: git
        url: https://github.com/hashicorp/consul/api.git
      - dest: src/github/com/hashicorp/consul/sdk
        tag: v0.3.0
        type: git
        url: https://github.com/hashicorp/consul/sdk.git
      - dest: src/github/com/hashicorp/errwrap
        tag: v1.0.0
        type: git
        url: https://github.com/hashicorp/errwrap.git
      - dest: src/github/com/hashicorp/go-cleanhttp
        tag: v0.5.1
        type: git
        url: https://github.com/hashicorp/go-cleanhttp.git
      - dest: src/github/com/hashicorp/go-immutable-radix
        tag: v1.0.0
        type: git
        url: https://github.com/hashicorp/go-immutable-radix.git
      - dest: src/github/com/hashicorp/go-msgpack
        tag: v0.5.3
        type: git
        url: https://github.com/hashicorp/go-msgpack.git
      - dest: src/github/com/hashicorp/go-multierror
        tag: v1.0.0
        type: git
        url: https://github.com/hashicorp/go-multierror.git
      - dest: src/github/com/hashicorp/go-rootcerts
        tag: v1.0.0
        type: git
        url: https://github.com/hashicorp/go-rootcerts.git
      - dest: src/github/com/hashicorp/go-sockaddr
        tag: v1.0.0
        type: git
        url: https://github.com/hashicorp/go-sockaddr.git
      - dest: src/github/com/hashicorp/go-syslog
        tag: v1.0.0
        type: git
        url: https://github.com/hashicorp/go-syslog.git
      - dest: src/github/com/hashicorp/go-uuid
        tag: v1.0.1
        type: git
        url: https://github.com/hashicorp/go-uuid.git
      - dest: src/github/com/hashicorp/go-version
        tag: v1.2.0
        type: git
        url: https://github.com/hashicorp/go-version.git
      - dest: src/github/com/hashicorp/go/net
        tag: v0.0.1
        type: git
        url: https://github.com/hashicorp/go.net.git
      - dest: src/github/com/hashicorp/golang-lru
        tag: v0.5.1
        type: git
        url: https://github.com/hashicorp/golang-lru.git
      - dest: src/github/com/hashicorp/logutils
        tag: v1.0.0
        type: git
        url: https://github.com/hashicorp/logutils.git
      - dest: src/github/com/hashicorp/mdns
        tag: v1.0.0
        type: git
        url: https://github.com/hashicorp/mdns.git
      - dest: src/github/com/hashicorp/memberlist
        tag: v0.1.3
        type: git
        url: https://github.com/hashicorp/memberlist.git
      - dest: src/github/com/hashicorp/serf
        tag: v0.8.2
        type: git
        url: https://github.com/hashicorp/serf.git
      - dest: src/github/com/hpcloud/tail
        tag: v1.0.0
        type: git
        url: https://github.com/hpcloud/tail.git
      - dest: src/github/com/hudl/fargo
        tag: v1.3.0
        type: git
        url: https://github.com/hudl/fargo.git
      - dest: src/github/com/inconshreveable/mousetrap
        tag: v1.0.0
        type: git
        url: https://github.com/inconshreveable/mousetrap.git
      - dest: src/github/com/influxdata/influxdb1-client
        tag: v0.0.0-20191209144304-8bf82d3c094d
        type: git
        url: https://github.com/influxdata/influxdb1-client.git
      - dest: src/github/com/jmespath/go-jmespath
        tag: v0.0.0-20180206201540-c2b33e8439af
        type: git
        url: https://github.com/jmespath/go-jmespath.git
      - dest: src/github/com/jonboulle/clockwork
        tag: v0.1.0
        type: git
        url: https://github.com/jonboulle/clockwork.git
      - dest: src/github/com/jpillora/backoff
        tag: v1.0.0
        type: git
        url: https://github.com/jpillora/backoff.git
      - dest: src/github/com/json-iterator/go
        tag: v1.1.10
        type: git
        url: https://github.com/json-iterator/go.git
      - dest: src/github/com/jtolds/gls
        tag: v4.20.0+incompatible
        type: git
        url: https://github.com/jtolds/gls.git
      - dest: src/github/com/julienschmidt/httprouter
        tag: v1.3.0
        type: git
        url: https://github.com/julienschmidt/httprouter.git
      - dest: src/github/com/kisielk/errcheck
        tag: v1.1.0
        type: git
        url: https://github.com/kisielk/errcheck.git
      - dest: src/github/com/kisielk/gotool
        tag: v1.0.0
        type: git
        url: https://github.com/kisielk/gotool.git
      - dest: src/github/com/klauspost/cpuid
        tag: v1.3.1
        type: git
        url: https://github.com/klauspost/cpuid.git
      - dest: src/github/com/klauspost/reedsolomon
        tag: v1.9.9
        type: git
        url: https://github.com/klauspost/reedsolomon.git
      - dest: src/github/com/konsorten/go-windows-terminal-sequences
        tag: v1.0.3
        type: git
        url: https://github.com/konsorten/go-windows-terminal-sequences.git
      - dest: src/github/com/kr/logfmt
        tag: v0.0.0-20140226030751-b84e30acd515
        type: git
        url: https://github.com/kr/logfmt.git
      - dest: src/github/com/kr/pretty
        tag: v0.1.0
        type: git
        url: https://github.com/kr/pretty.git
      - dest: src/github/com/kr/pty
        tag: v1.1.1
        type: git
        url: https://github.com/kr/pty.git
      - dest: src/github/com/kr/text
        tag: v0.1.0
        type: git
        url: https://github.com/kr/text.git
      - dest: src/github/com/lightstep/lightstep-tracer-common/golang/gogo
        tag: v0.0.0-20190605223551-bc2310a04743
        type: git
        url: https://github.com/lightstep/lightstep-tracer-common/golang/gogo.git
      - dest: src/github/com/lightstep/lightstep-tracer-go
        tag: v0.18.1
        type: git
        url: https://github.com/lightstep/lightstep-tracer-go.git
      - dest: src/github/com/lyft/protoc-gen-validate
        tag: v0.0.13
        type: git
        url: https://github.com/lyft/protoc-gen-validate.git
      - dest: src/github/com/mattn/go-colorable
        tag: v0.0.9
        type: git
        url: https://github.com/mattn/go-colorable.git
      - dest: src/github/com/mattn/go-isatty
        tag: v0.0.4
        type: git
        url: https://github.com/mattn/go-isatty.git
      - dest: src/github/com/mattn/go-runewidth
        tag: v0.0.2
        type: git
        url: https://github.com/mattn/go-runewidth.git
      - dest: src/github/com/matttproud/golang_protobuf_extensions
        tag: v1.0.1
        type: git
        url: https://github.com/matttproud/golang_protobuf_extensions.git
      - dest: src/github/com/miekg/dns
        tag: v1.0.14
        type: git
        url: https://github.com/miekg/dns.git
      - dest: src/github/com/mitchellh/cli
        tag: v1.0.0
        type: git
        url: https://github.com/mitchellh/cli.git
      - dest: src/github/com/mitchellh/go-homedir
        tag: v1.0.0
        type: git
        url: https://github.com/mitchellh/go-homedir.git
      - dest: src/github/com/mitchellh/go-testing-interface
        tag: v1.0.0
        type: git
        url: https://github.com/mitchellh/go-testing-interface.git
      - dest: src/github/com/mitchellh/gox
        tag: v0.4.0
        type: git
        url: https://github.com/mitchellh/gox.git
      - dest: src/github/com/mitchellh/iochan
        tag: v1.0.0
        type: git
        url: https://github.com/mitchellh/iochan.git
      - dest: src/github/com/mitchellh/mapstructure
        tag: v1.1.2
        type: git
        url: https://github.com/mitchellh/mapstructure.git
      - dest: src/github/com/mmcloughlin/avo
        tag: v0.0.0-20200803215136-443f81d77104
        type: git
        url: https://github.com/mmcloughlin/avo.git
      - dest: src/github/com/modern-go/concurrent
        tag: v0.0.0-20180306012644-bacd9c7ef1dd
        type: git
        url: https://github.com/modern-go/concurrent.git
      - dest: src/github/com/modern-go/reflect2
        tag: v1.0.1
        type: git
        url: https://github.com/modern-go/reflect2.git
      - dest: src/github/com/mwitkow/go-conntrack
        tag: v0.0.0-20190716064945-2f068394615f
        type: git
        url: https://github.com/mwitkow/go-conntrack.git
      - dest: src/github/com/nats-io/jwt
        tag: v0.3.2
        type: git
        url: https://github.com/nats-io/jwt.git
      - dest: src/github/com/nats-io/nats-server/v2
        tag: v2.1.2
        type: git
        url: https://github.com/nats-io/nats-server/v2.git
      - dest: src/github/com/nats-io/nats/go
        tag: v1.9.1
        type: git
        url: https://github.com/nats-io/nats.go.git
      - dest: src/github/com/nats-io/nkeys
        tag: v0.1.3
        type: git
        url: https://github.com/nats-io/nkeys.git
      - dest: src/github/com/nats-io/nuid
        tag: v1.0.1
        type: git
        url: https://github.com/nats-io/nuid.git
      - dest: src/github/com/nxadm/tail
        tag: v1.4.8
        type: git
        url: https://github.com/nxadm/tail.git
      - dest: src/github/com/oklog/oklog
        tag: v0.3.2
        type: git
        url: https://github.com/oklog/oklog.git
      - dest: src/github/com/oklog/run
        tag: v1.0.0
        type: git
        url: https://github.com/oklog/run.git
      - dest: src/github/com/olekukonko/tablewriter
        tag: v0.0.0-20170122224234-a0225b3f23b5
        type: git
        url: https://github.com/olekukonko/tablewriter.git
      - dest: src/github/com/onsi/ginkgo
        tag: v1.16.5
        type: git
        url: https://github.com/onsi/ginkgo.git
      - dest: src/github/com/onsi/gomega
        tag: v1.17.0
        type: git
        url: https://github.com/onsi/gomega.git
      - dest: src/github/com/op/go-logging
        tag: v0.0.0-20160315200505-970db520ece7
        type: git
        url: https://github.com/op/go-logging.git
      - dest: src/github/com/opentracing-contrib/go-observer
        tag: v0.0.0-20170622124052-a52f23424492
        type: git
        url: https://github.com/opentracing-contrib/go-observer.git
      - dest: src/github/com/opentracing/basictracer-go
        tag: v1.0.0
        type: git
        url: https://github.com/opentracing/basictracer-go.git
      - dest: src/github/com/opentracing/opentracing-go
        tag: v1.1.0
        type: git
        url: https://github.com/opentracing/opentracing-go.git
      - dest: src/github/com/openzipkin-contrib/zipkin-go-opentracing
        tag: v0.4.5
        type: git
        url: https://github.com/openzipkin-contrib/zipkin-go-opentracing.git
      - dest: src/github/com/openzipkin/zipkin-go
        tag: v0.2.2
        type: git
        url: https://github.com/openzipkin/zipkin-go.git
      - dest: src/github/com/pact-foundation/pact-go
        tag: v1.0.4
        type: git
        url: https://github.com/pact-foundation/pact-go.git
      - dest: src/github/com/pascaldekloe/goe
        tag: v0.0.0-20180627143212-57f6aae5913c
        type: git
        url: https://github.com/pascaldekloe/goe.git
      - dest: src/github/com/pborman/uuid
        tag: v1.2.0
        type: git
        url: https://github.com/pborman/uuid.git
      - dest: src/github/com/performancecopilot/speed
        tag: v3.0.0+incompatible
        type: git
        url: https://github.com/performancecopilot/speed.git
      - dest: src/github/com/pierrec/lz4
        tag: v2.0.5+incompatible
        type: git
        url: https://github.com/pierrec/lz4.git
      - dest: src/github/com/pion/datachannel
        tag: v1.5.5
        type: git
        url: https://github.com/pion/datachannel.git
      - dest: src/github/com/pion/dtls/v2
        tag: v2.2.6
        type: git
        url: https://github.com/pion/dtls/v2.git
      - dest: src/github/com/pion/ice/v2
        tag: v2.3.1
        type: git
        url: https://github.com/pion/ice/v2.git
      - dest: src/github/com/pion/interceptor
        tag: v0.1.12
        type: git
        url: https://github.com/pion/interceptor.git
      - dest: src/github/com/pion/logging
        tag: v0.2.2
        type: git
        url: https://github.com/pion/logging.git
      - dest: src/github/com/pion/mdns
        tag: v0.0.7
        type: git
        url: https://github.com/pion/mdns.git
      - dest: src/github/com/pion/randutil
        tag: v0.1.0
        type: git
        url: https://github.com/pion/randutil.git
      - dest: src/github/com/pion/rtcp
        tag: v1.2.10
        type: git
        url: https://github.com/pion/rtcp.git
      - dest: src/github/com/pion/rtp
        tag: v1.7.13
        type: git
        url: https://github.com/pion/rtp.git
      - dest: src/github/com/pion/sctp
        tag: v1.8.6
        type: git
        url: https://github.com/pion/sctp.git
      - dest: src/github/com/pion/sdp/v3
        tag: v3.0.6
        type: git
        url: https://github.com/pion/sdp/v3.git
      - dest: src/github/com/pion/srtp/v2
        tag: v2.0.12
        type: git
        url: https://github.com/pion/srtp/v2.git
      - dest: src/github/com/pion/stun
        tag: v0.4.0
        type: git
        url: https://github.com/pion/stun.git
      - dest: src/github/com/pion/transport
        tag: v0.14.1
        type: git
        url: https://github.com/pion/transport.git
      - dest: src/github/com/pion/transport/v2
        tag: v2.0.2
        type: git
        url: https://github.com/pion/transport/v2.git
      - dest: src/github/com/pion/turn/v2
        tag: v2.1.0
        type: git
        url: https://github.com/pion/turn/v2.git
      - dest: src/github/com/pion/udp/v2
        tag: v2.0.1
        type: git
        url: https://github.com/pion/udp/v2.git
      - dest: src/github/com/pion/webrtc/v3
        tag: v3.1.57
        type: git
        url: https://github.com/pion/webrtc/v3.git
      - dest: src/github/com/pkg/errors
        tag: v0.9.1
        type: git
        url: https://github.com/pkg/errors.git
      - dest: src/github/com/pkg/profile
        tag: v1.2.1
        type: git
        url: https://github.com/pkg/profile.git
      - dest: src/github/com/pmezard/go-difflib
        tag: v1.0.0
        type: git
        url: https://github.com/pmezard/go-difflib.git
      - dest: src/github/com/posener/complete
        tag: v1.1.1
        type: git
        url: https://github.com/posener/complete.git
      - dest: src/github/com/prometheus/client_golang
        tag: v1.10.0
        type: git
        url: https://github.com/prometheus/client_golang.git
      - dest: src/github/com/prometheus/client_model
        tag: v0.2.0
        type: git
        url: https://github.com/prometheus/client_model.git
      - dest: src/github/com/prometheus/common
        tag: v0.18.0
        type: git
        url: https://github.com/prometheus/common.git
      - dest: src/github/com/prometheus/procfs
        tag: v0.6.0
        type: git
        url: https://github.com/prometheus/procfs.git
      - dest: src/github/com/rcrowley/go-metrics
        tag: v0.0.0-20181016184325-3113b8401b8a
        type: git
        url: https://github.com/rcrowley/go-metrics.git
      - dest: src/github/com/refraction-networking/utls
        tag: v1.0.0
        type: git
        url: https://github.com/refraction-networking/utls.git
      - dest: src/github/com/rogpeppe/fastuuid
        tag: v0.0.0-20150106093220-6724a57986af
        type: git
        url: https://github.com/rogpeppe/fastuuid.git
      - dest: src/github/com/rogpeppe/go-internal
        tag: v1.3.0
        type: git
        url: https://github.com/rogpeppe/go-internal.git
      - dest: src/github/com/russross/blackfriday/v2
        tag: v2.0.1
        type: git
        url: https://github.com/russross/blackfriday/v2.git
      - dest: src/github/com/ryanuber/columnize
        tag: v0.0.0-20160712163229-9b3edd62028f
        type: git
        url: https://github.com/ryanuber/columnize.git
      - dest: src/github/com/samuel/go-zookeeper
        tag: v0.0.0-20190923202752-2cc03de413da
        type: git
        url: https://github.com/samuel/go-zookeeper.git
      - dest: src/github/com/sclevine/agouti
        tag: v3.0.0+incompatible
        type: git
        url: https://github.com/sclevine/agouti.git
      - dest: src/github/com/sean-/seed
        tag: v0.0.0-20170313163322-e2103e2c3529
        type: git
        url: https://github.com/sean-/seed.git
      - dest: src/github/com/shurcooL/sanitized_anchor_name
        tag: v1.0.0
        type: git
        url: https://github.com/shurcooL/sanitized_anchor_name.git
      - dest: src/github/com/sirupsen/logrus
        tag: v1.6.0
        type: git
        url: https://github.com/sirupsen/logrus.git
      - dest: src/github/com/smartystreets/assertions
        tag: v0.0.0-20180927180507-b2de0cb4f26d
        type: git
        url: https://github.com/smartystreets/assertions.git
      - dest: src/github/com/smartystreets/goconvey
        tag: v1.6.4
        type: git
        url: https://github.com/smartystreets/goconvey.git
      - dest: src/github/com/soheilhy/cmux
        tag: v0.1.4
        type: git
        url: https://github.com/soheilhy/cmux.git
      - dest: src/github/com/sony/gobreaker
        tag: v0.4.1
        type: git
        url: https://github.com/sony/gobreaker.git
      - dest: src/github/com/spf13/cobra
        tag: v0.0.3
        type: git
        url: https://github.com/spf13/cobra.git
      - dest: src/github/com/spf13/pflag
        tag: v1.0.1
        type: git
        url: https://github.com/spf13/pflag.git
      - dest: src/github/com/streadway/amqp
        tag: v0.0.0-20190827072141-edfb9018d271
        type: git
        url: https://github.com/streadway/amqp.git
      - dest: src/github/com/streadway/handy
        tag: v0.0.0-20190108123426-d5acb3125c2a
        type: git
        url: https://github.com/streadway/handy.git
      - dest: src/github/com/stretchr/objx
        tag: v0.5.0
        type: git
        url: https://github.com/stretchr/objx.git
      - dest: src/github/com/stretchr/testify
        tag: v1.8.1
        type: git
        url: https://github.com/stretchr/testify.git
      - dest: src/github/com/templexxx/cpu
        tag: v0.0.7
        type: git
        url: https://github.com/templexxx/cpu.git
      - dest: src/github/com/templexxx/xorsimd
        tag: v0.4.1
        type: git
        url: https://github.com/templexxx/xorsimd.git
      - dest: src/github/com/tjfoc/gmsm
        tag: v1.3.2
        type: git
        url: https://github.com/tjfoc/gmsm.git
      - dest: src/github/com/tmc/grpc-websocket-proxy
        tag: v0.0.0-20170815181823-89b8d40f7ca8
        type: git
        url: https://github.com/tmc/grpc-websocket-proxy.git
      - dest: src/github/com/urfave/cli
        tag: v1.22.1
        type: git
        url: https://github.com/urfave/cli.git
      - dest: src/github/com/xiang90/probing
        tag: v0.0.0-20190116061207-43a291ad63a2
        type: git
        url: https://github.com/xiang90/probing.git
      - dest: src/github/com/xtaci/kcp-go/v5
        tag: v5.6.1
        type: git
        url: https://github.com/xtaci/kcp-go/v5.git
      - dest: src/github/com/xtaci/lossyconn
        tag: v0.0.0-20190602105132-8df528c0c9ae
        type: git
        url: https://github.com/xtaci/lossyconn.git
      - dest: src/github/com/xtaci/smux
        tag: v1.5.15
        type: git
        url: https://github.com/xtaci/smux.git
      - dest: src/github/com/yuin/goldmark
        tag: v1.4.13
        type: git
        url: https://github.com/yuin/goldmark.git
      - dest: src/gitlab/torproject/org/tpo/anti-censorship/geoip
        tag: v0.0.0-20210928150955-7ce4b3d98d01
        type: git
        url: https://gitlab.torproject.org/tpo/anti-censorship/geoip.git
      - dest: src/gitlab/torproject/org/tpo/anti-censorship/pluggable-transports/goptlib
        tag: v1.4.0
        type: git
        url: https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib.git
      - dest: src/go/etcd/io/bbolt
        tag: v1.3.3
        type: git
        url: https://go.etcd.io/bbolt.git
      - dest: src/go/etcd/io/etcd
        tag: v0.0.0-20191023171146-3cf2f69b5738
        type: git
        url: https://go.etcd.io/etcd.git
      - dest: src/go/opencensus/io
        tag: v0.22.2
        type: git
        url: https://go.opencensus.io.git
      - dest: src/go/uber/org/atomic
        tag: v1.5.0
        type: git
        url: https://go.uber.org/atomic.git
      - dest: src/go/uber/org/multierr
        tag: v1.3.0
        type: git
        url: https://go.uber.org/multierr.git
      - dest: src/go/uber/org/tools
        tag: v0.0.0-20190618225709-2cfd321de3ee
        type: git
        url: https://go.uber.org/tools.git
      - dest: src/go/uber/org/zap
        tag: v1.13.0
        type: git
        url: https://go.uber.org/zap.git
      - dest: src/golang/org/x/arch
        tag: v0.0.0-20190909030613-46d78d1859ac
        type: git
        url: https://golang.org/x/arch.git
      - dest: src/golang/org/x/crypto
        tag: v0.6.0
        type: git
        url: https://golang.org/x/crypto.git
      - dest: src/golang/org/x/exp
        tag: v0.0.0-20190121172915-509febef88a4
        type: git
        url: https://golang.org/x/exp.git
      - dest: src/golang/org/x/lint
        tag: v0.0.0-20190930215403-16217165b5de
        type: git
        url: https://golang.org/x/lint.git
      - dest: src/golang/org/x/mod
        tag: v0.6.0-dev.0.20220419223038-86c51ed26bb4
        type: git
        url: https://golang.org/x/mod.git
      - dest: src/golang/org/x/net
        tag: v0.7.0
        type: git
        url: https://golang.org/x/net.git
      - dest: src/golang/org/x/oauth2
        tag: v0.0.0-20190226205417-e64efc72b421
        type: git
        url: https://golang.org/x/oauth2.git
      - dest: src/golang/org/x/sync
        tag: v0.0.0-20220722155255-886fb9371eb4
        type: git
        url: https://golang.org/x/sync.git
      - dest: src/golang/org/x/sys
        tag: v0.5.0
        type: git
        url: https://golang.org/x/sys.git
      - dest: src/golang/org/x/term
        tag: v0.5.0
        type: git
        url: https://golang.org/x/term.git
      - dest: src/golang/org/x/text
        tag: v0.7.0
        type: git
        url: https://golang.org/x/text.git
      - dest: src/golang/org/x/time
        tag: v0.0.0-20191024005414-555d28b269f0
        type: git
        url: https://golang.org/x/time.git
      - dest: src/golang/org/x/tools
        tag: v0.1.12
        type: git
        url: https://golang.org/x/tools.git
      - dest: src/golang/org/x/xerrors
        tag: v0.0.0-20200804184101-5ec99f83aff1
        type: git
        url: https://golang.org/x/xerrors.git
      - dest: src/google/golang/org/api
        tag: v0.3.1
        type: git
        url: https://google.golang.org/api.git
      - dest: src/google/golang/org/appengine
        tag: v1.4.0
        type: git
        url: https://google.golang.org/appengine.git
      - dest: src/google/golang/org/genproto
        tag: v0.0.0-20190819201941-24fa4b261c55
        type: git
        url: https://google.golang.org/genproto.git
      - dest: src/google/golang/org/grpc
        tag: v1.26.0
        type: git
        url: https://google.golang.org/grpc.git
      - dest: src/google/golang/org/protobuf
        tag: v1.26.0
        type: git
        url: https://google.golang.org/protobuf.git
      - dest: src/gopkg/in/alecthomas/kingpin/v2
        tag: v2.2.6
        type: git
        url: https://gopkg.in/alecthomas/kingpin.v2.git
      - dest: src/gopkg/in/check/v1
        tag: v1.0.0-20190902080502-41f04d3bba15
        type: git
        url: https://gopkg.in/check.v1.git
      - dest: src/gopkg/in/cheggaaa/pb/v1
        tag: v1.0.25
        type: git
        url: https://gopkg.in/cheggaaa/pb.v1.git
      - dest: src/gopkg/in/errgo/v2
        tag: v2.1.0
        type: git
        url: https://gopkg.in/errgo.v2.git
      - dest: src/gopkg/in/fsnotify/v1
        tag: v1.4.7
        type: git
        url: https://gopkg.in/fsnotify.v1.git
      - dest: src/gopkg/in/gcfg/v1
        tag: v1.2.3
        type: git
        url: https://gopkg.in/gcfg.v1.git
      - dest: src/gopkg/in/resty/v1
        tag: v1.12.0
        type: git
        url: https://gopkg.in/resty.v1.git
      - dest: src/gopkg/in/tomb/v1
        tag: v1.0.0-20141024135613-dd632973f1e7
        type: git
        url: https://gopkg.in/tomb.v1.git
      - dest: src/gopkg/in/warnings/v0
        tag: v0.1.2
        type: git
        url: https://gopkg.in/warnings.v0.git
      - dest: src/gopkg/in/yaml/v2
        tag: v2.4.0
        type: git
        url: https://gopkg.in/yaml.v2.git
      - dest: src/gopkg/in/yaml/v3
        tag: v3.0.1
        type: git
        url: https://gopkg.in/yaml.v3.git
      - dest: src/honnef/co/go/tools
        tag: v0.0.1-2019.2.3
        type: git
        url: https://honnef.co/go/tools.git
      - dest: src/rsc/io/pdf
        tag: v0.1.1
        type: git
        url: https://rsc.io/pdf.git
      - dest: src/sigs/k8s/io/yaml
        tag: v1.1.0
        type: git
        url: https://sigs.k8s.io/yaml.git
      - dest: src/sourcegraph/com/sourcegraph/appdash
        tag: v0.0.0-20190731080439-ebfcffb1b5c0
        type: git
        url: https://sourcegraph.com/sourcegraph/appdash.git
  - name: onionshare
    buildsystem: simple
    ensure-writable:
      - easy-install.pth
    build-commands:
      - cd desktop && python3 setup.py install --prefix=${FLATPAK_DEST}
      - cd desktop && install -D -m0644 org.onionshare.OnionShare.appdata.xml ${FLATPAK_DEST}/share/metainfo/${FLATPAK_ID}.appdata.xml
      - cd desktop && install -D -m0644 org.onionshare.OnionShare.svg ${FLATPAK_DEST}/share/icons/hicolor/scalable/apps/org.onionshare.OnionShare.svg
      - cd desktop && install -D -m0644 org.onionshare.OnionShare.desktop ${FLATPAK_DEST}/share/applications/${FLATPAK_ID}.desktop
    sources:
      - type: dir
        path: ..
      # - type: git
      #   url: https://github.com/onionshare/onionshare.git
      #   tag: v2.6
    modules:
      - name: python3-modules
        buildsystem: simple
        build-commands: []
        modules:
          - name: python3-qrcode
            buildsystem: simple
            build-commands:
              - pip3 install --verbose --exists-action=i --no-index --find-links="file://${PWD}"
                --prefix=${FLATPAK_DEST} "qrcode" --no-build-isolation
            sources:
              - type: file
                url: https://files.pythonhosted.org/packages/3e/b9/3766cc361d93edb2ce81e2e1f87dd98f314d7d513877a342d31b30741680/pypng-0.20220715.0-py3-none-any.whl
                sha256: 4a43e969b8f5aaafb2a415536c1a8ec7e341cd6a3f957fd5b5f32a4cfeed902c
              - type: file
                url: https://files.pythonhosted.org/packages/24/79/aaf0c1c7214f2632badb2771d770b1500d3d7cbdf2590ae62e721ec50584/qrcode-7.4.2-py3-none-any.whl
                sha256: 581dca7a029bcb2deef5d01068e39093e80ef00b4a61098a2182eac59d01643a
              - type: file
                url: https://files.pythonhosted.org/packages/38/60/300ad6f93adca578bf05d5f6cd1d854b7d140bebe2f9829561aa9977d9f3/typing_extensions-4.6.2-py3-none-any.whl
                sha256: 3a8b36f13dd5fdc5d1b16fe317f5668545de77fa0b8e02006381fd49d731ab98
          - name: python3-werkzeug
            buildsystem: simple
            build-commands:
              - pip3 install --verbose --exists-action=i --no-index --find-links="file://${PWD}"
                --prefix=${FLATPAK_DEST} "werkzeug" --no-build-isolation
            sources:
              - type: file
                url: https://files.pythonhosted.org/packages/95/7e/68018b70268fb4a2a605e2be44ab7b4dd7ce7808adae6c5ef32e34f4b55a/MarkupSafe-2.1.2.tar.gz
                sha256: abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d
              - type: file
                url: https://files.pythonhosted.org/packages/c2/2f/f0dc628295bd23571c962d5a349307d9c8796a05bfca6571659eaded38e2/Werkzeug-2.3.4-py3-none-any.whl
                sha256: 48e5e61472fee0ddee27ebad085614ebedb7af41e88f687aaf881afb723a162f
      - name: onionshare-cli
        buildsystem: simple
        build-commands:
          - cd cli && python3 setup.py install --prefix=${FLATPAK_DEST}
        sources:
          - type: dir
            path: ..
        #   - type: git
        #     url: https://github.com/onionshare/onionshare.git
        #     tag: v2.6
        modules:
          - name: poetry-deps
            buildsystem: simple
            build-commands:
              - pip3 install --no-index --find-links="file://${PWD}" --prefix=${FLATPAK_DEST}
                bidict blinker brotli certifi cffi charset-normalizer click colorama dnspython
                eventlet exceptiongroup flask flask-compress flask-socketio gevent gevent-websocket
                greenlet idna importlib-metadata iniconfig itsdangerous jinja2 markupsafe packaging
                pluggy psutil pycparser pynacl pysocks pytest python-engineio python-socketio
                requests setuptools six stem tomli unidecode urllib3 waitress werkzeug zipp zope-event
                zope-interface Cython wheel
            sources:
              - type: file
                url: https://files.pythonhosted.org/packages/b5/82/ce0b6380f35f49d3fe687979a324c342cfa3588380232f3801db9dd62f9e/bidict-0.22.1-py3-none-any.whl
                sha256: 6ef212238eb884b664f28da76f33f1d28b260f665fc737b413b287d5487d1e7b
              - type: file
                url: https://files.pythonhosted.org/packages/0d/f1/5f39e771cd730d347539bb74c6d496737b9d5f0a53bc9fdbf3e170f1ee48/blinker-1.6.2-py3-none-any.whl
                sha256: c3d739772abb7bc2860abf5f2ec284223d9ad5c76da018234f6f50d6f31ab1f0
              - type: file
                url: https://files.pythonhosted.org/packages/2a/18/70c32fe9357f3eea18598b23aa9ed29b1711c3001835f7cf99a9818985d0/Brotli-1.0.9.zip
                sha256: 4d1b810aa0ed773f81dceda2cc7b403d01057458730e309856356d4ef4188438
              - type: file
                url: https://files.pythonhosted.org/packages/9d/19/59961b522e6757f0c9097e4493fa906031b95b3ebe9360b2c3083561a6b4/certifi-2023.5.7-py3-none-any.whl
                sha256: c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716
              - type: file
                url: https://files.pythonhosted.org/packages/2b/a8/050ab4f0c3d4c1b8aaa805f70e26e84d0e27004907c5b8ecc1d31815f92a/cffi-1.15.1.tar.gz
                sha256: d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9
              - type: file
                url: https://files.pythonhosted.org/packages/ef/81/14b3b8f01ddaddad6cdec97f2f599aa2fa466bd5ee9af99b08b7713ccd29/charset_normalizer-3.1.0-py3-none-any.whl
                sha256: 3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d
              - type: file
                url: https://files.pythonhosted.org/packages/c2/f1/df59e28c642d583f7dacffb1e0965d0e00b218e0186d7858ac5233dce840/click-8.1.3-py3-none-any.whl
                sha256: bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48
              - type: file
                url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
                sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
              - type: file
                url: https://files.pythonhosted.org/packages/12/86/d305e87555430ff4630d729420d97dece3b16efcbf2b7d7e974d11b0d86c/dnspython-2.3.0-py3-none-any.whl
                sha256: 89141536394f909066cabd112e3e1a37e4e654db00a25308b0f130bc3152eb46
              - type: file
                url: https://files.pythonhosted.org/packages/90/97/928b89de2e23cc67136eccccf1c122adf74ffdb65bbf7d2964b937cedd4f/eventlet-0.33.3-py2.py3-none-any.whl
                sha256: e43b9ae05ba4bb477a10307699c9aff7ff86121b2640f9184d29059f5a687df8
              - type: file
                url: https://files.pythonhosted.org/packages/61/97/17ed81b7a8d24d8f69b62c0db37abbd8c0042d4b3fc429c73dab986e7483/exceptiongroup-1.1.1-py3-none-any.whl
                sha256: 232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e
              - type: file
                url: https://files.pythonhosted.org/packages/fa/1a/f191d32818e5cd985bdd3f47a6e4f525e2db1ce5e8150045ca0c31813686/Flask-2.3.2-py3-none-any.whl
                sha256: 77fd4e1249d8c9923de34907236b747ced06e5467ecac1a7bb7115ae0e9670b0
              - type: file
                url: https://files.pythonhosted.org/packages/20/80/8cdb28e467d3ffdc221992145114a709c1e7c011b84c66bc250e27596286/Flask_Compress-1.13-py3-none-any.whl
                sha256: 1128f71fbd788393ce26830c51f8b5a1a7a4d085e79a21a5cddf4c057dcd559b
              - type: file
                url: https://files.pythonhosted.org/packages/08/4d/a2f07873367e8916e0bae32df1d3cb9b39ea2141d7a5fdfab8c9d6818d71/Flask_SocketIO-5.3.4-py3-none-any.whl
                sha256: 564acfb24dcc9545cdae536cde0323653d9b547069a925f11eeb132338aa71c0
              - type: file
                url: https://files.pythonhosted.org/packages/9f/4a/e9e57cb9495f0c7943b1d5965c4bdd0d78bc4a433a7c96ee034b16c01520/gevent-22.10.2.tar.gz
                sha256: 1ca01da176ee37b3527a2702f7d40dbc9ffb8cfc7be5a03bfa4f9eec45e55c46
              - type: file
                url: https://files.pythonhosted.org/packages/7b/84/2dc373eb6493e00c884cc11e6c059ec97abae2678d42f06bf780570b0193/gevent_websocket-0.10.1-py3-none-any.whl
                sha256: 17b67d91282f8f4c973eba0551183fc84f56f1c90c8f6b6b30256f31f66f5242
              - type: file
                url: https://files.pythonhosted.org/packages/1e/1e/632e55a04d732c8184201238d911207682b119c35cecbb9a573a6c566731/greenlet-2.0.2.tar.gz
                sha256: e7c8dc13af7db097bed64a051d2dd49e9f0af495c26995c00a9ee842690d34c0
              - type: file
                url: https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl
                sha256: 90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2
              - type: file
                url: https://files.pythonhosted.org/packages/30/bb/bf2944b8b88c65b797acc2c6a2cb0fb817f7364debf0675792e034013858/importlib_metadata-6.6.0-py3-none-any.whl
                sha256: 43dd286a2cd8995d5eaef7fee2066340423b818ed3fd70adf0bad5f1fac53fed
              - type: file
                url: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl
                sha256: b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374
              - type: file
                url: https://files.pythonhosted.org/packages/68/5f/447e04e828f47465eeab35b5d408b7ebaaaee207f48b7136c5a7267a30ae/itsdangerous-2.1.2-py3-none-any.whl
                sha256: 2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44
              - type: file
                url: https://files.pythonhosted.org/packages/bc/c3/f068337a370801f372f2f8f6bad74a5c140f6fda3d9de154052708dd3c65/Jinja2-3.1.2-py3-none-any.whl
                sha256: 6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61
              - type: file
                url: https://files.pythonhosted.org/packages/95/7e/68018b70268fb4a2a605e2be44ab7b4dd7ce7808adae6c5ef32e34f4b55a/MarkupSafe-2.1.2.tar.gz
                sha256: abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d
              - type: file
                url: https://files.pythonhosted.org/packages/ab/c3/57f0601a2d4fe15de7a553c00adbc901425661bf048f2a22dfc500caf121/packaging-23.1-py3-none-any.whl
                sha256: 994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61
              - type: file
                url: https://files.pythonhosted.org/packages/9e/01/f38e2ff29715251cf25532b9082a1589ab7e4f571ced434f98d0139336dc/pluggy-1.0.0-py2.py3-none-any.whl
                sha256: 74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3
              - type: file
                url: https://files.pythonhosted.org/packages/d6/0f/96b7309212a926c1448366e9ce69b081ea79d63265bde33f11cc9cfc2c07/psutil-5.9.5.tar.gz
                sha256: 5410638e4df39c54d957fc51ce03048acd8e6d60abc0f5107af51e5fb566eb3c
              - type: file
                url: https://files.pythonhosted.org/packages/62/d5/5f610ebe421e85889f2e55e33b7f9a6795bd982198517d912eb1c76e1a53/pycparser-2.21-py2.py3-none-any.whl
                sha256: 8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9
              - type: file
                url: https://files.pythonhosted.org/packages/a7/22/27582568be639dfe22ddb3902225f91f2f17ceff88ce80e4db396c8986da/PyNaCl-1.5.0.tar.gz
                sha256: 8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba
              - type: file
                url: https://files.pythonhosted.org/packages/8d/59/b4572118e098ac8e46e399a1dd0f2d85403ce8bbaad9ec79373ed6badaf9/PySocks-1.7.1-py3-none-any.whl
                sha256: 2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5
              - type: file
                url: https://files.pythonhosted.org/packages/1b/d1/72df649a705af1e3a09ffe14b0c7d3be1fd730da6b98beb4a2ed26b8a023/pytest-7.3.1-py3-none-any.whl
                sha256: 3799fa815351fea3a5e96ac7e503a96fa51cc9942c3753cda7651b93c1cfa362
              - type: file
                url: https://files.pythonhosted.org/packages/33/e9/ed521d6abdf5372aa052f4749dc5bd5dcdbd2c132c81334bf0693f4d4269/python_engineio-4.4.1-py3-none-any.whl
                sha256: 28ab67f94cba2e5f598cbb04428138fd6bb8b06d3478c939412da445f24f0773
              - type: file
                url: https://files.pythonhosted.org/packages/5d/e9/f296186e2a91f1472b9da74346163411196dc1b17f425acf088f293b32cc/python_socketio-5.8.0-py3-none-any.whl
                sha256: 7adb8867aac1c2929b9c1429f1c02e12ca4c36b67c807967393e367dfbb01441
              - type: file
                url: https://files.pythonhosted.org/packages/70/8e/0e2d847013cb52cd35b38c009bb167a1a26b2ce6cd6965bf26b47bc0bf44/requests-2.31.0-py3-none-any.whl
                sha256: 58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f
              - type: file
                url: https://files.pythonhosted.org/packages/f5/2c/074ab1c5be9c7d523d8d6d69d1f46f450fe7f11713147dc9e779aa4ca4ea/setuptools-67.8.0-py3-none-any.whl
                sha256: 5df61bf30bb10c6f756eb19e7c9f3b473051f48db77fddbe06ff2ca307df9a6f
              - type: file
                url: https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl
                sha256: 8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254
              - type: file
                url: https://files.pythonhosted.org/packages/b2/66/c5515de764bffae1347e671819711268da5c02bfab8406223526822fe5f6/stem-1.8.1.tar.gz
                sha256: 81d43a7c668ba9d7bc1103b2e7a911e9d148294b373d27a59ae8da79ef7a3e2f
              - type: file
                url: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl
                sha256: 939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc
              - type: file
                url: https://files.pythonhosted.org/packages/be/ea/90e14e807da5a39e5b16789acacd48d63ca3e4f23dfa964a840eeadebb13/Unidecode-1.3.6-py3-none-any.whl
                sha256: 547d7c479e4f377b430dd91ac1275d593308dce0fc464fb2ab7d41f82ec653be
              - type: file
                url: https://files.pythonhosted.org/packages/4b/1d/f8383ef593114755429c307449e7717b87044b3bcd5f7860b89b1f759e34/urllib3-2.0.2-py3-none-any.whl
                sha256: d055c2f9d38dc53c808f6fdc8eab7360b6fdbbde02340ed25cfbcd817c62469e
              - type: file
                url: https://files.pythonhosted.org/packages/58/6a/b4b5c582e04e837e4422cab6ec9de7fc10ca7ad7f4e370bb89d280d39552/waitress-2.1.2-py3-none-any.whl
                sha256: 7500c9625927c8ec60f54377d590f67b30c8e70ef4b8894214ac6e4cad233d2a
              - type: file
                url: https://files.pythonhosted.org/packages/c2/2f/f0dc628295bd23571c962d5a349307d9c8796a05bfca6571659eaded38e2/Werkzeug-2.3.4-py3-none-any.whl
                sha256: 48e5e61472fee0ddee27ebad085614ebedb7af41e88f687aaf881afb723a162f
              - type: file
                url: https://files.pythonhosted.org/packages/5b/fa/c9e82bbe1af6266adf08afb563905eb87cab83fde00a0a08963510621047/zipp-3.15.0-py3-none-any.whl
                sha256: 48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556
              - type: file
                url: https://files.pythonhosted.org/packages/8b/a8/3ab9648dc08d2ab7543145ec174a2d982d08fb996d50d9a4d3e057da7132/zope.event-4.6-py2.py3-none-any.whl
                sha256: 73d9e3ef750cca14816a9c322c7250b0d7c9dbc337df5d1b807ff8d3d0b9e97c
              - type: file
                url: https://files.pythonhosted.org/packages/7a/62/f0d012151af1e8cc0a6c97db74b78141143425dcdf81bc7960c498e28960/zope.interface-6.0.tar.gz
                sha256: aab584725afd10c710b8f1e6e208dbee2d0ad009f57d674cb9d1b3964037275d
              - type: file
                url: https://files.pythonhosted.org/packages/2e/a7/f20fa91d9de799f8e19bacf225bc993b8a53b5fc6f41ffa20d64f0850579/Cython-3.0.0a11.tar.gz
                sha256: e4672491fb31546b9abb63677f638e738085dc9321398170956ef6fbfc0e1726
              - type: file
                url: https://files.pythonhosted.org/packages/a2/b8/6a06ff0f13a00fc3c3e7d222a995526cbca26c1ad107691b6b1badbbabf1/wheel-0.38.4.tar.gz
                sha256: 965f5259b566725405b05e7cf774052044b1ed30119b5d586b2703aafe8719ac