1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2025-04-21 12:27:27 +03:00

qpkg: added some field names and relational operators from Ubuntu

- gobble.c (gobble_buf): recognize (and ignore) the following fields:
  Bugs, Installed-Size, MD5sum, Origin, Original-Maintainer, SHA1, SHA256,
  Task.
- pkg.h (enum relop): added comments showing the respective symbol
- pkg.h (enum relop): added rel_gg (>>), rel_le (<=), and rel_ll (<<)
- gobble.c (gobble_buf): recognize >>, <=, and <<
- TODO: record progress in support beyond Jlime/OE
This commit is contained in:
Werner Almesberger
2010-11-22 22:48:28 -03:00
parent ab5df0a8d8
commit 6a3e471304
3 changed files with 105 additions and 25 deletions
+6 -3
View File
@@ -28,9 +28,12 @@ enum flags {
};
enum relop {
rel_eq,
rel_ge,
rel_lt,
rel_eq, /* = */
rel_ge, /* >= */
rel_gg, /* >> */
rel_lt, /* < */
rel_le, /* <= */
rel_ll, /* << */
};
struct pkg;