From: epage Date: Thu, 2 Oct 2008 23:23:46 +0000 (+0000) Subject: Some further minor tweaks X-Git-Url: http://git.maemo.org/git/?p=gc-dialer;a=commitdiff_plain;h=f421f7ffa242918633c15c8f9a642251b68b8752 Some further minor tweaks git-svn-id: file:///svnroot/gc-dialer/branches/updatingSvn@154 c39d3808-3fe2-4d86-a59f-b7f623ee9f21 --- diff --git a/builddeb.py b/builddeb.py new file mode 100755 index 0000000..027c059 --- /dev/null +++ b/builddeb.py @@ -0,0 +1,56 @@ +#!/usr/bin/python2.5 + +from py2deb import * + +__appname__ = "dialcentral" +__description__ = "Simple interface to Google's GrandCentral(tm) service" +__author__ = "Eric Warnke" +__email__ = "ericew@gmail.com" +__version__ = "0.8.0" +__build__ = 9 +__changelog__ = '''\ +0.8.0 - "Spit and polish" + * Addressbook support + * threaded networking for better interactivity + * Hold down back to clear number + * Standard about dialog + * many more smaller fixes +''' + +__postinstall__ = '''#!/bin/sh + +gtk-update-icon-cache /usr/share/icons/hicolor +''' + + +if __name__ == "__main__": + try: + os.chdir(os.path.dirname(sys.argv[0])) + except: + pass + + + p=Py2deb(__appname__) + p.description=__description__ + p.author=__author__ + p.mail=__email__ + p.license = "lgpl" + p.depends = "python2.5, python2.5-gtk2" + p.section="user/communication" + p.arch="all" + p.urgency="low" + p.distribution="chinook diablo" + p.repository="extras-devel" + p.changelog=__changelog__ + p.postinstall=__postinstall__ + p.icon="26x26-dialcentral.png" + p["/usr/bin"] = [ "dialcentral.py" ] + p["/usr/lib/dialcentral"] = ["__init__.py", "browser_emu.py", "evo_backend.py", "gc_backend.py", "gc_dialer.glade", "gc_dialer.py", "builddeb.py"] + p["/usr/share/applications/hildon"] = ["dialcentral.desktop"] + p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-dialcentral.png|dialcentral.png"] + p["/usr/share/icons/hicolor/64x64/hildon"] = ["64x64-dialcentral.png|dialcentral.png"] + p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-dialcentral.png|dialcentral.png"] + + print p + print p.generate(__version__,__build__,changelog=__changelog__,tar=True,dsc=True,changes=True,build=False,src=True) + diff --git a/doc/changelog.Debian.gz b/doc/changelog.Debian.gz deleted file mode 100644 index 3cd100e..0000000 Binary files a/doc/changelog.Debian.gz and /dev/null differ diff --git a/doc/changelog.gz b/doc/changelog.gz deleted file mode 100644 index 80b714f..0000000 Binary files a/doc/changelog.gz and /dev/null differ diff --git a/doc/copyright b/doc/copyright deleted file mode 100644 index a847e22..0000000 --- a/doc/copyright +++ /dev/null @@ -1,35 +0,0 @@ -This package was py2debianized(0.4.7) by Eric Warnke on -Mon, 01 Sep 2008 22:13:53 +0000. - -It was downloaded from - -Upstream Author: Eric Warnke - -Copyright: 2008 by Eric Warnke - -License: - - - This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This package is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -On Debian systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. - - -The Debian packaging is (C) 2008, Eric Warnke and -is licensed under the GPL, see above. - -# Please also look if there are files or directories which have a -# different copyright/license attached and list them here. diff --git a/src/builddeb.py b/src/builddeb.py deleted file mode 100755 index 027c059..0000000 --- a/src/builddeb.py +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/python2.5 - -from py2deb import * - -__appname__ = "dialcentral" -__description__ = "Simple interface to Google's GrandCentral(tm) service" -__author__ = "Eric Warnke" -__email__ = "ericew@gmail.com" -__version__ = "0.8.0" -__build__ = 9 -__changelog__ = '''\ -0.8.0 - "Spit and polish" - * Addressbook support - * threaded networking for better interactivity - * Hold down back to clear number - * Standard about dialog - * many more smaller fixes -''' - -__postinstall__ = '''#!/bin/sh - -gtk-update-icon-cache /usr/share/icons/hicolor -''' - - -if __name__ == "__main__": - try: - os.chdir(os.path.dirname(sys.argv[0])) - except: - pass - - - p=Py2deb(__appname__) - p.description=__description__ - p.author=__author__ - p.mail=__email__ - p.license = "lgpl" - p.depends = "python2.5, python2.5-gtk2" - p.section="user/communication" - p.arch="all" - p.urgency="low" - p.distribution="chinook diablo" - p.repository="extras-devel" - p.changelog=__changelog__ - p.postinstall=__postinstall__ - p.icon="26x26-dialcentral.png" - p["/usr/bin"] = [ "dialcentral.py" ] - p["/usr/lib/dialcentral"] = ["__init__.py", "browser_emu.py", "evo_backend.py", "gc_backend.py", "gc_dialer.glade", "gc_dialer.py", "builddeb.py"] - p["/usr/share/applications/hildon"] = ["dialcentral.desktop"] - p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-dialcentral.png|dialcentral.png"] - p["/usr/share/icons/hicolor/64x64/hildon"] = ["64x64-dialcentral.png|dialcentral.png"] - p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-dialcentral.png|dialcentral.png"] - - print p - print p.generate(__version__,__build__,changelog=__changelog__,tar=True,dsc=True,changes=True,build=False,src=True) -