Subversion Repositories pyscrabble

Compare Revisions

Ignore whitespace Rev 37 → Rev 24

/tags/1.6.2-5/debian/pyscrabble.svg
File deleted
/tags/1.6.2-5/debian/patches/installation.patch
File deleted
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: 1.6.2-5/debian/patches/serverlist_timeout.patch
===================================================================
--- 1.6.2-5/debian/patches/serverlist_timeout.patch (revision 37)
+++ 1.6.2-5/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: 1.6.2-5/debian/patches/series
===================================================================
--- 1.6.2-5/debian/patches/series (revision 37)
+++ 1.6.2-5/debian/patches/series (nonexistent)
@@ -1,4 +0,0 @@
-installation.patch
-about_close.patch
-serverlist_timeout.patch
-hosts.patch
Index: 1.6.2-5/debian/patches/about_close.patch
===================================================================
--- 1.6.2-5/debian/patches/about_close.patch (revision 37)
+++ 1.6.2-5/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):
/1.6.2-5/debian/patches/about_close.patch
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: 1.6.2-5/debian/patches/hosts.patch
===================================================================
--- 1.6.2-5/debian/patches/hosts.patch (revision 37)
+++ 1.6.2-5/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: 1.6.2-5/debian/changelog
===================================================================
--- 1.6.2-5/debian/changelog (revision 37)
+++ 1.6.2-5/debian/changelog (nonexistent)
@@ -1,96 +0,0 @@
-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: 1.6.2-5/debian/pyscrabble.menu
===================================================================
--- 1.6.2-5/debian/pyscrabble.menu (revision 37)
+++ 1.6.2-5/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: 1.6.2-5/debian/rules
===================================================================
--- 1.6.2-5/debian/rules (revision 37)
+++ 1.6.2-5/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-stamp
-build-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
- touch "$@"
-
-install: build
- dh_testdir
- dh_testroot
- dh_prep
-
- python setup.py install --no-compile --root=$(DESTDIR) \
- --install-layout=deb \
- --install-scripts=/usr/games \
- --confdir=/etc/pyscrabble \
- --logdir=/var/log/pyscrabble \
- --dbdir=/var/lib/pyscrabble
- install -m755 -d $(DESTDIR)/usr/sbin
- mv $(DESTDIR)/usr/games/pyscrabble-main.py $(DESTDIR)/usr/games/pyscrabble
- mv $(DESTDIR)/usr/games/server_console.py $(DESTDIR)/usr/sbin/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_python2
- 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 clean binary-indep binary-arch binary install configure
/1.6.2-5/debian/rules
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: 1.6.2-5/debian/pyscrabble.install
===================================================================
--- 1.6.2-5/debian/pyscrabble.install (revision 37)
+++ 1.6.2-5/debian/pyscrabble.install (nonexistent)
@@ -1,10 +0,0 @@
-usr/games/pyscrabble
-usr/lib/python*/*-packages/pyscrabble/gui
-usr/lib/python*/*-packages/pyscrabble/net/client.py
-usr/lib/python*/*-packages/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: 1.6.2-5/debian/pyscrabble-server.init
===================================================================
--- 1.6.2-5/debian/pyscrabble-server.init (revision 37)
+++ 1.6.2-5/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: 1.6.2-5/debian/pyscrabble.desktop
===================================================================
--- 1.6.2-5/debian/pyscrabble.desktop (revision 37)
+++ 1.6.2-5/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: 1.6.2-5/debian/pyscrabble-server.install
===================================================================
--- 1.6.2-5/debian/pyscrabble-server.install (revision 37)
+++ 1.6.2-5/debian/pyscrabble-server.install (nonexistent)
@@ -1,8 +0,0 @@
-usr/sbin/pyscrabble-server
-usr/lib/python*/*-packages/pyscrabble/db.py
-usr/lib/python*/*-packages/pyscrabble/net/server.py
-usr/lib/python*/*-packages/pyscrabble/net/site.py
-usr/lib/python*/*-packages/pyscrabble/net/interfaces.py
-usr/share/games/pyscrabble/web
-usr/share/games/pyscrabble/dict
-etc/pyscrabble
Index: 1.6.2-5/debian/source/format
===================================================================
--- 1.6.2-5/debian/source/format (revision 37)
+++ 1.6.2-5/debian/source/format (nonexistent)
@@ -1 +0,0 @@
-3.0 (quilt)
Index: 1.6.2-5/debian/watch
===================================================================
--- 1.6.2-5/debian/watch (revision 37)
+++ 1.6.2-5/debian/watch (nonexistent)
@@ -1,3 +0,0 @@
-version=3
-
-http://sf.net/pyscrabble/pyscrabble-(.*)-src.zip debian uupdate
Index: 1.6.2-5/debian/pyscrabble-server.README.Debian
===================================================================
--- 1.6.2-5/debian/pyscrabble-server.README.Debian (revision 37)
+++ 1.6.2-5/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: 1.6.2-5/debian/copyright
===================================================================
--- 1.6.2-5/debian/copyright (revision 37)
+++ 1.6.2-5/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: 1.6.2-5/debian/pyscrabble-server.postinst
===================================================================
--- 1.6.2-5/debian/pyscrabble-server.postinst (revision 37)
+++ 1.6.2-5/debian/pyscrabble-server.postinst (nonexistent)
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-set -e
-
-if [ "$1" = "configure" ]; then
- adduser --quiet --system --home /var/lib/pyscrabble --no-create-home \
- --gecos "PyScrabble server" pyscrabble
- install -d -opyscrabble -m2750 /var/lib/pyscrabble
- install -d -opyscrabble -gadm -m2750 /var/log/pyscrabble
-fi
-
-#DEBHELPER#
Index: 1.6.2-5/debian/pyscrabble-server.default
===================================================================
--- 1.6.2-5/debian/pyscrabble-server.default (revision 37)
+++ 1.6.2-5/debian/pyscrabble-server.default (nonexistent)
@@ -1,8 +0,0 @@
-# This file will be sourced by /etc/init.d/pyscrabble-server
-
-# The user the server will run as. You'll have to make sure that the
-# user exists yourself.
-#USER=pyscrabble
-
-# You can change the name of the PID file that the init script uses.
-#PIDFILE=/var/run/pyscrabble-server.pid
Index: 1.6.2-5/debian/pyscrabble-server.postrm
===================================================================
--- 1.6.2-5/debian/pyscrabble-server.postrm (revision 37)
+++ 1.6.2-5/debian/pyscrabble-server.postrm (nonexistent)
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-set -e
-
-if [ "$1" = "purge" ]; then
- rm -rf /var/lib/pyscrabble
- rm -rf /var/log/pyscrabble
- if which deluser > /dev/null; then
- deluser --quiet --system pyscrabble
- fi
-fi
-
-#DEBHELPER#
Index: 1.6.2-5/debian/control
===================================================================
--- 1.6.2-5/debian/control (revision 37)
+++ 1.6.2-5/debian/control (nonexistent)
@@ -1,89 +0,0 @@
-Source: pyscrabble
-Section: games
-Priority: optional
-Maintainer: Magnus Holmgren <holmgren@debian.org>
-Build-Depends: debhelper (>= 7), python (>= 2.6.6-3~)
-Build-Depends-Indep: librsvg2-bin, imagemagick
-Standards-Version: 3.9.2
-Homepage: http://pyscrabble.sourceforge.net
-Vcs-Browser: http://svn.kibibyte.se/pyscrabble
-Vcs-Svn: http://svn.kibibyte.se/pyscrabble/trunk
-
-Package: pyscrabble-common
-Architecture: all
-Depends: ${misc:Depends}, ${python:Depends}, python-twisted-core
-Replaces: pyscrabble-server (<< 1.6.2-2)
-Description: multiplayer scrabble implementation - common files
- PyScrabble is an online, multiplayer implementation of the popular word game
- written in Python and featuring:
- .
- * chat and private messaging (online as well as offline)
- * player rankings and server statistics
- * use of ENABLE (Enhanced North American Benchmark LExicon) for
- English word lookup
- * timed games
- .
- This package contains files common to the client and the server.
- You will need to install pyscrabble to play.
- .
- Notice: Scrabble is a registered trademark belonging to Hasbro Inc in
- the US, and to J.W. Spear & Sons Ltd., a subsidiary of Mattel Inc.,
- throughout the rest of the world. Neither the author, Debian, nor
- this game are affiliated with the Scrabble Crossword Game, Hasbro,
- Spear & Sons or Mattel in any fashion.
-
-Package: pyscrabble
-Architecture: all
-Depends: pyscrabble-common (= ${source:Version}), ${misc:Depends},
- ${python:Depends}, python-pygame, python-gtk2
-Suggests: pyscrabble-server
-Description: multiplayer scrabble implementation written in Python - client part
- PyScrabble is an online, multiplayer implementation of the popular word game
- written in Python and featuring:
- .
- * chat and private messaging (online as well as offline)
- * player rankings and server statistics
- * use of ENABLE (Enhanced North American Benchmark LExicon) for
- English word lookup
- * timed games
- .
- The following languages are supported:
- .
- * English
- * Finnish
- * French
- * German
- * Serbian
- .
- This package contains the client program.
- .
- Notice: Scrabble is a registered trademark belonging to Hasbro Inc in
- the US, and to J.W. Spear & Sons Ltd., a subsidiary of Mattel Inc.,
- throughout the rest of the world. Neither the author, Debian, nor
- this game are affiliated with the Scrabble Crossword Game, Hasbro,
- Spear & Sons or Mattel in any fashion.
-
-Package: pyscrabble-server
-Architecture: all
-Depends: pyscrabble-common (= ${source:Version}), ${misc:Depends},
- ${python:Depends}, python-zodb, python-nevow, adduser, lsb-base (>= 3.0-6)
-Suggests: pyscrabble
-Priority: extra
-Description: scrabble implementation written in Python - server part
- PyScrabble is an online, multiplayer implementation of the popular word game
- written in Python and featuring:
- .
- * chat and private messaging (online as well as offline)
- * player rankings and server statistics
- * use of ENABLE (Enhanced North American Benchmark LExicon) for
- English word lookup
- * timed games
- .
- This package contains the server. You do not need to install this
- package if you only plan to connect to existing PyScrabble servers.
- .
- Notice: Scrabble is a registered trademark belonging to Hasbro Inc in
- the US, and to J.W. Spear & Sons Ltd., a subsidiary of Mattel Inc.,
- throughout the rest of the world. Neither the author, Debian, nor
- this game are affiliated with the Scrabble Crossword Game, Hasbro,
- Spear & Sons or Mattel in any fashion.
Index: 1.6.2-5/debian/pyscrabble-common.install
===================================================================
--- 1.6.2-5/debian/pyscrabble-common.install (revision 37)
+++ 1.6.2-5/debian/pyscrabble-common.install (nonexistent)
@@ -1,14 +0,0 @@
-usr/lib/python*/*-packages/pyscrabble/__*__.py
-usr/lib/python*/*-packages/pyscrabble/audit.py
-usr/lib/python*/*-packages/pyscrabble/dist.py
-usr/lib/python*/*-packages/pyscrabble/manager.py
-usr/lib/python*/*-packages/pyscrabble/util.py
-usr/lib/python*/*-packages/pyscrabble/serialize.py
-usr/lib/python*/*-packages/pyscrabble/constants.py
-usr/lib/python*/*-packages/pyscrabble/lookup.py
-usr/lib/python*/*-packages/pyscrabble/exceptions.py
-usr/lib/python*/*-packages/pyscrabble/game
-usr/lib/python*/*-packages/pyscrabble/command
-usr/lib/python*/*-packages/pyscrabble/net/__init__.py
-usr/lib/python*/*-packages/*.egg-info
-usr/share/games/pyscrabble/letters
Index: 1.6.2-5/debian/compat
===================================================================
--- 1.6.2-5/debian/compat (revision 37)
+++ 1.6.2-5/debian/compat (nonexistent)
@@ -1 +0,0 @@
-7
Index: 1.6.2-5/debian
===================================================================
--- 1.6.2-5/debian (revision 37)
+++ 1.6.2-5/debian (nonexistent)
/1.6.2-5/debian
Property changes:
Deleted: mergeWithUpstream
## -1 +0,0 ##
-1
\ No newline at end of property