]>
Commit | Line | Data |
---|---|---|
0209cce5 JF |
1 | #ifndef TRIE_HASH_pkgTagHash |
2 | #define TRIE_HASH_pkgTagHash | |
3 | #include <stddef.h> | |
4 | #include <stdint.h> | |
5 | #include <apt-pkg/tagfile.h> | |
6 | enum class pkgTagSection::Key { | |
7 | Architecture = 0, | |
8 | Binary = 1, | |
9 | Breaks = 2, | |
10 | Bugs = 3, | |
11 | Build_Conflicts = 4, | |
12 | Build_Conflicts_Arch = 5, | |
13 | Build_Conflicts_Indep = 6, | |
14 | Build_Depends = 7, | |
15 | Build_Depends_Arch = 8, | |
16 | Build_Depends_Indep = 9, | |
17 | Built_For_Profiles = 10, | |
18 | Built_Using = 11, | |
19 | Checksums_Md5 = 12, | |
20 | Checksums_Sha1 = 13, | |
21 | Checksums_Sha256 = 14, | |
22 | Checksums_Sha512 = 15, | |
23 | Class = 16, | |
24 | Conffiles = 17, | |
25 | Config_Version = 18, | |
26 | Conflicts = 19, | |
27 | Depends = 20, | |
28 | Description = 21, | |
29 | Description_md5 = 22, | |
30 | Directory = 23, | |
31 | Dm_Upload_Allowed = 24, | |
32 | Enhances = 25, | |
33 | Essential = 26, | |
34 | Files = 28, | |
35 | Filename = 27, | |
36 | Format = 29, | |
37 | Homepage = 30, | |
38 | Important = 31, | |
39 | Installed_Size = 32, | |
40 | Installer_Menu_Item = 33, | |
41 | Kernel_Version = 34, | |
42 | MD5sum = 36, | |
43 | MSDOS_Filename = 37, | |
44 | Maintainer = 35, | |
45 | Multi_Arch = 38, | |
46 | Optional = 39, | |
47 | Origin = 40, | |
48 | Original_Maintainer = 41, | |
49 | Package = 42, | |
50 | Package_List = 43, | |
51 | Package_Revision = 45, | |
52 | Package_Type = 46, | |
53 | Package__Revision = 44, | |
54 | Pre_Depends = 47, | |
55 | Priority = 48, | |
56 | Provides = 49, | |
57 | Recommended = 50, | |
58 | Recommends = 51, | |
59 | Replaces = 52, | |
60 | Revision = 53, | |
61 | SHA1 = 55, | |
62 | SHA256 = 56, | |
63 | SHA512 = 57, | |
64 | Section = 54, | |
65 | Size = 58, | |
66 | Source = 59, | |
67 | Standards_Version = 60, | |
68 | Status = 61, | |
69 | Subarchitecture = 62, | |
70 | Suggests = 63, | |
71 | Tag = 64, | |
72 | Task = 65, | |
73 | Testsuite = 66, | |
74 | Testsuite_Triggers = 67, | |
75 | Triggers_Awaited = 68, | |
76 | Triggers_Pending = 69, | |
77 | Uploaders = 70, | |
78 | Vcs_Bzr = 74, | |
79 | Vcs_Cvs = 75, | |
80 | Vcs_Git = 77, | |
81 | Vcs_Hg = 78, | |
82 | Vcs_Mtn = 79, | |
83 | Vcs_Svn = 80, | |
84 | Vcs_Arch = 71, | |
85 | Vcs_Browse = 72, | |
86 | Vcs_Browser = 73, | |
87 | Vcs_Darcs = 76, | |
88 | Version = 81, | |
89 | Unknown = -1, | |
90 | }; | |
91 | enum pkgTagSection::Key pkgTagHash(const char *string, size_t length); | |
92 | #endif /* TRIE_HASH_pkgTagHash */ |