Processed: Re: Bug#725423: Forwarded

2014-04-19 Thread Debian Bug Tracking System
Processing control commands:

 notforwarded -1
Bug #725423 [haxe] haxe: Closures cause VerifyError when building swf
Unset Bug forwarded-to-address

-- 
725423: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725423
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b725423.139789702711886.transcr...@bugs.debian.org



Bug#725423: Forwarded

2014-04-19 Thread Gabriele Giacone
Control: notforwarded -1

On Thu, Apr 17, 2014 at 08:48:47PM +0200, Bastien ROUCARIES wrote:
 control: forwarded -1 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725423

You'd probably want to forward it to

http://code.google.com/p/haxe/issues/list

 I plan to adopt it.

Thanks,
--
G..e


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140419084337.GA32220@jessie01



Processed: Re: Bug#725423: Forwarded

2014-04-19 Thread Debian Bug Tracking System
Processing control commands:

 forwarded -1 https://github.com/HaxeFoundation/haxe/issues/2897
Bug #725423 [haxe] haxe: Closures cause VerifyError when building swf
Set Bug forwarded-to-address to 
'https://github.com/HaxeFoundation/haxe/issues/2897'.

-- 
725423: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725423
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b725423.139789960027683.transcr...@bugs.debian.org



Bug#725423: Forwarded

2014-04-19 Thread Bastien ROUCARIES
control: forwarded -1 https://github.com/HaxeFoundation/haxe/issues/2897
On Sat, Apr 19, 2014 at 10:43 AM, Gabriele Giacone 1o5g4...@gmail.com wrote:
 Control: notforwarded -1

 On Thu, Apr 17, 2014 at 08:48:47PM +0200, Bastien ROUCARIES wrote:
 control: forwarded -1 
 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725423

 You'd probably want to forward it to

 http://code.google.com/p/haxe/issues/list

No it is old site.

 I plan to adopt it.

 Thanks,
 --
 G..e


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAE2SPAarFzmRZsLiiQdDHo15vT2ZRLD1CiFhawJeEX0kR=m...@mail.gmail.com



Re: qtsmbstatus-server: fails to install due to insserv rejecting the script header

2014-04-19 Thread Ivo De Decker
Control: reassign -1 qtsmbstatus-server 2.2.1-2

Hi Petter,

On Fri, Apr 18, 2014 at 08:15:03AM +0200, Petter Reinholdtsen wrote:
 I had a look at this bug report for qtsmbstatus-server, in the belief
 that the problem was easy to fix:
 
   Setting up qtsmbstatus-server (2.2.1-2) ...
   insserv: Service samba has to be enabled to start service qtsmbstatusd
   insserv: exiting now!
   update-rc.d: error: insserv rejected the script header
   dpkg: error processing qtsmbstatus-server (--configure):
subprocess installed post-installation script returned error exit status 1
 
 But that proved to be wrong.  The qtsmbstatus-server package depend on
 the samba package, which include the samba init.d script with a
 'Provides: samba' in place.  I also tested to install the
 qtsmbstatus-server package in sid and noticed the installation failure
 also happened there.  Looking closer, the problem is that the samba
 init.d script is not enabled by default:
 
   ### BEGIN INIT INFO
   # Provides:  samba
   # Required-Start:smbd nmbd
   # Required-Stop: smbd nmbd
   # Default-Start: 
   # Default-Stop:  
   # Short-Description: ensure Samba daemons are started (nmbd and smbd)
   ### END INIT INFO
 
 This causes update-rc.d to not add any start and stop symlinks during
 package installation, and thus qtsmbstatus-server is unable to find the
 required service during boot and package installation.
 
 Is this a bug in samba?  In that case, I suggest changing the
 Default-Start and Default-Stop lines to list runlevels like this:
 
   # Default-Start: 2 3 4 5
   # Default-Stop:  1

The samba init script only exists for backward compatibility. The services are
started by the snmd and nmbd init scripts (when running in 'old' mode), or by
the samba-ad-dc init script (when running in samba AD DC mode). Depending on
smbd isn't really a solution, because that will not have the right result when
running in samba AD DC mode (the smbd init script will exit successfully, but
won't do anything in that case). Depending on both smbd and samba-ad-dc might
be an option (this will ensure that the smbd functionality is available,
whatever the mode samba is running in).

 If not, I suggest to change qtsmbstatus-server like this, to make the
 samba init.d dependency optional:
 
 diff --git a/debian/qtsmbstatus-server.qtsmbstatusd.init 
 b/debian/qtsmbstatus-server.qtsmbstatusd.init
 index eff0e48..965fb16 100644
 --- a/debian/qtsmbstatus-server.qtsmbstatusd.init
 +++ b/debian/qtsmbstatus-server.qtsmbstatusd.init
 @@ -5,8 +5,9 @@
  # For LSB
  ### BEGIN INIT INFO
  # Provides:  qtsmbstatusd
 -# Required-Start:$remote_fs $syslog samba
 +# Required-Start:$remote_fs $syslog
  # Required-Stop: $remote_fs $syslog
 +# Should-Start:  samba
  # Default-Start: 2 3 4 5
  # Default-Stop:  0 1 6
  # Short-Description: start qtsmbstatusd server at boot time

This might also be an option.

 I am passing on the bug report to samba or their view.  Please send it
 back if samba is correct and should not start by default any more.

As it is intentional that the samba init script isn't started by default, I'm
sending it back.

Cheers,

Ivo


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140419141008.ga15...@ugent.be



Processed: Re: qtsmbstatus-server: fails to install due to insserv rejecting the script header

2014-04-19 Thread Debian Bug Tracking System
Processing control commands:

 reassign -1 qtsmbstatus-server 2.2.1-2
Bug #722465 [samba] qtsmbstatus-server: fails to install due to insserv 
rejecting the script header
Bug reassigned from package 'samba' to 'qtsmbstatus-server'.
Ignoring request to alter found versions of bug #722465 to the same values 
previously set
Ignoring request to alter fixed versions of bug #722465 to the same values 
previously set
Bug #722465 [qtsmbstatus-server] qtsmbstatus-server: fails to install due to 
insserv rejecting the script header
Marked as found in versions qtsmbstatus/2.2.1-2.

-- 
722465: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=722465
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b722465.139791662730976.transcr...@bugs.debian.org



bzr-fastimport is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
bzr-fastimport 0.13.0-4 is marked for autoremoval from testing on 2014-04-29

It is affected by these RC bugs:
741841: bzr-fastimport: FTBFS: ImportError: cannot import name binary_stream


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjwy-0002lc...@franck.debian.org



tvtime is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
tvtime 1.0.2-12 is marked for autoremoval from testing on 2014-04-29

It is affected by these RC bugs:
732607: tvtime: tvtime-configure segfaults on 64-bit systems
732207: tvtime: tvtime-configure segfaults on 64-bit systems


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjxe-0002vh...@franck.debian.org



qtsmbstatus is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
qtsmbstatus 2.2.1-2 is marked for autoremoval from testing on 2014-05-04

It is affected by these RC bugs:
722465: qtsmbstatus-server: fails to install due to insserv rejecting the 
script header


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjxl-0002ww...@franck.debian.org



python-tgext.admin is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
python-tgext.admin 0.2.6-2 is marked for autoremoval from testing on 2014-05-06

It (build-)depends on packages with these RC bugs:
735237: python-weberror: [python-weberror] non sourced minified javascript
735893: python-weberror: Sourceless file


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjxq-0002yc...@franck.debian.org



ifrit is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
ifrit 3.4.2-1 is marked for autoremoval from testing on 2014-04-29

It (build-)depends on packages with these RC bugs:
731823: libvtk-java: major version 51 is newer than 50, the highest major 
version supported by this compiler.
742359: vtk: tcl libraries underlinked


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjxd-0002or...@franck.debian.org



pygresql is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
pygresql 1:4.0-3 is marked for autoremoval from testing on 2014-04-29

It is affected by these RC bugs:
741806: pygresql: FTBFS: pgmodule.c:32:22: fatal error: postgres.h: No such 
file or directory


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjxt-0002sj...@franck.debian.org



songwrite is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
songwrite 0.14-9 is marked for autoremoval from testing on 2014-04-29

It (build-)depends on packages with these RC bugs:
736306: lilypond-doc: unhandled symlink to directory conversion: 
/usr/share/info/lilypond - /usr/share/doc/lilypond/html/Documentation


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjxb-0002ub...@franck.debian.org



tg.devtools is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
tg.devtools 2.0.2-4 is marked for autoremoval from testing on 2014-05-06

It (build-)depends on packages with these RC bugs:
735237: python-weberror: [python-weberror] non sourced minified javascript
735893: python-weberror: Sourceless file


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjxn-0002xc...@franck.debian.org



catwalk is marked for autoremoval from testing

2014-04-19 Thread Debian testing autoremoval watch
catwalk 2.0.2-5 is marked for autoremoval from testing on 2014-05-06

It (build-)depends on packages with these RC bugs:
735237: python-weberror: [python-weberror] non sourced minified javascript
735893: python-weberror: Sourceless file


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wbjxp-0002xu...@franck.debian.org