summaryrefslogtreecommitdiffstats
path: root/rpmmodule
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-03-04 16:26:45 +0000
committerMatt Wilson <msw@redhat.com>2000-03-04 16:26:45 +0000
commit2afe333b2677eb63261d771358e9b948a44d005e (patch)
tree29d334f9c747cf1adb86290d4617be1045296bf1 /rpmmodule
parent70c4a9def0b7f7f02320597d2cf72e36ceeee798 (diff)
downloadanaconda-2afe333b2677eb63261d771358e9b948a44d005e.tar.gz
anaconda-2afe333b2677eb63261d771358e9b948a44d005e.tar.xz
anaconda-2afe333b2677eb63261d771358e9b948a44d005e.zip
fix color depth setting problem, added straight server entries to cards
Diffstat (limited to 'rpmmodule')
-rw-r--r--rpmmodule/rpmmodule.c5
-rwxr-xr-xrpmmodule/testhdr8
2 files changed, 11 insertions, 2 deletions
diff --git a/rpmmodule/rpmmodule.c b/rpmmodule/rpmmodule.c
index 1d79f219f..3e943d768 100644
--- a/rpmmodule/rpmmodule.c
+++ b/rpmmodule/rpmmodule.c
@@ -927,8 +927,11 @@ static PyObject * hdrSubscript(hdrObject * s, PyObject * item) {
tag = PyInt_AsLong(item);
} else if (PyString_Check(item)) {
str = PyString_AsString(item);
- for (i = 0; i < rpmTagTableSize; i++)
+ printf ("CHECK %d\n", strcasecmp("VERSION", "version"));
+ for (i = 0; i < rpmTagTableSize; i++) {
+ printf ("get header %s <-> %s\n", rpmTagTable[i].name + 7, str);
if (!strcasecmp(rpmTagTable[i].name + 7, str)) break;
+ }
if (i < rpmTagTableSize) tag = rpmTagTable[i].val;
if (tag == -1) {
/* if we still don't have the tag, go looking for the header
diff --git a/rpmmodule/testhdr b/rpmmodule/testhdr
index bffa20448..af19434ae 100755
--- a/rpmmodule/testhdr
+++ b/rpmmodule/testhdr
@@ -2,6 +2,10 @@
import rpm
import sys
+import gtk
+from _gtk import gtk_set_locale
+
+gtk_set_locale ()
import time
#time.sleep(10)
@@ -21,7 +25,7 @@ def printlist(h, tag):
db = rpm.opendb(0)
-rc = db.findbyname('glibc')
+rc = db.findbyname('kernel')
h = db[rc[0]]
rpm.addMacro("_i18ndomains", "redhat-dist");
@@ -29,6 +33,8 @@ rpm.addMacro("_i18ndomains", "redhat-dist");
print h['summary']
print h['description']
print h['group']
+print h['version']
+print h['release']
#print h['filenames']
print h[rpm.RPMTAG_SUMMARY]