cmd-output.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
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
cmd: lintian --no-cfg --display-level '>=classification' --display-experimental --info --show-overrides /tmp/debusine-fetch-exec-upload-3jyy2sxo/apt_2.6.1.dsc /tmp/debusine-fetch-exec-upload-3jyy2sxo/apt-dbgsym_2.6.1_amd64.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/apt-doc_2.6.1_all.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/apt-transport-https_2.6.1_all.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/apt-utils-dbgsym_2.6.1_amd64.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/apt-utils_2.6.1_amd64.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/apt_2.6.1_amd64.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/libapt-pkg-dev_2.6.1_amd64.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/libapt-pkg-doc_2.6.1_all.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/libapt-pkg6.0-dbgsym_2.6.1_amd64.deb /tmp/debusine-fetch-exec-upload-3jyy2sxo/libapt-pkg6.0_2.6.1_amd64.deb
output (contains stderr only, stdout was captured):

Files in working directory:
lintian.txt
--------------------
N:
W: libapt-pkg-doc: duplicate-changelog-files usr/share/doc/libapt-pkg-doc/html/classpkgAcqChangelog__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classpkgAcqChangelog__inherit__graph.svg
N: 
N:   The package appears to be shipping two copies of the changelog.
N:   
N:   If the second copy is really needed, consider making it a symlink to the
N:   canonical place for the relevant changelog.
N:   
N:   Both upstream and Debian changelogs are checked with this tag.
N: 
N:   Visibility: warning
N:   Show-Always: no
N:   Check: files/duplicates
N: 
N:
W: apt: groff-message 100: warning: macro 'AQ' not defined [usr/share/man/fr/man8/apt-mark.8.gz:1]
N: 
N:   A manual page provoked warnings or errors from the man program. Here are
N:   some common ones:
N:   
N:   "cannot adjust" or "can't break" are issues with paragraph filling. They
N:   are usually related to long lines. Justifying text on the left hand side
N:   can help with adjustments. Hyphenation can help with breaks.
N:   
N:   For more information, please see "Manipulating Filling and Adjusting" and
N:   "Manipulating Hyphenation" in the Groff manual (see info groff).
N:   
N:   "can't find numbered character" usually means that the input was in a
N:   national legacy encoding. The warning means that some characters were
N:   dropped. Please use escapes such as \[:a] as described on the groff_char
N:   manual page.
N:   
N:   Other common warnings are formatting typos. String arguments to .IP
N:   require quotes. Usually, some text is lost or mangled. See the groff_man
N:   (or groff_mdoc if using mdoc) manual page for details on macros.
N:   
N:   The check for manual pages uses the --warnings option to man to catch
N:   common problems, like a . or a ' at the beginning of a line as literal
N:   text. They are interpreted as Groff commands. Just reformat the paragraph
N:   so the characters are not at the beginning of a line. You can also add a
N:   zero-width space (\&) in front of them.
N:   
N:   Aside from overrides, warnings can be disabled with the .warn directive.
N:   Please see "Debugging" in the Groff manual.
N:   
N:   You can see the warnings yourself by running the command used by Lintian:
N:   
N:       LC_ALL=C.UTF-8 MANROFFSEQ='' MANWIDTH=80 \
N:           man --warnings -E UTF-8 -l -Tutf8 -Z <file> >/dev/null
N: 
N:   Please refer to the groff_man(7) manual page and the groff_mdoc(7) manual
N:   page for details.
N: 
N:   Visibility: warning
N:   Show-Always: no
N:   Check: documentation/manual
N:   Renamed from: manpage-has-errors-from-man
N: 
N:
W: apt: groff-message 114: warning: macro 'AQ' not defined [usr/share/man/it/man8/apt-mark.8.gz:1]
N:
W: apt: groff-message 143: warning: macro 'AQ' not defined [usr/share/man/fr/man8/apt.8.gz:1]
N:
W: apt: groff-message 59: warning: macro 'AQ' not defined [usr/share/man/nl/man8/apt-key.8.gz:1]
N:
W: apt: groff-message 689: warning: macro 'AQ' not defined [usr/share/man/fr/man5/apt.conf.5.gz:1]
N:
W: apt-utils: groff-message 466: warning: macro 'AQ' not defined [usr/share/man/fr/man1/apt-ftparchive.1.gz:1]
N:
I: apt: bash-term-in-posix-shell '$RANDOM' [etc/cron.daily/apt-compat:40]
N: 
N:   This script is marked as running under /bin/sh, but it seems to use a
N:   feature found in bash but not in the SUSv3 or POSIX shell specification.
N:   
N:   Some examples are:
N:   
N:   - == in a test, it should use = instead - read without a variable in the
N:   argument - function to define a function - source instead of . - . command
N:   args, passing arguments to commands via source is not supported -
N:   {foo,bar} instead of foo bar - [[ test ]] instead of [ test ] (requires a
N:   Korn shell) - type instead of which or command -v
N: 
N:   Visibility: info
N:   Show-Always: no
N:   Check: shell/non-posix/bash-centric
N: 
N:
I: apt: bash-term-in-posix-shell '$RANDOM' [etc/cron.daily/apt-compat:44]
N:
I: apt: bash-term-in-posix-shell '>&${GPGSTATUSFD}' [usr/bin/apt-key:37]
N:
I: apt: bash-term-in-posix-shell '>&${GPGSTATUSFD}' [usr/bin/apt-key:47]
N:
I: apt: hardening-no-fortify-functions [usr/bin/apt-cdrom]
N: 
N:   This package provides an ELF binary that lacks the use of fortified libc
N:   functions. Either there are no potentially unfortified functions called by
N:   any routines, all unfortified calls have already been fully validated at
N:   compile-time, or the package was not built with the default Debian
N:   compiler flags defined by dpkg-buildflags. If built using dpkg-buildflags
N:   directly, be sure to import CPPFLAGS.
N:   
N:   NB: Due to false-positives, Lintian ignores some unprotected functions
N:   (e.g. memcpy).
N: 
N:   Please refer to https://wiki.debian.org/Hardening and Bug#673112 for
N:   details.
N: 
N:   Visibility: info
N:   Show-Always: no
N:   Check: binaries/hardening
N: 
N:
I: apt: no-symbols-control-file usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0
N: 
N:   Although the package includes a shared library, the package does not have
N:   a symbols control file.
N:   
N:   dpkg can use symbols files in order to generate more accurate library
N:   dependencies for applications, based on the symbols from the library that
N:   are actually used by the application.
N: 
N:   Please refer to the dpkg-gensymbols(1) manual page and
N:   https://wiki.debian.org/UsingSymbolsFiles for details.
N: 
N:   Visibility: info
N:   Show-Always: no
N:   Check: debian/shlibs
N: 
N:
I: apt source: out-of-date-standards-version 4.1.1 (released 2017-09-28) (current is 4.6.2)
N: 
N:   The source package refers to a Standards-Version older than the one that
N:   was current at the time the package was created (according to the
N:   timestamp of the latest debian/changelog entry). Please consider updating
N:   the package to current Policy and setting this control field
N:   appropriately.
N:   
N:   If the package is already compliant with the current standards, you don't
N:   have to re-upload the package just to adjust the Standards-Version control
N:   field. However, please remember to update this field next time you upload
N:   the package.
N:   
N:   See /usr/share/doc/debian-policy/upgrading-checklist.txt.gz in the
N:   debian-policy package for a summary of changes in newer versions of
N:   Policy.
N: 
N:   Please refer to
N:   https://www.debian.org/doc/debian-policy/upgrading-checklist.html for
N:   details.
N: 
N:   Visibility: info
N:   Show-Always: no
N:   Check: fields/standards-version
N: 
N:
I: libapt-pkg6.0: spelling-error-in-binary buil build [usr/lib/x86_64-linux-gnu/libapt-pkg.so.6.0.0]
N: 
N:   Lintian found a spelling error in the given binary. Lintian has a list of
N:   common misspellings that it looks for. It does not have a dictionary like
N:   a spelling checker does.
N:   
N:   If the string containing the spelling error is translated with the help of
N:   gettext or a similar tool, please fix the error in the translations as
N:   well as the English text to avoid making the translations fuzzy. With
N:   gettext, for example, this means you should also fix the spelling mistake
N:   in the corresponding msgids in the *.po files.
N:   
N:   You can often find the word in the source code by running:
N:   
N:    grep -rw <word> <source-tree>
N:   
N:   This tag may produce false positives for words that contain non-ASCII
N:   characters due to limitations in strings.
N: 
N:   Visibility: info
N:   Show-Always: no
N:   Check: binaries/spelling
N: 
N:
I: apt: typo-in-manual-page occured occurred [usr/share/man/man8/apt-get.8.gz:656]
N: 
N:   Lintian found a spelling error in a manual page. Lintian has a list of
N:   common misspellings that it looks for. It does not have a dictionary like
N:   a spelling checker does.
N:   
N:   If the string containing the spelling error is translated with the help of
N:   gettext (with the help of po4a, for example) or a similar tool, please fix
N:   the error in the translations as well as the English text to avoid making
N:   the translations fuzzy. With gettext, for example, this means you should
N:   also fix the spelling mistake in the corresponding msgids in the *.po
N:   files.
N: 
N:   Visibility: info
N:   Show-Always: no
N:   Check: documentation/manual
N:   Renamed from: spelling-error-in-manpage
N: 
N:
I: apt: unused-override spare-manual-page [usr/share/man*/man1/apt-transport-http.1.gz] [usr/share/lintian/overrides/apt:7]
N: 
N:   Your package specifies the named override but there were no tags that
N:   could have been silenced by it.
N:   
N:   Maybe you fixed an underlying condition but forgot to remove the override.
N:   It is also possible that the Lintian maintainers fixed a false positive.
N:   
N:   If the override is now unused, please remove it.
N:   
N:   This tag is similar to mismatched-override except there a tag could have
N:   been silenced if the context had matched.
N:   
N:   Sometimes, overrides end up not being used because a tag appears only on
N:   some architectures. In that case, overrides can be equipped with an
N:   architecture qualifier.
N: 
N:   Please refer to Architecture specific overrides (Section 2.4.3) in the
N:   Lintian User's Manual for details.
N: 
N:   Visibility: info
N:   Show-Always: yes
N:   Check: lintian
N: 
N:
I: apt: unused-override spare-manual-page [usr/share/man*/man1/apt-transport-https.1.gz] [usr/share/lintian/overrides/apt:8]
N:
I: apt: unused-override spare-manual-page [usr/share/man*/man1/apt-transport-mirror.1.gz] [usr/share/lintian/overrides/apt:9]
N:
I: apt: unused-override spare-manual-page [usr/share/man*/man8/apt-secure.8.gz] [usr/share/lintian/overrides/apt:10]
N:
P: apt source: package-uses-old-debhelper-compat-version 12
N: 
N:   This package uses a debhelper compatibility level that is no longer
N:   recommended. Please consider using the recommended level.
N:   
N:   For most packages, the best way to set the compatibility level is to
N:   specify debhelper-compat (= X) as a Build-Depends in debian/control. You
N:   can also use the debian/compat file or export DH_COMPAT in debian/rules.
N:   
N:   If no level is selected debhelper defaults to level 1, which is
N:   deprecated.
N: 
N:   Please refer to the debhelper(7) manual page for details.
N: 
N:   Visibility: pedantic
N:   Show-Always: no
N:   Check: debhelper
N: 
N:
X: apt source: debian-rules-uses-as-needed-linker-flag [debian/rules:5]
N: 
N:   The debian/rules file for this package uses the -Wl,--as-needed linker
N:   flag.
N:   
N:   The bullseye toolchain defaults to linking with --as-needed and therefore
N:   it should no longer be necessary to inject this into the build process.
N:   
N:   However, it is not safe to make this change if the package will target the
N:   buster distribution such as via backports to the buster-bpo / stable-bpo
N:   distribution or, during the bookworm cycle itself, the oldstable-bpo
N:   distribution.
N: 
N:   Visibility: pedantic
N:   Show-Always: no
N:   Check: debian/rules
N:   This tag is experimental.
N: 
N:
X: apt: executable-in-usr-lib [usr/lib/apt/apt-helper]
N: 
N:   The package ships an executable file in /usr/lib.
N:   
N:   Please move the file to /usr/libexec.
N:   
N:   With policy revision 4.1.5, Debian adopted the Filesystem Hierarchy
N:   Specification (FHS) version 3.0.
N:   
N:   The FHS 3.0 describes /usr/libexec. Please use that location for
N:   executables.
N: 
N:   Please refer to File System Structure (Section 9.1.1) in the Debian Policy
N:   Manual, filesystem-hierarchy,
N:   https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s07.html, and
N:   Bug#954149 for details.
N: 
N:   Visibility: pedantic
N:   Show-Always: no
N:   Check: files/permissions/usr-lib
N:   This tag is experimental.
N: 
N:   Screen: emacs/elpa/scripts
N:     Advocates: "David Bremner" <bremner@debian.org>
N:     Reason: The emacsen-common package places installation and removal
N:             scripts, which for ELPA packages are executable, in the folder
N:             /usr/lib/emacsen-common/packages.
N:             
N:             About four hundred installation packages are affected. All of
N:             them declare emacsen-common as an installation prerequisite.
N:             
N:             Read more in Bug#974175 and Bug#954149.
N: 
N:   Screen: web/cgi/scripts
N:     Advocates: "Andrius Merkys" <merkys@debian.org>
N:     Reason: The folder /usr/lib/cgi-bin/ is designated for scripts in the
N:             Common Gateway Interface (CGI). They require the executable bit
N:             so the server can run them.
N:             
N:             Read more in
N:             https://en.wikipedia.org/wiki/Common_Gateway_Interface,
N:             https://datatracker.ietf.org/doc/html/rfc3875.html, and
N:             Bug#1003941.
N: 
N:
X: apt: executable-in-usr-lib [usr/lib/apt/apt.systemd.daily]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/cdrom]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/copy]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/file]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/ftp]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/gpgv]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/http]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/mirror]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/rred]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/rsh]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/methods/store]
N:
X: apt: executable-in-usr-lib [usr/lib/apt/solvers/dump]
N:
X: apt: executable-in-usr-lib [usr/lib/dpkg/methods/apt/install]
N:
X: apt: executable-in-usr-lib [usr/lib/dpkg/methods/apt/setup]
N:
X: apt: executable-in-usr-lib [usr/lib/dpkg/methods/apt/update]
N:
X: apt-utils: executable-in-usr-lib [usr/lib/apt/planners/apt]
N:
X: apt-utils: executable-in-usr-lib [usr/lib/apt/solvers/apt]
N:
X: apt source: very-long-line-length-in-source-file 1018 > 512 [debian/libapt-pkg6.0.symbols:357]
N: 
N:   The source file includes a line length that is well beyond the normally
N:   human made code line length.
N:   
N:   This very long line length does not allow Lintian to do correctly some
N:   source file checks.
N:   
N:   This line could also be the result of some text injected by a computer
N:   program, and thus could lead to FTBFS bugs.
N:   
N:   Last but not least, long line in source code could be used to obfuscate
N:   the source code and to hide stuff like backdoors or security problems.
N:   
N:   It could be due to jslint source comments or other build tool comments.
N:   
N:   You may report this issue upstream.
N: 
N:   Visibility: pedantic
N:   Show-Always: no
N:   Check: files/contents/line-length
N:   Renamed from: insane-line-length-in-source-file
N:   This tag is experimental.
N: 
N:   Screen: autotools/long-lines
N:     Advocates: "Russ Allbery" <rra@debian.org>
N:     Reason: 
N:             Upstream sources using autoconf have traditionally been
N:             distributed with generated ./configure scripts as well as
N:             other third-party m4 macro files such as libtool.
N:             
N:             When paired with automake, there may also be some intermediate
N:             Makefile.in files.
N:             
N:             A lot of sources potentially contain such files, but they are
N:             not actionable by either the Debian distributor or by the
N:             upstream maintainer.
N:             
N:             As a side note, modern Debian build protocols will re-create
N:             many of those files via dh_autoreconf. They are present merely
N:             to aid in bootstrapping systems where the GNU suite may not yet
N:             be available.
N:             
N:             Read more in Bug#996740.
N: 
N:
X: apt source: very-long-line-length-in-source-file 1050 > 512 [test/integration/status-github-23-too-long-dependency-line:10]
N:
X: apt source: very-long-line-length-in-source-file 1973 > 512 [test/integration/edsp-ubuntu-bug-1974196:1540]
N:
X: apt source: very-long-line-length-in-source-file 2271 > 512 [test/integration/edsp-ubuntu-bug-1990586:14482]
N:
X: apt source: very-long-line-length-in-source-file 3622 > 512 [test/integration/Packages-bug-591882-conkeror:1731]
N:
X: apt source: very-long-line-length-in-source-file 3624 > 512 [test/integration/status-bug-591882-conkeror:1326]
N:
X: apt source: very-long-line-length-in-source-file 3642 > 512 [test/integration/status-ubuntu-bug-614993:3294]
N:
X: apt source: very-long-line-length-in-source-file 526 > 512 [test/integration/rexexpired.pub:7]
N:
X: apt source: very-long-line-length-in-source-file 572 > 512 [test/integration/keyrings/test-archive-keyring.sec:6]
N:
X: apt source: very-long-line-length-in-source-file 574 > 512 [test/integration/sebastiansubkey.pub:1]
N:
X: apt source: very-long-line-length-in-source-file 582 > 512 [test/integration/sebastiansubkey.sec:1]
N:
X: apt source: very-long-line-length-in-source-file 605 > 512 [test/integration/keyrings/test-master-keyring.sec:3]
N:
X: apt source: very-long-line-length-in-source-file 611 > 512 [test/libapt/cdrom_test.cc:99]
N:
X: apt source: very-long-line-length-in-source-file 621 > 512 [test/integration/rexexpired.sec:8]
N:
X: apt source: very-long-line-length-in-source-file 688 > 512 [test/integration/test-apt-cli-json-hooks:180]
N:
X: apt source: very-long-line-length-in-source-file 708 > 512 [test/integration/Packages-ubuntu-bug-614993:717]
N:
X: apt source: very-long-line-length-in-source-file 735 > 512 [test/integration/Packages-bug-lp1347721-dpkg-ordering:86]
N:
X: apt source: very-long-line-length-in-source-file 7828 > 512 [test/integration/cachedb-lp1274466-old-format.db:1]
N:
X: apt source: very-long-line-length-in-source-file 794 > 512 [test/integration/sebastiansubkey.master.sec:2]
N:
X: apt source: very-long-line-length-in-source-file 905 > 512 [test/integration/status-bug-lp1347721-dpkg-ordering:1543]
N:
X: apt source: very-long-line-length-in-source-file 972 > 512 [test/integration/Packages-github-23-too-long-dependency-line:9]
N:
C: apt source: continuous-integration/salsa/specification [.gitlab-ci.yml]
N: 
N:   File name likely holding a Salsa CI specification.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: continuous-integration/salsa
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt: control-tarball-compression-format xz
N: 
N:   This is the compressor format used for the control.tar tarball.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: deb-format
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt-dbgsym: control-tarball-compression-format xz
N:
C: apt-doc: control-tarball-compression-format xz
N:
C: apt-transport-https: control-tarball-compression-format xz
N:
C: apt-utils: control-tarball-compression-format xz
N:
C: apt-utils-dbgsym: control-tarball-compression-format xz
N:
C: libapt-pkg-dev: control-tarball-compression-format xz
N:
C: libapt-pkg-doc: control-tarball-compression-format xz
N:
C: libapt-pkg6.0: control-tarball-compression-format xz
N:
C: libapt-pkg6.0-dbgsym: control-tarball-compression-format xz
N:
C: apt: ctrl-script [postinst]
N: 
N:   This package has one or more maintainer scripts (or other executable
N:   control files).
N:   
N:   This flags any control file with the executable bit set.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: control-files
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt: ctrl-script [postrm]
N:
C: apt: ctrl-script [preinst]
N:
C: apt: ctrl-script [prerm]
N:
C: apt: data-tarball-compression-format xz
N: 
N:   This is the compressor format used for the data.tar tarball.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: deb-format
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt-dbgsym: data-tarball-compression-format xz
N:
C: apt-doc: data-tarball-compression-format xz
N:
C: apt-transport-https: data-tarball-compression-format xz
N:
C: apt-utils: data-tarball-compression-format xz
N:
C: apt-utils-dbgsym: data-tarball-compression-format xz
N:
C: libapt-pkg-dev: data-tarball-compression-format xz
N:
C: libapt-pkg-doc: data-tarball-compression-format xz
N:
C: libapt-pkg6.0: data-tarball-compression-format xz
N:
C: libapt-pkg6.0-dbgsym: data-tarball-compression-format xz
N:
C: apt: debhelper-autoscript-in-maintainer-scripts dh_installdeb/13.11.4
N: 
N:   The maintainer scripts of the package contain one or more auto-generated
N:   shell snippets inserted by the listed debhelper tool.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: maintainer-scripts/generated
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt: debhelper-autoscript-in-maintainer-scripts dh_installsystemd/13.11.4
N:
C: apt source: debhelper-compat-level 12
N: 
N:   This is the debhelper compat level used specified by this package.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: debhelper
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: debhelper-compat-virtual-relation 12 [debian/control]
N: 
N:   This package is using the debhelper-compat virtual package as a
N:   build-dependency.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: debhelper
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: debian-build-system dh [debian/rules]
N: 
N:   This is the build system that Lintian believes the package is using.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: debhelper
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N: 
N:   This person is a contact in the named group for this package.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: fields/mail-address
N:   Renamed from: maintainer uploader
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: mail-contact Uploaders "David Kalnischkies" <donkult@debian.org>
N:
C: apt source: mail-contact Uploaders "Julian Andres Klode" <jak@debian.org>
N:
C: apt source: mail-contact Uploaders "Michael Vogt" <mvo@debian.org>
N:
C: apt: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: apt-dbgsym: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: apt-doc: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: apt-transport-https: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: apt-utils: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: apt-utils-dbgsym: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: libapt-pkg-dev: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: libapt-pkg-doc: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: libapt-pkg6.0: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: libapt-pkg6.0-dbgsym: mail-contact Maintainer "APT Development Team" <deity@lists.debian.org>
N:
C: apt: maintainer-script-interpreter /bin/sh [postinst]
N: 
N:   Interpreter used in maintainer script or ELF
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: scripts
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt: maintainer-script-interpreter /bin/sh [postrm]
N:
C: apt: maintainer-script-interpreter /bin/sh [preinst]
N:
C: apt: maintainer-script-interpreter /bin/sh [prerm]
N:
C: apt-dbgsym: no-ctrl-scripts
N: 
N:   The package does not rely on any maintainer scripts (or other executable
N:   control files).
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: control-files
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt-doc: no-ctrl-scripts
N:
C: apt-transport-https: no-ctrl-scripts
N:
C: apt-utils: no-ctrl-scripts
N:
C: apt-utils-dbgsym: no-ctrl-scripts
N:
C: libapt-pkg-dev: no-ctrl-scripts
N:
C: libapt-pkg-doc: no-ctrl-scripts
N:
C: libapt-pkg6.0: no-ctrl-scripts
N:
C: libapt-pkg6.0-dbgsym: no-ctrl-scripts
N:
C: apt: package-contains-usr-unmerged-pathnames [lib/systemd/system/apt-daily-upgrade.service]
N: 
N:   The package installs the listed file to a directory in / (the filesystem
N:   root) rather than to the corresponding directory inside /usr.
N:   
N:   Debian requires systems to mount /usr prior to invoking init (using an
N:   initramfs if necessary) so any executables, libraries, or other files
N:   placed in / for use by early portions of the system init no longer need to
N:   do so.
N:   
N:   Moving a file from / to /usr (especially an executable in /bin or /sbin)
N:   will often require a compatibility symlink to the new location, as other
N:   software may invoke it by absolute path.
N:   
N:   A compatibility symlink to the corresponding file in /usr will not trigger
N:   this warning but a symlink to anywhere else will.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: files/usr-merge
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt: package-contains-usr-unmerged-pathnames [lib/systemd/system/apt-daily-upgrade.timer]
N:
C: apt: package-contains-usr-unmerged-pathnames [lib/systemd/system/apt-daily.service]
N:
C: apt: package-contains-usr-unmerged-pathnames [lib/systemd/system/apt-daily.timer]
N:
C: apt source: package-is-team-maintained deity@lists.debian.org (with 3 uploaders)
N: 
N:   The package is team-maintained according to the maintainer/uploaders
N:   fields in the debian/control file.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: fields/vcs
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: apt-dbgsym: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: apt-doc: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: apt-transport-https: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: apt-utils: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: apt-utils-dbgsym: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: libapt-pkg-dev: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: libapt-pkg-doc: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: libapt-pkg6.0: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: libapt-pkg6.0-dbgsym: package-is-team-maintained deity@lists.debian.org (with 0 uploaders)
N:
C: apt source: rules-do-not-require-root [debian/control:8]
N: 
N:   The sources can build the installation packages without using fakeroot(1)
N:   or similar.
N: 
N:   Please refer to usr/share/doc/dpkg-dev/rootless-builds.txt.gz,
N:   debian/rules and Rules-Requires-Root (Section 4.9.2) in the Debian Policy
N:   Manual, and Rules-Requires-Root (Section 5.6.31) in the Debian Policy
N:   Manual for details.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: debian/control/field/rules-requires-root
N:   Renamed from: rules-does-not-require-root
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: source-format 3.0 (native)
N: 
N:   This is the source format declared in the package.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: debian/source-dir
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: standards-version 4.1.1
N: 
N:   The standards version of the package according to Standards-Version field
N:   in the debian/control file.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: fields/standards-version
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: trimmed-deb822-field §1 Build-Depends cmake (>= 3.4),\n               debhelper-compat (= 12),\n               docbook-xml <!nodoc>,\n               docbook-xsl <!nodoc>,\n               dpkg-dev (>= 1.20.8),\n               gettext (>= 0.12),\n               googletest <!nocheck> | libgtest-dev <!nocheck>,\n               libbz2-dev,\n               libdb-dev,\n               libgnutls28-dev (>= 3.4.6),\n               libgcrypt20-dev,\n               liblz4-dev (>= 0.0~r126),\n               liblzma-dev,\n               libseccomp-dev (>= 2.4.2) [amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x hppa powerpc powerpcspe ppc64 x32],\n               libsystemd-dev [linux-any],\n               libudev-dev [linux-any],\n               libxxhash-dev (>= 0.8),\n               libzstd-dev (>= 1.0),\n               ninja-build,\n               pkg-config,\n               po4a (>= 0.34-2) <!nodoc>,\n               triehash,\n               xsltproc <!nodoc>,\n               zlib1g-dev [debian/control:10]
N: 
N:   The raw but trimmed contents of the named field in the given Deb822 file.
N:   The number indicates the section from the top, starting at 1.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: fields/deb822
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: trimmed-deb822-field §1 Build-Depends-Indep doxygen <!nodoc !pkg.apt.nodoxygen>, graphviz <!nodoc !pkg.apt.nodoxygen>, w3m <!nodoc> [debian/control:34]
N:
C: apt source: trimmed-deb822-field §1 Maintainer APT Development Team <deity@lists.debian.org> [debian/control:4]
N:
C: apt source: trimmed-deb822-field §1 Priority important [debian/control:3]
N:
C: apt source: trimmed-deb822-field §1 Rules-Requires-Root no [debian/control:8]
N:
C: apt source: trimmed-deb822-field §1 Section admin [debian/control:2]
N:
C: apt source: trimmed-deb822-field §1 Source apt [debian/control:1]
N:
C: apt source: trimmed-deb822-field §1 Standards-Version 4.1.1 [debian/control:9]
N:
C: apt source: trimmed-deb822-field §1 Uploaders Michael Vogt <mvo@debian.org>,\n           Julian Andres Klode <jak@debian.org>,\n           David Kalnischkies <donkult@debian.org> [debian/control:5]
N:
C: apt source: trimmed-deb822-field §1 Vcs-Browser https://salsa.debian.org/apt-team/apt [debian/control:36]
N:
C: apt source: trimmed-deb822-field §1 Vcs-Git https://salsa.debian.org/apt-team/apt.git [debian/control:35]
N:
C: apt source: trimmed-deb822-field §2 Architecture any [debian/control:39]
N:
C: apt source: trimmed-deb822-field §2 Breaks apt-transport-https (<< 1.5~alpha4~),\n        apt-utils (<< 1.3~exp2~),\n        aptitude (<< 0.8.10) [debian/control:47]
N:
C: apt source: trimmed-deb822-field §2 Depends adduser,\n         gpgv | gpgv2 | gpgv1,\n         libapt-pkg6.0 (>= ${binary:Version}),\n         ${apt:keyring},\n         ${misc:Depends},\n         ${shlibs:Depends} [debian/control:40]
N:
C: apt source: trimmed-deb822-field §2 Description commandline package manager\n This package provides commandline tools for searching and\n managing as well as querying information about packages\n as a low-level access to all features of the libapt-pkg library.\n .\n These include:\n  * apt-get for retrieval of packages and information about them\n    from authenticated sources and for installation, upgrade and\n    removal of packages together with their dependencies\n  * apt-cache for querying available information about installed\n    as well as installable packages\n  * apt-cdrom to use removable media as a source for packages\n  * apt-config as an interface to the configuration settings\n  * apt-key as an interface to manage authentication keys [debian/control:57]
N:
C: apt source: trimmed-deb822-field §2 Package apt [debian/control:38]
N:
C: apt source: trimmed-deb822-field §2 Provides apt-transport-https (= ${binary:Version}) [debian/control:50]
N:
C: apt source: trimmed-deb822-field §2 Recommends ca-certificates [debian/control:51]
N:
C: apt source: trimmed-deb822-field §2 Replaces apt-transport-https (<< 1.5~alpha4~), apt-utils (<< 1.3~exp2~) [debian/control:46]
N:
C: apt source: trimmed-deb822-field §2 Suggests apt-doc,\n          aptitude | synaptic | wajig,\n          dpkg-dev (>= 1.17.2),\n          gnupg | gnupg2 | gnupg1,\n          powermgmt-base [debian/control:52]
N:
C: apt source: trimmed-deb822-field §3 Architecture any [debian/control:73]
N:
C: apt source: trimmed-deb822-field §3 Breaks appstream (<< 0.9.0-3~), apt (<< 1.6~), aptitude (<< 0.8.9), libapt-inst1.5 (<< 0.9.9~), dpkg (<< 1.20.8) [debian/control:78]
N:
C: apt source: trimmed-deb822-field §3 Depends ${misc:Depends}, ${shlibs:Depends} [debian/control:77]
N:
C: apt source: trimmed-deb822-field §3 Description package management runtime library\n This library provides the common functionality for searching and\n managing packages as well as information about packages.\n Higher-level package managers can depend upon this library.\n .\n This includes:\n  * retrieval of information about packages from multiple sources\n  * retrieval of packages and all dependent packages\n    needed to satisfy a request either through an internal\n    solver or by interfacing with an external one\n  * authenticating the sources and validating the retrieved data\n  * installation and removal of packages in the system\n  * providing different transports to retrieve data over cdrom, ftp,\n    http(s), rsh as well as an interface to add more transports like\n    tor+http(s) (apt-transport-tor). [debian/control:82]
N:
C: apt source: trimmed-deb822-field §3 Multi-Arch same [debian/control:74]
N:
C: apt source: trimmed-deb822-field §3 Package libapt-pkg6.0 [debian/control:72]
N:
C: apt source: trimmed-deb822-field §3 Pre-Depends ${misc:Pre-Depends} [debian/control:76]
N:
C: apt source: trimmed-deb822-field §3 Priority optional [debian/control:75]
N:
C: apt source: trimmed-deb822-field §3 Provides libapt-pkg (= ${binary:Version}) [debian/control:81]
N:
C: apt source: trimmed-deb822-field §3 Recommends apt (>= ${binary:Version}) [debian/control:79]
N:
C: apt source: trimmed-deb822-field §3 Section libs [debian/control:80]
N:
C: apt source: trimmed-deb822-field §4 Architecture all [debian/control:99]
N:
C: apt source: trimmed-deb822-field §4 Build-Profiles <!nodoc> [debian/control:104]
N:
C: apt source: trimmed-deb822-field §4 Depends ${misc:Depends} [debian/control:101]
N:
C: apt source: trimmed-deb822-field §4 Description documentation for APT\n This package contains the user guide and offline guide for various\n APT tools which are provided in a html and a text-only version. [debian/control:105]
N:
C: apt source: trimmed-deb822-field §4 Multi-Arch foreign [debian/control:103]
N:
C: apt source: trimmed-deb822-field §4 Package apt-doc [debian/control:98]
N:
C: apt source: trimmed-deb822-field §4 Priority optional [debian/control:100]
N:
C: apt source: trimmed-deb822-field §4 Section doc [debian/control:102]
N:
C: apt source: trimmed-deb822-field §5 Architecture any [debian/control:110]
N:
C: apt source: trimmed-deb822-field §5 Depends libapt-pkg (= ${binary:Version}),\n         ${misc:Depends} [debian/control:114]
N:
C: apt source: trimmed-deb822-field §5 Description development files for APT's libapt-pkg and libapt-inst\n This package contains the header files and libraries for\n developing with APT's libapt-pkg Debian package manipulation\n library and the libapt-inst deb/tar/ar library. [debian/control:117]
N:
C: apt source: trimmed-deb822-field §5 Multi-Arch same [debian/control:111]
N:
C: apt source: trimmed-deb822-field §5 Package libapt-pkg-dev [debian/control:109]
N:
C: apt source: trimmed-deb822-field §5 Pre-Depends ${misc:Pre-Depends} [debian/control:113]
N:
C: apt source: trimmed-deb822-field §5 Priority optional [debian/control:112]
N:
C: apt source: trimmed-deb822-field §5 Section libdevel [debian/control:116]
N:
C: apt source: trimmed-deb822-field §6 Architecture all [debian/control:123]
N:
C: apt source: trimmed-deb822-field §6 Build-Profiles <!nodoc> [debian/control:128]
N:
C: apt source: trimmed-deb822-field §6 Depends ${misc:Depends} [debian/control:125]
N:
C: apt source: trimmed-deb822-field §6 Description documentation for APT development\n This package contains documentation for development of the APT\n Debian package manipulation program and its libraries.\n .\n This includes the source code documentation generated by doxygen\n in html format. [debian/control:129]
N:
C: apt source: trimmed-deb822-field §6 Multi-Arch foreign [debian/control:127]
N:
C: apt source: trimmed-deb822-field §6 Package libapt-pkg-doc [debian/control:122]
N:
C: apt source: trimmed-deb822-field §6 Priority optional [debian/control:124]
N:
C: apt source: trimmed-deb822-field §6 Section doc [debian/control:126]
N:
C: apt source: trimmed-deb822-field §7 Architecture any [debian/control:137]
N:
C: apt source: trimmed-deb822-field §7 Depends apt (= ${binary:Version}),\n         ${misc:Depends},\n         ${shlibs:Depends} [debian/control:138]
N:
C: apt source: trimmed-deb822-field §7 Description package management related utility programs\n This package contains some less used commandline utilities related\n to package management with APT.\n .\n  * apt-extracttemplates is used by debconf to prompt for configuration\n    questions before installation.\n  * apt-ftparchive is used to create Packages and other index files\n    needed to publish an archive of Debian packages\n  * apt-sortpkgs is a Packages/Sources file normalizer. [debian/control:141]
N:
C: apt source: trimmed-deb822-field §7 Package apt-utils [debian/control:136]
N:
C: apt source: trimmed-deb822-field §8 Architecture all [debian/control:152]
N:
C: apt source: trimmed-deb822-field §8 Depends apt (>= 1.5~alpha4), ${misc:Depends} [debian/control:154]
N:
C: apt source: trimmed-deb822-field §8 Description transitional package for https support\n This is a dummy transitional package - https support has been moved into\n the apt package in 1.5. It can be safely removed. [debian/control:157]
N:
C: apt source: trimmed-deb822-field §8 Multi-Arch foreign [debian/control:153]
N:
C: apt source: trimmed-deb822-field §8 Package apt-transport-https [debian/control:151]
N:
C: apt source: trimmed-deb822-field §8 Priority optional [debian/control:155]
N:
C: apt source: trimmed-deb822-field §8 Section oldlibs [debian/control:156]
N:
C: apt source: trimmed-field Architecture any all
N: 
N:   These are the raw but trimmed contents of the named field in the package's
N:   primary control file.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: fields/trimmed
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: trimmed-field Binary apt, libapt-pkg6.0, apt-doc, libapt-pkg-dev, libapt-pkg-doc, apt-utils, apt-transport-https
N:
C: apt source: trimmed-field Build-Depends cmake (>= 3.4), debhelper-compat (= 12), docbook-xml <!nodoc>, docbook-xsl <!nodoc>, dpkg-dev (>= 1.20.8), gettext (>= 0.12), googletest <!nocheck> | libgtest-dev <!nocheck>, libbz2-dev, libdb-dev, libgnutls28-dev (>= 3.4.6), libgcrypt20-dev, liblz4-dev (>= 0.0~r126), liblzma-dev, libseccomp-dev (>= 2.4.2) [amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x hppa powerpc powerpcspe ppc64 x32], libsystemd-dev [linux-any], libudev-dev [linux-any], libxxhash-dev (>= 0.8), libzstd-dev (>= 1.0), ninja-build, pkg-config, po4a (>= 0.34-2) <!nodoc>, triehash, xsltproc <!nodoc>, zlib1g-dev
N:
C: apt source: trimmed-field Build-Depends-Indep doxygen <!nodoc !pkg.apt.nodoxygen>, graphviz <!nodoc !pkg.apt.nodoxygen>, w3m <!nodoc>
N:
C: apt source: trimmed-field Checksums-Sha1 113e0b53926dc2f520a1844bd4477b369cd2d7b0 2328508 apt_2.6.1.tar.xz
N:
C: apt source: trimmed-field Checksums-Sha256 86b888c901fa2e78f1bf52a2aaa2f400ff82a472b94ff0ac6631939ee68fa6fd 2328508 apt_2.6.1.tar.xz
N:
C: apt source: trimmed-field Files 020cf3b40681833a0440a7baabad034d 2328508 apt_2.6.1.tar.xz
N:
C: apt source: trimmed-field Format 3.0 (native)
N:
C: apt source: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: apt source: trimmed-field Package-List apt deb admin important arch=any\n apt-doc deb doc optional arch=all profile=!nodoc\n apt-transport-https deb oldlibs optional arch=all\n apt-utils deb admin important arch=any\n libapt-pkg-dev deb libdevel optional arch=any\n libapt-pkg-doc deb doc optional arch=all profile=!nodoc\n libapt-pkg6.0 deb libs optional arch=any
N:
C: apt source: trimmed-field Source apt
N:
C: apt source: trimmed-field Standards-Version 4.1.1
N:
C: apt source: trimmed-field Testsuite autopkgtest
N:
C: apt source: trimmed-field Testsuite-Triggers @builddeps@, aptitude, db-util, dpkg, fakeroot, g++, gdb, gdb-minimal, gnupg, gnupg1, gnupg2, gpgv, gpgv1, gpgv2, libfile-fcntllock-perl, lsof, pkg-config, python3-apt, stunnel4, valgrind, wget
N:
C: apt source: trimmed-field Uploaders Michael Vogt <mvo@debian.org>, Julian Andres Klode <jak@debian.org>, David Kalnischkies <donkult@debian.org>
N:
C: apt source: trimmed-field Vcs-Browser https://salsa.debian.org/apt-team/apt
N:
C: apt source: trimmed-field Vcs-Git https://salsa.debian.org/apt-team/apt.git
N:
C: apt source: trimmed-field Version 2.6.1
N:
C: apt: trimmed-field Architecture amd64
N:
C: apt: trimmed-field Breaks apt-transport-https (<< 1.5~alpha4~), apt-utils (<< 1.3~exp2~), aptitude (<< 0.8.10)
N:
C: apt: trimmed-field Depends adduser, gpgv | gpgv2 | gpgv1, libapt-pkg6.0 (>= 2.6.1), debian-archive-keyring, libc6 (>= 2.34), libgcc-s1 (>= 3.0), libgnutls30 (>= 3.7.5), libseccomp2 (>= 2.4.2), libstdc++6 (>= 11), libsystemd0
N:
C: apt: trimmed-field Description commandline package manager\n This package provides commandline tools for searching and\n managing as well as querying information about packages\n as a low-level access to all features of the libapt-pkg library.\n .\n These include:\n  * apt-get for retrieval of packages and information about them\n    from authenticated sources and for installation, upgrade and\n    removal of packages together with their dependencies\n  * apt-cache for querying available information about installed\n    as well as installable packages\n  * apt-cdrom to use removable media as a source for packages\n  * apt-config as an interface to the configuration settings\n  * apt-key as an interface to manage authentication keys
N:
C: apt: trimmed-field Installed-Size 4232
N:
C: apt: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: apt: trimmed-field Package apt
N:
C: apt: trimmed-field Priority important
N:
C: apt: trimmed-field Provides apt-transport-https (= 2.6.1)
N:
C: apt: trimmed-field Recommends ca-certificates
N:
C: apt: trimmed-field Replaces apt-transport-https (<< 1.5~alpha4~), apt-utils (<< 1.3~exp2~)
N:
C: apt: trimmed-field Section admin
N:
C: apt: trimmed-field Suggests apt-doc, aptitude | synaptic | wajig, dpkg-dev (>= 1.17.2), gnupg | gnupg2 | gnupg1, powermgmt-base
N:
C: apt: trimmed-field Version 2.6.1
N:
C: apt-dbgsym: trimmed-field Architecture amd64
N:
C: apt-dbgsym: trimmed-field Auto-Built-Package debug-symbols
N:
C: apt-dbgsym: trimmed-field Build-Ids 04d62252c29afee1b329aa5011d0c4495088ca23 0cd62d1151de2aad1f6e040edabff6c71f7b301c 0e651a7cb1a6607d2ef7821cc7ad4b420b6d683c 157631f2617f73dee730273c7c598fd4d17b7284 286f4abe2da6341ef32cf6c52bdb33604ebee8be 2c84ac127ecd554c148e2c2f6165768494087bd5 5668711408d4e6bc99a6a0576421e624cb2436a9 56b1069cc3f59e6e49a41d1d462b1a99bdf59c16 5add461a8e2fed32771c879fdfc69abfb8155641 7b50a5878a3e2a94a3955cde212858d164ee5750 7cc67ed6ebab15c3340c5dfe9ea284e43858e3e9 7d19622ebe73ec40f0a980a1412f85a4f201d20b 7dc6d15b35dac99f2689f2284e3d87b5e09c18f8 8de71948aeab9f1fed2dbbc434bdf518cc8faac1 9508d2c03a2874d02745147a05e4c787f1056114 a4b996763122ab585ee0133525fbbd4b372420fc a976003cdc52998aeb2f095245fd64f24d3110d8 c54404f97bdea245a66991175ac958789675a920 e3b3ac59c502f977b0d27f98c920918de8f2c164
N:
C: apt-dbgsym: trimmed-field Depends apt (= 2.6.1)
N:
C: apt-dbgsym: trimmed-field Description debug symbols for apt
N:
C: apt-dbgsym: trimmed-field Installed-Size 7676
N:
C: apt-dbgsym: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: apt-dbgsym: trimmed-field Package apt-dbgsym
N:
C: apt-dbgsym: trimmed-field Priority optional
N:
C: apt-dbgsym: trimmed-field Section debug
N:
C: apt-dbgsym: trimmed-field Source apt
N:
C: apt-dbgsym: trimmed-field Version 2.6.1
N:
C: apt-doc: trimmed-field Architecture all
N:
C: apt-doc: trimmed-field Description documentation for APT\n This package contains the user guide and offline guide for various\n APT tools which are provided in a html and a text-only version.
N:
C: apt-doc: trimmed-field Installed-Size 802
N:
C: apt-doc: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: apt-doc: trimmed-field Multi-Arch foreign
N:
C: apt-doc: trimmed-field Package apt-doc
N:
C: apt-doc: trimmed-field Priority optional
N:
C: apt-doc: trimmed-field Section doc
N:
C: apt-doc: trimmed-field Source apt
N:
C: apt-doc: trimmed-field Version 2.6.1
N:
C: apt-transport-https: trimmed-field Architecture all
N:
C: apt-transport-https: trimmed-field Depends apt (>= 1.5~alpha4)
N:
C: apt-transport-https: trimmed-field Description transitional package for https support\n This is a dummy transitional package - https support has been moved into\n the apt package in 1.5. It can be safely removed.
N:
C: apt-transport-https: trimmed-field Installed-Size 35
N:
C: apt-transport-https: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: apt-transport-https: trimmed-field Multi-Arch foreign
N:
C: apt-transport-https: trimmed-field Package apt-transport-https
N:
C: apt-transport-https: trimmed-field Priority optional
N:
C: apt-transport-https: trimmed-field Section oldlibs
N:
C: apt-transport-https: trimmed-field Source apt
N:
C: apt-transport-https: trimmed-field Version 2.6.1
N:
C: apt-utils: trimmed-field Architecture amd64
N:
C: apt-utils: trimmed-field Depends apt (= 2.6.1), libapt-pkg6.0 (>= 2.6.1), libc6 (>= 2.34), libdb5.3, libgcc-s1 (>= 3.0), libstdc++6 (>= 11)
N:
C: apt-utils: trimmed-field Description package management related utility programs\n This package contains some less used commandline utilities related\n to package management with APT.\n .\n  * apt-extracttemplates is used by debconf to prompt for configuration\n    questions before installation.\n  * apt-ftparchive is used to create Packages and other index files\n    needed to publish an archive of Debian packages\n  * apt-sortpkgs is a Packages/Sources file normalizer.
N:
C: apt-utils: trimmed-field Installed-Size 1037
N:
C: apt-utils: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: apt-utils: trimmed-field Package apt-utils
N:
C: apt-utils: trimmed-field Priority important
N:
C: apt-utils: trimmed-field Section admin
N:
C: apt-utils: trimmed-field Source apt
N:
C: apt-utils: trimmed-field Version 2.6.1
N:
C: apt-utils-dbgsym: trimmed-field Architecture amd64
N:
C: apt-utils-dbgsym: trimmed-field Auto-Built-Package debug-symbols
N:
C: apt-utils-dbgsym: trimmed-field Build-Ids 879a2c9613271555f269b56a6e07e2699d48e0b3 c17b18db77054cc1b5e2c2ce0af8a98eb62b78b3 e6cb0b9d1bec1a6b6db11d145349770324ba13e5 e8d41a06aca7a75f1512c44b7b68106fbf7cd277 f509acacbe74620bb037d3723be59cfdecbe7f74
N:
C: apt-utils-dbgsym: trimmed-field Depends apt-utils (= 2.6.1)
N:
C: apt-utils-dbgsym: trimmed-field Description debug symbols for apt-utils
N:
C: apt-utils-dbgsym: trimmed-field Installed-Size 1781
N:
C: apt-utils-dbgsym: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: apt-utils-dbgsym: trimmed-field Package apt-utils-dbgsym
N:
C: apt-utils-dbgsym: trimmed-field Priority optional
N:
C: apt-utils-dbgsym: trimmed-field Section debug
N:
C: apt-utils-dbgsym: trimmed-field Source apt
N:
C: apt-utils-dbgsym: trimmed-field Version 2.6.1
N:
C: libapt-pkg-dev: trimmed-field Architecture amd64
N:
C: libapt-pkg-dev: trimmed-field Depends libapt-pkg (= 2.6.1)
N:
C: libapt-pkg-dev: trimmed-field Description development files for APT's libapt-pkg and libapt-inst\n This package contains the header files and libraries for\n developing with APT's libapt-pkg Debian package manipulation\n library and the libapt-inst deb/tar/ar library.
N:
C: libapt-pkg-dev: trimmed-field Installed-Size 513
N:
C: libapt-pkg-dev: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: libapt-pkg-dev: trimmed-field Multi-Arch same
N:
C: libapt-pkg-dev: trimmed-field Package libapt-pkg-dev
N:
C: libapt-pkg-dev: trimmed-field Priority optional
N:
C: libapt-pkg-dev: trimmed-field Section libdevel
N:
C: libapt-pkg-dev: trimmed-field Source apt
N:
C: libapt-pkg-dev: trimmed-field Version 2.6.1
N:
C: libapt-pkg-doc: trimmed-field Architecture all
N:
C: libapt-pkg-doc: trimmed-field Description documentation for APT development\n This package contains documentation for development of the APT\n Debian package manipulation program and its libraries.\n .\n This includes the source code documentation generated by doxygen\n in html format.
N:
C: libapt-pkg-doc: trimmed-field Installed-Size 16070
N:
C: libapt-pkg-doc: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: libapt-pkg-doc: trimmed-field Multi-Arch foreign
N:
C: libapt-pkg-doc: trimmed-field Package libapt-pkg-doc
N:
C: libapt-pkg-doc: trimmed-field Priority optional
N:
C: libapt-pkg-doc: trimmed-field Section doc
N:
C: libapt-pkg-doc: trimmed-field Source apt
N:
C: libapt-pkg-doc: trimmed-field Version 2.6.1
N:
C: libapt-pkg6.0: trimmed-field Architecture amd64
N:
C: libapt-pkg6.0: trimmed-field Breaks appstream (<< 0.9.0-3~), apt (<< 1.6~), aptitude (<< 0.8.9), dpkg (<< 1.20.8), libapt-inst1.5 (<< 0.9.9~)
N:
C: libapt-pkg6.0: trimmed-field Depends libbz2-1.0, libc6 (>= 2.34), libgcc-s1 (>= 3.0), libgcrypt20 (>= 1.10.0), liblz4-1 (>= 0.0~r127), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 11), libsystemd0 (>= 221), libudev1 (>= 183), libxxhash0 (>= 0.7.1), libzstd1 (>= 1.5.2), zlib1g (>= 1:1.2.2.3)
N:
C: libapt-pkg6.0: trimmed-field Description package management runtime library\n This library provides the common functionality for searching and\n managing packages as well as information about packages.\n Higher-level package managers can depend upon this library.\n .\n This includes:\n  * retrieval of information about packages from multiple sources\n  * retrieval of packages and all dependent packages\n    needed to satisfy a request either through an internal\n    solver or by interfacing with an external one\n  * authenticating the sources and validating the retrieved data\n  * installation and removal of packages in the system\n  * providing different transports to retrieve data over cdrom, ftp,\n    http(s), rsh as well as an interface to add more transports like\n    tor+http(s) (apt-transport-tor).
N:
C: libapt-pkg6.0: trimmed-field Installed-Size 3297
N:
C: libapt-pkg6.0: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: libapt-pkg6.0: trimmed-field Multi-Arch same
N:
C: libapt-pkg6.0: trimmed-field Package libapt-pkg6.0
N:
C: libapt-pkg6.0: trimmed-field Priority optional
N:
C: libapt-pkg6.0: trimmed-field Provides libapt-pkg (= 2.6.1)
N:
C: libapt-pkg6.0: trimmed-field Recommends apt (>= 2.6.1)
N:
C: libapt-pkg6.0: trimmed-field Section libs
N:
C: libapt-pkg6.0: trimmed-field Source apt
N:
C: libapt-pkg6.0: trimmed-field Version 2.6.1
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Architecture amd64
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Auto-Built-Package debug-symbols
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Build-Ids 59ca3ed9b7a3f500608e3d3510c91582c5d78d23
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Depends libapt-pkg6.0 (= 2.6.1)
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Description debug symbols for libapt-pkg6.0
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Installed-Size 10405
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Maintainer APT Development Team <deity@lists.debian.org>
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Multi-Arch same
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Package libapt-pkg6.0-dbgsym
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Priority optional
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Section debug
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Source apt
N:
C: libapt-pkg6.0-dbgsym: trimmed-field Version 2.6.1
N:
C: apt: unmerged-usr [lib/systemd/system/apt-daily-upgrade.service]
N: 
N:   The named file is being installed in a legacy location. Many competing
N:   distributions install this file under /usr. Debian would like to do the
N:   same, but the best way to get there is presently unclear.
N:   
N:   Please coordinate with the release team before you change this path to the
N:   new location. There is a growing body of evidence that uncoordinated
N:   action by individual package maintainers or teams may not be the best path
N:   forward.
N:   
N:   Debian's Technical Committee voted on February 1, 2021 that the bookworm
N:   release should support only the merged-usr root filesystem layout, thus
N:   dropping support for the non-merged-usr layout.
N: 
N:   Please refer to https://wiki.debian.org/UsrMerge,
N:   https://wiki.debian.org/Teams/Dpkg/MergedUsr, Bug#978636,
N:   https://lists.debian.org/debian-devel/2020/11/#00232,
N:   https://lists.debian.org/debian-devel/2020/12/#00386,
N:   https://lists.debian.org/debian-devel-announce/2019/03/msg00001.html,
N:   https://rusty.ozlabs.org/?p=236,
N:   https://www.linux-magazine.com/Issues/2019/228/Debian-usr-Merge,
N:   https://lwn.net/Articles/773342/, and
N:   https://www.freedesktop.org/wiki/Software/systemd/TheCaseForTheUsrMerge/
N:   for details.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: files/hierarchy/merged-usr
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt: unmerged-usr [lib/systemd/system/apt-daily-upgrade.timer]
N:
C: apt: unmerged-usr [lib/systemd/system/apt-daily.service]
N:
C: apt: unmerged-usr [lib/systemd/system/apt-daily.timer]
N:
C: apt source: vcs git
N: 
N:   The package uses the specified VCS (eg. "git") according to the
N:   debian/control file.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: fields/vcs
N:   This tag is a classification. There is no issue in your package.
N: 
N:
C: apt source: vcs-uri Git https://salsa.debian.org/apt-team/apt.git
N: 
N:   The package uses the specified VCS URI according to the debian/control
N:   file.
N: 
N:   Visibility: classification
N:   Show-Always: no
N:   Check: fields/vcs
N:   This tag is a classification. There is no issue in your package.
N: 
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1ANDMatcher__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1ANDMatcher__inherit__graph.svg
N: 
N:   The package ships the two (or more) files with the exact same contents.
N:   
N:   Duplicates can often be replaced with symlinks by running:
N:   
N:      jdupes -rl debian/${binary}/usr
N:   
N:   ... after they are installed, eg. in override_dh_link. In addition, please
N:   consider reporting this upstream.
N:   
N:   Note: empty files are exempt from this check.
N: 
N:   Please refer to the jdupes(1) manual page for details.
N: 
N:   Visibility: pedantic
N:   Show-Always: no
N:   Check: files/duplicates
N:   This tag is experimental.
N: 
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1FalseMatcher__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1FalseMatcher__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1NOTMatcher__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1NOTMatcher__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1ORMatcher__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1ORMatcher__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1PackageArchitectureMatchesSpecification__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1PackageArchitectureMatchesSpecification__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1PackageIsNewInstall__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1PackageIsNewInstall__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1PackageNameMatchesFnmatch__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1PackageNameMatchesFnmatch__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1PackageNameMatchesRegEx__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1PackageNameMatchesRegEx__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1TrueMatcher__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1CacheFilter_1_1TrueMatcher__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__const__iterator__coll__graph_org.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__const__iterator__inherit__graph_org.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__const__reverse__iterator__coll__graph_org.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__const__reverse__iterator__inherit__graph_org.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__iterator__base__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__iterator__base__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__iterator__coll__graph_org.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__iterator__inherit__graph_org.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__reverse__iterator__coll__graph_org.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1Container__reverse__iterator__inherit__graph_org.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1PackageContainer__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1PackageContainer__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1PackageUniverse_1_1const__iterator__coll__graph_org.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1PackageUniverse_1_1const__iterator__inherit__graph_org.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1PackageUniverse__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1PackageUniverse__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classAPT_1_1VersionContainer__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classAPT_1_1VersionContainer__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classDefaultRootSetFunc2__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classDefaultRootSetFunc2__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classNoActionItem__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classNoActionItem__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classpkgAcqAuxFile__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classpkgAcqAuxFile__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classpkgRecords__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classpkgRecords__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/classpkgSimulate_1_1Policy__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/classpkgSimulate_1_1Policy__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/structAPT_1_1Internal_1_1Patterns_1_1PackageIsConfigFiles__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/structAPT_1_1Internal_1_1Patterns_1_1PackageIsConfigFiles__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/structAPT_1_1Internal_1_1Patterns_1_1PackageIsEssential__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/structAPT_1_1Internal_1_1Patterns_1_1PackageIsEssential__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/structAPT_1_1Internal_1_1Patterns_1_1PackageIsObsolete__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/structAPT_1_1Internal_1_1Patterns_1_1PackageIsObsolete__inherit__graph.svg
N:
O: libapt-pkg-doc: duplicate-files usr/share/doc/libapt-pkg-doc/html/structAPT_1_1Internal_1_1Patterns_1_1PackageIsVirtual__coll__graph.svg usr/share/doc/libapt-pkg-doc/html/structAPT_1_1Internal_1_1Patterns_1_1PackageIsVirtual__inherit__graph.svg
N:
O: apt: exit-in-shared-library [usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0]
N: 
N:   The listed shared library calls the C library exit() or _exit() functions.
N:   
N:   In the case of an error, the library should instead return an appropriate
N:   error code to the calling program which can then determine how to handle
N:   the error, including performing any required clean-up.
N:   
N:   In most cases, removing the call should be discussed with upstream,
N:   particularly as it may produce an ABI change.
N: 
N:   Visibility: info
N:   Show-Always: no
N:   Check: libraries/shared/exit
N:   Renamed from: shlib-calls-exit
N:   This tag is experimental.
N: 
N:
N: we are implementing our own fallback and it is a minor usecase only
O: apt: missing-depends-on-sensible-utils sensible-pager [usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0]
N: 
N:   The listed file appears to use one or more of the binaries in
N:   sensible-utils but no binary declares a dependency for this package.
N:   
N:   As part of the transition to split sensible-utils and debianutils, the
N:   remaining Depends from debianutils was removed in version 4.8.2.
N:   
N:   In most cases you will need to add a Depends, Recommends, Pre-Depends or
N:   Suggests on sensible-utils.
N: 
N:   Visibility: error
N:   Show-Always: no
N:   Check: files/contents
N: 
N:
N: the private library is for internal sharing only
O: apt: package-name-doesnt-match-sonames libapt-private0.0
N: 
N:   The package name of a library package should usually reflect the soname of
N:   the included library. The package name can determined from the library
N:   file name with the following code snippet:
N:   
N:    $ objdump -p /path/to/libfoo-bar.so.1.2.3 | sed -n -e's/^[[:space:]]*SONAME[[:space:]]*//p' | \
N:        sed -r -e's/([0-9])\.so\./\1-/; s/\.so(\.|$)//; y/_/-/; s/(.*)/\L&/'
N: 
N:   Visibility: warning
N:   Show-Always: no
N:   Check: libraries/shared/soname
N: 

--------------------
debug log System lintian - 1 week, 3 days ago 0 minutes
BETA