Bug#852394: marked as done (Updating the gecko-mediaplayer Uploaders list)

2017-01-23 Thread Debian Bug Tracking System
Your message dated Tue, 24 Jan 2017 08:53:31 +0100
with message-id <20170124075331.fb4uwr7rbpsm7...@ramacher.at>
and subject line Re: Bug#852394: Updating the gecko-mediaplayer Uploaders list
has caused the Debian Bug report #852394,
regarding Updating the gecko-mediaplayer Uploaders list
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 ow...@bugs.debian.org
immediately.)


-- 
852394: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=852394
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: gecko-mediaplayer
Version: 1.0.9-2
Severity: minor
User: m...@qa.debian.org
Usertags: mia-teammaint

Julien Lavergne  wishes no longer to be uploader of 
gecko-mediaplayer.

We are tracking their status in the MIA team and would like to ask you
to remove them from the Uploaders list of the package so we can close
that part of the file.

(If the person is listed as Maintainer, what we are asking is to please
step in as a new maintainer.)

Thanks.
--- End Message ---
--- Begin Message ---
Version: 1.0.9-2+rm

On 2017-01-24 07:34:34, Tobias Frost wrote:
> Source: gecko-mediaplayer
> Version: 1.0.9-2
> Severity: minor
> User: m...@qa.debian.org
> Usertags: mia-teammaint
> 
> Julien Lavergne  wishes no longer to be uploader 
> of gecko-mediaplayer.

gecko-mediaplayer was removed in August 2015.

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: PGP signature
--- End Message ---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#852394: Updating the gecko-mediaplayer Uploaders list

2017-01-23 Thread Tobias Frost
Source: gecko-mediaplayer
Version: 1.0.9-2
Severity: minor
User: m...@qa.debian.org
Usertags: mia-teammaint

Julien Lavergne  wishes no longer to be uploader of 
gecko-mediaplayer.

We are tracking their status in the MIA team and would like to ask you
to remove them from the Uploaders list of the package so we can close
that part of the file.

(If the person is listed as Maintainer, what we are asking is to please
step in as a new maintainer.)

Thanks.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Mitarbeiter gesucht

2017-01-23 Thread gaze5230
Lieber vlc,

Wir suchen nach Mitarbeitern, die von zu Hause aus arbeiten wollen.
Mein Name ist Darrell und ich bin der Personalleiter einer großen, 
internationalen Firma.
Den größten Teil der Arbeit können Sie von zu Hause, das 
heißt, egal wo erledigen.
Bezahlung ist 3000 €-6000 €

Falls Sie an diesem Angebot Interesse haben, besuchen 
Sie bitte unsere Seite

Mit freundlichen Grüßen!
Personalabteilung___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#852082: gwc in testing crashes at startup

2017-01-23 Thread James Cowgill
Control: tags -1 patch

Hi,

On 23/01/17 15:29, James Cowgill wrote:
> On 23/01/17 12:39, Jaromír Mikeš wrote:
>> 2017-01-22 1:11 GMT+01:00 James Cowgill :
>> On 21/01/17 14:18, Christian Grigis wrote:
>> [...]
>> > The gdb backtrace gives:
>> >
>> > (gdb) run
>> > Starting program: /home/glove/tmp/gwc-testing/gwc-0.21.19~dfsg0/gwc
>> > [Thread debugging using libthread_db enabled]
>> > Using host libthread_db library 
>> "/lib/x86_64-linux-gnu/libthread_db.so.1".
>> > Current stack limit: 8388608 bytes
>> >
>> > Program received signal SIGSEGV, Segmentation fault.
>> > 0x76e047f9 in g_type_is_a () from 
>> /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
>> > (gdb) bt
>> > #0  0x76e047f9 in g_type_is_a () from 
>> /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
>> > #1  0x77519084 in gtk_type_new () from 
>> /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
>> > #2  0x5557223c in led_bar_new (segments=20, orientation=0) at 
>> gtkledbar.c:82
>>
>> The problem is here. led_bar_get_type returns an unsigned int, but
>> gtk_type_new expects a "GtkType" which is an integer with the same size
>> as a pointer. This code is going to need porting to work on 64-bit
>> arches.
>>
>> James I guess as it wouldn't be trivial to fix it by patch and we need
>> to this issue must be fixed upstream.
>> Am I right?
> 
> It's definitely an upstream issue, but I fear that by just pushing it
> upstream the package will be kicked out of stretch. It's hard to say how
> much work it would be until someone tries to fix it - it could be just
> this one function that's broken, or it could be many. You can probably
> catch a lot of these by enabling -Wconversion.

Looks like there weren't many instances of this particular bug (loads of
warnings to sieve through though). This patch should fix it.

James
Description: Fix pointer truncation issues in 2 _get_type functions
 On 64-bit architectures the pointers returned by these functions were being
 truncated to 32-bits causing segfaults.
Author: James Cowgill 
Bug-Debian: https://bugs.debian.org/852082
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/gtkgamma.c
+++ b/gtkgamma.c
@@ -202,10 +202,10 @@ static char *xpm[][27] =
 }
   };
 
-guint
+GtkType
 gtk_gamma_curve_get_type (void)
 {
-  static guint gamma_curve_type = 0;
+  static GtkType gamma_curve_type = 0;
 
   if (!gamma_curve_type)
 {
--- a/gtkgamma.h
+++ b/gtkgamma.h
@@ -68,7 +68,7 @@ struct _GtkGammaCurveClass
 };
 
 
-guint  gtk_gamma_curve_get_type (void);
+GtkTypegtk_gamma_curve_get_type (void);
 GtkWidget* gtk_gamma_curve_new  (void);
 
 
--- a/gtkledbar.c
+++ b/gtkledbar.c
@@ -28,10 +28,10 @@
 static void led_bar_class_init(LedBarClass *klass);
 static void led_bar_init  (LedBar  *led_bar);
 
-guint
+GtkType
 led_bar_get_type ()
 {
-  static guint led_bar_type = 0;
+  static GtkType led_bar_type = 0;
 
   if (!led_bar_type)
 {
--- a/gtkledbar.h
+++ b/gtkledbar.h
@@ -57,7 +57,7 @@ struct _LedBarClass
   GtkVBoxClass   parent_class;
 };
 
-guint led_bar_get_type(void);
+GtkType   led_bar_get_type(void);
 GtkWidget*led_bar_new (gint   segments,
 	   gint   orientation);
 gint  led_bar_get_num_segments(GtkWidget  *bar);


signature.asc
Description: OpenPGP digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Processed: Re: Bug#852082: gwc in testing crashes at startup

2017-01-23 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #852082 [gwc] gwc in testing crashes at startup
Added tag(s) patch.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#852290: inkscape: saving as "optimised SVG" fails, due to error when importing scourString

2017-01-23 Thread Tim Wienk
Dear Mattia,

Thanks for picking up the issue on such short notice. I saw the issue
and patch on launchpad, I'll be following and awaiting that issue as
well to see how and when the problem is resolved.

Mattia Rizzolo wrote:
>> I have implemented the following patch locally to work around the
>> problem:
>>
>> --- /usr/share/inkscape/extensions/scour.inkscape.py~
>> +++ /usr/share/inkscape/extensions/scour.inkscape.py
>> @@ -6,3 +6,6 @@
>>  import scour
>> -from scour.scour import scourString
>> +try:
>> +from scour.scour import scourString
>> +except Exception as e:
> If anything, this should catch inly ImportError over all of Exception
> (besides, there is no need to keep the exception info in the 'e'
> variable here).

You are obviously correct, there is no need to catch every exception or
to store it in `e`. I guess I was lazy in implementing the fix, and
duplicated the `except` statement from two lines below (I implemented
the change when I quickly needed a fix, submitted the report about an
hour later).

> Thank you again for your bug!

I am just a user, I'm sure I don't deserve a lot of credit. :-) Thanks
again for the effort and the quick action.

Kind regards,

Tim.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


New Arrival

2017-01-23 Thread Bonesca - Jona
    [ View in browser ]( http://r.newsletter.bonescamail.nl/pr33qjbyoatrf.html 
)   
 [   ]( http://r.newsletter.bonescamail.nl/2v0cey5bhaoatrd.html )
 
 
NEW ARRIVAL FROM TAIWAN :
 
6434 JONA Illex Squid Whole Round 300-500 grs 5 kilo block
6435 JONA Illex Squid Whole Round 400-600 grs 5 kilo block
9057 JONA Sushi Izumidai Slices 25 x (20 x 8 gr)
9070.1 JONA Wakame Seaweedsalad 12x1 kg
9070.2 JONA Wakame Seaweedsalad 24x500 grs
9070.3 JONA Wakame Seaweedsalad Wasabi 12x1 kg    











 
This email was sent to pkg-multimedia-maintainers@lists.alioth.debian.org
You received this email because you are registered with Bonesca Import en 
Export BV
 
[ Unsubscribe here ]( http://r.newsletter.bonescamail.nl/pr33qjbyoatrg.html )  

Sent by
[  ]( http://r.newsletter.bonescamail.nl/2v0cey5c9qoatrd.html )     
© 2017 Bonesca Import en Export BV  

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#848285: closed by Julien Cristau (Re: Bug#852042: nmu: jackd2_1.9.10+20150825git1ed50c92~dfsg-4)

2017-01-23 Thread Francesco Poli
On Mon, 23 Jan 2017 10:59:10 + James Cowgill wrote:

[...]
> Unfortunately I don't think this is going to work. Now that there is a
> "fixed" version, the BTS will only regard this bug as fixed in unstable
> if it sees a source changelog containing that version. Since this will
> never happen (it's a binNMU) the BTS will never regard this bug as fixed.

Oh, you're right. Sorry for messing up with version tracking...   :-(

> 
> Given that binNMUs have no testing migration delay, hopefully this won't
> affect people for too long.

That's good news (I wasn't aware of the zero migration delay for
binNMUs): it should indeed mean that the issue will affect virtually
zero users.

Thanks for the explanations.
Bye!


-- 
 http://www.inventati.org/frx/
 There's not a second to spare! To the laboratory!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgpiJpdsBEpbN.pgp
Description: PGP signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#852328: Acknowledgement (musescore: creates directory MuseScore2 in $HOME)

2017-01-23 Thread Thorsten Glaser
Debian Bug Tracking System dixit:

>If you wish to submit further information on this problem, please

This was an older queued bug… turns out upstream added a new
directory, with a new configuration item in the GUI, but which
defaults to the non-dot-præfixed path, and which only shows up
in the configuration files when changed from the default (so
grepping also didn’t help).

This bug can likely be closed, but maybe this is a good candidate
for a NEWS.Debian entry.

bye,
//mirabilos
-- 
Stéphane, I actually don’t block Googlemail, they’re just too utterly
stupid to successfully deliver to me (or anyone else using Greylisting
and not whitelisting their ranges). Same for a few other providers such
as Hotmail. Some spammers (Yahoo) I do block.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

libopenmpt 0.2.7386~beta20.3-3 MIGRATED to testing

2017-01-23 Thread Debian testing watch
FYI: The status of the libopenmpt source package
in Debian's testing distribution has changed.

  Previous version: 0.2.7386~beta20.3-1
  Current version:  0.2.7386~beta20.3-3

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


vlc 2.2.4-13 MIGRATED to testing

2017-01-23 Thread Debian testing watch
FYI: The status of the vlc source package
in Debian's testing distribution has changed.

  Previous version: 2.2.4-11
  Current version:  2.2.4-13

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


composite 0.006.2+dfsg0-7 MIGRATED to testing

2017-01-23 Thread Debian testing watch
FYI: The status of the composite source package
in Debian's testing distribution has changed.

  Previous version: 0.006.2+dfsg0-6
  Current version:  0.006.2+dfsg0-7

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#852328: musescore: creates directory MuseScore2 in $HOME

2017-01-23 Thread Thorsten Glaser
Package: musescore
Version: 2.0.3+dfsg1-2
Severity: normal

MuseScore recently creates a directory ~/MuseScore2 with
a subdirectory Soundfonts. All other MuseScore data is
in ~/.MuseScore2/ instead.


-- System Information:
Debian Release: stretch/sid
  APT prefers buildd-unstable
  APT policy: (500, 'buildd-unstable'), (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.6.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/lksh
Init: sysvinit (via /sbin/init)

Versions of packages musescore depends on:
ii  desktop-file-utils   0.23-1
ii  libasound2   1.1.2-1
ii  libc62.24-2
ii  libfreetype6 2.6.3-3+b1
ii  libgcc1  1:6.2.0-2
ii  libportaudio219+svn20140130-1
ii  libpulse09.0-3
ii  libqt5core5a [qtbase-abi-5-6-1]  5.6.1+dfsg-3+b1
ii  libqt5gui5   5.6.1+dfsg-3+b1
ii  libqt5help5  5.6.1-2
ii  libqt5network5   5.6.1+dfsg-3+b1
ii  libqt5printsupport5  5.6.1+dfsg-3+b1
ii  libqt5qml5   5.6.1-7
ii  libqt5quick5 5.6.1-7
ii  libqt5sql5-sqlite5.6.1+dfsg-3+b1
ii  libqt5svg5   5.6.1-2
ii  libqt5webkit55.6.1+dfsg-5
ii  libqt5widgets5   5.6.1+dfsg-3+b1
ii  libqt5xml5   5.6.1+dfsg-3+b1
ii  libqt5xmlpatterns5   5.6.1-2
ii  libsndfile1  1.0.25-10
ii  libstdc++6   6.2.0-2
ii  libvorbisfile3   1.3.5-3
ii  musescore-common 2.0.3+dfsg1-2
ii  qml-module-qtquick-controls  5.6.1-2
ii  qml-module-qtquick-dialogs   5.6.1-2
ii  qml-module-qtquick-layouts   5.6.1-2
ii  qml-module-qtquick2  5.6.1-7
ii  shared-mime-info 1.6-1
ii  xdg-utils1.1.1-1
ii  zlib1g   1:1.2.8.dfsg-2+b1

Versions of packages musescore recommends:
pn  pulseaudio-utils  

Versions of packages musescore suggests:
pn  fluid-soundfont-gm  
pn  timgm6mb-soundfont  

-- no debconf information

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#848285: Jackd exiting immediately

2017-01-23 Thread riot
Ahoi,

On Wed, 28 Dec 2016 09:50:57 -0500 "Mr. Christopher F. Miller"
 wrote:
> 
> I have same issue with unstable jackd2, where server exits when
> client stops sending.
> 
> Workaround is to start a second client and pause it so jackd does
> not exit, eg 'mpv some.mp3' pause with space bar.

Another workaround that i just used with Stretch was to install jackd2
from the experimental packages. Works like a charm.

-- 
Cheers,
riot

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#852082: gwc in testing crashes at startup

2017-01-23 Thread James Cowgill
Hi,

On 23/01/17 12:39, Jaromír Mikeš wrote:
> 2017-01-22 1:11 GMT+01:00 James Cowgill :
> On 21/01/17 14:18, Christian Grigis wrote:
> [...]
> > The gdb backtrace gives:
> >
> > (gdb) run
> > Starting program: /home/glove/tmp/gwc-testing/gwc-0.21.19~dfsg0/gwc
> > [Thread debugging using libthread_db enabled]
> > Using host libthread_db library 
> "/lib/x86_64-linux-gnu/libthread_db.so.1".
> > Current stack limit: 8388608 bytes
> >
> > Program received signal SIGSEGV, Segmentation fault.
> > 0x76e047f9 in g_type_is_a () from 
> /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
> > (gdb) bt
> > #0  0x76e047f9 in g_type_is_a () from 
> /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
> > #1  0x77519084 in gtk_type_new () from 
> /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
> > #2  0x5557223c in led_bar_new (segments=20, orientation=0) at 
> gtkledbar.c:82
> 
> The problem is here. led_bar_get_type returns an unsigned int, but
> gtk_type_new expects a "GtkType" which is an integer with the same size
> as a pointer. This code is going to need porting to work on 64-bit
> arches.
> 
> James I guess as it wouldn't be trivial to fix it by patch and we need
> to this issue must be fixed upstream.
> Am I right?

It's definitely an upstream issue, but I fear that by just pushing it
upstream the package will be kicked out of stretch. It's hard to say how
much work it would be until someone tries to fix it - it could be just
this one function that's broken, or it could be many. You can probably
catch a lot of these by enabling -Wconversion.

Thanks,
James



signature.asc
Description: OpenPGP digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Nachricht empfangen am_k_leinanzeigen

2017-01-23 Thread Manuela Wendler
Hallo


	Sie eine Nachricht auf  _k_leinanzeigen erhalten haben.

Um die Nachricht zu lesen, klicken Sie hier : www.elpaix.science/klein

 

Die Abmeldung von einer Mailingliste erfolgt über eine E-Mail : Sie hier : www.elpaix.science/unsude


___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#852082: gwc in testing crashes at startup

2017-01-23 Thread Jaromír Mikeš
2017-01-22 1:11 GMT+01:00 James Cowgill :

> Control: severity -1 grave
>

Hi,

sorry for slightly delayed answer :(


> On 21/01/17 14:18, Christian Grigis wrote:
> > Package: gwc
> > Version: 0.21.19~dfsg0-6
> > Severity: important
> >
> > Running 'gnome_wave_cleaner' from the testing package version
> > (0.21.19~dfsg0-6) crashes immediately at startup:
> >
> > $ gnome_wave_cleaner
> > Current stack limit: 8388608 bytes
> > Segmentation fault
>
> This bug is clearly RC. Jaromír, you did test this before uploading it
> right?
>

Actually I didn't as upload was only "debian packaging improvement" not new
upstream release
I was not expecting problems of this kind ... sorry


> [...]
> > The gdb backtrace gives:
> >
> > (gdb) run
> > Starting program: /home/glove/tmp/gwc-testing/gwc-0.21.19~dfsg0/gwc
> > [Thread debugging using libthread_db enabled]
> > Using host libthread_db library "/lib/x86_64-linux-gnu/
> libthread_db.so.1".
> > Current stack limit: 8388608 bytes
> >
> > Program received signal SIGSEGV, Segmentation fault.
> > 0x76e047f9 in g_type_is_a () from /usr/lib/x86_64-linux-gnu/
> libgobject-2.0.so.0
> > (gdb) bt
> > #0  0x76e047f9 in g_type_is_a () from /usr/lib/x86_64-linux-gnu/
> libgobject-2.0.so.0
> > #1  0x77519084 in gtk_type_new () from /usr/lib/x86_64-linux-gnu/
> libgtk-x11-2.0.so.0
> > #2  0x5557223c in led_bar_new (segments=20, orientation=0) at
> gtkledbar.c:82
>
> The problem is here. led_bar_get_type returns an unsigned int, but
> gtk_type_new expects a "GtkType" which is an integer with the same size
> as a pointer. This code is going to need porting to work on 64-bit arches.
>

James I guess as it wouldn't be trivial to fix it by patch and we need to
this issue must be fixed upstream.
Am I right?

best regards

mira
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Processed: bug 852290 is forwarded to https://code.launchpad.net/~mapreri/inkscape/support-scour-0.26/+merge/315348

2017-01-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 852290 
> https://code.launchpad.net/~mapreri/inkscape/support-scour-0.26/+merge/315348
Bug #852290 [inkscape] inkscape: fails with older python-scour (as found in 
jessie)
Set Bug forwarded-to-address to 
'https://code.launchpad.net/~mapreri/inkscape/support-scour-0.26/+merge/315348'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
852290: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=852290
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#848285: closed by Julien Cristau (Re: Bug#852042: nmu: jackd2_1.9.10+20150825git1ed50c92~dfsg-4)

2017-01-23 Thread Jonas Smedegaard
Quoting James Cowgill (2017-01-23 11:59:10)
> Control: notfixed -1 1.9.10+20150825git1ed50c92~dfsg-4+b1
> 
> Hi,
> 
> On 22/01/17 16:55, Francesco Poli wrote:
> > Control: fixed -1 jackd2/1.9.10+20150825git1ed50c92~dfsg-4+b1
> > 
> > On Sun, 22 Jan 2017 16:27:03 + Debian Bug Tracking System wrote:
> > 
> >> This is an automatic notification regarding your Bug report
> >> which was filed against the jackd2 package:
> >>
> >> #848285: jackd2: spits verbose output and exits immediately when the 
> >> client stops sending audio
> >>
> >> It has been closed by Julien Cristau .
> > 
> > Many thanks to all people involved in fixing the bug in GCC and in
> > fixing the resulting issue in Jackd!
> > 
> > I am looking forward to seeing the binNMU migrate to Debian testing.
> > 
> > In the meanwhile, apt-listbugs users risk seeing the package unpinned
> > and upgraded to the buggy version currently in testing, just because
> > this bug report has been closed with -done without version info.
> > I know that 1.9.10+20150825git1ed50c92~dfsg-4+b1 is not a source
> > version, but I guess that adding it as a fixed version should not harm
> > the BTS version tracking and would probably make apt-listbugs understand
> > that the bug was *not* closed as invalid, just fixed in a binNMU...
> > I am adding such a fixed version, I hope nobody will get angry because
> > of this.
> 
> Unfortunately I don't think this is going to work. Now that there is a
> "fixed" version, the BTS will only regard this bug as fixed in unstable
> if it sees a source changelog containing that version. Since this will
> never happen (it's a binNMU) the BTS will never regard this bug as fixed.
> 
> Given that binNMUs have no testing migration delay, hopefully this won't
> affect people for too long.

I think the correct approach is to reassign the bug to gcc and mark it 
as affecting jackd - i.e. not try track which jackd package is fixed: 
Purpose of binNMUs is to operate independent of the package.


 - Jonas

-- 
 * Jonas Smedegaard - idealist & Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#852290: inkscape: saving as "optimised SVG" fails, due to error when importing scourString

2017-01-23 Thread Fabian Greffrath
Mattia Rizzolo wrote:
> Note that it can't be workarounded in the packaging side by backporting
> the newer python-scour and forcing an higher version, as python-scour is
> only "Recommend"ed, and versioned recomends are not really considered.

Not directly, but you can still enforce higher versions by using a Breaks
relation against the older version.

 - Fabian

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#848285: closed by Julien Cristau (Re: Bug#852042: nmu: jackd2_1.9.10+20150825git1ed50c92~dfsg-4)

2017-01-23 Thread James Cowgill
Control: notfixed -1 1.9.10+20150825git1ed50c92~dfsg-4+b1

Hi,

On 22/01/17 16:55, Francesco Poli wrote:
> Control: fixed -1 jackd2/1.9.10+20150825git1ed50c92~dfsg-4+b1
> 
> On Sun, 22 Jan 2017 16:27:03 + Debian Bug Tracking System wrote:
> 
>> This is an automatic notification regarding your Bug report
>> which was filed against the jackd2 package:
>>
>> #848285: jackd2: spits verbose output and exits immediately when the client 
>> stops sending audio
>>
>> It has been closed by Julien Cristau .
> 
> Many thanks to all people involved in fixing the bug in GCC and in
> fixing the resulting issue in Jackd!
> 
> I am looking forward to seeing the binNMU migrate to Debian testing.
> 
> In the meanwhile, apt-listbugs users risk seeing the package unpinned
> and upgraded to the buggy version currently in testing, just because
> this bug report has been closed with -done without version info.
> I know that 1.9.10+20150825git1ed50c92~dfsg-4+b1 is not a source
> version, but I guess that adding it as a fixed version should not harm
> the BTS version tracking and would probably make apt-listbugs understand
> that the bug was *not* closed as invalid, just fixed in a binNMU...
> I am adding such a fixed version, I hope nobody will get angry because
> of this.

Unfortunately I don't think this is going to work. Now that there is a
"fixed" version, the BTS will only regard this bug as fixed in unstable
if it sees a source changelog containing that version. Since this will
never happen (it's a binNMU) the BTS will never regard this bug as fixed.

Given that binNMUs have no testing migration delay, hopefully this won't
affect people for too long.

James




signature.asc
Description: OpenPGP digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Processed: Re: Bug#848285: closed by Julien Cristau (Re: Bug#852042: nmu: jackd2_1.9.10+20150825git1ed50c92~dfsg-4)

2017-01-23 Thread Debian Bug Tracking System
Processing control commands:

> notfixed -1 1.9.10+20150825git1ed50c92~dfsg-4+b1
Bug #848285 {Done: Julien Cristau } [jackd2] jackd2: spits 
verbose output and exits immediately when the client stops sending audio
No longer marked as fixed in versions 
jackd2/1.9.10+20150825git1ed50c92~dfsg-4+b1.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#852290: inkscape: saving as "optimised SVG" fails, due to error when importing scourString

2017-01-23 Thread Mattia Rizzolo
Control: notfound -1 0.92.0-3~bpo8+1
Control: found -1 0.92.0-2
Control: retitle -1 inkscape: fails with older python-scour (as found in jessie)

On Mon, Jan 23, 2017 at 11:19:46AM +0100, Tim Wienk wrote:
> Package: inkscape
> Version: 0.92.0-3~bpo8+1
> 
> Please note, this bug only applies to Debian Jessie (using inkscape from
> jessie-backports and python-scour from jessie - there is no backported
> version of python-scour).

Thanks for the bug report!
Unfortunately the Debian bug tracker doesn't really know about
backports, but anyway, this is (should, haven't yet tried myself)
actually a bug reproducible in the unstable version of inkscape with
just a older version of python-scour.

Note that it can't be workarounded in the packaging side by backporting
the newer python-scour and forcing an higher version, as python-scour is
only "Recommend"ed, and versioned recomends are not really considered.

> When saving as an optimised SVG, inkscape uses the scour library to
> optimise the SVG. An error is reported when doing so, triggered by
> importing `scourString` from `scour.scour`.
> 
> The problem is most likely a result of a change in the python-scour
> package:
> 
> - In package version 0.26-3 (jessie), scour.py exists as:
>   /usr/lib/python2.7/dist-packages/scour.py
> - In package version 0.32-2 (stretch), scour.py exists as:
>   /usr/lib/python2.7/dist-packages/scour/scour.py

Thank you for the analysis!

> I have implemented the following patch locally to work around the
> problem:
> 
> --- /usr/share/inkscape/extensions/scour.inkscape.py~
> +++ /usr/share/inkscape/extensions/scour.inkscape.py
> @@ -6,3 +6,6 @@
>  import scour
> -from scour.scour import scourString
> +try:
> +from scour.scour import scourString
> +except Exception as e:
If anything, this should catch inly ImportError over all of Exception
(besides, there is no need to keep the exception info in the 'e'
variable here).
> +from scour import scourString
>  except Exception as e:

I'll forward this upstream soon.

Thank you again for your bug!

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  https://mapreri.org : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Processed: Re: Bug#852290: inkscape: saving as "optimised SVG" fails, due to error when importing scourString

2017-01-23 Thread Debian Bug Tracking System
Processing control commands:

> notfound -1 0.92.0-3~bpo8+1
Bug #852290 [inkscape] inkscape: saving as "optimised SVG" fails, due to error 
when importing scourString
No longer marked as found in versions inkscape/0.92.0-3~bpo8+1.
> found -1 0.92.0-2
Bug #852290 [inkscape] inkscape: saving as "optimised SVG" fails, due to error 
when importing scourString
Marked as found in versions inkscape/0.92.0-2.
> retitle -1 inkscape: fails with older python-scour (as found in jessie)
Bug #852290 [inkscape] inkscape: saving as "optimised SVG" fails, due to error 
when importing scourString
Changed Bug title to 'inkscape: fails with older python-scour (as found in 
jessie)' from 'inkscape: saving as "optimised SVG" fails, due to error when 
importing scourString'.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#852290: inkscape: saving as "optimised SVG" fails, due to error when importing scourString

2017-01-23 Thread Tim Wienk
Package: inkscape
Version: 0.92.0-3~bpo8+1
Severity: normal

Dear Maintainer,

Please note, this bug only applies to Debian Jessie (using inkscape from
jessie-backports and python-scour from jessie - there is no backported
version of python-scour).

When saving as an optimised SVG, inkscape uses the scour library to
optimise the SVG. An error is reported when doing so, triggered by
importing `scourString` from `scour.scour`.

The problem is most likely a result of a change in the python-scour
package:

- In package version 0.26-3 (jessie), scour.py exists as:
  /usr/lib/python2.7/dist-packages/scour.py
- In package version 0.32-2 (stretch), scour.py exists as:
  /usr/lib/python2.7/dist-packages/scour/scour.py


I have implemented the following patch locally to work around the
problem:

--- /usr/share/inkscape/extensions/scour.inkscape.py~
+++ /usr/share/inkscape/extensions/scour.inkscape.py
@@ -6,3 +6,6 @@
 import scour
-from scour.scour import scourString
+try:
+from scour.scour import scourString
+except Exception as e:
+from scour import scourString
 except Exception as e:


Thanks for the continued work and effort on maintaining this package.

Kind regards,

Tim.


-- System Information:
Debian Release: 8.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (50, 'testing'), (10, 
'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.8.0-0.bpo.2-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages inkscape depends on:
ii  libaspell150.60.7~20110707-1.3
ii  libatk1.0-02.14.0-1
ii  libatkmm-1.6-1 2.22.7-2.1
ii  libc6  2.19-18+deb8u7
ii  libcairo2  1.14.0-2.1+deb8u2
ii  libcairomm-1.0-1   1.10.0-1.1
ii  libcdr-0.1-1   0.1.0-3
ii  libdbus-1-31.8.22-0+deb8u1
ii  libdbus-glib-1-2   0.102-1
ii  libfontconfig1 2.11.0-6.3+deb8u1
ii  libfreetype6   2.5.2-3+deb8u1
ii  libgc1c2   1:7.2d-6.4
ii  libgcc11:4.9.2-10
ii  libgdk-pixbuf2.0-0 2.31.1-2+deb8u5
ii  libglib2.0-0   2.42.1-1+b1
ii  libglibmm-2.4-1c2a 2.42.0-1
ii  libgomp1   4.9.2-10
ii  libgsl0ldbl1.16+dfsg-2
ii  libgtk2.0-02.24.25-3+deb8u1
ii  libgtkmm-2.4-1c2a  1:2.24.4-1.1
ii  libgtkspell0   2.0.16-1.1
ii  libjpeg62-turbo1:1.3.1-12
ii  liblcms2-2 2.6-3+b3
ii  libmagick++-6.q16-58:6.8.9.9-5+deb8u6
ii  libmagickcore-6.q16-2  8:6.8.9.9-5+deb8u6
ii  libmagickwand-6.q16-2  8:6.8.9.9-5+deb8u6
ii  libpango-1.0-0 1.36.8-3
ii  libpangocairo-1.0-01.36.8-3
ii  libpangoft2-1.0-0  1.36.8-3
ii  libpangomm-1.4-1   2.34.0-1.1
ii  libpng12-0 1.2.50-2+deb8u3
ii  libpoppler-glib8   0.26.5-2+deb8u1
ii  libpoppler46   0.26.5-2+deb8u1
ii  libpopt0   1.16-10
ii  libpotrace01.12-1+deb8u1
ii  librevenge-0.0-0   0.0.1-3
ii  libsigc++-2.0-0c2a 2.4.0-1
ii  libstdc++6 4.9.2-10
ii  libvisio-0.1-1 0.1.0-2
ii  libwpg-0.3-3   0.3.0-3
ii  libx11-6   2:1.6.2-3
ii  libxml22.9.1+dfsg1-5+deb8u4
ii  libxslt1.1 1.1.28-2+deb8u2
ii  python 2.7.9-1
pn  python:any 
ii  zlib1g 1:1.2.8.dfsg-2+b1

Versions of packages inkscape recommends:
ii  aspell0.60.7~20110707-1.3
ii  imagemagick   8:6.8.9.9-5+deb8u6
pn  libimage-magick-perl  
pn  libwmf-bin
ii  python-lxml   3.4.0-1
ii  python-numpy  1:1.8.2-2
ii  python-scour  0.26-3
pn  transfig  

Versions of packages inkscape suggests:
ii  dia  0.97.3-1
pn  libsvg-perl  
pn  libxml-xql-perl  
pn  pstoedit 
pn  python-uniconvertor  
ii  ruby 1:2.1.5+deb8u2

-- no debconf information

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers