Subversion Repositories pyscrabble

Compare Revisions

Ignore whitespace Rev 17 → Rev 16

/tags/1.6.2-3/debian/pyscrabble.install
File deleted
/tags/1.6.2-3/debian/pyscrabble-server.init
File deleted
/tags/1.6.2-3/debian/pyscrabble.desktop
File deleted
/tags/1.6.2-3/debian/pyscrabble-server.install
File deleted
/tags/1.6.2-3/debian/watch
File deleted
/tags/1.6.2-3/debian/pyscrabble-server.README.Debian
File deleted
/tags/1.6.2-3/debian/copyright
File deleted
/tags/1.6.2-3/debian/pyscrabble-server.postinst
File deleted
/tags/1.6.2-3/debian/pyscrabble-server.default
File deleted
/tags/1.6.2-3/debian/pyscrabble-server.postrm
File deleted
/tags/1.6.2-3/debian/control
File deleted
/tags/1.6.2-3/debian/pyscrabble-common.install
File deleted
/tags/1.6.2-3/debian/compat
File deleted
/tags/1.6.2-3/debian/pyscrabble.svg
File deleted
/tags/1.6.2-3/debian/changelog
File deleted
/tags/1.6.2-3/debian/patches/10_installation.dpatch
File deleted
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: tags/1.6.2-3/debian/patches/20_serverlist_timeout.dpatch
===================================================================
--- tags/1.6.2-3/debian/patches/20_serverlist_timeout.dpatch (revision 17)
+++ tags/1.6.2-3/debian/patches/20_serverlist_timeout.dpatch (nonexistent)
@@ -1,29 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 20_serverlist_timeout.dpatch by Ron Bentley <rtbentley@gmail.com>
-##
-## DP: Lower connection timeout when building server list to avoid
-## DP: hanging for a long time when one or more servers are unresponsive.
-
-@DPATCH@
-
---- pyscrabble-1.6.2~/pyscrabble/gui/register.py 2008-04-20 23:14:07.000000000 -0400
-+++ pyscrabble-1.6.2/pyscrabble/gui/register.py 2008-04-20 23:18:25.000000000 -0400
-@@ -62,6 +62,9 @@
- return
-
- self.serverList.clear()
-+
-+ defTimeout = socket.getdefaulttimeout()
-+ socket.setdefaulttimeout(6)
-
- for host,g_port,w_port,location in self.servers:
-
-@@ -73,6 +76,8 @@
- numUsers="N/A"
-
- self.serverList.append( (host,location, numUsers) )
-+
-+ socket.setdefaulttimeout(defTimeout)
-
- self.toolBar.set_sensitive(True)
-
Index: tags/1.6.2-3/debian/patches/00list
===================================================================
--- tags/1.6.2-3/debian/patches/00list (revision 17)
+++ tags/1.6.2-3/debian/patches/00list (nonexistent)
@@ -1,3 +0,0 @@
-10_installation
-20_about_close
-20_serverlist_timeout
Index: tags/1.6.2-3/debian/patches/20_about_close.dpatch
===================================================================
--- tags/1.6.2-3/debian/patches/20_about_close.dpatch (revision 17)
+++ tags/1.6.2-3/debian/patches/20_about_close.dpatch (nonexistent)
@@ -1,18 +0,0 @@
-#!/bin/sh /usr/share/dpatch/dpatch-run
-## 20_about_close.dpatch by Magnus Holmgren <magnus@kibibyte.se>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Make the Close button in the About dialog work
-
-@DPATCH@
-diff -urNad trunk~/pyscrabble/gtkutil.py trunk/pyscrabble/gtkutil.py
---- trunk~/pyscrabble/gtkutil.py 2006-12-05 15:49:00.000000000 +0100
-+++ trunk/pyscrabble/gtkutil.py 2007-10-03 16:30:51.000000000 +0200
-@@ -73,6 +73,7 @@
- dialog.set_translator_credits(_('translator-credits'))
- gtk.about_dialog_set_url_hook(util.showUrl, data=constants.ONLINE_SITE)
- dialog.set_version(constants.VERSION)
-+ dialog.connect("response", lambda d, r: d.destroy())
- dialog.show()
-
- def getSelectedItem(view, col):
/tags/1.6.2-3/debian/patches/20_about_close.dpatch
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: tags/1.6.2-3/debian/pyscrabble.menu
===================================================================
--- tags/1.6.2-3/debian/pyscrabble.menu (revision 17)
+++ tags/1.6.2-3/debian/pyscrabble.menu (nonexistent)
@@ -1,8 +0,0 @@
-?package(pyscrabble):\
- needs="X11"\
- section="Games/Board"\
- title="PyScrabble"\
- longtitle="A classic word game"\
- command="/usr/games/pyscrabble"\
- icon16x16="/usr/share/pixmaps/pyscrabble-16x16.xpm"\
- icon32x32="/usr/share/pixmaps/pyscrabble-32x32.xpm"
Index: tags/1.6.2-3/debian/rules
===================================================================
--- tags/1.6.2-3/debian/rules (revision 17)
+++ tags/1.6.2-3/debian/rules (nonexistent)
@@ -1,95 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-DESTDIR=$(CURDIR)/debian/tmp
-ICON_SIZES=16 22 32 48 64 96
-PIXMAP_SIZES=16 32
-
-include /usr/share/dpatch/dpatch.make
-
-clean: clean-patched unpatch
- dh_clean
-
-clean-patched: patch-stamp
- dh_testdir
- dh_testroot
- rm -f build-stamp
- rm -f pyscrabble-*.png pyscrabble-*.xpm
-
- python setup.py clean -a
- find -name '*.pyc' -delete
-
-build: patch-stamp
- python setup.py build
-
- for size in $(ICON_SIZES); do \
- rsvg -h $$size -w $$size debian/pyscrabble.svg pyscrabble-$$size.png; \
- done
- for size in $(PIXMAP_SIZES); do \
- convert pyscrabble-$$size.png pyscrabble-$${size}x$${size}.xpm; \
- done
-
-install: build
- dh_testdir
- dh_testroot
- dh_clean -k
-
- python setup.py install --no-compile --root=$(DESTDIR) \
- --install-scripts=/usr/games \
- --confdir=/etc/pyscrabble \
- --logdir=/var/log/pyscrabble \
- --dbdir=/var/lib/pyscrabble
- mv $(DESTDIR)/usr/games/pyscrabble-main.py $(DESTDIR)/usr/games/pyscrabble
- mv $(DESTDIR)/usr/games/server_console.py $(DESTDIR)/usr/games/pyscrabble-server
-# rm $(DESTDIR)/usr/bin/db_upgrade.py
- install -m755 -d $(DESTDIR)/usr/share/pixmaps
- install -m644 pyscrabble-*.xpm $(DESTDIR)/usr/share/pixmaps
- install -m755 -d $(DESTDIR)/usr/share/icons/hicolor/scalable/apps
- gzip < debian/pyscrabble.svg > $(DESTDIR)/usr/share/icons/hicolor/scalable/apps/pyscrabble.svgz
- for size in $(ICON_SIZES); do \
- install -m755 -d $(DESTDIR)/usr/share/icons/hicolor/$${size}x$${size}/apps; \
- install -m644 pyscrabble-$$size.png \
- $(DESTDIR)/usr/share/icons/hicolor/$${size}x$${size}/apps/pyscrabble.png; \
- done
- install -d -m755 $(DESTDIR)/usr/share/applications/
- install -m644 debian/pyscrabble.desktop $(DESTDIR)/usr/share/applications/
-
-
-
-# Build architecture-dependent files here.
-binary-arch:
-# We have nothing to do by default.
-
-# Build architecture-independent files here.
-binary-indep: build install
- dh_testdir
- dh_testroot
- dh_install --sourcedir=debian/tmp
- dh_link
- dh_pycentral
- dh_installchangelogs CHANGELOG.txt
- dh_installdocs
- dh_installexamples
- dh_installman
- dh_installinit -r
- dh_installmenu
- dh_desktop
- dh_strip
- dh_compress
- dh_fixperms
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
/tags/1.6.2-3/debian/rules
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: tags/1.6.2-3/debian
===================================================================
--- tags/1.6.2-3/debian (revision 17)
+++ tags/1.6.2-3/debian (nonexistent)
/tags/1.6.2-3/debian
Property changes:
Deleted: mergeWithUpstream
## -1 +0,0 ##
-1
\ No newline at end of property