aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ipkg-utils/ipkg-utils/fields_tweaks.patch
blob: 2b08e47ad0a21dc093f80b1b92be7c6ea134dd92 (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
---
 Makefile         |    2 ++
 ipkg-list-fields |   13 +++++++++++++
 ipkg.py          |    8 +++++++-
 3 files changed, 22 insertions(+), 1 deletion(-)

Index: ipkg-utils/Makefile
===================================================================
--- ipkg-utils.orig/Makefile	2007-06-13 22:45:47.000000000 +0100
+++ ipkg-utils/Makefile	2007-06-13 22:46:50.000000000 +0100
@@ -15,6 +15,8 @@ install: ${UTILS}
 	python setup.py install
 	chmod agu+rx ipkg-make-index
 	cp -f ipkg-make-index $(PREFIX)/bin
+	chmod agu+rx ipkg-list-fields
+	cp -f ipkg-list-fields $(PREFIX)/bin
 
 binary: build
 	mkdir -p ipkg-build-binary/usr/bin
Index: ipkg-utils/ipkg-list-fields
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ ipkg-utils/ipkg-list-fields	2007-06-13 22:43:32.000000000 +0100
@@ -0,0 +1,13 @@
+#!/usr/bin/python
+
+import sys, ipkg
+
+def usage():
+     sys.stderr.write("%s ipk\n" % (sys.argv[0],))
+     sys.exit(-1)
+
+if (len(sys.argv) < 2):
+     usage()
+
+print ipkg.Package(sys.argv[1])
+
Index: ipkg-utils/ipkg.py
===================================================================
--- ipkg-utils.orig/ipkg.py	2007-06-13 22:44:50.000000000 +0100
+++ ipkg-utils/ipkg.py	2007-06-13 22:39:44.000000000 +0100
@@ -139,6 +139,9 @@ class Package:
         self.installed_size = None
         self.filename = None
         self.isdeb = 0
+        self.homepage = None
+        self.oe = None
+        self.priority = None
         self.fn = fn
 
 	if fn:
@@ -211,7 +214,7 @@ class Package:
                 elif self.__dict__.has_key(name):
                     self.__dict__[name] = value
 		else:
-		    #print "Lost field %s, %s" % (name,value)
+		    print "Lost field %s, %s" % (name,value)
                     pass
 
                 if line and line[0] == '\n':
@@ -402,6 +405,9 @@ class Package:
         if self.filename: out = out + "Filename: %s\n" % (self.filename)
         if self.source: out = out + "Source: %s\n" % (self.source)
         if self.description: out = out + "Description: %s\n" % (self.description)
+        if self.oe: out = out + "OE: %s\n" % (self.oe)
+        if self.homepage: out = out + "HomePage: %s\n" % (self.homepage)
+        if self.priority: out = out + "Priority: %s\n" % (self.priority)
 	out = out + "\n"
 
 	return out