d447d4dbc8ef1c68906fd0a46bae0f47f52db65d
[ejpi] / support / builddeb.py
1 #!/usr/bin/python2.5
2
3 from py2deb import *
4
5
6 __appname__ = "ejpi"
7 __description__ = "RPN Calculator"
8 __author__ = "Ed Page"
9 __email__ = "eopage@byu.net"
10 __version__ = "0.9.2"
11 __build__ = 0
12 __changelog__ = '''\
13 0.9.2 - ""
14
15
16 0.9.1 - "Laziness doesn't always pay off"
17  * Profiled the code with an especial focus on the pie menus
18  * Tried to reduce potential bugs with double clicks
19  * Fixed a visual artifact issue on popup
20
21 0.9.0 - "Feed is for horses, so what about feedback?"
22  * Initial public release
23  * Pie menus for keys
24  * Modifiable history
25  * Supports different number types and bases
26  * Basic trig support
27 '''
28
29
30 __postinstall__ = '''#!/bin/sh
31
32 gtk-update-icon-cache /usr/share/icons/hicolor
33 '''
34
35
36 def find_files(path):
37         for root, dirs, files in os.walk(path):
38                 for file in files:
39                         if file.startswith("src-"):
40                                 fileParts = file.split("-")
41                                 unused, relPathParts, newName = fileParts[0], fileParts[1:-1], fileParts[-1]
42                                 assert unused == "src"
43                                 relPath = os.sep.join(relPathParts)
44                                 yield relPath, file, newName
45
46
47 def unflatten_files(files):
48         d = {}
49         for relPath, oldName, newName in files:
50                 if relPath not in d:
51                         d[relPath] = []
52                 d[relPath].append((oldName, newName))
53         return d
54
55
56 if __name__ == "__main__":
57         try:
58                 os.chdir(os.path.dirname(sys.argv[0]))
59         except:
60                 pass
61
62         p = Py2deb(__appname__)
63         p.description = __description__
64         p.author = __author__
65         p.mail = __email__
66         p.license = "lgpl"
67         p.depends = "python2.5, python2.5-gtk2"
68         # p.section = "user/utilities"
69         p.section = "user/accessories"
70         p.arch = "all"
71         p.urgency = "low"
72         p.distribution = "chinook diablo"
73         p.repository = "extras-devel"
74         p.changelog = __changelog__
75         p.postinstall = __postinstall__
76         p.icon="26x26-ejpi.png"
77         p["/usr/bin"] = [ "ejpi.py" ]
78         for relPath, files in unflatten_files(find_files(".")).iteritems():
79                 fullPath = "/usr/lib/ejpi"
80                 if relPath:
81                         fullPath += os.sep+relPath
82                 p[fullPath] = list(
83                         "|".join((oldName, newName))
84                         for (oldName, newName) in files
85                 )
86         p["/usr/share/applications/hildon"] = ["ejpi.desktop"]
87         # p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-dialcentral.png|dialcentral.png"]
88         # p["/usr/share/icons/hicolor/64x64/hildon"] = ["64x64-dialcentral.png|dialcentral.png"]
89         # p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-dialcentral.png|dialcentral.png"]
90
91         print p
92         print p.generate(
93                 __version__, __build__, changelog=__changelog__,
94                 tar=True, dsc=True, changes=True, build=False, src=True
95         )