Fremantle updates: easy-chroot 0.2.7, easy-deb-chroot 0.9.42
[easy-deb-chroot] / fremantle / easy-deb-chroot / build_easydebchroot.py
index 3d83087..4628399 100755 (executable)
@@ -20,11 +20,17 @@ if __name__ == "__main__":
          pass
      print
      p=py2deb.Py2deb("easy-deb-chroot")   #This is the package name and MUST be in lowercase! 
-     p.description="Scripts to run Debian applications easily in maemo\n for users not familiar with the command line.\n NB: A large image file must be downloaded\n and installed before this package will work!\n  You will need approx. 1.5 GB free in either\n your MyDocs directory or your MicroSD card.\n Instructions and an automated installer\n are provided in the package.\n (This is the Easy Debian 'Stable Lenny' Fremantle version.)"
-
+     qoledescript = open("control/description", "r")
+     p.description=qoledescript.read()
+     p.xsbc_bugtracker="http://talk.maemo.org/showthread.php?t=34550"
+     p.maemodispname="Easy Debian" 
+     version = "0.9.42"   #Version of your software, e.g. "1.2.0" or "0.8.2"
+     build = "1fremantle1"         #Build number
+     qolechangelog = open("control/changelog", "r")
+     changeloginformation = qolechangelog.read()
      p.author="Alan Bruce (qole)"
-     p.mail="alan@thebruces.ca"
-     p.depends = "easy-chroot, bzip2, wget"
+     p.mail="qole@qole.org"
+     p.depends = "easy-chroot (>=0.2.7), lzma, wget"
      p.section="user/system"
      p.icon = "deblet-48.png"
      p.arch="armel"              #should be all for python, any for all arch
@@ -43,12 +49,6 @@ if __name__ == "__main__":
      qoleprerm = open("control/prerm", "r")
      p.preremove=qoleprerm.read()
      # p.preremove=""
-
-     version = "0.9.35"   #Version of your software, e.g. "1.2.0" or "0.8.2"
-     build = "3fremantle1"         #Build number
-                         #Text with changelog information to be displayed in the package "Details" tab of the HAM
-     qolechangelog = open("control/changelog", "r")
-     changeloginformation = qolechangelog.read()
      dir_name = "src"    #Name of the subfolder containing your package source files
 
      #Thanks to DareTheHair from talk.maemo.org for this snippet that recursively builds the file list