Your message dated Wed, 18 May 2005 18:02:38 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#296485: fixed in xfree86-driver-synaptics 0.14.2-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 22 Feb 2005 18:38:58 +0000
>From [EMAIL PROTECTED] Tue Feb 22 10:38:58 2005
Return-path: <[EMAIL PROTECTED]>
Received: from baikonur.stro.at [213.239.196.228] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1D3evx-0004Te-00; Tue, 22 Feb 2005 10:38:57 -0800
Received: from sputnik (stallburg.stro.at [128.131.216.190])
        by baikonur.stro.at (Postfix) with ESMTP id 14B4A5C001
        for <[EMAIL PROTECTED]>; Tue, 22 Feb 2005 19:38:53 +0100 (CET)
Received: from max by sputnik with local (Exim 4.34)
        id 1D3evt-0004sY-Pp
        for [EMAIL PROTECTED]; Tue, 22 Feb 2005 19:38:53 +0100
Date: Tue, 22 Feb 2005 19:38:53 +0100
From: maximilian attems <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: syndaemon init script
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="TB36FDmn/VVEgNH/"
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040907i
X-Virus-Scanned: by Amavis (ClamAV) at stro.at
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE,
        REMOVE_IN_QUOTES autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 


--TB36FDmn/VVEgNH/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Package: xfree86-driver-synaptics
Severity: wishlist
Version: 0.14.0-1
Tag: patch

current syndaemon lacks an init script for "automatic" manipulation 
through runlevel for the user.
attached is the contribution of an init script based on the 
skeleton debian init script.

as of current syndaemon version the daemon has no pidfile
the init scripts needs to be named differently than the
daemon itself or the init script gets killed on stop or 
on restart..  i choose synaptics for the init script name, 
as an user may easily find it.

the synaptics init script has an option string.
please review it for generic usage before inclusion.
in long term it would be cool to add an config file,
but that's another story ;)

you will need to call dh_installinit in rules
dh_installinit --name=synaptics

you may want to add start-up and stop links with update-rc.d
attached therefor a postinst, a prerm and a postrm.
but i guess that may be an overkill for now as the user
still needs X11 config manipulation before he gets a
usefull syndaemon.


hope that helps + best regards

--
maks


--TB36FDmn/VVEgNH/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=init

#! /bin/sh
#
# based on:
# Version:      @(#)skeleton  2.85-23  28-Jul-2004  [EMAIL PROTECTED]
#
# adapted due to current lack of syndaemon pidfile

set -e
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="keyboard monitor"
NAME=syndaemon
DAEMON=/usr/bin/$NAME
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

# Gracefully exit if the package has been removed.
test -x $DAEMON || exit 0

# Read config file if it is present.
# FIXME: no config yet, therefor OPTIONS variable
#if [ -r /etc/default/$NAME ]
#then
#       . /etc/default/$NAME
#fi
OPTIONS="-d -i 1 -t"


#
#       function that starts syndaemon
#
syndaemon_start() 
{
        start-stop-daemon --start --quiet \
                --exec $DAEMON -- $OPTIONS \
                || echo -n " already running"
}

#
#       function that stops syndaemon
#
syndaemon_stop() 
{
        start-stop-daemon --stop --quiet --name $NAME \
                || echo -n " not running"
}

case "$1" in
  start)
        echo -n "Starting $DESC: $NAME"
        syndaemon_start
        echo "."
        ;;
  stop)
        echo -n "Stopping $DESC: $NAME"
        syndaemon_stop
        echo "."
        ;;
  restart|force-reload)
        echo -n "Restarting $DESC: $NAME"
        syndaemon_stop
        sleep 1
        syndaemon_start
        echo "."
        ;;
  *)
         echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
         exit 1
         ;;
esac

exit 0

--TB36FDmn/VVEgNH/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=postinst

#!/bin/sh

set -e

if [ -x /etc/init.d/gdm ]; then
        update-rc.d synaptics defaults >/dev/null 2>&1
fi

--TB36FDmn/VVEgNH/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=prerm

#!/bin/sh

set -e

if [ "$1" = "remove" ]; then
        if [ -x /etc/init.d/synaptics ]; then
                invoke-rc.d synaptics stop
        fi
fi

--TB36FDmn/VVEgNH/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=postrm

#!/bin/sh

set -e

if [ "$1" = "purge" ] ; then
        update-rc.d synaptics remove >/dev/nul
fi

--TB36FDmn/VVEgNH/--

---------------------------------------
Received: (at 296485-close) by bugs.debian.org; 18 May 2005 22:09:03 +0000
>From [EMAIL PROTECTED] Wed May 18 15:09:03 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DYWit-0003e6-00; Wed, 18 May 2005 15:09:03 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DYWcg-00014r-00; Wed, 18 May 2005 18:02:38 -0400
From: Mattia Dongili <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#296485: fixed in xfree86-driver-synaptics 0.14.2-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 18 May 2005 18:02:38 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Source: xfree86-driver-synaptics
Source-Version: 0.14.2-1

We believe that the bug you reported is fixed in the latest version of
xfree86-driver-synaptics, which is due to be installed in the Debian FTP 
archive:

xfree86-driver-synaptics_0.14.2-1.diff.gz
  to 
pool/main/x/xfree86-driver-synaptics/xfree86-driver-synaptics_0.14.2-1.diff.gz
xfree86-driver-synaptics_0.14.2-1.dsc
  to pool/main/x/xfree86-driver-synaptics/xfree86-driver-synaptics_0.14.2-1.dsc
xfree86-driver-synaptics_0.14.2-1_i386.deb
  to 
pool/main/x/xfree86-driver-synaptics/xfree86-driver-synaptics_0.14.2-1_i386.deb
xfree86-driver-synaptics_0.14.2.orig.tar.gz
  to 
pool/main/x/xfree86-driver-synaptics/xfree86-driver-synaptics_0.14.2.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mattia Dongili <[EMAIL PROTECTED]> (supplier of updated 
xfree86-driver-synaptics package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 18 May 2005 00:24:14 +0200
Source: xfree86-driver-synaptics
Binary: xfree86-driver-synaptics
Architecture: source i386
Version: 0.14.2-1
Distribution: unstable
Urgency: low
Maintainer: Mattia Dongili <[EMAIL PROTECTED]>
Changed-By: Mattia Dongili <[EMAIL PROTECTED]>
Description: 
 xfree86-driver-synaptics - Synaptics TouchPad driver for XFree86 server
Closes: 296485
Changes: 
 xfree86-driver-synaptics (0.14.2-1) unstable; urgency=low
 .
   * New upstream release.
   * Added notes to README.Debian to run syndaemon from .xinitrc
     (closes: #296485)
Files: 
 1c48061da60e25389de3cafc5980cf2f 771 x11 optional 
xfree86-driver-synaptics_0.14.2-1.dsc
 a483eb18beebba0737fe0f7d5605e876 142973 x11 optional 
xfree86-driver-synaptics_0.14.2.orig.tar.gz
 d4d214fd2ac8ebdd1f08d849829ef408 15442 x11 optional 
xfree86-driver-synaptics_0.14.2-1.diff.gz
 667c56b3dce0b49515c6c788984cea35 60602 x11 optional 
xfree86-driver-synaptics_0.14.2-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFCi3xDgpRPaOotLEERAqsNAJ4hAcrrobkil2IcwsCDxgSVqh/63gCgtDSm
6MwsSKIxdPLdRl7axi5PPy4=
=mTrH
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to