summaryrefslogtreecommitdiff
path: root/doc/source/apt_pkg/cache.rst
blob: af67d82f9236458924f8d3eb69db506c6cb9c0c5 (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
Classes in apt_pkg
==================

.. todo::

    This should be split and cleaned up a bit.

:class:`Acquire`
----------------
.. class:: Acquire

    .. method:: Run()

        Fetch all the items which have been added by
        :func:`apt_pkg.GetPkgAcqFile`.

    .. method:: Shutdown

        Shut the fetcher down.

:class:`PkgAcqFile`
-------------------
.. class:: PkgAcqFile

    This class provides no methods or attributes

:class:`AcquireItem`
---------------------

.. class:: AcquireItem

    .. attribute:: ID

        The ID of the item.

    .. attribute:: Complete

        Is the item completely acquired?

    .. attribute:: Local

        Is the item a local file?

    .. attribute:: IsTrusted

        Can the file be trusted?

    .. attribute:: FileSize

        The size of the file, in bytes.

    .. attribute:: ErrorText

        The error message. For example, when a file does not exist on a http
        server, this will contain a 404 error message.

    .. attribute:: DestFile

        The location the file is saved as.

    .. attribute:: DescURI

        The source location.

    **Status**:

    .. attribute:: Status

        Integer, representing the status of the item.

    .. attribute:: StatIdle

        Constant for comparing :attr:`AcquireItem.Status`.

    .. attribute:: StatFetching

        Constant for comparing :attr:`AcquireItem.Status`

    .. attribute:: StatDone

        Constant for comparing :attr:`AcquireItem.Status`

    .. attribute:: StatError

        Constant for comparing :attr:`AcquireItem.Status`

    .. attribute:: StatAuthError

        Constant for comparing :attr:`AcquireItem.Status`

:class:`ActionGroup`
--------------------

.. class:: ActionGroup

    Normally, apt checkes the package cache after every modification for
    packages which are automatically installed but on which no package depends
    anymore (it collects the package garbage).

    Using ActionGroups you can turn this off and therefore make your code
    much faster.

    Initialize it using :func:`apt_pkg.GetPkgActionGroup`, eg::

        apt_pkg.GetPkgActionGroup(depcache)

    .. method:: release

        Release the ActionGroup. This will reactive the collection of package
        garbage.


:class:`Configuration`
----------------------

.. class:: Configuration

    The Configuration objects store the configuration of apt.

    .. describe:: conf[key]

        Return the value of the option given key *key*. If it does not
        exist, raise :exc:`KeyError`.

    .. describe:: conf[key] = value

        Set the option at *key* to *value*.

    .. method:: Find(key[, default=''])

        Return the value for the given key *key*. This is the same as
        :meth:`Configuration.get`.

        If *key* does not exist, return *default*.

    .. method:: FindFile(key[, default=''])

        Return the filename hold by the configuration at *key*. This formats the
        filename correctly and supports the Dir:: stuff in the configuration.

        If *key* does not exist, return *default*.

    .. method:: FindDir(key[, default='/'])

        Return the absolute path to the directory specified in *key*. A
        trailing slash is appended.

        If *key* does not exist, return *default*.

    .. method:: FindI(key[, default=0])

        Return the integer value stored at *key*.

        If *key* does not exist, return *default*.

    .. method:: FindB(key[, default=0])

        Return the boolean value stored at *key*. This returns an integer, but
        it should be treated like True/False.

        If *key* does not exist, return *default*.

    .. method:: Set(key, value)

        Set the value of *key* to *value*.

    .. method:: Exists(key)

        Check whether the key *key* exists in the configuration.

    .. method:: SubTree(key)

        Return a sub tree starting at *key*. The resulting object can be used
        like this one.

    .. method:: List([key])

        List all items at *key*. Normally, return the keys at the top level,
        eg. APT, Dir, etc.

        Use *key* to specify a key of which the childs will be returned.

    .. method:: ValueList([key])

        Same as :meth:`Configuration.List`, but this time for the values.

    .. method:: MyTag()

        Return the tag name of the current tree. Normally this is an empty
        string, but for subtrees it is the key of the subtree.

    .. method:: Clear(key)

        Clear the configuration. Remove all values and keys at *key*.

    .. method:: keys([key])

        Return all the keys, recursive. If *key* is specified, ... (FIXME)

    .. method:: has_key(key)

        Return whether the configuration contains the key *key*.

    .. method:: get(key[, default=''])

        This behaves just like :meth:`dict.get` and :meth:`Configuration.Find`,
        it returns the value of key or if it does not exist, *default*.


:class:`pkgCache`
-----------------
.. class:: pkgCache

    The :class:`pkgCache` class prov

    .. describe:: cache[pkgname]

        Return the :class:`Package()` object for the package name given by
        *pkgname*.

    .. method:: Close()

        Close the package cache.

    .. method:: Open([progress])

        Open the package cache again. The parameter *progress* may be set to
        an :class:`apt.progress.OpProgress()` object or `None`.

    .. method:: Update(progress, list)

        Update the package cache.

        The parameter *progress* points to an :class:`apt.progress.FetchProgress()`
        object.

        The parameter *list* refers to an object as returned by
        :func:`apt_pkg.GetPkgSourceList`.

    .. attribute:: DependsCount

        The total number of dependencies.

    .. attribute:: PackageCount

        The total number of packages available in the cache.

    .. attribute:: ProvidesCount

        The number of provided packages.

    .. attribute:: VerFileCount

        .. todo:: Seems to be some mixture of versions and pkgFile.

    .. attribute:: VersionCount

        The total number of package versions available in the cache.

    .. attribute:: PackageFileCount

        The total number of Packages files available (the Packages files
        listing the packages). This is the same as the length of the list in
        the attribute :attr:`FileList`.

    .. attribute:: FileList

        A list of :class:`PackageFile` objects.


:class:`PackageFile`
--------------------
.. class:: PackageFile

    A :class:`PackageFile` represents a Packages file, eg.
    /var/lib/dpkg/status.

    .. attribute:: Architecture

        The architecture of the package file.

    .. attribute:: Archive

        The archive (eg. unstable)

    .. attribute:: Component

        The component (eg. main)

    .. attribute:: FileName

        The name of the file.

    .. attribute:: ID

        The ID of the package. This is an integer which can be used to store
        further information about the file [eg. as dictionary key].

    .. attribute:: IndexType

        The sort of the index file. In normal cases, this is
        'Debian Package Index'.

    .. attribute:: Label

        The Label, as set in the Release file

    .. attribute:: NotAutomatic

        Whether packages from this list will be updated automatically. The
        default for eg. example is 0 (aka false).

    .. attribute:: NotSource

        Whether the file has no source from which it can be updated. In such a
        case, the value is 1; else 0. /var/lib/dpkg/status is 0 for example.

        Example::

            for pkgfile in cache.FileList:
                if pkgfile.NotSource:
                    print 'The file %s has no source.' % pkgfile.FileName

    .. attribute:: Origin

        The Origin, as set in the Release file

    .. attribute:: Site

        The hostname of the site.

    .. attribute:: Size

        The size of the file.

    .. attribute:: Version

        The version, as set in the release file (eg. "4.0" for "Etch")


Example
^^^^^^^
.. literalinclude:: ../examples/cache-pkgfile.py


:class:`Package`
----------------

.. class:: Package

    The pkgCache::Package objects are an interface to package specific
    features.


    Attributes:

    .. attribute:: CurrentVer

        The version currently installed, or None. This returns a
        :class:`Version` object.

    .. attribute:: ID

        The ID of the package. This can be used to store information about
        the package. The ID is an int value.

    .. attribute:: Name

        This is the name of the package.

    .. attribute:: ProvidesList

        A list of packages providing this package. More detailed, this is a
        list of tuples (str:pkgname, ????, :class:`Version`).

        If you want to check for check for virtual packages, the expression
        ``pkg.ProvidesList and not pkg.VersionList`` helps you. It detects if
        the package is provided by something else and is not available as a
        real package.

    .. attribute:: RevDependsList

        An iterator of :class:`Dependency` objects for dependencies on this
        package.

    .. attribute:: Section

        The section of the package, as specified in the record. The list of
        possible sections is defined in the Policy.

    .. attribute:: VersionList

        A list of :class:`Version` objects for all versions available in the
        cache.

    **States**:

    .. attribute:: SelectedState

        The state we want it to be, ie. if you mark a package for installation,
        this is :attr:`apt_pkg.SelStateInstall`.

        See :ref:`SelStates` for a list of available states.

    .. attribute:: InstState

        The state the currently installed version is in. This is normally
        :attr:`apt_pkg.InstStateOK`, unless the installation failed.

        See :ref:`InstStates` for a list of available states.

    .. attribute:: CurState

        The current state of the package (not installed, unpacked, installed,
        etc). See :ref:`CurStates` for a list of available states.

    **Flags**:

    .. attribute:: Auto

        Whether the package was installed automatically as a dependency of
        another package. (or marked otherwise as automatically installed)

    .. attribute:: Essential

        Whether the package is essential.

    .. attribute:: Important

        Whether the package is important.

Example:
^^^^^^^^^
.. literalinclude:: ../examples/cache-packages.py



:class:`Version`
----------------
.. class:: Version

    The version object contains all information related to a specific package
    version.

    .. attribute:: VerStr

        The version, as a string.

    .. attribute:: Section

        The usual sections (eg. admin, net, etc.). Prefixed with the component
        name for packages not in main (eg. non-free/admin).

    .. attribute:: Arch

        The architecture of the package, eg. amd64 or all.

    .. attribute:: FileList

        A list of (:class:`PackageFile`, int: index) tuples for all Package
        files containing this version of the package.

    .. attribute:: DependsListStr

        A dictionary of dependencies. The key specifies the type of the
        dependency ('Depends', 'Recommends', etc.).


        The value is a list, containing items which refer to the or-groups of
        dependencies. Each of these or-groups is itself a list, containing
        tuples like ('pkgname', 'version', 'relation') for each or-choice.

        An example return value for a package with a 'Depends: python (>= 2.4)'
        would be::

            {'Depends': [
                            [
                             ('python', '2.4', '>=')
                            ]
                        ]
            }

        The same for a dependency on A (>= 1) | B (>= 2)::

            {'Depends': [
                            [
                                ('A', '1', '>='),
                                ('B', '2', '>='),
                            ]
                        ]
            }

    .. attribute:: DependsList

        This is basically the same as :attr:`Version.DependsListStr`,
        but instead of the ('pkgname', 'version', 'relation') tuples,
        it returns :class:`Dependency` objects, which can assist you with
        useful functions.

    .. attribute:: ParentPkg

        The :class:`Package` object this version belongs to.

    .. attribute:: ProvidesList

        This returns a list of all packages provided by this version. Like
        :attr:`Package.ProvidesList`, it returns a list of tuples
        of the form ('virtualpkgname', ???, :class:`Version`), where as the
        last item is the same as the object itself.

    .. attribute:: Size

        The size of the .deb file, in bytes.

    .. attribute:: InstalledSize

        The size of the package (in kilobytes), when unpacked on the disk.

    .. attribute:: Hash

        An integer hash value.

    .. attribute:: ID

        An integer id.

    .. attribute:: Priority

        The integer representation of the priority. This can be used to speed
        up comparisons a lot, compared to :attr:`Version.PriorityStr`.

        The values are defined in the :mod:`apt_pkg` extension, see
        :ref:`Priorities` for more information.

    .. attribute:: PriorityStr

        Return the priority of the package version, as a string, eg.
        "optional".

    .. attribute:: Downloadable

        Whether this package can be downloaded from a remote site.

    .. attribute:: TranslatedDescription

        Return a :class:`Description` object.


:class:`Dependency`
-------------------
.. class:: Dependency

    Represent a dependency from one package to another one.

    .. method:: AllTargets

        A list of :class:`Version` objects which satisfy the dependency,
        and do not conflict with already installed ones.

        From my experience, if you use this method to select the target
        version, it is the best to select the last item unless any of the
        other candidates is already installed. This leads to results being
        very close to the normal package installation.

    .. method:: SmartTargetPkg

        Return a :class:`Version` object of a package which satisfies the
        dependency and does not conflict with installed packages
        (the 'natural target').

    .. attribute:: TargetVer

        The target version of the dependency, as string. Empty string if the
        dependency is not versioned.

    .. attribute:: TargetPkg

        The :class:`Package` object of the target package.

    .. attribute:: ParentVer

        The :class:`Version` object of the parent version, ie. the package
        which declares the dependency.

    .. attribute:: ParentPkg

        The :class:`Package` object of the package which declares the
        dependency. This is the same as using ParentVer.ParentPkg.

    .. attribute:: CompType

        The type of comparison (>=, ==, >>, <=), as string.

    .. attribute:: DepType

        The type of the dependency, as string, eg. "Depends".

    .. attribute:: ID

        The ID of the package, as integer.

Example: Find all missing dependencies
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
With the help of Dependency.AllTargets(), you can easily find all packages with
broken dependencies:

.. literalinclude:: ../examples/missing-deps.py


:class:`Description`
--------------------
.. class:: Description

    Represent the description of the package.

    .. attribute:: LanguageCode

        The language code of the description

    .. attribute:: md5

        The md5 hashsum of the description

    .. attribute:: FileList

        A list of tuples (:class:`PackageFile`, int: index).



:class:`pkgDepCache`
--------------------
.. class:: pkgDepCache

    The pkgDepCache object contains various methods to manipulate the cache,
    to install packages, to remove them, and much more.

    .. method:: Commit(fprogress, iprogress)

        Apply all the changes made.

        The parameter *fprogress* has to be set to an instance of
        apt.progress.FetchProgress or one of its subclasses.

        The parameter *iprogress* has to be set to an instance of
        apt.progress.InstallProgress or one of its subclasses.

    .. method:: FixBroken()

        Try to fix all broken packages in the cache.

    .. method:: GetCandidateVer(pkg)

        Return the candidate version of the package, ie. the version that
        would be installed normally.

        The parameter *pkg* refers to an :class:`Package` object,
        available using the :class:`pkgCache`.

        This method returns a :class:`Version` object.

    .. method:: SetCandidateVer(pkg, version)

        The opposite of :meth:`pkgDepCache.GetCandidateVer`. Set the candidate
        version of the :class:`Package` *pkg* to the :class:`Version`
        *version*.


    .. method:: Upgrade([distUpgrade=False])

        Perform an upgrade. More detailed, this marks all the upgradable
        packages for upgrade. You still need to call
        :meth:`pkgDepCache.Commit` for the changes to apply.

        To perform a dist-upgrade, the optional parameter *distUpgrade* has
        to be set to True.

    .. method:: FixBroken()

        Fix broken packages.

    .. method:: ReadPinFile()

        Read the policy, eg. /etc/apt/preferences.

    .. method:: MinimizeUpgrade()

        Go over the entire set of packages and try to keep each package marked
        for upgrade. If a conflict is generated then the package is restored.

        .. todo::
            Explain better..

    .. method:: MarkKeep(pkg)

        Mark the :class:`Package` *pkg* for keep.

    .. method:: MarkDelete(pkg[, purge])

        Mark the :class:`Package` *pkg* for delete. If *purge* is True,
        the configuration files will be removed as well.

    .. method:: MarkInstall(pkg[, autoInst=True[, fromUser=True]])

        Mark the :class:`Package` *pkg* for install.

        If *autoInst* is ``True``, the dependencies of the package will be
        installed as well. This is the default.

        If *fromUser* is ``True``, the package will be marked as manually
        installed. This is the default.

    .. method:: SetReinstall(pkg)

        Set if the :class:`Package` *pkg* should be reinstalled.

    .. method:: IsUpgradable(pkg)

        Return ``1`` if the package is upgradable.

        The package can be upgraded by calling :meth:`pkgDepCache.MarkInstall`.

    .. method:: IsNowBroken(pkg)

        Return `1` if the package is broken now (including changes made, but
        not committed).

    .. method:: IsInstBroken(pkg)

        Return ``1`` if the package is broken on the current install. This
        takes changes which have not been committed not into effect.

    .. method:: IsGarbage(pkg)

        Return ``1`` if the package is garbage, ie. if it is automatically
        installed and no longer referenced by other packages.

    .. method:: IsAutoInstalled(pkg)

        Return ``1``  if the package is automatically installed (eg. as the
        dependency of another package).

    .. method:: MarkedInstall(pkg)

        Return ``1`` if the package is marked for install.

    .. method:: MarkedUpgrade(pkg)

        Return ``1`` if the package is marked for upgrade.

    .. method:: MarkedDelete(pkg)

        Return ``1`` if the package is marked for delete.

    .. method:: MarkedKeep(pkg)

        Return ``1`` if the package is marked for keep.

    .. method:: MarkedReinstall(pkg)

        Return ``1`` if the package should be installed.

    .. method:: MarkedDowngrade(pkg)

        Return ``1`` if the package should be downgraded.

    .. attribute:: KeepCount

        Integer, number of packages marked as keep

    .. attribute:: InstCount

        Integer, number of packages marked for installation.

    .. attribute:: DelCount

        Number of packages which should be removed.

    .. attribute:: BrokenCount

        Number of packages which are broken.

    .. attribute:: UsrSize

        The size required for the changes on the filesystem. If you install
        packages, this is positive, if you remove them its negative.

    .. attribute:: DebSize

        The size of the packages which are needed for the changes to be
        applied.


:class:`MetaIndex`
------------------

.. todo::

    Complete them

.. class:: MetaIndex

    .. attribute:: URI
    .. attribute:: Dist
    .. attribute:: IsTrusted
    .. attribute:: IndexFiles


:class:`PackageIndexFile`
-------------------------

.. class:: PackageIndexFile

    .. method:: ArchiveURI(path)

        Return the full url to path in the archive.

    .. attribute:: Label

        Return the Label.

    .. attribute:: Exists

        Return whether the file exists.

    .. attribute:: HasPackages

        Return whether the file has packages.

    .. attribute:: Size

        Size of the file

    .. attribute:: IsTrusted

        Whether we can trust the file.


:class:`PkgManager`
-------------------

.. class:: PkgManager

    Class, as returned by :func:`apt_pkg.GetPackageManager`.

    .. method:: GetArchives(fetcher, list, records)

        Add all the selected packages to the :class:`Acquire()` object
        *fetcher*.

        The parameter *list* refers to a :class:`PkgSourceList()` object, as
        returned by :func:`apt_pkg.GetPkgSourceList`.

        The parameter *records* refers to a :class:`pkgRecords()` object, as
        returned by :func:`apt_pkg.GetPkgRecords`.

    .. method:: DoInstall()

        Install the packages.

    .. method:: FixMissing

        Fix the installation if a package could not be downloaded.

    .. attribute:: ResultCompleted

        A constant for checking whether the the result is 'completed'.

        Compare it against the return value of :meth:`PkgManager.GetArchives`
        or :meth:`PkgManager.DoInstall`.

    .. attribute:: ResultFailed

        A constant for checking whether the the result is 'failed'.

        Compare it against the return value of :meth:`PkgManager.GetArchives`
        or :meth:`PkgManager.DoInstall`.

    .. attribute:: ResultIncomplete

        A constant for checking whether the the result is 'incomplete'.

        Compare it against the return value of :meth:`PkgManager.GetArchives`
        or :meth:`PkgManager.DoInstall`.

:class:`pkgRecords`
--------------------

.. class:: PkgRecords

    Provide access to the packages records. This provides very useful
    attributes for fast (convient) access to some fields of the record.

    See :func:`apt_pkg.GetPkgRecords` for initialization.


    .. method:: Lookup(verfile_iter)

        Change the actual package to the package given by the verfile_iter.

        The parameter *verfile_iter* refers to a tuple consisting
        of (:class:`PackageFile()`, int: index), as returned by various
        attributes, including :attr:`Version.FileList`.

        Example (shortened)::

            cand = depcache.GetCandidateVer(cache['python-apt'])
            records.Lookup(cand.FileList[0])
            # Now you can access the record
            print records.SourcePkg # == python-apt

    .. attribute:: FileName

        Return the field 'Filename' of the record. This is the path to the
        package, relative to the base path of the archive.

    .. attribute:: MD5Hash

        Return the MD5 hashsum of the package This refers to the field
        'MD5Sum' in the raw record.

    .. attribute:: SHA1Hash

        Return the SHA1 hashsum of the package. This refers to the field 'SHA1'
        in the raw record.

    .. attribute:: SHA256Hash

        Return the SHA256 hashsum of the package. This refers to the field
        'SHA256' in the raw record.

        .. versionadded:: 0.7.9

    .. attribute:: SourcePkg

        Return the source package.

    .. attribute:: SourceVer

        Return the source version.

    .. attribute:: Maintainer

        Return the maintainer of the package.

    .. attribute:: ShortDesc

        Return the short description. This is the summary on the first line of
        the 'Description' field.

    .. attribute:: LongDesc

        Return the long description. These are lines 2-END from the
        'Description' field.

    .. attribute:: Name

        Return the name of the package. This is the 'Package' field.

    .. attribute:: Homepage

        Return the Homepage. This is the 'Homepage' field.

    .. attribute:: Record

        Return the whole record as a string. If you want to access fields of
        the record not available as an attribute, you can use
        :func:`apt_pkg.ParseSection` to parse the record and access the field
        name.

        Example::

            section = apt_pkg.ParseSection(records.Record)
            print section['SHA256']

:class:`PkgSrcRecords`
----------------------

.. class:: PkgSrcRecords

    This represents the entries in the Sources files, ie. the dsc files of
    the source packages.

    .. note::

        If the Lookup failed, because no package could be found, no error is
        raised. Instead, the attributes listed below are simply not existing
        anymore (same applies when no Lookup has been made, or when it has
        been restarted).

    .. method:: Lookup(pkgname)

        Lookup the record for the package named *pkgname*. To access all
        available records, you need to call it multiple times.

        Imagine a package P with two versions X, Y. The first ``Lookup(P)``
        would set the record to version X and the second ``Lookup(P)`` to
        version Y.

    .. method:: Restart()

        Restart the lookup.

        Imagine a package P with two versions X, Y. The first ``Lookup(P)``
        would set the record to version X and the second ``Lookup(P)`` to
        version Y.

        If you now call ``Restart()``, the internal position will be cleared.
        Now you can call ``Lookup(P)`` again to move to X.

    .. attribute:: Package

        The name of the source package.

    .. attribute:: Version

        A string describing the version of the source package.

    .. attribute:: Maintainer

        A string describing the name of the maintainer.

    .. attribute:: Section

        A string describing the section.

    .. attribute:: Record

        The whole record, as a string. You can use :func:`apt_pkg.ParseSection`
        if you need to parse it.

        You need to parse the record if you want to access fields not available
        via the attributes, eg. 'Standards-Version'

    .. attribute:: Binaries

        Return a list of strings describing the package names of the binaries
        created by the source package. This matches the 'Binary' field in the
        raw record.

    .. attribute:: Index

        The index in the Sources files.

    .. attribute:: Files

        The list of files. This returns a list of tuples with the contents
        ``(str: md5, int: size, str: path, str:type)``.

    .. attribute:: BuildDepends

        Return the list of Build dependencies, as
        ``(str: package, str: version, int: op, int: type)``.

        .. table:: Values of *op*

            ===== =============================================
            Value      Meaning
            ===== =============================================
            0x0   No Operation (no versioned build dependency)
            0x10  | (or) - this will be added to the other values
            0x1   <= (less than or equal)
            0x2   >= (greater than or equal)
            0x3   << (less than)
            0x4   >> (greater than)
            0x5   == (equal)
            0x6   != (not equal)
            ===== =============================================

        .. table:: Values of *type*

            ===== ===================
            Value Meaning
            ===== ===================
            0     Build-Depends
            1     Build-Depends-Indep
            2     Build-Conflicts
            3     Build-Conflicts-Indep
            ===== ===================

        **Example**: In the following content, we will imagine a
        build-dependency::

            Build-Depends: A (>= 1) | B (>= 1), C

        This results in::

            [('A', '1', 18, 0), # 18 = 16 + 2 = 0x10 + 0x2
             ('B', '1', 2, 0),
             ('C', '', 0, 0)]

        This is **not** the same as returned by
        :func:`apt_pkg.ParseSrcDepends`.


:class:`PkgSourceList`
-----------------------

.. class:: PkgSourceList

    This is for :file:`/etc/apt/sources.list`.

    .. method:: FindIndex(pkgfile)

        Return a :class:`PackageIndexFile` object for the :class:`PackageFile`
        *pkgfile*.

    .. method:: ReadMainList

        Read the main list.

    .. method:: GetIndexes(acq[, all])

        Add the index files to the :class:`Acquire()` object *acq*. If *all* is
        given and ``True``, all files are fetched.


:class:`ProblemResolver`
------------------------
.. class:: ProblemResolver

    The problem resolver helps when there are problems in the package
    selection. An example is a package which conflicts with another, already
    installed package.

    .. method:: Protect(pkg)

        Protect the :class:`Package()` object given by the parameter *pkg*.

        .. todo::

            Really document it.

    .. method:: InstallProtect()

        Protect all installed packages from being removed.

    .. method:: Remove(pkg)

        Remove the :class:`Package()` object given by the parameter *pkg*.

        .. todo::

            Really document it.

    .. method:: Clear(pkg)

        Reset the :class:`Package()` *pkg* to the default state.

        .. todo::

            Really document it.

    .. method:: Resolve()

        Try to resolve problems by installing and removing packages.

    .. method:: ResolveByKeep()

        Try to resolve problems only by using keep.


:class:`TagFile`
----------------

.. class:: TagFile

    An object which represents a typical debian control file. Can be used for
    Packages, Sources, control, Release, etc.

    Use :func:`apt_pkg.ParseTagFile` to parse a file.

    .. method:: Step

        Step forward to the next section. This simply returns ``1`` if OK, and
        ``0`` if there is no section

    .. method:: Offset

        Return the current offset (in bytes) from the beginning of the file.

    .. method:: Jump(offset)

        Jump back/forward to *offset*. Use ``Jump(0)`` to jump to the
        beginning of the file again.

    .. attribute:: Section

        This is the current :class:`TagSection()` instance.

:class:`TagSection`
-------------------

.. class:: TagSection

    Represent a single section of a debian control file.

    .. describe:: section[key]

        Return the value of the field at *key*. If *key* is not available,
        raise :exc:`KeyError`.

    .. method:: Bytes

        The number of bytes in the section.

    .. method:: Find(key, default='')

        Return the value of the field at the key *key* if available,
        else return *default*.

    .. method:: FindFlag(key)

        Find a yes/no value for the key *key*. An example for such a
        field is 'Essential'.

    .. method:: get(key, default='')

        Return the value of the field at the key *key* if available, else
        return *default*.

    .. method:: has_key(key)

        Check whether the field with named by *key* exists.

    .. method:: keys()

        Return a list of keys in the section.