Subversion Repositories pyscrabble

Compare Revisions

Ignore whitespace Rev HEAD → Rev 1

/trunk/debian/pyscrabble-server.postinst
File deleted
/trunk/debian/pyscrabble-server.default
File deleted
/trunk/debian/pyscrabble-server.postrm
File deleted
/trunk/debian/control
File deleted
/trunk/debian/pyscrabble-common.install
File deleted
/trunk/debian/compat
File deleted
/trunk/debian/pyscrabble.svg
File deleted
/trunk/debian/patches/installation.patch
File deleted
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: debian/patches/max-players.patch
===================================================================
--- debian/patches/max-players.patch (revision 54)
+++ debian/patches/max-players.patch (nonexistent)
@@ -1,42 +0,0 @@
-From: Christian von Kietzell <christian@vonkietzell.de>
-Bug-Debian: http://bugs.debian.org/633838
-Forwarded: no
-Description: Check whether an existing player is rejoining _before_
- checking whether the maximum of players has been reached.
-
---- pyscrabble-1.6.2/pyscrabble/net/server.py 2011-07-14 19:32:42.000000000 +0200
-+++ pyscrabble-fixed/pyscrabble/net/server.py 2011-07-14 19:35:50.000000000 +0200
-@@ -936,21 +936,21 @@
- client.denyJoinGame(command)
- return
-
-- if (game.getNumberOfPlayers() == constants.MAX_PLAYERS):
-- command.setData( ServerMessage([GAME_FULL]) )
-- command.setCommand( constants.GAME_JOIN_DENIED )
-- client.denyJoinGame(command)
-- return
--
- p = self.clients[client].clone()
-
-- if (game.isPaused() and not game.hasPlayer(p)):
-- command.setData( ServerMessage([CANNOT_JOIN_STARTED]) )
-- command.setCommand( constants.GAME_JOIN_DENIED )
-- client.denyJoinGame(command)
-- return
--
- if not game.hasPlayer( p ):
-+ if (game.getNumberOfPlayers() == constants.MAX_PLAYERS):
-+ command.setData( ServerMessage([GAME_FULL]) )
-+ command.setCommand( constants.GAME_JOIN_DENIED )
-+ client.denyJoinGame(command)
-+ return
-+
-+ if (game.isPaused()):
-+ command.setData( ServerMessage([CANNOT_JOIN_STARTED]) )
-+ command.setCommand( constants.GAME_JOIN_DENIED )
-+ client.denyJoinGame(command)
-+ return
-+
- game.addPlayer( p )
- else:
- game.removePending( p )
Index: debian/patches/serverlist_timeout.patch
===================================================================
--- debian/patches/serverlist_timeout.patch (revision 54)
+++ debian/patches/serverlist_timeout.patch (nonexistent)
@@ -1,26 +0,0 @@
-Author: Ron Bentley <rtbentley@gmail.com>
-Bug-Debian: http://bugs.debian.org/473598
-Description: Lower connection timeout when building server list
- to avoid hanging for a long time when one or more servers are unresponsive.
-
---- 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: debian/patches/series
===================================================================
--- debian/patches/series (revision 54)
+++ debian/patches/series (nonexistent)
@@ -1,6 +0,0 @@
-installation.patch
-about_close.patch
-serverlist_timeout.patch
-hosts.patch
-max-players.patch
-typeerrors.patch
Index: debian/patches/typeerrors.patch
===================================================================
--- debian/patches/typeerrors.patch (revision 54)
+++ debian/patches/typeerrors.patch (nonexistent)
@@ -1,22 +0,0 @@
---- a/pyscrabble/gtkutil.py
-+++ b/pyscrabble/gtkutil.py
-@@ -550,7 +550,7 @@ class TaggableTextView(gtk.TextView):
- @param event:
- '''
-
-- x,y = widget.window_to_buffer_coords(gtk.TEXT_WINDOW_TEXT, event.x, event.y)
-+ x,y = widget.window_to_buffer_coords(gtk.TEXT_WINDOW_TEXT, int(event.x), int(event.y))
-
- iter = widget.get_iter_at_location(x,y)
- tags = iter.get_tags()
---- a/pyscrabble/gui/pieces.py
-+++ b/pyscrabble/gui/pieces.py
-@@ -379,7 +379,7 @@ class GameTile(gtk.Button, Tile):
- if arrow is not None:
- box = gtk.HBox(False, 0)
- arrow.set_size_request(10,10)
-- arrow.set_padding(0.0, 0.0)
-+ arrow.set_padding(0, 0)
- box.pack_start(arrow, False, False, 0)
- self.add(box)
- self.key_press_handler = self.connect("key-press-event", self.keyPress_cb, self.direction)
Index: debian/patches/about_close.patch
===================================================================
--- debian/patches/about_close.patch (revision 54)
+++ debian/patches/about_close.patch (nonexistent)
@@ -1,14 +0,0 @@
-Author: Magnus Holmgren <holmgren@debian.org>
-Description: Make the Close button in the About dialog work
-
-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):
/debian/patches/about_close.patch
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: debian/patches/hosts.patch
===================================================================
--- debian/patches/hosts.patch (revision 54)
+++ debian/patches/hosts.patch (nonexistent)
@@ -1,44 +0,0 @@
-Author: Magnus Holmgren <holmgren@debian.org>
-Description: Improve the code for adding new entries to the Additional Hosts list
- - Fix C&P bug that caused the Game port to be validated twice but the Web port not at all.
- - Pre-fill the default ports.
- - Don't destroy the dialog until the entered values have been extracted.
-
---- a/pyscrabble/gui/options.py
-+++ b/pyscrabble/gui/options.py
-@@ -830,10 +830,12 @@ class OptionWindow(gtk.Window):
-
- s = _("Game port")
- gport = gtkutil.EntryWithLabel(label="%s: " % s, visibility=True)
-+ gport.set_text("9999")
- dialog.vbox.pack_start( gport )
-
- s = _("Web port")
- wport = gtkutil.EntryWithLabel(label="%s: " % s, visibility=True)
-+ wport.set_text("8888")
- dialog.vbox.pack_start( wport )
-
- s = _("Location")
-@@ -866,13 +868,11 @@ class OptionWindow(gtk.Window):
-
- try:
- int(gport.get_text())
-- int(gport.get_text())
-+ int(wport.get_text())
- except:
- self.error(util.ErrorMessage(_('Port must be a number')))
- return
-
-- dialog.destroy()
--
- o = manager.OptionManager(section=HOSTS_SECTION)
- data = o.get_default_option(OPTION_HOSTS, '')
- data = '%s%s:%s:%s:%s/' % (data, host.get_text(), gport.get_text(), wport.get_text(), location.get_text())
-@@ -882,4 +882,5 @@ class OptionWindow(gtk.Window):
- model.clear()
- for host,gport,wport,location in util.getAdditionalHosts():
- model.append( (host,location) )
--
-\ No newline at end of file
-+
-+ dialog.destroy()
Index: debian/changelog
===================================================================
--- debian/changelog (revision 54)
+++ debian/changelog (nonexistent)
@@ -1,143 +0,0 @@
-pyscrabble (1.6.2-10) unstable; urgency=low
-
- * Add build dependency on dh-python.
- * Correct Vcs-Svn URL.
- * Switch to Debhelper compat level 9.
- * Bump Standards-Version to 3.9.8.
-
- -- Magnus Holmgren <holmgren@debian.org> Mon, 23 Jan 2017 23:17:00 +0100
-
-pyscrabble (1.6.2-9) unstable; urgency=low
-
- * Switch to rsvg-convert for making PNG icons (Closes: #666634).
- * Bump Standards-Version to 3.9.3.
-
- -- Magnus Holmgren <holmgren@debian.org> Wed, 11 Apr 2012 08:17:00 +0200
-
-pyscrabble (1.6.2-8) unstable; urgency=low
-
- * typeerrors.patch: Fix two cases of attempting to pass floats to
- functions expecting ints:
- - In the motion-notify-event callback of the chatboxes, which should
- change the cursor into a hand when over a URL (LP: #923363).
- - In the button-press-event callback of the buttons making up the
- board, which should produce an arrow to allow tiles to be placed by
- typing letters.
-
- -- Magnus Holmgren <holmgren@debian.org> Sun, 29 Jan 2012 21:02:09 +0100
-
-pyscrabble (1.6.2-7) unstable; urgency=low
-
- * max-players.patch: Before denying a player from joining a game because
- the maximum number of players has been reach, check whether the player
- is rejoining a game he or she is already part of (Closes: #633838).
- Thanks to Christian von Kietzell.
- * Add build-indep and build-arch targets.
-
- -- Magnus Holmgren <holmgren@debian.org> Fri, 11 Nov 2011 08:46:33 +0100
-
-pyscrabble (1.6.2-6) unstable; urgency=low
-
- * Move Python modules and scripts to /usr/share/games/pyscrabble/python
- and put symlinks in /usr/games and /usr/sbin.
- * installation.patch: Reduce the size by moving back code that was
- unnecessarily moved from dist.py to setup.py.
-
- -- Magnus Holmgren <holmgren@debian.org> Wed, 04 May 2011 19:58:45 +0200
-
-pyscrabble (1.6.2-5) unstable; urgency=low
-
- * Convert package to source format 3.0 (quilt), meaning renaming the
- patches and converting their headers as well as dropping
- README.source.
- * Convert to using dh_python2 (Closes: #616983).
- * Run setup.py with --install-layout=deb to get filesystem layout right.
- * Bump Debhelper compat level to 7.
- * pyscrabble-server.README.Debian: Clarify that pyscrabble-server is not
- intended to be run from the command line directly (Closes: #611833).
- * hosts.patch: Improve the code for adding new entries to the Additional
- Hosts list:
- * Fix C&P bug that caused the Game port to be validated twice but the
- Web port not at all.
- * Pre-fill the default port numbers to help the user (Closes: #566666).
- * Don't destroy the dialog until the entered values have been extracted.
- * Increase Standards-Version to 3.9.2 without changes needed.
-
- -- Magnus Holmgren <holmgren@debian.org> Mon, 25 Apr 2011 21:58:25 +0200
-
-pyscrabble (1.6.2-4) unstable; urgency=low
-
- * Merge changes from Ubuntu, except for the Replaces added to deal with
- the typo in in 1.6.2-3ubuntu3, which should be gone by now.
- * Move pyscrabble-server from /usr/games to /usr/sbin (Closes: #506811).
- * debian/rules: Drop the call to dh_desktop.
- * Upgrade to Standards-Version 3.8.3.
- + Add debian/README.source.
- * debian/rules: Rearrange targets.
-
- -- Magnus Holmgren <holmgren@debian.org> Tue, 22 Sep 2009 09:15:42 +0200
-
-pyscrabble (1.6.2-3ubuntu4) jaunty; urgency=low
-
- * debian/pyscrabble-common.install: resolve typographic error (LP: #362080)
-
- -- Brian Murray <brian@ubuntu.com> Thu, 16 Apr 2009 15:18:46 -0700
-
-pyscrabble (1.6.2-3ubuntu3) jaunty; urgency=low
-
- * debian/rules: pass --prefix=/usr to setup.py install, without which
- the package tries to install to /usr/local under python2.6.
-
- -- Steve Langasek <steve.langasek@ubuntu.com> Tue, 14 Apr 2009 13:01:54 +0000
-
-pyscrabble (1.6.2-3ubuntu2) jaunty; urgency=low
-
- * Revert the previous change; python2.4-zodb no longer exists, and
- depending on python2.4-zodb never gave correct results anyway because
- we were depending on python instead of python2.4 for the interpreter.
- * debian/pyscrabble-{common,server}.install: installation now to python
- dist-packages directory, instead of site-packages. (This will require
- a fix for bug 350016 in python2.6 before it can be built.)
-
- -- Steve Langasek <steve.langasek@ubuntu.com> Mon, 13 Apr 2009 07:08:06 +0000
-
-pyscrabble (1.6.2-3ubuntu1) intrepid; urgency=low
-
- * Modify dependency python-zodb to python2.4-zodb in debian/control
- for the python-zodb -> python2.4-zodb transition (LP: #262713)
-
- -- Riccardo Coccioli <volans@ubuntu.com> Fri, 29 Aug 2008 18:11:03 +0200
-
-pyscrabble (1.6.2-3) unstable; urgency=low
-
- * Acknowledge NMU (Closes: #471077).
- * New maintainer email address.
- * Remove XS- from Vcs field names.
- * Bump Standards-Version to 3.7.3. No changes necessary.
- * Lower connection timeout when checking servers to avoid extremely long
- delays (Closes: #473598). Thanks to Ron Bentley.
-
- -- Magnus Holmgren <holmgren@debian.org> Thu, 01 May 2008 23:35:04 +0200
-
-pyscrabble (1.6.2-2.1) unstable; urgency=low
-
- * Non-maintainer upload to solve release goal.
- * Add LSB dependency header to init.d scripts (Closes: #471077).
-
- -- Petter Reinholdtsen <pere@debian.org> Sun, 30 Mar 2008 15:18:15 +0200
-
-pyscrabble (1.6.2-2) unstable; urgency=low
-
- * Move /usr/share/games/pyscrabble/letters from pyscrabble-server to
- pyscrabble-common (Closes: #446571).
- * Add lsb-base dependency to pyscrabble-server.
- * Lower pyscrabble-server priority to "extra".
-
- -- Magnus Holmgren <magnus@kibibyte.se> Sun, 14 Oct 2007 10:30:15 +0200
-
-pyscrabble (1.6.2-1) unstable; urgency=low
-
- * Initial release (Closes: #416137).
-
- -- Magnus Holmgren <magnus@kibibyte.se> Wed, 03 Oct 2007 17:11:14 +0200
-
Index: debian/pyscrabble.menu
===================================================================
--- debian/pyscrabble.menu (revision 54)
+++ 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: debian/rules
===================================================================
--- debian/rules (revision 54)
+++ debian/rules (nonexistent)
@@ -1,94 +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
-
-clean:
- dh_testdir
- dh_testroot
- rm -f build-stamp
- rm -f pyscrabble-*.png pyscrabble-*.xpm
-
- python setup.py clean -a
- find -name '*.pyc' -delete
- dh_clean
-
-build: build-indep
-build-arch:
-build-indep: build-stamp
-build-stamp:
- python setup.py build
-
- for size in $(ICON_SIZES); do \
- rsvg-convert -h $$size -w $$size -o pyscrabble-$$size.png debian/pyscrabble.svg; \
- done
- for size in $(PIXMAP_SIZES); do \
- convert pyscrabble-$$size.png pyscrabble-$${size}x$${size}.xpm; \
- done
- touch "$@"
-
-install: build
- dh_testdir
- dh_testroot
- dh_prep
-
- python setup.py install --no-compile --root=$(DESTDIR) \
- --install-layout=deb \
- --install-scripts=/usr/share/games/pyscrabble/python \
- --install-lib=/usr/share/games/pyscrabble/python \
- --confdir=/etc/pyscrabble \
- --logdir=/var/log/pyscrabble \
- --dbdir=/var/lib/pyscrabble
- install -m755 -d $(DESTDIR)/usr/sbin
- 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_python2 /usr/share/games/pyscrabble/python
- dh_installchangelogs CHANGELOG.txt
- dh_installdocs
- dh_installexamples
- dh_installman
- dh_installinit -r
- dh_installmenu
- dh_strip
- dh_compress
- dh_fixperms
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build build-indep build-arch clean binary-indep binary-arch binary install configure
/debian/rules
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: debian/pyscrabble.install
===================================================================
--- debian/pyscrabble.install (revision 54)
+++ debian/pyscrabble.install (nonexistent)
@@ -1,10 +0,0 @@
-usr/share/games/pyscrabble/python/pyscrabble-main.py
-usr/share/games/pyscrabble/python/pyscrabble/gui
-usr/share/games/pyscrabble/python/pyscrabble/net/client.py
-usr/share/games/pyscrabble/python/pyscrabble/gtk*.py
-usr/share/icons
-usr/share/pixmaps
-usr/share/applications
-usr/share/games/pyscrabble/sounds
-usr/share/games/pyscrabble/images
-usr/share/games/pyscrabble/locale
Index: debian/pyscrabble-server.init
===================================================================
--- debian/pyscrabble-server.init (revision 54)
+++ debian/pyscrabble-server.init (nonexistent)
@@ -1,115 +0,0 @@
-#!/bin/sh
-### BEGIN INIT INFO
-# Provides: pyscrabble-server
-# Required-Start: $local_fs $remote_fs
-# Required-Stop: $local_fs $remote_fs
-# Default-Start: 2 3 4 5
-# Default-Stop: 0 1 6
-# Short-Description: PyScrabble server
-# Description: Controls the PyScrabble server
-### END INIT INFO
-
-set -e
-
-PATH=/sbin:/bin:/usr/bin
-DESC="PyScrabble server"
-NAME=python
-NAME2=pyscrabble-server
-DAEMON=/usr/sbin/pyscrabble-server
-PIDFILE=/var/run/$NAME2.pid
-SCRIPTNAME=/etc/init.d/$NAME2
-
-# Gracefully exit if the package has been removed.
-test -x $DAEMON || exit 0
-
-. /lib/lsb/init-functions
-
-USER="pyscrabble"
-
-# Read config file if it is present.
-if [ -r /etc/default/$NAME2 ]; then
- . /etc/default/$NAME2
-fi
-
-d_running() {
- start-stop-daemon --stop --quiet --pidfile $PIDFILE \
- --name $NAME --test > /dev/null
-}
-
-#
-# Function that starts the daemon/service.
-#
-d_start() {
- start-stop-daemon --start --oknodo --quiet --pidfile $PIDFILE --name $NAME \
- --background --make-pidfile --chuid "$USER" --startas $DAEMON
-}
-
-#
-# Function that stops the daemon/service.
-#
-d_stop() {
- start-stop-daemon --stop --oknodo --quiet --pidfile $PIDFILE --name $NAME
- rm -f $PIDFILE
-}
-
-case "$1" in
- start)
- log_daemon_msg "Starting $DESC" "$NAME2"
- if d_running; then
- log_progress_msg "already running"
- else
- d_start;
- fi
- log_end_msg 0
- ;;
- stop)
- log_daemon_msg "Stopping $DESC" "$NAME2"
- if ! d_running; then
- log_progress_msg "not running"
- else
- d_stop
- fi
- log_end_msg 0
- ;;
- #reload)
- #
- # If the daemon can reload its configuration without
- # restarting (for example, when it is sent a SIGHUP),
- # then implement that here.
- #
- # If the daemon responds to changes in its config file
- # directly anyway, make this an "exit 0".
- #
- # echo -n "Reloading $DESC configuration..."
- # d_reload
- # echo "done."
- #;;
- restart|force-reload)
- #
- # If the "reload" option is implemented, move the "force-reload"
- # option to the "reload" entry above. If not, "force-reload" is
- # just the same as "restart".
- #
- log_daemon_msg "Restarting $DESC" "$NAME2"
- d_stop
- # One second might not be time enough for a daemon to stop,
- # if this happens, d_start will fail (and dpkg will break if
- # the package is being upgraded). Change the timeout if needed
- # be, or change d_stop to have start-stop-daemon use --retry.
- # Notice that using --retry slows down the shutdown process somewhat.
- sleep 1
- d_start
- log_end_msg 0
- ;;
- status)
- d_running || status="not "
- log_action_msg "Status of $DESC:" "${status}running"
- ;;
- *)
- # echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
- echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0
Index: debian/pyscrabble.desktop
===================================================================
--- debian/pyscrabble.desktop (revision 54)
+++ debian/pyscrabble.desktop (nonexistent)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Name=PyScrabble
-Comment=A classical game of words
-Comment[de]=Ein klassisches Wörterspiel
-Comment[sv]=Ett klassiskt ordspel
-Exec=pyscrabble
-Icon=pyscrabble
-Terminal=false
-Type=Application
-Categories=Game;BoardGame;GTK;
Index: debian/pyscrabble-server.install
===================================================================
--- debian/pyscrabble-server.install (revision 54)
+++ debian/pyscrabble-server.install (nonexistent)
@@ -1,8 +0,0 @@
-usr/share/games/pyscrabble/python/server_console.py
-usr/share/games/pyscrabble/python/pyscrabble/db.py
-usr/share/games/pyscrabble/python/pyscrabble/net/server.py
-usr/share/games/pyscrabble/python/pyscrabble/net/site.py
-usr/share/games/pyscrabble/python/pyscrabble/net/interfaces.py
-usr/share/games/pyscrabble/web
-usr/share/games/pyscrabble/dict
-etc/pyscrabble
Index: debian/source/format
===================================================================
--- debian/source/format (revision 54)
+++ debian/source/format (nonexistent)
@@ -1 +0,0 @@
-3.0 (quilt)
Index: debian/pyscrabble.links
===================================================================
--- debian/pyscrabble.links (revision 54)
+++ debian/pyscrabble.links (nonexistent)
@@ -1 +0,0 @@
-usr/share/games/pyscrabble/python/pyscrabble-main.py usr/games/pyscrabble
Index: debian/watch
===================================================================
--- debian/watch (revision 54)
+++ debian/watch (nonexistent)
@@ -1,3 +0,0 @@
-version=3
-
-http://sf.net/pyscrabble/pyscrabble-(.*)-src.zip debian uupdate
Index: debian/pyscrabble-server.README.Debian
===================================================================
--- debian/pyscrabble-server.README.Debian (revision 54)
+++ debian/pyscrabble-server.README.Debian (nonexistent)
@@ -1,26 +0,0 @@
-pyscrabble for Debian
----------------------
-
-My assumption is that most users don't need or want to run their own
-server. Therefore the PyScrabble server is in a separate package that
-installs it as a system daemon. By default the server runs under a
-dedicated user account, created on installation. It should not be run
-directly from the command line, only with the help of the init script.
-
-The original code is modified so that instead of
-~/.config/pyscrabble/, the server reads its configuration from files
-in /etc/pyscrabble/, stores its database in /var/lib/pyscrabble, and
-logs to /var/log/pyscrabble/pyscrabble.log. The log is not
-automatically rotated, because the server can't currently be told to
-reopen the log, and restarting it kills all client sessions and
-ongoing games.
-
-For the same reason, the server is not restarted when upgraded. The
-administrator should notify the users and restart the server at the
-earliest opportunity.
-
-After starting the server for the first time, you should immediately
-register a user account, as the first user is automatically made
-administrator.
-
- -- Magnus Holmgren <holmgren@debian.org>, Mon, 25 Apr 2011 14:00:03 +0200
Index: debian/copyright
===================================================================
--- debian/copyright (revision 54)
+++ debian/copyright (nonexistent)
@@ -1,32 +0,0 @@
-This package was debianized by Magnus Holmgren <magnus@kibibyte.se> on
-2006-09-20.
-
-It was downloaded from <http://pyscrabble.sourceforge.net/>
-
-Upstream Author: Kevin Conaway <kevin.a.conaway@gmail.com>
-
-Copyright:
-
- Copyright © 2005-2007 Kevin Conaway
-
-License:
-
- This package is free software; you can redistribute it and/or modify
- it under the terms of the GNU 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 General Public License for more details.
-
- You should have received a copy of the GNU 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 General
-Public License can be found in `/usr/share/common-licenses/GPL'.
-
-The Debian packaging is © 2007, Magnus Holmgren <magnus@kibibyte.se> and
-is licensed under the GPL, see above.
Index: debian/pyscrabble-server.links
===================================================================
--- debian/pyscrabble-server.links (revision 54)
+++ debian/pyscrabble-server.links (nonexistent)
@@ -1 +0,0 @@
-usr/share/games/pyscrabble/python/server_console.py usr/sbin/pyscrabble-server
Index: debian
===================================================================
--- debian (revision 54)
+++ debian (nonexistent)
/debian
Property changes:
Deleted: mergeWithUpstream
## -1 +0,0 ##
-1
\ No newline at end of property