From f421f7ffa242918633c15c8f9a642251b68b8752 Mon Sep 17 00:00:00 2001 From: epage Date: Thu, 2 Oct 2008 23:23:46 +0000 Subject: [PATCH 1/1] Some further minor tweaks git-svn-id: file:///svnroot/gc-dialer/branches/updatingSvn@154 c39d3808-3fe2-4d86-a59f-b7f623ee9f21 --- builddeb.py | 56 +++++++++++++++++++++++++++++++++++++++++++++++ doc/changelog.Debian.gz | Bin 264 -> 0 bytes doc/changelog.gz | Bin 257 -> 0 bytes doc/copyright | 35 ----------------------------- src/builddeb.py | 56 ----------------------------------------------- 5 files changed, 56 insertions(+), 91 deletions(-) create mode 100755 builddeb.py delete mode 100644 doc/changelog.Debian.gz delete mode 100644 doc/changelog.gz delete mode 100644 doc/copyright delete mode 100755 src/builddeb.py 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 3cd100e571e1fe578b90b7163e74a51d98f3a5ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmV+j0r&nNiwFo|p}a@}17m1mZf9j|Z)Yw?C4j{fGc;^E}$H|l;Zkl>uH`U=5*{F^Dgh@M2 z?)nmCUaf$CjtcA37z~s=Mu{O`)`j5?@7^ot+=}$b(>RLS0_>tpo;?!VEZT?E;Vg=l z%~%mqQF0c3f?b!3Pl+C0=7g494->e^q)5}yvM!#Jl?0?7)XHS=rHOP48Yo>ch%)j( zF_s_a@XNV$s49GDaQG%oJ>!|n!t+}

8jY;T8Cj^nhlA6OY(7%^utBakD!i%*FjUgm_BTn`ht$fQWq(6TO`la&Od9@NTY@TG}#3mPb0F^DqqKrxmd=kUw9 zbf_wPXmI!@O+Dk8%fj 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) - -- 1.7.9.5