3653b8caea2a5801efd6df2b1215b769433c6f2e
[nqaap] / support / build_nqaap.py
1 #!/usr/bin/env python\r
2 # -*- coding: utf-8 -*-\r
3 \r
4 """\r
5 This program is free software; you can redistribute it and/or modify\r
6 it under the terms of the GNU General Public License as published\r
7 by the Free Software Foundation; version 2 only.\r
8 \r
9 This program is distributed in the hope that it will be useful,\r
10 but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12 GNU General Public License for more details.\r
13 """\r
14 \r
15 import os\r
16 import sys\r
17 \r
18 import py2deb\r
19 \r
20 \r
21 def build_package(distribution):\r
22     py2deb.Py2deb.SECTIONS = py2deb.SECTIONS_BY_POLICY[distribution]\r
23     try:\r
24         os.chdir(os.path.dirname(sys.argv[0]))\r
25     except:\r
26         pass\r
27     print\r
28     p=py2deb.Py2deb("nqaap") #This is the package name and MUST be in\r
29                                #lowercase! (using e.g. "mClock" fails\r
30                                #miserably...)\r
31     p.prettyName="NQA Audiobook Player"\r
32     p.description="""Very simple Audiobook player.\r
33 Supports playing, pausing, seeking (sort of) and saving state when changing book/closing.\r
34 Plays books arranged as dirs under myDocs/Audiobooks\r
35 .\r
36 Homepage: http://nqaap.garage.maemo.org/"""\r
37     p.author="Soeren 'Pengman' Pedersen"\r
38     p.mail="pengmeister@gmail.com"\r
39     p.depends = ", ".join([\r
40         "python2.6 | python2.5",\r
41         "python-gtk2 | python2.5-gtk2",\r
42         "python-dbus | python2.5-dbus",\r
43         "python-telepathy | python2.5-telepathy",\r
44         "python-gobject | python2.5-gobject",\r
45     ])\r
46     maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon"\r
47     p.depends += {\r
48         "debian": ", python-gst0.10",\r
49         "diablo": maemoSpecificDepends,\r
50         "fremantle": maemoSpecificDepends+", python-gst0.10",\r
51     }[distribution]\r
52     p.section = {\r
53         "debian": "sound",\r
54         "diablo": "user/multimedia",\r
55         "fremantle": "user/multimedia",\r
56     }[distribution]\r
57     p.icon = "src/usr/share/icons/hicolor/48x48/hildon/nqaap.png"\r
58     p.arch="all"                #should be all for python, any for all arch\r
59     p.urgency="low"             #not used in maemo onl for deb os\r
60     p.distribution=distribution\r
61     p.repository="extras"\r
62     p.bugTracker="http://talk.maemo.org/showthread.php?p=619738"\r
63     p.postinstall="""#!/bin/sh\r
64 rm -f ~/.nqaap/nqaap.log\r
65 """\r
66     #  p.postremove="""#!/bin/sh\r
67     #  chmod +x /usr/bin/mclock.py""" #Set here your post remove script\r
68     #  p.preinstall="""#!/bin/sh\r
69     #  chmod +x /usr/bin/mclock.py""" #Set here your pre install script\r
70     #  p.preremove="""#!/bin/sh\r
71     #  chmod +x /usr/bin/mclock.py""" #Set here your pre remove script\r
72     version = "0.8.1"           #Version of your software, e.g. "1.2.0" or "0.8.2"\r
73     build = "0" #Build number, e.g. "1" for the first build of this\r
74                                 #version of your software. Increment\r
75                                 #for later re-builds of the same\r
76                                 #version of your software.  Text with\r
77                                 #changelog information to be displayed\r
78                                 #in the package "Details" tab of the\r
79                                 #Maemo Application Manager\r
80     changeloginformation = """Bugfix for Post 104: Chapter out of range error\r
81 Bugfix for Post 110: Exception on launch of nqa for Maemo 4.1\r
82 Updated icons to have transparency\r
83 """\r
84     dir_name = "src" #Name of the subfolder containing your package\r
85                                 #source files\r
86                                 #(e.g. usr\share\icons\hicolor\scalable\myappicon.svg,\r
87                                 #usr\lib\myapp\somelib.py). We suggest\r
88                                 #to leave it named src in all projects\r
89                                 #and will refer to that in the wiki\r
90                                 #article on maemo.org\r
91     #Thanks to DareTheHair from talk.maemo.org for this snippet that\r
92     #recursively builds the file list\r
93     for root, dirs, files in os.walk(dir_name):\r
94         if any(f.startswith(".") for f in root.split(os.sep)):\r
95             continue # avoid hidden folders, esp svn ones\r
96 \r
97         real_dir = root[len(dir_name):]\r
98         fake_file = []\r
99         for f in files:\r
100             fake_file.append(root + os.sep + f + "|" + f)\r
101         if len(fake_file) > 0:\r
102             p[real_dir] = fake_file\r
103 \r
104     print p\r
105     if distribution == "debian":\r
106         print p.generate(\r
107             version="%s-%s" % (version, build),\r
108             changelog=changeloginformation,\r
109             build=True,\r
110             tar=False,\r
111             changes=False,\r
112             dsc=False,\r
113         )\r
114     else:\r
115         print p.generate(\r
116             version="%s-%s" % (version, build),\r
117             changelog=changeloginformation,\r
118             build=False,\r
119             tar=True,\r
120             changes=True,\r
121             dsc=True,\r
122         )\r
123     print "Building for %s finished" % distribution\r
124 \r
125 \r
126 if __name__ == "__main__":\r
127     if len(sys.argv) == 1:\r
128         distribution = "fremantle"\r
129     else:\r
130         distribution = sys.argv[1]\r
131     build_package(distribution)\r