Your message dated Thu, 03 Apr 2008 13:43:19 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#426921: fixed in vdr 1.6.0-1
has caused the Debian Bug report #426921,
regarding plugin-loader: should accept plugins which do not come from dpkg
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
426921: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=426921
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: vdr
Version: 1.4.4-1
Severity: normal

/usr/lib/vdr/plugin-loader.sh expects that all vdr-plugins came from a Debian-package (checks them with dpkg -S in /usr/lib/vdr/plugin-loader.sh, row 38-40) otherwise you get errors.

This should be configurable, for example, through an option PLUGIN_CHECK_DPKG in /etc/default/vdr.

#! /bin/sh
### BEGIN INIT INFO
# Provides:          php-fastcgi
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start and stop php-cgi in external FASTCGI mode
# Description:       Start and stop php-cgi in external FASTCGI mode
### END INIT INFO

# Author: Kurt Zankl <[EMAIL PROTECTED]>

# Do NOT "set -e"

PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="php-cgi in external FASTCGI mode"
NAME=php-fastcgi
DAEMON=/usr/bin/php-cgi
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 0

# Read configuration variable file if it is present
[ -r /etc/default/$NAME ] && . /etc/default/$NAME

# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh

# Define LSB log_* functions.
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
. /lib/lsb/init-functions

# If the daemon is not enabled, give the user a warning and then exit,
# unless we are stopping the daemon
if [ "$START" != "yes" -a "$1" != "stop" ]; then
        log_warning_msg "To enable $NAME, edit /etc/default/$NAME and set 
START=yes"
        exit 0
fi

# Process configuration
export PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS
DAEMON_ARGS="-q -b $FCGI_HOST:$FCGI_PORT"


do_start()
{
        # Return
        #   0 if daemon has been started
        #   1 if daemon was already running
        #   2 if daemon could not be started
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON 
--test > /dev/null \
                || return 1
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON \
                --background --make-pidfile --chuid $EXEC_AS_USER --startas 
$DAEMON -- \
                $DAEMON_ARGS \
                || return 2
}

do_stop()
{
        # Return
        #   0 if daemon has been stopped
        #   1 if daemon was already stopped
        #   2 if daemon could not be stopped
        #   other if a failure occurred
        start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile 
$PIDFILE > /dev/null # --name $DAEMON
        RETVAL="$?"
        [ "$RETVAL" = 2 ] && return 2
        # Wait for children to finish too if this is a daemon that forks
        # and if the daemon is only ever run from this initscript.
        # If the above conditions are not satisfied then add some other code
        # that waits for the process to drop all resources that could be
        # needed by services started subsequently.  A last resort is to
        # sleep for some time.
        start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec 
$DAEMON
        [ "$?" = 2 ] && return 2
        # Many daemons don't delete their pidfiles when they exit.
        rm -f $PIDFILE
        return "$RETVAL"
}

case "$1" in
  start)
        [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
        do_start
        case "$?" in
                0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
                2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
        esac
        ;;
  stop)
        [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
        do_stop
        case "$?" in
                0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
                2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
        esac
        ;;
  restart|force-reload)
        log_daemon_msg "Restarting $DESC" "$NAME"
        do_stop
        case "$?" in
          0|1)
                do_start
                case "$?" in
                        0) log_end_msg 0 ;;
                        1) log_end_msg 1 ;; # Old process is still running
                        *) log_end_msg 1 ;; # Failed to start
                esac
                ;;
          *)
                # Failed to stop
                log_end_msg 1
                ;;
        esac
        ;;
  *)
        echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
        exit 3
        ;;
esac

:


#
# Settings for php-cgi in external FASTCGI Mode
#

# Should php-fastcgi run automatically on startup? (default: no)

START=yes

# Which user runs PHP? (default: www-data)

EXEC_AS_USER=www-data

# Host and TCP port for FASTCGI-Listener (default: localhost:9000)

FCGI_HOST=localhost
FCGI_PORT=9000

# Environment variables, which are processed by PHP

PHP_FCGI_CHILDREN=5
PHP_FCGI_MAX_REQUESTS=1000



--- End Message ---
--- Begin Message ---
Source: vdr
Source-Version: 1.6.0-1

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

vdr-dbg_1.6.0-1_i386.deb
  to pool/main/v/vdr/vdr-dbg_1.6.0-1_i386.deb
vdr-dev_1.6.0-1_all.deb
  to pool/main/v/vdr/vdr-dev_1.6.0-1_all.deb
vdr-plugin-examples_1.6.0-1_i386.deb
  to pool/main/v/vdr/vdr-plugin-examples_1.6.0-1_i386.deb
vdr-plugin-pictures_1.6.0-1_i386.deb
  to pool/main/v/vdr/vdr-plugin-pictures_1.6.0-1_i386.deb
vdr-plugin-sky_1.6.0-1_i386.deb
  to pool/main/v/vdr/vdr-plugin-sky_1.6.0-1_i386.deb
vdr_1.6.0-1.diff.gz
  to pool/main/v/vdr/vdr_1.6.0-1.diff.gz
vdr_1.6.0-1.dsc
  to pool/main/v/vdr/vdr_1.6.0-1.dsc
vdr_1.6.0-1_i386.deb
  to pool/main/v/vdr/vdr_1.6.0-1_i386.deb
vdr_1.6.0.orig.tar.gz
  to pool/main/v/vdr/vdr_1.6.0.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.
Thomas Schmidt <[EMAIL PROTECTED]> (supplier of updated vdr 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: Mon, 24 Mar 2008 18:58:22 +0100
Source: vdr
Binary: vdr vdr-dev vdr-dbg vdr-plugin-sky vdr-plugin-examples 
vdr-plugin-pictures
Architecture: source all i386
Version: 1.6.0-1
Distribution: experimental
Urgency: low
Maintainer: Debian VDR Team <[EMAIL PROTECTED]>
Changed-By: Thomas Schmidt <[EMAIL PROTECTED]>
Description: 
 vdr        - Video Disk Recorder for DVB cards
 vdr-dbg    - Debuggable version of the VDR Video Disk Recorder
 vdr-dev    - Video Disk Recorder for DVB cards
 vdr-plugin-examples - Plugins for vdr to show some possible features
 vdr-plugin-pictures - Plugin for vdr providing a very basic picture viewer
 vdr-plugin-sky - Plugin for using a Sky Digibox with vdr
Closes: 352442 426921 467512
Changes: 
 vdr (1.6.0-1) experimental; urgency=low
 .
   [ Tobias Grimm]
   * New upstream release (closes: #467512)
   * Updated 03_cmdsubmenu.dpatch
   * Updated 09_sort_options.dpatch
   * Upgraded opt-20_liemikuutio.dpatch to version 1.19
   * Updated opt-31-x_reelchannelscan
   * Updated opt-37-x_menuorg.dpatch
   * Updated opt-38_disableDoubleEpgEntrys.dpatch, to avoid sprintf buffer
     overflows
   * Updated opt-41-x_timer-info.dpatch
   * Updated opt-43-x_recordshowfree.dpatch
   * Updated opt-47_sourcecaps
   * Updated opt-48-x_pin.dpatch
   * Applied modification from Michaël Nival to opt-45_yaepg.dpatch that fixes a
     small bug
   * Removed opt-36_CutterQueue.dpatch
   * Removed opt-36_CutterQueue-AutoDelete.dpatch
   * Removed opt-46_dmh-dvd-archive.dpatch
   * Removed opt-46_dvdarchive.dpatch
   * Removed opt-46-x_dmh-dvd-archive-debian.dpatch
   * Removed opt-49_sharelnb.dpatch
   * Adapted 15_dvbplayer.dpatch
   * Added 01_pic2mpg-debian.dpatch
   * Added 99_ncursesw-include.dpatch
   * Added opt-49-x_pvrinput.dpatch
   * Added opt_40-iptv.dpatch
   * Added latest version of pin patch opt-48_pin-0.1.7.dpatch
   * Added installation of the pictures plug-in
   * Line-wrapped dependencies in debian/control
   * COMPAT=5, debhelper (>= 5)
   * Made debianize-vdrplugin create cdbs based plugin packages
   * Using empty directory /usr/lib/vdr/plugins again and adding lintian
     override for "package-contains-empty-directory" warning - VDR
     requires the plugin directory!
   * Added short description to the NAME section of the manpages to fix the
     Lintian manpage-has-bad-whatis-entry warning
   * Removed upgrade code for VDR 1.2.6 from postinst
   * Added some lines of documentation to README.Debian, explaining that
     plug-ins manually copied to /usr/lib/vdr/plugins will only be loaded
     when PLUGIN_CHECK_PATCHLEVEL=no (closes: #426921)
   * Added manpages for vdr-dbg, debugvdr, vdrleaktest, vdrdbg-buildpackage
     and pic2mpg
   * Added support for VDR_CHARSET_OVERRIDE=<CHARSET> in /etc/default/vdr
   * Made vdrleaktest and debugvdr explicitly using bash, because
     commands-loader.sh and plugin-loader.sh contain bashisms
   * Instead of setting VFAT=1 at compile time, introduced a new
     configuration option in /etc/defautl/vdr (using VDR's
     --vfat option), so that the VFAT support can be disabled
 .
   [ Thomas Günther ]
   * Adapted 04_newplugin.dpatch
   * Adapted 10_dd-record-option.dpatch
   * Adapted opt-24_jumpplay.dpatch
   * Adapted opt-28_audioindexer.dpatch
   * Updated opt-39_noepg.dpatch
   * Updated opt-44_rotor.dpatch
   * Adapted opt-45_yaepg.dpatch
   * Adapted opt-50_graphtft.dpatch
   * Adapted opt-50_graphtft-0.1.dpatch
   * Adapted opt-51_cuttime.dpatch
   * Removed 02_Makefile-CFGDIR.dpatch
   * Removed 17_epg-conv-iso6937.dpatch
   * Removed opt-27-x_subtitles-ttxtsubs-volumebar-fix.dpatch (now
     integrated in opt-27_subtitles-ttxtsubs.dpatch)
   * Removed opt-40_wareagle-icons.dpatch
   * Added opt-29_syncearly.dpatch and opt-29_syncearly-audioindexer.dpatch
   * Added opt-48_pin-submenu.dpatch
   * Added opt-50_graphtft-0.1.dpatch
   * Replaced opt-27_subtitles-ttxtsubs.dpatch with opt-27_ttxtsubs.dpatch -
     subtitles support now integrated in upstream (closes: #352442)
   * Added gettext to Build-Depends
   * Added libfreetype6-dev and libfontconfig-dev to Build-Depends
   * Replaced libncurses5-dev with libncursesw5-dev in Build-Depends
   * Added ttf-bitstream-vera | ttf-freefont to vdr Recommends
   * Added URL for developer version to debian/watch
   * Upgraded make-special-vdr.sh to version 0.7
 .
   [ Thomas Schmidt ]
   * Added vdr-dbg-package + scripts vdrleaktest, debugvdr and
     vdrdbg-buildpackage from Tobias repository
   * Updated debian/copyright
   * Changed config-loader.sh to get default $LANG from /etc/environment
   * Updated years in debian/copyright
Files: 
 57c82412b534dab235d2e77e11322b2d 1042 misc extra vdr_1.6.0-1.dsc
 c8976e0513f61a4fe65e2f1fde8ff77d 766315 misc extra vdr_1.6.0.orig.tar.gz
 8d185ade3744150072d1c45e67b0e767 139967 misc extra vdr_1.6.0-1.diff.gz
 1f8da56284430dbe7ebace28248e0008 294504 misc extra vdr-dev_1.6.0-1_all.deb
 18a40837706a4d1ea017817616e33713 832612 misc extra vdr_1.6.0-1_i386.deb
 a1420c547a2bc050e9165149a21cc4cd 1228988 misc extra vdr-dbg_1.6.0-1_i386.deb
 d6570d8b9549f2d7621d76011c231ea0 30988 misc extra 
vdr-plugin-sky_1.6.0-1_i386.deb
 45eec5d9d99d75aa217892501debd83a 35632 misc extra 
vdr-plugin-examples_1.6.0-1_i386.deb
 a778ec2c1b83e838c1f6ba4af35fe6cf 38386 misc extra 
vdr-plugin-pictures_1.6.0-1_i386.deb

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

iD8DBQFH5+34c9+NqwoydlIRAuyyAJ47cYMm+ufkMXQ/yN7zu9R9T86c7wCgyC7X
zO/o3xTcYMhN7iGP18583Os=
=KBI6
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to