Bug#789282: freehep-chartableconverter-plugin: switch B-D from libplexus-compiler-api-java to libplexus-compiler-java

2015-06-20 Thread Gabriele Giacone
On Fri, Jun 19, 2015 at 03:46:41PM +0200, Andreas Beckmann wrote:
 Source: freehep-chartableconverter-plugin
 Version: 2.0-6
 Severity: serious
 Tags: stretch sid
 
 Your package Build-Depends: libplexus-compiler-api-java which was a
 transitional package that has now been removed. Please switch to
 libplexus-compiler-java instead.

Hi Giovanni,

fixed bug, rebuilt, pushed changes.
Please upload it yourself or grant me DM upload rights.
Also available at

 
http://mentors.debian.net/debian/pool/main/f/freehep-chartableconverter-plugin/freehep-chartableconverter-plugin_2.0-7.dsc

Thanks,
-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#725423: haxe: Closures cause VerifyError when building swf

2015-05-19 Thread Gabriele Giacone
Control: severity 725423 normal

On Sat, Oct 05, 2013 at 05:45:09PM +0100, Peter Statham wrote:
 Package: haxe
 Version: 1:3.0.0~svn6707-4
 Severity: grave
 Justification: renders package unusable
 
 Dear Maintainer,
 
 Using closures of any sort with the flash target (-swf) causes the
 resulting file to give an error of the sort:
 
  Warning: Failed to parse corrupt data.
  VerifyError: Error #1001: The method MethodInfo-1327() is not implemented.
 
 Steps to reproduce:
 Compile:
 
  class Test { public static function main () { trace (Hello World); } }
 
 Using the command:
 
  haxe Test.hx -main Test -swf test.swf
 
 I have marked the severity as grave rather then important as, while
 it is relatively easy to avoid using closures in your code, the haxe
 standard library makes heavy use of closures and is harder to code
 around.
 
 Methods such as Map.keys and String.charCodeAt are among the affected.

I've just tried both

$ haxe Test.hx -main Test -swf test.swf

 and
 
$ haxe -main Test -swf test.swf # as suggested in upstream bug

They both successfully generated test.swf with no output.

Unless you provide a valid testcase to reproduce it, bug will be closed.
In the meanwhile downgrading to normal.

-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#754311: closing 754311

2015-04-28 Thread Gabriele Giacone
close 754311 
thanks
-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#754311: closing 754311

2015-04-28 Thread Gabriele Giacone
close 754311 0.8.11~git20150419-1
thanks

New upstream snapshot doesn't FTBFS anymore.


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#752629: bug#752629 (ming license issue)

2014-11-16 Thread Gabriele Giacone
On Sun, Nov 16, 2014 at 5:01 PM, intrigeri intrig...@debian.org wrote:
 Done in the attached debdiff. However, as reported separately, the
 package FTBFS on current sid (but builds fine on Jessie), so I'm not
 NMU'ing as-is.

Here both ming and pencil2d do build fine on an updated clean sid chroot.

BTW my only doubt is about licensing:
  https://github.com/libming/libming/issues/42#issuecomment-47538565

-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765785: openrc: can't cope with dangling rc.d links

2014-10-25 Thread Gabriele Giacone
Control: tags -1 + patch

Please consider attached patch.

-- 
G..e
diff --git a/debian/changelog b/debian/changelog
index 464e751..b3a0bec 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+openrc (0.13.1-3) UNRELEASED; urgency=medium
+
+  * Fix postinst, make dangling links presence not fatal (Closes: #765785).
+
+ -- Gabriele Giacone 1o5g4...@gmail.com  Sat, 25 Oct 2014 15:30:56 +0200
+
 openrc (0.13.1-2) unstable; urgency=medium
 
   [ Steven Chamberlain ]
diff --git a/debian/openrc.postinst b/debian/openrc.postinst
index 8438f00..b0f287c 100644
--- a/debian/openrc.postinst
+++ b/debian/openrc.postinst
@@ -9,22 +9,34 @@ if [ ${1} = configure ] ; then
[ -d /etc/rc${rl}.d ] || continue
 
for f in $(ls -1 /etc/rc${rl}.d | egrep 'S[[:digit:]]{2}*'); do
-   svc=$(readlink -f /etc/rc${rl}.d/${f})
-   svc=$(basename ${svc})
-   update-rc.d ${svc} enable ${rl}
+   rclink=/etc/rc${rl}.d/${f}
+   initsh=$(readlink -f ${rclink})
+   svc=$(basename ${initsh})
+   if [ -f ${initsh} ]; then
+   update-rc.d ${svc} enable ${rl}
+   else
+   echo *** WARNING: dangling link $rclink
+   echo $dsvcs|grep -qw ${svc} || dsvcs=$dsvcs 
${svc}
+   fi
done
done
 
[ -d /etc/rc6.d ]  for f in $(ls -1 /etc/rc6.d | egrep 
'K[[:digit:]]{2}*'); do
-   svc=$(readlink -f /etc/rc6.d/${f})
-   # no need to duplicate services in the off runlevel
-   egrep -q '# Default-Start:\s+[S12345]' ${svc}  continue
+   rclink=/etc/rc6.d/${f}
+   initsh=$(readlink -f ${rclink})
+   svc=$(basename ${initsh})
+   if [ -f ${initsh} ]; then
+   # no need to duplicate services in the off runlevel
+   egrep -q '# Default-Start:\s+[S12345]' ${initsh}  
continue
 
-   svc=$(basename ${svc})
-   # reboot is managed by transit as below
-   [ ${svc} = reboot ]  continue
+   # reboot is managed by transit as below
+   [ ${svc} = reboot ]  continue
 
-   update-rc.d ${svc} enable 6
+   update-rc.d ${svc} enable 6
+   else
+   echo *** WARNING: dangling link $rclink
+   echo $dsvcs|grep -qw ${svc} || dsvcs=$dsvcs ${svc}
+   fi
done
 
rc-update add savecache off
@@ -36,6 +48,15 @@ if [ ${1} = configure ] ; then
 
rc-update -u
 
+   if [ $dsvcs !=  ]; then
+   echo 
**
+   echo *** WARNING: Found the following dangling links:
+   for link in $dsvcs; do
+   ls -l /etc/rc*.d/*$link
+   done
+   echo 
**
+   fi
+
echo 
**
echo *** WARNING: if you are replacing sysv-rc by OpenRC, then you 
must ***
echo *** reboot immediately using the following command:   
 ***


Bug#761550: Imagemagick transition

2014-09-21 Thread Gabriele Giacone
On Mon, Sep 15, 2014 at 11:39:03PM +0200, Gabriele Giacone wrote:
 Bastien,
 
 On Mon, Sep 15, 2014 at 10:21 PM, Bastien ROUCARIES
 roucaries.bast...@gmail.com wrote:
  the debdiff
 
 - default-jdk, libmagickcore-extra, python (= 2.6.6-3~)
 + default-jdk, python (= 2.6.6-3~),
 + libmagickcore-6.q16-2-extra
 
 Fixing it means switching from an unversioned libmagickcore-extra
 which IS provided by libmagickcore-6.q16-2-extra to
 libmagickcore-6.q16-2-extra ?!


Useless upload, packages have been removed just few hours before your reply:

=
[Date: Mon, 15 Sep 2014 16:58:03 +] [ftpmaster: Scott Kitterman]
Removed the following packages from unstable:

libmagick++5 | 8:6.7.7.10+dfsg-5 | amd64, arm64, armel, armhf, i386, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x, sparc
libmagickcore5 | 8:6.7.7.10+dfsg-5 | amd64, arm64, armel, armhf, i386, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x, sparc
libmagickcore5-extra | 8:6.7.7.10+dfsg-5 | amd64, arm64, armel, armhf, i386, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x, sparc
libmagickwand5 | 8:6.7.7.10+dfsg-5 | amd64, arm64, armel, armhf, i386, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x, sparc

--- Reason ---
[auto-cruft] NBS (no longer built by imagemagick)
--
=

I guess it was actually fixed at 19:52 UTC, next dinstall.

It also makes another upload necessary whenever libmagickcore-6.q16-2-extra
will be replaced. Package name suggests it will.

Glad to be corrected if missing anything.


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#761550: Imagemagick transition

2014-09-15 Thread Gabriele Giacone
Bastien,

On Mon, Sep 15, 2014 at 10:21 PM, Bastien ROUCARIES
roucaries.bast...@gmail.com wrote:
 the debdiff

- default-jdk, libmagickcore-extra, python (= 2.6.6-3~)
+ default-jdk, python (= 2.6.6-3~),
+ libmagickcore-6.q16-2-extra

Fixing it means switching from an unversioned libmagickcore-extra
which IS provided by libmagickcore-6.q16-2-extra to
libmagickcore-6.q16-2-extra ?!

-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#761550: sunflow: FTBFS: convert: unable to open file `/tmp/magick-25279uk8HYnu9HiFf': No such file or directory @ error/constitute.c/ReadImage/540.

2014-09-14 Thread Gabriele Giacone
Control: reassign -1 src:imagemagick

On Sun, Sep 14, 2014 at 05:39:07PM +0200, David Suárez wrote:
 Source: sunflow
 Version: 0.07.2.svn396+dfsg-12
 Severity: serious
 Tags: jessie sid
 User: debian...@lists.debian.org
 Usertags: qa-ftbfs-20140913 qa-ftbfs
 Justification: FTBFS on amd64
 
[...]
  convert -background rgba(255,255,255,0) -geometry 48x48 
  debian/sunflow.svg debian/sunflow.png
  convert: delegate failed `rsvg-convert -o %o %i' @ 
  error/delegate.c/InvokeDelegate/1153.
  convert: unable to open image `/tmp/magick-25279uk8HYnu9HiFf': No such file 
  or directory @ error/blob.c/OpenBlob/2658.
  convert: unable to open file `/tmp/magick-25279uk8HYnu9HiFf': No such file 
  or directory @ error/constitute.c/ReadImage/540.
  convert: no images defined `debian/sunflow.png' @ 
  error/convert.c/ConvertImageCommand/3187.
  make: *** [build/sunflow] Error 1

sunflow B-Depends on libmagickcore-extra. By replacing it with
libmagickcore-6.q16-2-extra, it doesn't FTBFS anymore.

At the moment it installs
[...]
Setting up libmagickcore-6.q16-2:i386 (8:6.8.9.6-4) ...
Setting up libmagickcore5:i386 (8:6.7.7.10+dfsg-5) ...
Setting up libmagickcore5-extra:i386 (8:6.7.7.10+dfsg-5) ...
[...]

I guess libmagickcore5-extra, which provides libmagickcore-extra, should
be removed from archive. Does it need a manual removal?

https://qa.debian.org/excuses.php?package=imagemagick

 8 days old (needed 2 days)
 out of date on i386: libmagick++5, libmagickcore5, libmagickcore5-extra, 
libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on amd64: libmagick++5, libmagickcore5, libmagickcore5-extra, 
libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on armel: libmagick++5, libmagickcore5, libmagickcore5-extra, 
libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on armhf: libmagick++5, libmagickcore5, libmagickcore5-extra, 
libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on kfreebsd-amd64: libmagick++5, libmagickcore5, 
libmagickcore5-extra, libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on kfreebsd-i386: libmagick++5, libmagickcore5, 
libmagickcore5-extra, libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on mips: libmagick++5, libmagickcore5, libmagickcore5-extra, 
libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on mipsel: libmagick++5, libmagickcore5, libmagickcore5-extra, 
libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on powerpc: libmagick++5, libmagickcore5, libmagickcore5-extra, 
libmagickwand5 (from 8:6.7.7.10+dfsg-5)
 out of date on s390x: libmagick++5, libmagickcore5, libmagickcore5-extra, 
libmagickwand5 (from 8:6.7.7.10+dfsg-5) 


-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#752716: ming: hardcodes /usr/lib/perl5

2014-08-08 Thread Gabriele Giacone
On Fri, Aug 8, 2014 at 11:07 AM, Damyan Ivanov d...@debian.org wrote:
 -=| gregor herrmann, 07.08.2014 23:39:46 +0200 |=-
 On Thu, 26 Jun 2014 02:49:33 +0200, Gabriele Giacone wrote:

  Control: tags -1 + pending
  Fixed in git.

 Is that git publicly accessible?

 Ping?
 Perl 5.20 will be uploaded to sid next week, at which point a fixed
 ming package would be nice.

 ming has a couple of reverse dependencies, including gnash. Having
 it/them out of Jessie would be really bad.

 I am considering a NMU despite the month-old pending tag.

Git is at http://anonscm.debian.org/gitweb/?p=pkg-flash/ming.git;a=summary

I just uploaded git + team upload commit at
http://mentors.debian.net/debian/pool/main/m/ming/ming_0.4.5-2.dsc

Anyone interested in sporsoring it?
Also DM upload grant would be appreciated.

[CC'ing Debian Flash Team and maintainer Stuart R. Anderson who moved
git repo there many months ago]

-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#752716: ming: hardcodes /usr/lib/perl5

2014-08-08 Thread Gabriele Giacone
On Fri, Aug 8, 2014 at 4:39 PM, gregor herrmann gre...@debian.org wrote:
 On Fri, 08 Aug 2014 11:32:52 +0200, Gabriele Giacone wrote:

 Git is at http://anonscm.debian.org/gitweb/?p=pkg-flash/ming.git;a=summary

 ... where d/changelog still says UNRELEASED

 I just uploaded git + team upload commit at
 http://mentors.debian.net/debian/pool/main/m/ming/ming_0.4.5-2.dsc

Yes, team upload commit was not pushed yet.

 Anyone interested in sporsoring it?

 In theory, yes.

 In practice, the output of
 `debdiff --diffstat ming_0.4.5-1.1.dsc ming_0.4.5-2.dsc'
 scares me:
[...]
 And so on, all kinds of changes in Makefile.ins etc.
 Looks like these were changes to the upstream source in -1.1 which
 were no separate patches.

In -1, not  -1.1. See [1]
I already applied and reverted them a couple of times [2][3][4].
Unless we want to keep them till next upstream release (or git
snapshot), such changes (at the moment reverted) will have to be in a
debdiff. IMHO they don't deserve a patch.
What would you prefer?
(re-added changelog entry which should have followed reverts)

 And -2 looks like an NMU.

A team upload https://wiki.debian.org/TeamUpload

And source format 3.0 (quilt) seems to be
 introduced not, and not in the previous version, as stated
 retroactively in d/changelog.

My fault, mentioned in -1.1 stanza instead of -2. Moved.

Pushed changes and reuploaded to mentors.
Thanks,

[1] 
http://anonscm.debian.org/gitweb/?p=pkg-flash/ming.git;a=commit;h=e891bdb7f4ee3df4985357c0522b7608e5bd6f03
[2] 
http://anonscm.debian.org/gitweb/?p=pkg-flash/ming.git;a=commitdiff;h=2aae26a74bf3389a4e80672a7fcb7faabfee4794
[3] 
http://anonscm.debian.org/gitweb/?p=pkg-flash/ming.git;a=commitdiff;h=90bab4907ea2c779113113d20a4951cf2e22dd41
[4] 
http://anonscm.debian.org/gitweb/?p=pkg-flash/ming.git;a=commitdiff;h=5f36e4822d226f7a5222e4334854546f44d9568d

-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#752716: ming: hardcodes /usr/lib/perl5

2014-08-08 Thread Gabriele Giacone
On Fri, Aug 8, 2014 at 7:51 PM, gregor herrmann gre...@debian.org wrote:
 On Fri, 08 Aug 2014 18:56:10 +0200, Gabriele Giacone wrote:
 I already applied and reverted them a couple of times [2][3][4].
 Unless we want to keep them till next upstream release (or git
 snapshot), such changes (at the moment reverted) will have to be in a
 debdiff. IMHO they don't deserve a patch.
 What would you prefer?
 (re-added changelog entry which should have followed reverts)

 TBH: I have no idea.

 What I would prefer is
 - in general that the team/main maintainer checks and uploads the
   package since they hopefully understand what this is all about :)
 - or that we upload _now_ a package that is identical to -1.1 plus
   the changes needed for the perl transition

Following ones are re-generated at each build, they shouldn't be there.

--- a/Makefile.in
+++ b/Makefile.in
--- a/configure
+++ b/configure
--- a/docs/man/Makefile
+++ b/docs/man/Makefile
--- a/docs/man/Makefile.in
+++ b/docs/man/Makefile.in
--- a/perl_ext/Makefile.in
+++ b/perl_ext/Makefile.in
--- a/php_ext/Makefile.in
+++ b/php_ext/Makefile.in
--- a/py_ext/Makefile.in
+++ b/py_ext/Makefile.in

About following one, a comment just above says
dnl -- Version info for libtool, to bump right after official releases
My guess is it's been added by building a git snapshot more recent
than 0.4.5, see [0] for example.

--- a/configure.in
+++ b/configure.in
-INTERFACE_REVISION=4
+INTERFACE_REVISION=5

And following one adds many manpages to dist_man3_MANS [1]. It's
probably useful but not present upstream (yet) [2].

--- a/docs/man/Makefile.am
+++ b/docs/man/Makefile.am

Anyway, I'd really appreciate if Stuart, current maintainer, DD and
also upstream developer, jumped into the discussion and upload it
himself but seems quite unresponsive lately.
The private mail I've just forwarded to Debian Flash mailing list [3]
explains why I'm treating it as a team maintained package.
If that's not enough, no problem, NMU it as you prefer.

Thanks,

[0] 
https://github.com/libming/libming/commit/91fe6219a17edcdb0207be49afc66e8068208a54
[1] 
http://anonscm.debian.org/gitweb/?p=pkg-flash/ming.git;a=commitdiff;h=e891bdb7f4ee3df4985357c0522b7608e5bd6f03#patch52
[2] https://github.com/libming/libming/blob/master/docs/man/Makefile.am
[3] 
http://lists.alioth.debian.org/pipermail/pkg-flash-devel/2014-August/002460.html

-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#756997: segfaults on i386

2014-08-04 Thread Gabriele Giacone
Package: critterding
Version: 1.0-beta14-1
Severity: grave

It segfaults right away once launched. Attached backtrace.


-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.16-rc6-686-pae (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages critterding depends on:
ii  libboost-filesystem1.55.0  1.55.0+dfsg-2
ii  libboost-iostreams1.55.0   1.55.0+dfsg-2
ii  libboost-system1.55.0  1.55.0+dfsg-2
ii  libc6  2.19-7
ii  libfreetype6   2.5.2-1
ii  libgcc11:4.9.1-1
ii  libgl1-mesa-glx [libgl1]   10.2.4-1
ii  libglu1-mesa [libglu1] 9.0.0-2
ii  libgomp1   4.9.1-1
ii  libice62:1.0.9-1
ii  libqt4-declarative 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-network 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-opengl  4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-script  4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-sql 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-svg 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-xml 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-xmlpatterns 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqtcore4 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqtgui4  4:4.8.6+git49-gbc62005+dfsg-1
ii  libsdl1.2debian1.2.15-10
ii  libsm6 2:1.2.2-1
ii  libstdc++6 4.9.1-1
ii  libx11-6   2:1.6.2-2
ii  libxext6   2:1.3.2-1

critterding recommends no packages.

critterding suggests no packages.

-- no debconf information

-- 
G..e
Reading symbols from /usr/bin/critterding...Reading symbols from 
/usr/lib/debug/.build-id/e7/651942b65be0630d7703ca5900d03f3a08af34.debug...done.
done.
Starting program: /usr/bin/critterding 
warning: Could not load shared library symbols for linux-gate.so.1.
Do you need set solib-search-path or set sysroot?
[Thread debugging using libthread_db enabled]
Using host libthread_db library 
/lib/i386-linux-gnu/i686/cmov/libthread_db.so.1.

Program received signal SIGSEGV, Segmentation fault.
0x in ?? ()
#0  0x in ?? ()
No symbol table info available.
#1  0x0813973d in BeTexture::generateMipmap (this=0x8364748) at 
/tmp/buildd/critterding-1.0-beta14/src/graphics/be_texture.cpp:48
No locals.
#2  0x0815bcb8 in BeTexture2DResource 
(path=/usr/bin/../share/critterding/critter/textures/skin2_UV_rgb2.jpg, 
this=0x8364588) at 
/tmp/buildd/critterding-1.0-beta14/src/./resource/be_texture_2d_resource.h:88
image = {px = 0x844ab10, pn = {pi_ = 0x8367468}}
#3  Texturestore::load (this=0x83661b4, 
filename=/usr/bin/../share/critterding/critter/textures/skin2_UV_rgb2.jpg) at 
/tmp/buildd/critterding-1.0-beta14/src/utils/texturestore.cpp:12
t = {px = 0xbfffdbb8, pn = {pi_ = 0xb5ff8128 operator 
delete(void*)+24}}
#4  0x0813e3fc in BeGraphicsModel::upload (this=0x83d4938, textureStore=...) at 
/tmp/buildd/critterding-1.0-beta14/src/common/be_model_system.cpp:53
No locals.
#5  0x0813e6e5 in BeGraphicsModelResource (transform=..., scale=..., 
graphicsModelSystem=..., graphicsSystem=..., 
path=/usr/bin/../share/critterding/critter/sphere-critter.obj, 
filesystem=..., this=0x83671e0) at 
/tmp/buildd/critterding-1.0-beta14/src/./resource/be_graphics_model_resource.h:54
No locals.
#6  BeGraphicsModelSystem::load (this=0x83661b0, 
filename=/usr/bin/../share/critterding/critter/sphere-critter.obj, 
graphicsSystem=..., instance=..., scale=..., transform=...) at 
/tmp/buildd/critterding-1.0-beta14/src/common/be_model_system.cpp:570
m = optimized out
#7  0x0811d5e5 in WorldB::WorldB (this=0x83cfe40, system=..., fileSystem=..., 
textverbosemessage=..., lock_axis=true) at 
/tmp/buildd/critterding-1.0-beta14/src/scenes/critterding/entities/worldb.cpp:405
m = optimized out
m_starttime = 1406970687
hn = jessie01, '\000' repeats 247 times
worldAabbMin = {m_floats = {-1000, -1000, -1000, 0}}
worldAabbMax = {m_floats = {1000, 1000, 1000, 0}}
ident = incomplete type
distance = 818
t = {m_basis = {m_el = {{m_floats = {1, -0, 0, 0}}, {m_floats = {0, 
0.87758255, 0.47942555, 0}}, {m_floats = {-0, -0.47942555, 0.87758255, 0, 
m_origin = {m_floats = {0, 0, 0, 0}}}
#8  0x080dac61 in Evolution::Evolution (this=0xbfffebf0, filesystem=...) at 
/tmp/buildd/critterding-1.0-beta14/src/scenes/critterding/evolution.cpp:106
textverbosemessage = {px = 0x8390b80, pn = {pi_ = 0x83653f8}}
befileControls = {m_filename = , m_directory = , m_fullfilename = 
error reading variable: Cannot access memory at address 0xf, m_content = 
incomplete type}
#9  0x080d19f4 in main (argc=1, argv=0xb234) at 

Bug#756997: critterding: segfaults on i386

2014-08-04 Thread Gabriele Giacone
On Mon, Aug 04, 2014 at 12:03:47PM +0200, Gabriele Giacone wrote:
 It segfaults right away once launched. Attached backtrace.

Attaching lshw and glxinfo outputs.
  *-display
   description: VGA compatible controller
   product: G72M [Quadro NVS 110M/GeForce Go 7300]
   vendor: NVIDIA Corporation
   physical id: 0
   bus info: pci@:01:00.0
   version: a1
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress vga_controller bus_master cap_list rom
   configuration: driver=nouveau latency=0
   resources: irq:46 memory:ed00-edff memory:d000-dfff 
memory:ee00-eeff memory:ef00-ef01
name of display: :0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
server glx extensions:
GLX_ARB_create_context, GLX_ARB_create_context_profile, 
GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample, 
GLX_EXT_create_context_es2_profile, GLX_EXT_framebuffer_sRGB, 
GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, 
GLX_EXT_visual_rating, GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, 
GLX_OML_swap_method, GLX_SGIS_multisample, GLX_SGIX_fbconfig, 
GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_SGI_swap_control
client glx vendor string: Mesa Project and SGI
client glx version string: 1.4
client glx extensions:
GLX_ARB_create_context, GLX_ARB_create_context_profile, 
GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, 
GLX_ARB_framebuffer_sRGB, GLX_ARB_get_proc_address, GLX_ARB_multisample, 
GLX_EXT_buffer_age, GLX_EXT_create_context_es2_profile, 
GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 
GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, 
GLX_EXT_visual_rating, GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, 
GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer, 
GLX_MESA_swap_control, GLX_OML_swap_method, GLX_OML_sync_control, 
GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 
GLX_SGIX_visual_select_group, GLX_SGI_make_current_read, 
GLX_SGI_swap_control, GLX_SGI_video_sync
GLX version: 1.4
GLX extensions:
GLX_ARB_create_context, GLX_ARB_create_context_profile, 
GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, 
GLX_ARB_get_proc_address, GLX_ARB_multisample, 
GLX_EXT_create_context_es2_profile, GLX_EXT_framebuffer_sRGB, 
GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, 
GLX_EXT_visual_rating, GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, 
GLX_MESA_multithread_makecurrent, GLX_MESA_swap_control, 
GLX_OML_swap_method, GLX_OML_sync_control, GLX_SGIS_multisample, 
GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, 
GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync
OpenGL vendor string: nouveau
OpenGL renderer string: Gallium 0.4 on NV46
OpenGL version string: 2.1 Mesa 10.2.4
OpenGL shading language version string: 1.20
OpenGL extensions:
GL_AMD_shader_trinary_minmax, GL_ANGLE_texture_compression_dxt3, 
GL_ANGLE_texture_compression_dxt5, GL_APPLE_packed_pixels, 
GL_APPLE_vertex_array_object, GL_ARB_ES2_compatibility, 
GL_ARB_buffer_storage, GL_ARB_clear_buffer_object, GL_ARB_copy_buffer, 
GL_ARB_debug_output, GL_ARB_depth_clamp, GL_ARB_depth_texture, 
GL_ARB_draw_buffers, GL_ARB_draw_elements_base_vertex, 
GL_ARB_explicit_attrib_location, GL_ARB_fragment_coord_conventions, 
GL_ARB_fragment_program, GL_ARB_fragment_program_shadow, 
GL_ARB_fragment_shader, GL_ARB_get_program_binary, 
GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, 
GL_ARB_internalformat_query, GL_ARB_invalidate_subdata, 
GL_ARB_map_buffer_alignment, GL_ARB_map_buffer_range, GL_ARB_multi_bind, 
GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_occlusion_query, 
GL_ARB_occlusion_query2, GL_ARB_pixel_buffer_object, 
GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_provoking_vertex, 
GL_ARB_robustness, GL_ARB_sampler_objects, GL_ARB_separate_shader_objects, 
GL_ARB_shader_objects, GL_ARB_shading_language_100, GL_ARB_shadow, 
GL_ARB_sync, GL_ARB_texture_border_clamp, GL_ARB_texture_compression, 
GL_ARB_texture_cube_map, GL_ARB_texture_env_add, 
GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, 
GL_ARB_texture_env_dot3, GL_ARB_texture_mirror_clamp_to_edge, 
GL_ARB_texture_mirrored_repeat, GL_ARB_texture_non_power_of_two, 
GL_ARB_texture_rectangle, GL_ARB_texture_storage, GL_ARB_texture_swizzle, 
GL_ARB_timer_query, GL_ARB_transpose_matrix, GL_ARB_vertex_array_bgra, 
GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_binding, 
GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader, 
GL_ARB_window_pos, GL_ATI_blend_equation_separate, GL_ATI_draw_buffers, 
GL_ATI_separate_stencil, GL_ATI_texture_env_combine3

Bug#757008: critterding: segfaults on amd64, NV98

2014-08-04 Thread Gabriele Giacone
Package: critterding
Version: 1.0-beta14+dfsg-1
Severity: grave

It segfaults right away. Attaching backtrace, glxinfo and lshw outputs.


-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.10-3-amd64 (SMP w/3 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages critterding depends on:
ii  critterding-common 1.0-beta14+dfsg-1
ii  libboost-filesystem1.55.0  1.55.0+dfsg-2
ii  libboost-iostreams1.55.0   1.55.0+dfsg-2
ii  libboost-system1.55.0  1.55.0+dfsg-2
ii  libbulletcollision2.82 2.82-r2704+dfsg-2
ii  libbulletdynamics2.82  2.82-r2704+dfsg-2
ii  libbulletsoftbody2.82  2.82-r2704+dfsg-2
ii  libc6  2.19-7
ii  libfreetype6   2.5.2-1
ii  libftgl2   2.1.3~rc5-4+nmu1
ii  libgcc11:4.9.1-1
ii  libgl1-mesa-glx [libgl1]   10.2.4-1
ii  libglew1.101.10.0-3
ii  libglu1-mesa [libglu1] 9.0.0-2
ii  libgomp1   4.9.1-1
ii  liblinearmath2.82  2.82-r2704+dfsg-2
ii  libqt4-declarative 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-network 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-opengl  4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-script  4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-sql 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-svg 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-xml 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqt4-xmlpatterns 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqtcore4 4:4.8.6+git49-gbc62005+dfsg-1
ii  libqtgui4  4:4.8.6+git49-gbc62005+dfsg-1
ii  libsdl1.2debian1.2.15-10
ii  libstdc++6 4.9.1-1
ii  libtinyxml2.6.22.6.2-2
ii  libx11-6   2:1.6.2-2
ii  libxext6   2:1.3.2-1

critterding recommends no packages.

critterding suggests no packages.

-- no debconf information
Reading symbols from /usr/bin/critterding...Reading symbols from 
/usr/lib/debug/.build-id/70/0e45715b4e77945d9d6a2b63d7b2d54ec64953.debug...done.
done.
Starting program: /usr/bin/critterding 
warning: no loadable sections found in added symbol-file system-supplied DSO at 
0x77ffa000
warning: Could not load shared library symbols for linux-vdso.so.1.
Do you need set solib-search-path or set sysroot?
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.

Program received signal SIGSEGV, Segmentation fault.
0x in ?? ()
Quit

Thread 1 (Thread 0x77f96980 (LWP 12542)):
#0  0x in ?? ()
No symbol table info available.
#1  0x004ce7d9 in uniform (this=optimized out, value=0, 
location=optimized out) at 
/tmp/buildd/critterding-1.0-beta14+dfsg/src/graphics/be_shader.h:66
No locals.
#2  uniformint (value=0, name=0x52ef87 Tex0, this=0x13815f0) at 
/tmp/buildd/critterding-1.0-beta14+dfsg/src/graphics/be_shader.h:55
No locals.
#3  ScGraphics::ScGraphics (this=0xf18550, graphicsSystem=..., filesystem=...) 
at /tmp/buildd/critterding-1.0-beta14+dfsg/src/graphics/sc_graphics.cpp:102
No locals.
#4  0x004649d7 in Evolution::initGLSL (this=0xd, 
this@entry=0x7fffd950) at 
/tmp/buildd/critterding-1.0-beta14+dfsg/src/scenes/critterding/evolution.cpp:269
No locals.
#5  0x0045d2d0 in Evolution::Evolution (this=0x7fffd950, 
filesystem=...) at 
/tmp/buildd/critterding-1.0-beta14+dfsg/src/scenes/critterding/evolution.cpp:248
textverbosemessage = {px = 0x873180, pn = {pi_ = 0x8cb2f0}}
befileControls = {m_filename = settings.xml, m_directory = 
/usr/bin/../share/critterding/, m_fullfilename = 
/usr/bin/../share/critterding/settings.xml, m_content = incomplete type}
#6  0x0044bdc1 in main (argc=1, argv=0x7fffe0b8) at 
/tmp/buildd/critterding-1.0-beta14+dfsg/src/scenes/critterding/critterding.cpp:253
buf3 = 
/usr/bin/critterding\000\000\000\000\360\333\377\377\377\177\000\000(}\203\361\377\177\000\000@??\361\377\177\000\000\000\000\000\000\000\000\000\000`\330\373\367\377\177\000\000\020\334\377\377\377\177\000\000\000\334\377\377\377\177\000\000\314?\f\257\000\000\000\000\203\202\374\363\377\177\000\000\377\377\377\377\000\000\000\000\320|\374\363\377\177\000\000\250\215\203\361\377\177\000\000??\373\367\377\177\000\000\000\000\000\000\001\000\000\000\001\003\000\000\001\000\000\000xO\367\355\377\177\000\000\060\331\371\367\377\177\000\000\220\335\377\377\377\177\000\000`\330\373\367\377\177\000\000\004\000\000\000\377\177\000\000`\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\061\000\000\000\000\000\000\000...
evolution = {BeScene = {_vptr.BeScene = 0x526e90 vtable for 
Evolution+16, m_exitscene = false}, world = 0x8c78e0, settings = 0x75d580 
Settings::Instance()::t, 

Bug#757008: critterding: segfaults on amd64, NV98

2014-08-04 Thread Gabriele Giacone
On Mon, Aug 4, 2014 at 2:15 PM, Sylvestre Ledru sylves...@debian.org wrote:
 forcemerge 757008 756997
 retitle 756997 Segfaults on start
 thanks

 On 04/08/2014 14:07, Gabriele Giacone wrote:
 Package: critterding
 Version: 1.0-beta14+dfsg-1
 Severity: grave

 It segfaults right away. Attaching backtrace, glxinfo and lshw outputs.
 One bug is enough.

 No need to report a bug per arch.

Most probably arch is not relevant but segfaults are not the same.
i386 one is on an old laptop which probably lacks of graphic power
(NV46), whereas amd64 one on more recent and powerful machine (NV98).
Both with nouveau driver.

-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#755345: obexpushd: FTBFS: bluetooth.h:177:9: error: expected specifier-qualifier-list before 'typeof'

2014-07-19 Thread Gabriele Giacone
Control: reassign -1 src:bluez
Control: affects -1 src:obexpushd

Anything to do with FTBFS in #661879?


On Sat, Jul 19, 2014 at 8:32 PM, David Suárez david.sephi...@gmail.com wrote:
 Source: obexpushd
 Version: 0.11.2-1
 Severity: serious
 Tags: jessie sid
 User: debian...@lists.debian.org
 Usertags: qa-ftbfs-20140718 qa-ftbfs
 Justification: FTBFS on amd64

 Hi,

 During a rebuild of all packages in sid, your package failed to build on
 amd64.

 Relevant part (hopefully):
 make[3]: Entering directory '/«PKGBUILDDIR»/obj-x86_64-linux-gnu'
 /usr/bin/cmake -E cmake_progress_report 
 /«PKGBUILDDIR»/obj-x86_64-linux-gnu/CMakeFiles 8
 [ 22%] Building C object src/CMakeFiles/obexpushd.dir/obexpushd.c.o
 cd /«PKGBUILDDIR»/obj-x86_64-linux-gnu/src  /usr/bin/cc  -DDEFINITIONS 
 -DHAVE_SDPLIB -DOPENOBEX_TCPOBEX=1 -DUSB_GADGET_SUPPORT -DUSE_THREADS 
 -D_GNU_SOURCE -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
 -Werror=format-security -Wall -D_FORTIFY_SOURCE=2 -std=c99 -O3 -DNDEBUG 
 -std=c99 -I/«PKGBUILDDIR»/src -I/«PKGBUILDDIR»/obj-x86_64-linux-gnu/src
 -o CMakeFiles/obexpushd.dir/obexpushd.c.o   -c /«PKGBUILDDIR»/src/obexpushd.c
 In file included from /«PKGBUILDDIR»/src/obexpushd.c:18:0:
 /usr/include/bluetooth/bluetooth.h: In function 'bt_get_le64':
 /usr/include/bluetooth/bluetooth.h:177:9: error: expected 
 specifier-qualifier-list before 'typeof'
   return bt_get_unaligned((const uint64_t *) ptr);
  ^
 /usr/include/bluetooth/bluetooth.h:177:9: error: called object is not a 
 function or function pointer
   return bt_get_unaligned((const uint64_t *) ptr);
  ^
 /usr/include/bluetooth/bluetooth.h:177:9: error: 'struct anonymous' has no 
 member named '__v'
   return bt_get_unaligned((const uint64_t *) ptr);
  ^
 In file included from /usr/include/bluetooth/bluetooth.h:37:0,
  from /«PKGBUILDDIR»/src/obexpushd.c:18:
 /usr/include/bluetooth/bluetooth.h: In function 'bt_get_be64':
 /usr/include/bluetooth/bluetooth.h:182:18: error: expected 
 specifier-qualifier-list before 'typeof'
   return bswap_64(bt_get_unaligned((const uint64_t *) ptr));
   ^
 /usr/include/bluetooth/bluetooth.h:182:18: error: called object is not a 
 function or function pointer
   return bswap_64(bt_get_unaligned((const uint64_t *) ptr));
   ^
 /usr/include/bluetooth/bluetooth.h:182:18: error: 'struct anonymous' has 
 no member named '__v'
   return bswap_64(bt_get_unaligned((const uint64_t *) ptr));
   ^
 In file included from /«PKGBUILDDIR»/src/obexpushd.c:18:0:
 /usr/include/bluetooth/bluetooth.h: In function 'bt_get_le32':
 /usr/include/bluetooth/bluetooth.h:187:9: error: expected 
 specifier-qualifier-list before 'typeof'
   return bt_get_unaligned((const uint32_t *) ptr);
  ^
 /usr/include/bluetooth/bluetooth.h:187:9: error: called object is not a 
 function or function pointer
   return bt_get_unaligned((const uint32_t *) ptr);
  ^
 /usr/include/bluetooth/bluetooth.h:187:9: error: 'struct anonymous' has no 
 member named '__v'
   return bt_get_unaligned((const uint32_t *) ptr);
  ^
 In file included from /usr/include/bluetooth/bluetooth.h:37:0,
  from /«PKGBUILDDIR»/src/obexpushd.c:18:
 /usr/include/bluetooth/bluetooth.h: In function 'bt_get_be32':
 /usr/include/bluetooth/bluetooth.h:192:18: error: expected 
 specifier-qualifier-list before 'typeof'
   return bswap_32(bt_get_unaligned((const uint32_t *) ptr));
   ^
 /usr/include/bluetooth/bluetooth.h:192:18: error: called object is not a 
 function or function pointer
   return bswap_32(bt_get_unaligned((const uint32_t *) ptr));
   ^
 /usr/include/bluetooth/bluetooth.h:192:18: error: 'struct anonymous' has 
 no member named '__v'
   return bswap_32(bt_get_unaligned((const uint32_t *) ptr));
   ^
 In file included from /«PKGBUILDDIR»/src/obexpushd.c:18:0:
 /usr/include/bluetooth/bluetooth.h: In function 'bt_get_le16':
 /usr/include/bluetooth/bluetooth.h:197:9: error: expected 
 specifier-qualifier-list before 'typeof'
   return bt_get_unaligned((const uint16_t *) ptr);
  ^
 /usr/include/bluetooth/bluetooth.h:197:9: error: called object is not a 
 function or function pointer
   return bt_get_unaligned((const uint16_t *) ptr);
  ^
 /usr/include/bluetooth/bluetooth.h:197:9: error: 'struct anonymous' has no 
 member named '__v'
   return bt_get_unaligned((const uint16_t *) ptr);
  ^
 In file included from /usr/include/x86_64-linux-gnu/bits/byteswap.h:35:0,
  from /usr/include/endian.h:60,
  from /usr/include/x86_64-linux-gnu/bits/string2.h:51,
  from /usr/include/string.h:635,
  from /usr/include/bluetooth/bluetooth.h:35,
  from /«PKGBUILDDIR»/src/obexpushd.c:18:
 /usr/include/bluetooth/bluetooth.h: In function 'bt_get_be16':
 /usr/include/bluetooth/bluetooth.h:202:18: error: expected 
 

Bug#754311: FTBFS on armel

2014-07-09 Thread Gabriele Giacone
Package: gnash
Version: 0.8.11~git20140708-2
Severity: serious
Justification: fails to build from source
Control: block -1 by 727621

gnash FTBFS on armel.

[...]
  CXX  DefineVideoStreamTag.lo
In file included from ../../libcore/MovieClip.cpp:53:0:
../../libcore/LoadVariablesThread.h:105:32: error: field '_vals' has incomplete 
type 'std::futurestd::mapstd::basic_stringchar, std::basic_stringchar  '
 std::futureValuesMap _vals;
^
../../libcore/LoadVariablesThread.h: In member function 
'gnash::LoadVariablesThread::ValuesMap gnash::LoadVariablesThread::getValues()':
../../libcore/LoadVariablesThread.h:83:2: warning: control reaches end of 
non-void function [-Wreturn-type]
  }
  ^
make[6]: *** [MovieClip.lo] Error 1

https://buildd.debian.org/status/fetch.php?pkg=gnasharch=armelver=0.8.11~git20140708-2stamp=1404926153


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#752836: gnash: build-depends on xulrunner-dev which is gone

2014-06-26 Thread Gabriele Giacone
On Fri, Jun 27, 2014 at 12:09 AM,  po...@debian.org wrote:
 gnash build-depends on xulrunner-dev, which is no longer built by
 src:iceweasel. If you use it for libxul or mozilla-plugin, that is
 now in iceweasel-dev. If you were using mozilla-js, you may want to
 look at src:mozjs24.

gnash will soon build-depend on npapi-sdk-dev, in NEW queue at the moment.
It should probably be recommended as better mozilla-plugin.pc replacement.

-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#752636: Only one small file, probably not copyrightable

2014-06-26 Thread Gabriele Giacone
Control: reopen -1

On Wed, Jun 25, 2014 at 08:37:58PM +0200, Mathieu Parent wrote:
 Only one file (apc_serializer.h, 80 lines long) is under the PHP
 license. As this is an header file, I mark this bug as closed.
 
 If someone wants to reopen, please explain.

I'd need an explaination about closing it: if a file is a header
and/or is = 80 lines long, is it not significant for licensing
purposes?

 Also, as this file comes from php-apc, this bug relates to
 https://bugs.debian.org/752530.


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#725423: Forwarded

2014-04-21 Thread Gabriele Giacone
On Mon, Apr 21, 2014 at 7:47 PM, Bastien ROUCARIES
roucaries.bast...@gmail.com wrote:
 Do you want to join the package maintainance of haxe BTW ?

 I see you have opened a collab-maint git tree, do you still care about it ?

Feel free to use/remove it.
I was interested time ago, but didn't manage to reintroduce it in stable

https://bugs.debian.org/674483#35

Thanks for taking care.
-- 
G..e


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.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-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#715565: closing 715565

2013-09-09 Thread Gabriele Giacone
close 715565 
thanks


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#721544: FTBFS on ia64, mips(el), s390(x): /usr/lib/gcc/ia64-linux-gnu/4.6/../../../libboost_thread.so: undefined reference to `boost::atomics::detail::lockpool::get_lock_for(void const volatile*)'

2013-09-03 Thread Gabriele Giacone
On Sun, Sep 01, 2013 at 10:08:26PM +0200, Sebastian Ramacher wrote:
 | /usr/lib/gcc/ia64-linux-gnu/4.6/../../../libboost_thread.so: undefined
 | reference to `boost::atomics::detail::lockpool::get_lock_for(void const
 | volatile*)'

How about backporting patch at [0]?

[0] https://svn.boost.org/trac/boost/ticket/9041


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#713276: gnash: diff for NMU version 0.8.11~git20120629-1.1

2013-09-02 Thread Gabriele Giacone
On Tue, Sep 03, 2013 at 02:48:57AM +0200, Sebastian Ramacher wrote:
 I've prepared an NMU for gnash (versioned as 0.8.11~git20120629-1.1) and
 uploaded it to DELAYED/2. Please feel free to tell me if I
 should delay it longer.

I was just about uploading a new upstream snapshot few days ago, but perl
migration made it FTBFS. Now it builds fine and it obviously includes all
patches you picked up from upstream.
If you want to go ahead anyway, it won't bother me.


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#715565: pidgin-skype: Pidgin hangs on startup when pidgin-skype is installed

2013-08-27 Thread Gabriele Giacone
On Wed, Jul 10, 2013 at 08:40:54AM -0430, Roberto De Oliveira wrote:
 Package: pidgin-skype
 Version: 20121110+svn645+dfsg-1
 Severity: grave
 Justification: renders package unusable
 
 Dear Maintainer,
 After install pidgin-skype, pidgin freeze on startup, appears contact
 list window with nothing on. I have pidgin 2.10.7-2 and skype
 4.2.0.11-1
 If I uninstall pidgin-skype pidgin works fine.

Have you tried 20130613+svn660+dfsg-1 version?


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#689875: sweethome3d: unavailable dependency (sweethome3d-furnitures)

2012-10-08 Thread Gabriele Giacone
On 10/08/2012 06:34 AM, tony mancill wrote:
 sweethome3d-furniture looks pretty straight forward.  I will sponsor an
 upload this week.  I haven't looked at the -nonfree package yet.

Thanks. -nonfree just contains further furniture released under Free Art
License which is not clearly accepted

http://wiki.debian.org/DFSGLicenses#Licence_Art_Libre_.28Free_Art_License.29

 And I'm just curious here, but is it really a dependency, or should it
 be a recommends?  I built the sweethome3d 3.6+dfsg-2 package removing
 the dependency and it seems to start and run correctly.  If it is a
 dependency, you should probably go ahead and prepare an upload for
 unstable with the right dependency.  That way it will be resolved once
 the -furniture package makes it through incoming.

Not really needed, downgraded to Recommends and just uploaded.

 BTW, I'm not sure I agree that #689875 is actually release-critical.
 sweethome3d 3.5+dfsg-1 installs on wheezy without any problem and wheezy
 is frozen.  There's not an effort to try to migrate 3.6+dfsg-2 into
 wheezy, is there?  (Still, the severity is correct since 3.6+dfsg-2
 can't be installed in its current state.)

Correct.

-- 
Gabriele


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#689875: sweethome3d: unavailable dependency (sweethome3d-furnitures)

2012-10-07 Thread Gabriele Giacone
On 10/07/2012 03:48 PM, Bernard Massot wrote:
 Package: sweethome3d
 Version: 3.5+dfsg-1
 Severity: important
 
 Sweethome3d 3.6+dfsg-2 depends on sweethome3d-furnitures package, which
 doesn't exist.

It's not in main yet. Blocker is lack of a sponsor.
If anyone interested:

https://mentors.debian.net/package/sweethome3d-furniture
https://mentors.debian.net/package/sweethome3d-furniture-nonfree

(it's also been renamed from -furnitures to -furniture so I'd also need
to reupload sweethome3d but I can do that on my own).

In the meanwhile you could rebuild SH3D 3.6-2 (renaming dependency to
-furniture) and SH3D-furniture yourself.


-- 
Gabriele


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#687786: [opticalraytracer] Should depends on some package providing jre

2012-09-29 Thread Gabriele Giacone
tags 687786 patch
thanks

Attached patch adds default-jre to runtime dependencies.
Thanks for considering.
diff --git a/debian/changelog b/debian/changelog
index a3e801f..6116392 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+opticalraytracer (3.2-2) unstable; urgency=low
+
+  * Team upload.
+  * Add default-jre | java6-runtime to runtime deps (Closes: #687786).
+
+ -- Gabriele Giacone 1o5g4...@gmail.com  Sun, 30 Sep 2012 00:04:54 +0200
+
 opticalraytracer (3.2-1) unstable; urgency=low
 
   * Update to upstream version 3.2
diff --git a/debian/control b/debian/control
index de4133a..44f4956 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Homepage: http://www.arachnoid.com/OpticalRayTracer/
 
 Package: opticalraytracer
 Architecture: all
-Depends: ${misc:Depends}, ${java:Depends}, java-wrappers
+Depends: ${misc:Depends}, ${java:Depends}, java-wrappers, default-jre | 
java6-runtime
 Description: Virtual lens design workshop 
  OpticalRayTracer is an application that analyzes systems of
  lenses. It uses optical principles and a virtual optical bench


Bug#669384: jxplorer: simple authentification (user + password)

2012-08-09 Thread Gabriele Giacone
On Tue, Aug 07, 2012 at 09:26:48PM +0200, Luc Novalès wrote:
 I just verified with wireshark : Password contains special
 characters and is not correctly transmitted. With 3.3b3 sourceforge
 version it is.

Which special characters?

$ LANG=C jxplorer fixes that?


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#669384: jxplorer: simple authentification (user + password)

2012-08-09 Thread Gabriele Giacone
On 08/09/2012 03:44 PM, Luc Novalès wrote:
 Le 09/08/2012 14:51, Gabriele Giacone a écrit :
 Which special characters?

 $ LANG=C jxplorer fixes that?
 Not.
 '@' character is 2 bytes encoded : 'c3 a0' instead of ascii byte '40'

I took a look at french keyboard, 'c3 a0' is 'à' on the same '@' key
just without pressing alt-gr. It seems it doesn't get alt-gr pressed
sometimes. I can reproduce it with an italian one, different layout.
To verify that, type password somewhere else then copy and paste it
there, that should always send correct password.


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#669384: jxplorer: simple authentification (user + password)

2012-08-09 Thread Gabriele Giacone
severity 669384 normal
reassign 669384 openjdk-6-jre
retitle 669384 jre6 doesn't detect alt-gr keystrokes
thanks

On 08/09/2012 09:16 PM, Gabriele Giacone wrote:
 On 08/09/2012 03:44 PM, Luc Novalès wrote:
 Le 09/08/2012 14:51, Gabriele Giacone a écrit :
 Which special characters?

 $ LANG=C jxplorer fixes that?
 Not.
 '@' character is 2 bytes encoded : 'c3 a0' instead of ascii byte '40'
 
 I took a look at french keyboard, 'c3 a0' is 'à' on the same '@' key
 just without pressing alt-gr. It seems it doesn't get alt-gr pressed
 sometimes. I can reproduce it with an italian one, different layout.
 To verify that, type password somewhere else then copy and paste it
 there, that should always send correct password.
 

Found JPasswordField bug, jre6 regression:

http://bugs.sun.com/view_bug.do?bug_id=6801620
http://bugs.sun.com/view_bug.do?bug_id=6703772

Another, better, workaround is upgrading to jre7.

$ sudo apt-get install openjdk-7-jre
$ sudo update-java-alternatives --jre -s java-1.7.0-openjdk-amd64


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#683993: sweethome3d crashes with java-6-openjdk-amd64, works with java-6-sun

2012-08-06 Thread Gabriele Giacone
On 08/06/2012 08:15 AM, Richard Scherping wrote:
 # Problematic frame:
 # C  [libGL.so.1+0x1ed13]  glXGetFBConfigs+0x53
 #
 # An error report file with more information is saved as:
 # /tmp/hs_err_pid2717.log

1/ Please attach hs_err_pid.log file produced and glxinfo output.

2/ Try openjdk-7.

$ sudo apt-get install openjdk-7-jre
$ sudo update-java-alternatives --jre -s java-1.7.0-openjdk-amd64


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#681745: [pidgin-skype] Pidgin gets no skype chat messages after update to skype 4.0.0.7

2012-08-01 Thread Gabriele Giacone
severity 681745 normal
thanks

Bug is in skype client which doesn't send all messages to the plugin.
Downgrading to normal.


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#683354: apt unusable on hurd

2012-07-30 Thread Gabriele Giacone
Package: apt
Version: 0.9.7.3
Severity: grave
Justification: renders package unusable

Upgrade to 0.9.7.3 then run apt-get update:
[...]
Reading package lists... Done
E: The package cache file is corrupted

You won't be able to install/remove any package.
Downgrading apt and libapt-pkg4.12 to 0.9.7.2 fixes that.


-- System Information:
Debian Release: wheezy/sid
  APT prefers unreleased
  APT policy: (500, 'unreleased'), (500, 'unstable')
Architecture: hurd-i386 (i686-AT386)

Kernel: GNU-Mach 1.3.99-486-dbg/Hurd-0.3
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages apt depends on:
ii  debian-archive-keyring  2012.4
ii  gnupg   1.4.12-4+b1
ii  libapt-pkg4.12  0.9.7.3
ii  libc0.3 2.13-35
ii  libgcc1 1:4.7.1-5
ii  libstdc++6  4.7.1-5

apt recommends no packages.

Versions of packages apt suggests:
pn  apt-doc none
ii  aptitude0.6.8-1
ii  dpkg-dev1.16.8
ii  python-apt  0.8.7
ii  xz-utils5.1.1alpha+20120614-1

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#669384: jxplorer: simple authentification (user + password) unavailable

2012-07-23 Thread Gabriele Giacone
On Thu, Apr 19, 2012 at 03:45:16PM +0200, Luc Novales wrote:
 anonymous acces works perfectly but user + password acces return an error : 
 Error opening connection:
 [LDAP: error code 49 - Invalid Credentials]
 
 using sourceforge version 3.3b3 allow connexion on the same server (but have 
 others problems).

I can't reproduce it, user+password access works fine.
Are you sure credentials are correct?


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#681745: [pidgin-skype] Pidgin gets no skype chat messages after update to skype 4.0.0.7

2012-07-20 Thread Gabriele Giacone
On 07/16/2012 08:55 AM, Markus Grunwald wrote:
 After upgrading skype to 4.0.0.7-1 (coming from a quite ancient
 version), pidgin opens a chat window when I receive a skype chat
 message, but doesn't display the message itself. I have to open skype
 to see the message.

http://code.google.com/p/skype4pidgin/issues/detail?id=191#c10


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#649384: gnash creates world-readable cookies under /tmp with predictable filenames

2012-07-08 Thread Gabriele Giacone
On 07/08/2012 09:15 PM, Jonathan Wiltshire wrote:
 Recently you fixed one or more security problems and as a result you closed
 this bug. These problems were not serious enough for a Debian Security
 Advisory, so they are now on my radar for fixing in the following suites
 through point releases:
 
 squeeze (6.0.6) - use target stable

False positive, your radar didn't detect DSA-2435 [CVE-2011-4328] has
been created for such issue and fixed through security updates first,
then shipped with 6.0.5.

http://security-tracker.debian.org/tracker/CVE-2011-4328
http://www.debian.org/security/2012/dsa-2435


-- 
Gabriele



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#623578: closed by Matthias Klose d...@debian.org (Bug#623578: fixed in gadfly 1.0.0-15)

2012-05-29 Thread Gabriele Giacone
tags 623578 + patch
thanks

On Fri, May 25, 2012 at 03:03:27AM +0200, Samuel Thibault wrote:
 Why setting that particular version and not let it use the changelog
 version?

Yes, adding epoch to changelog would add it to all packages and probably would
be the cleanest way.
Otherwise, I attached a patch to make it binNMU-safe.

Shouldn't it be possible passing binary:Version to dh_gencontrol?
[...]
dh_gencontrol -a -- -v'1:${binary:Version}'
dpkg-gencontrol: error: package python-kjbuckets: too many substitutions - 
recursive ? - in 
`python-kjbuckets_1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:${binary:Version}_amd64.deb
 python optional
[...]

Maintainer, thanks for considering.
diff -ur gadfly/debian/changelog gadfly.new/debian/changelog
--- gadfly/debian/changelog	2012-05-30 01:27:27.0 +
+++ gadfly.new/debian/changelog	2012-05-30 02:37:11.0 +
@@ -1,3 +1,10 @@
+gadfly (1.0.0-15.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Make python-kjbuckets binNMU-safe (Closes: #623578).
+
+ -- Gabriele Giacone 1o5g4...@gmail.com  Wed, 30 May 2012 02:35:19 +
+
 gadfly (1.0.0-15) unstable; urgency=low
 
   * Build using dh_python2 instead of dh_pycentral. Closes: #616818.
diff -ur gadfly/debian/rules gadfly.new/debian/rules
--- gadfly/debian/rules	2012-05-30 02:26:03.0 +
+++ gadfly.new/debian/rules	2012-05-30 02:37:41.0 +
@@ -7,8 +7,6 @@
 
 DEFAULT_PYTHON = python$(VER)
 
-kjb_version=1:$${source:Version}
-
 include /usr/share/python/python.mk
 
 build: build-indep build-arch
@@ -105,7 +103,8 @@
 	dh_python2 -a
 	dh_installdeb -a
 	dh_shlibdeps -a
-	dh_gencontrol -a -- -v'$(kjb_version)'
+	dh_gencontrol -a
+	sed -i 's/\(^Version: \)/\11:/' debian/python-kjbuckets/DEBIAN/control
 	dh_md5sums -a
 	dh_builddeb -a
 


Bug#669062: X segfaults in pthread() on kfreebsd

2012-04-21 Thread Gabriele Giacone
Patch (+ kfreebsd-kernel-headers = 0.79) fixes that. Thanks.




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#667806: /usr/bin/gtk-gnash: CPU runs at 100% and then the system hangs. Process gtk-gnash eats most of the CPU time.

2012-04-06 Thread Gabriele Giacone
# downgrading severity not to draw the attention of RC bugs killers
severity 667806 normal
thanks

On 03/28/2012 02:20 AM, Georgi H. Yordanov wrote:
 System hangs after running the CPU at 100% for a while.
 The process gtk-gnash eats most of the CPU time.

Knows issue, gnash has always been CPU hungry.
I suggest you installing xul-ext-flashblock to play just flash
animations you want.
You might also want to try latest 0.8.10 version from backports:

http://backports.debian.org/Instructions/

More info about what gnash can play here http://deb.li/Uy1s

-- 
Gabriele



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#664919: obexpushd: FTBFS: bluetooth.h:159:9: error: expected specifier-qualifier-list before 'typeof'

2012-03-21 Thread Gabriele Giacone
reassign 664919 libbluetooth-dev
retitle 664919 libbluetooth-dev makes obexpushd FTBFS
forcemerge 661879 664919
thanks

It's a duplicate of #661879 I reassigned to libbluetooth-dev.
It happens even if built with libbluetooth-dev 4.99-1. Merging.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#661879: libbluetooth-dev makes obexpushd FTBFS

2012-03-02 Thread Gabriele Giacone
reassign 661879 libbluetooth-dev
retitle 661879 libbluetooth-dev makes obexpushd FTBFS
thanks

obexpushd FTBFS with 4.97 and 4.98, it builds fine with libbluetooth-dev 4.96-3.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#649384: gnash creates world-readable cookies under /tmp

2011-11-20 Thread Gabriele Giacone
tags 649384 fixed-upstream
thanks

On Sun, Nov 20, 2011 at 03:39:36PM +0100, Alexander Kurtz wrote:
 or create them with sane permissions (0600).

http://git.savannah.gnu.org/gitweb/?p=gnash.git;a=commitdiff;h=fa481c116e65ccf9137c7ddc8abc3cf05dc12f55




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#649384: gnash creates world-readable cookies under /tmp

2011-11-20 Thread Gabriele Giacone

[CCing gnash-dev ml to be contradicted]

On 11/21/2011 12:12 AM, Francesco Poli wrote:

On Sun, 20 Nov 2011 21:49:08 +0100 Alexander Kurtz wrote:


On Sun, 2011-11-20 at 21:43 +0100, Francesco Poli wrote:

And did gnash stop creating cookies in /tmp after that configuration
change?


Nope.


Also, does it refrain from creating cookies in your
~/.gnash/SharedObjects directory?


Yes. It still created some subdirectories, but no actual cookies.


So, it seems that so-called Flash shared objects and gnash-cookies (the
ones created by Gnash in /tmp) are different things.


22:19  gg0 what's the difference between /tmp/gnash-cookies* and stuff 
under ~/.gnash/SharedObjects?
22:20  strk SharedObjects are flash-specific cookies while 
/tmp/gnash-cookies* are common HTTP ones



The former may be disabled via the gnash GUI, as you did, or,
equivalently, by editing (user-specific or system-wide) configuration
files, as I did.

What about the latter?
We still have to figure out whether they can be disabled...


IIRC they contain essential info to make yt working. So we can't move 
them under SOLSafeDir because if you set it to /dev/null or make it 
read-only, it'll break yt.
I'd move them under ~/.gnash [0], although I don't know what could 
remove them at the end without introducing new rc options.


Any developers alive?

[0] http://paste.debian.net/plain/146441
--
Gabriele



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638247: gnash: diff for NMU version 0.8.10~git20110618-3.1

2011-09-18 Thread Gabriele Giacone
Hi Jakub,

On 09/19/2011 01:22 AM, Jakub Wilk wrote:
 I've prepared an NMU for gnash (versioned as 0.8.10~git20110618-3.1)
 and uploaded it to DELAYED/3. Please feel free to tell me if I should
 delay it longer.

One week ago, I pushed to upstream a patch from gentoo which fixed FTBFS
on sid [0]. The day after, the ubuntu patch you are NMU'ing was rebased,
applied [1] and it introduced some segfaults in test runs.
The whole thread [2] might be interesting.

Personally I'd either wait for the upcoming upstream release or apply
[0] but blocking you would mean throwing away the time you spent NMU'ing.

-- 
Gabriele

[0] http://deb.li/yHPN
[1] http://deb.li/IvKy
[2] http://lists.gnu.org/archive/html/gnash-dev/2011-09/msg4.html



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#636514: [Openjdk] Bug#636514: icedtea-plugin: obsolete (and unneeded?) dependency on xulrunner-1.9.1

2011-08-18 Thread Gabriele Giacone

As said on irc, please remove xulrunner runtime dependency.
Neither gnash plugin nor lightspark one (other NPAPI plugin around?) depend on
it at runtime.
Browsers which use such plugins already depends on xulrunner.

Attached patch.

=== modified file 'control'
--- control	2011-05-30 20:35:15 +
+++ control	2011-08-19 00:58:25 +
@@ -27,7 +27,7 @@
 Package: icedtea-plugin
 Section: web
 Architecture: any
-Depends: openjdk-6-jre, icedtea-netx (= ${binary:Version}), ${xulrunner:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Depends: openjdk-6-jre, icedtea-netx (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
 Conflicts: icedtea-gcjwebplugin ( 1.0-1ubuntu4), icedtea6-plugin ( 6b18-1.8.7-3)
 Replaces: icedtea-gcjwebplugin, openjdk-6-jre ( 6b18-1.8.7-3), icedtea6-plugin ( 6b18-1.8.7-3)
 Provides: icedtea6-plugin



Bug#614396: xserver-xorg-video-glamo: doesn't install

2011-02-21 Thread Gabriele Giacone
Package: xserver-xorg-video-glamo
Severity: grave
Justification: renders package unusable

# apt-get install xserver-xorg-video-glamo
[...]
The following packages have unmet dependencies:
 xserver-xorg-video-glamo : Depends: xserver-xorg-core (= 2:1.6.99.900) but it 
is not going to be installed
E: Broken packages


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: armel (armv4tl)

Kernel: Linux 2.6.29-20100313.git973a41fc
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages xserver-xorg-video-glamo depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  xserver-xorg-core 2:1.9.4-2  Xorg X server - core server

xserver-xorg-video-glamo recommends no packages.

xserver-xorg-video-glamo suggests no packages.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#614453: xf86-video-glamo: FTBFS: edid.h:605: error: type of bit-field 'portB' is a GCC extension

2011-02-21 Thread Gabriele Giacone
On Mon, Feb 21, 2011 at 11:35:06PM +0100, Lucas Nussbaum wrote:
 During a rebuild of all packages in sid, your package failed to build on
 amd64.

Attached patch makes it build successfully. Please consider it.

G.
diff --git a/debian/xsfbs/xsfbs.mk b/debian/xsfbs/xsfbs.mk
index b871b3b..672b168 100644
--- a/debian/xsfbs/xsfbs.mk
+++ b/debian/xsfbs/xsfbs.mk
@@ -276,10 +276,10 @@ $(STAMP_DIR)/genscripts: $(STAMP_DIR)/stampdir
 debian/shlibs.local:
 	cat debian/*.shlibs $@
 
-SERVERMINVERS = $(shell cat /usr/share/xserver-xorg/serverminver 2/dev/null)
-VIDEOABI = $(shell cat /usr/share/xserver-xorg/videoabiver 2/dev/null)
-INPUTABI = $(shell cat /usr/share/xserver-xorg/inputabiver 2/dev/null)
-SERVER_DEPENDS = xserver-xorg-core (= $(SERVERMINVERS))
+VIDEOABI = $(shell pkg-config --variable=abi_videodrv xorg-server|cut -f1 -d.)
+INPUTABI = $(shell pkg-config --variable=abi_xinput xorg-server|cut -f1 -d.)
+SERVER_DEPENDS = $(shell cat /usr/share/xserver-xorg/videodrvdep | \
+	sed -n 's/.*\(xserver-xorg-core (= .*)\).*/\1/p')
 VIDDRIVER_PROVIDES = xserver-xorg-video-$(VIDEOABI)
 INPDRIVER_PROVIDES = xserver-xorg-input-$(INPUTABI)
 ifeq ($(PACKAGE),)
@@ -288,7 +288,7 @@ endif
 
 .PHONY: serverabi
 serverabi: install
-ifeq ($(SERVERMINVERS),)
+ifeq ($(SERVER_DEPENDS),)
 	@echo error: xserver-xorg-dev needs to be installed
 	@exit 1
 else
diff --git a/src/Makefile.am b/src/Makefile.am
index 59e88a9..b402e1d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,7 +23,7 @@
 # -avoid-version prevents gratuitous .0.0.0 version numbers on the end
 # _ladir passes a dummy rpath to libtool so the thing will actually link
 # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
-AM_CFLAGS = @XORG_CFLAGS@ @DRI_CFLAGS@ -pedantic -Wall -Werror -std=gnu99
+AM_CFLAGS = @XORG_CFLAGS@ -isystem /usr/include/xorg @DRI_CFLAGS@ -pedantic -Wall -Werror -Wno-deprecated-declarations -std=gnu99
 glamo_drv_la_LTLIBRARIES = glamo_drv.la
 glamo_drv_la_LDFLAGS = -module -avoid-version @LIBDRM_LIBS@
 glamo_drv_ladir = @moduledir@/drivers


Bug#609140: jxplorer does not start

2011-01-11 Thread Gabriele Giacone
On Fri, Jan 07, 2011 at 07:47:17PM +0100, Joachim Zobel wrote:
 The patch fixed it. I had however already a java6 installed:
 
 j...@vostro:~$ ls -l /etc/alternatives/java
 lrwxrwxrwx 1 root root 36 10. Aug 2008  /etc/alternatives/java
 - /usr/lib/jvm/java-6-sun/jre/bin/java
 
 Dont't know why this was not used.

Because without parameters and unless you set JAVA_HOME, find_java_runtime()
looks first for /usr/lib/jvm/default-java link then for first among 
/usr/lib/jvm/*.

I suppose you had JAVA_HOME set to /usr/lib/jvm/java-gcj.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#609140: java-wrapper doesn't consider java-alternatives jvm

2011-01-11 Thread Gabriele Giacone
Package: java-wrappers
Version: 0.1.16


Why doesn't find_java_runtime() also look for jvm pointed by
java-alternatives?



On 01/11/2011 11:42 PM, Joachim Zobel wrote:
 Am Dienstag, den 11.01.2011, 23:02 +0100 schrieb Gabriele Giacone:
 Because without parameters and unless you set JAVA_HOME,
 find_java_runtime()
 looks first for /usr/lib/jvm/default-java link then for first
 among /usr/lib/jvm/*.
 
 Ah, that explains it.
 
 j...@vostro:~$ ls -l /usr/lib/jvm/
 insgesamt 20
 drwxr-xr-x 5 root root 4096  9. Aug 2008  java-1.5.0-gcj-4.3-1.5.0.0
 drwxr-xr-x 6 root root 4096 22. Okt 21:20 java-1.5.0-gcj-4.4
 lrwxrwxrwx 1 root root   23 15. Feb 2009  java-1.5.0-sun -
 java-1.5.0-sun-1.5.0.17
 drwxr-xr-x 6 root root 4096 15. Feb 2009  java-1.5.0-sun-1.5.0.17
 lrwxrwxrwx 1 root root   14 25. Mär 2010  java-1.6.0-openjdk -
 java-6-openjdk
 drwxr-xr-x 7 root root 4096 19. Dez 16:02 java-6-openjdk
 lrwxrwxrwx 1 root root   19 18. Okt 22:27 java-6-sun -
 java-6-sun-1.6.0.22
 drwxr-xr-x 8 root root 4096 18. Okt 22:28 java-6-sun-1.6.0.22
 lrwxrwxrwx 1 root root   26  9. Aug 2008  java-gcj -
 java-1.5.0-gcj-4.3-1.5.0.0
 lrwxrwxrwx 1 root root   18 25. Mär 2010  java-gcj-4.4 -
 java-1.5.0-gcj-4.4
 
 Just curious, why does find_java_runtime() not
 use /etc/alternatives/java ?




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#609140: jxplorer does not start

2011-01-11 Thread Gabriele Giacone
On Tue, Jan 11, 2011 at 11:42:21PM +0100, Joachim Zobel wrote:
 Just curious, why does find_java_runtime() not
 use /etc/alternatives/java ?
 

Filed http://bugs.debian.org/609731




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#609140: jxplorer does not start

2011-01-06 Thread Gabriele Giacone
Thanks for your bug.

On 01/06/2011 06:17 PM, Joachim Zobel wrote:
 Package: jxplorer   
 Version: 3.2.1+dfsg-4
 Severity: serious
 
 Subject says it all. Which enviroment info do you need?

Please install openjdk-6-jre, if not already done.
Then, add java6 parameter to 'find_java_runtime' function call in
/usr/bin/jxplorer or apply attached patch.

jxplorer doesn't work with gcj. I'll remove that possibility in the next
release.


--
Gabriele
--- /usr/bin/jxplorer.orig	2011-01-07 04:41:54.0 +0100
+++ /usr/bin/jxplorer	2011-01-07 04:42:12.0 +0100
@@ -5,7 +5,7 @@
 
 . /usr/lib/java-wrappers/java-wrappers.sh
 
-find_java_runtime
+find_java_runtime java6
 
 find_jars jhall junit
 find_jars /usr/share/jxplorer/jxplorer.jar


Bug#603986: qgis crashes on startup on PowerPC

2011-01-01 Thread Gabriele Giacone

I confirm it starts properly on ppc with -fno-strict-aliasing.
Attached patch.


Cheers,
Gabriele
--- debian/rules	2011-01-01 11:52:27.0 +0100
+++ debian/rules.orig	2011-01-01 11:52:16.0 +0100
@@ -58,8 +58,6 @@
 		-e s/{GRASS_ABI}/$(GRASS_ABI)/g $$^ $$@
 endef
 
-CFLAGS += -fno-strict-aliasing
-
 TEMPLATES := $(foreach t,$(wildcard debian/*.in),$(basename $(t)))
 TEMPLATES += $(foreach t,$(wildcard debian/*{QGIS_ABI}*),$(subst {QGIS_ABI},$(QGIS_ABI),$(t)))
 


Bug#603986: qgis crashes on startup on PowerPC

2011-01-01 Thread Gabriele Giacone
On Sat, Jan 01, 2011 at 12:00:28PM +0100, Gabriele Giacone wrote:
 
 I confirm it starts properly on ppc with -fno-strict-aliasing.
 Attached patch.

Ooops, reattached.
--- debian/rules.orig	2011-01-01 11:52:16.0 +0100
+++ debian/rules	2011-01-01 11:52:27.0 +0100
@@ -58,6 +58,8 @@
 		-e s/{GRASS_ABI}/$(GRASS_ABI)/g $$^ $$@
 endef
 
+CFLAGS += -fno-strict-aliasing
+
 TEMPLATES := $(foreach t,$(wildcard debian/*.in),$(basename $(t)))
 TEMPLATES += $(foreach t,$(wildcard debian/*{QGIS_ABI}*),$(subst {QGIS_ABI},$(QGIS_ABI),$(t)))
 


Bug#603986: qgis crashes on startup on PowerPC

2010-12-31 Thread Gabriele Giacone
On Thu, Dec 30, 2010 at 02:37:52PM +0100, Bálint Réczey wrote:
 
 Could you please try to reproduce the crash with the attached patch applied?
 It generates a -dbg pkg while stripping so the the crash will probably
 happen and we will still be able to debug it. :-)

Rebuilt on a debian machine and reproduced on ppc vm.
Attached backtrace.


Cheers,
Gabriele
(gdb) run
Starting program: /usr/bin/qgis.bin 
[Thread debugging using libthread_db enabled]
[New Thread 0x48a8a430 (LWP 1472)]
[Thread 0x48a8a430 (LWP 1472) exited]

Program received signal SIGSEGV, Segmentation fault.
sqlite3MemSize (pPrior=0x1e0) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:12675
12675   /home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c: No such file 
or directory.
in /home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c
Current language:  auto
The current source language is auto; currently c.
(gdb) bt
#0  sqlite3MemSize (pPrior=0x1e0) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:12675
#1  0x0fda9e10 in sqlite3DbMallocSize (db=value optimized out, p=value 
optimized out) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:16099
#2  0x0fdc33d0 in sqlite3VdbeMemGrow (pMem=0x106abdc8, n=320, preserve=0) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:46204
#3  0x0fdd6ec8 in allocateCursor (p=0x106aa158, iCur=value optimized out, 
nField=2, iDb=0, isBtreeCursor=value optimized out) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:51727
#4  0x0fe15218 in sqlite3VdbeExec (p=0x106aa158) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:55052
#5  0x0fe04348 in sqlite3Step (pStmt=0x106aa158) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:50615
#6  sqlite3_step (pStmt=0x106aa158) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:50674
#7  0x0fcdc6a8 in QgsCoordinateReferenceSystem::loadFromDb (this=0xb518, 
db=value optimized out, field=value optimized out, id=value optimized 
out) at 
/home/lele/qgis-1.4.0+12730/src/core/qgscoordinatereferencesystem.cpp:226
#8  0x0fcdcbac in QgsCoordinateReferenceSystem::createFromEpsg 
(this=0xb518, id=4326) at 
/home/lele/qgis-1.4.0+12730/src/core/qgscoordinatereferencesystem.cpp:179
#9  0x0fc7c838 in QgsDistanceArea::setSourceEpsgCrsId (this=0x1060fcc8, 
epsgId=value optimized out) at 
/home/lele/qgis-1.4.0+12730/src/core/qgsdistancearea.cpp:72
#10 0x0fc7de90 in QgsDistanceArea (this=0x1060fcc8) at 
/home/lele/qgis-1.4.0+12730/src/core/qgsdistancearea.cpp:46
#11 0x0fcafcb0 in QgsMapRenderer (this=0x1060fb30) at 
/home/lele/qgis-1.4.0+12730/src/core/qgsmaprenderer.cpp:47
#12 0x0fb1ba68 in QgsMapCanvas (this=0x105fb958, parent=value optimized out, 
name=value optimized out) at 
/home/lele/qgis-1.4.0+12730/src/gui/qgsmapcanvas.cpp:106
#13 0x100a0668 in QgisApp::createCanvas (this=0x104d33d8) at 
/home/lele/qgis-1.4.0+12730/src/app/qgisapp.cpp:1817
#14 0x100b6a50 in QgisApp (this=0x104d33d8, splash=value optimized out, 
parent=value optimized out, fl=value optimized out) at 
/home/lele/qgis-1.4.0+12730/src/app/qgisapp.cpp:363
#15 0x1008ed8c in main (argc=1, argv=0xbcb4) at 
/home/lele/qgis-1.4.0+12730/src/app/main.cpp:615
(gdb) bt full
#0  sqlite3MemSize (pPrior=0x1e0) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:12675
No locals.
#1  0x0fda9e10 in sqlite3DbMallocSize (db=value optimized out, p=value 
optimized out) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:16099
No locals.
#2  0x0fdc33d0 in sqlite3VdbeMemGrow (pMem=0x106abdc8, n=320, preserve=0) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:46204
No locals.
#3  0x0fdd6ec8 in allocateCursor (p=0x106aa158, iCur=value optimized out, 
nField=2, iDb=0, isBtreeCursor=value optimized out) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:51727
pMem = 0x106abdc8
pCx = 0x0
#4  0x0fe15218 in sqlite3VdbeExec (p=0x106aa158) at 
/home/lele/qgis-1.4.0+12730/src/core/spatialite/sqlite3.c:55052
pc = 4
pOp = 0x10617bf0
rc = 0
db = 0x10610128
encoding = 1 '\001'
pIn1 = 0x0
pIn2 = 0x0
pIn3 = 0x0
pOut = 0x106abe18
iCompare = value optimized out
aPermute = value optimized out
nProgressOps = 0
u = {aa = {pcDest = 2}, ab = {p1 = 2, p2 = 274889928, n = 651, pVar = 
0x0}, ac = {zMalloc = 0x2 Address 0x2 out of bounds, n = 274889928, p1 = 651, 
p2 = 0}, ad = {pMem = 0x2, i = 274889928}, ae = {nByte = 8864824520}, af = 
{flags = 2, iA = 2796023709696, iB = 274792624, rA = 8.1924935974697953e-230, 
rB = 1.3722918279315216e-229}, ag = {i = 2, pArg = 0x10627cc8, ctx = {pFunc = 
0x28b, pVdbeFunc = 0x0, s = {u = {i = 274792624, nZero = 0, pDef = 0x0, pRowSet 
= 0x0, pFrame = 0x0}, r = 8.1924935974697953e-230, db = 0x106aa1a0, z = 
0x106aa17c \020a}\320\020j\273`, n = 275423652, flags = 4202, type = 161 
'\241', enc = 140 '\214', xDel = 0, zMalloc = 0x0}, pMem = 0x8, 

Bug#603986: qgis crashes on startup on PowerPC

2010-12-31 Thread Gabriele Giacone
On 12/31/2010 11:56 PM, Steve Singer wrote:
 Rebuilt on a debian machine and reproduced on ppc vm.
 Attached backtrace.
 
 The stack trace for this sqlite issue on ppc from Fedora looks similar.
 https://bugzilla.redhat.com/show_bug.cgi?id=494266

ok I'm rebuilding qgis with -fno-strict-aliasing. At least 4 hours.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#575089: gnash: Crippling memory leak

2010-08-17 Thread Gabriele Giacone
 I would need to go and install gnash on a system where I'm happy to
 restart my web browsers which may take a little while. If I remember
 correctly the ads on The Register were pretty good at triggering this
 stuff also.

Could you please try to reproduce it with gnash 0.8.8 in experimental?


Thanks,
Gabriele




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#575089: gnash: Crippling memory leak

2010-08-17 Thread Gabriele Giacone
Hi Marcos,

 On Tuesday 23 March 2010 16:32:48 Marcos Marado wrote:
 Confirmed: this doesn't happen with lenny's gnash and happens with the
 gnash version in squeeze.

Could you please try to reproduce it with gnash 0.8.8~bzr in experimental?


Thanks,
Gabriele




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#592258: istanbul: saving screencasts can overwrite directories

2010-08-08 Thread Gabriele Giacone
Package: istanbul
Version: 0.2.2-7
Severity: critical
Justification: causes serious data loss

Hi,

DON'T DO THIS AT HOME! OR BACKUP YOUR SYSTEM BEFORE!

- record a screencast and save it
- Save ScreenCast opens
- don't insert any filename
- below select any directory like Desktop or bin or whatever
- click on Save
- confirmation dialog opens and says:

A file named file:///home/user03/bin already exists.  Do you want to replace 
it?
The file already exists in /home/user03.  Replacing it will overwrite its 
contents.

- click on Yes
- the whole directory bin you selected has just become your screencast named 
bin :-(

I think it should not be possible doing this.

Cheers,
Gabriele


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/3 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages istanbul depends on:
ii  gconf2   2.28.1-3GNOME configuration database syste
ii  gettext  0.18.1.1-1  GNU Internationalization utilities
ii  gstreamer0.10-alsa   0.10.30-1   GStreamer plugin for ALSA
ii  gstreamer0.10-plugins-ba 0.10.30-1   GStreamer plugins from the base 
ii  gstreamer0.10-plugins-go 0.10.24-1   GStreamer plugins from the good 
ii  gstreamer0.10-x  0.10.30-1   GStreamer plugins for X11 and Pang
ii  libc62.11.2-2Embedded GNU C Library: Shared lib
ii  libglib2.0-0 2.24.1-1The GLib library of C routines
ii  libgstreamer0.10-0   0.10.30-1   Core GStreamer libraries and eleme
ii  libice6  2:1.0.6-1   X11 Inter-Client Exchange library
ii  libsm6   2:1.1.1-1   X11 Session Management library
ii  libx11-6 2:1.3.3-3   X11 client-side library
ii  libxdamage1  1:1.1.3-1   X11 damaged region extension libra
ii  libxext6 2:1.1.2-1   X11 miscellaneous extension librar
ii  libxfixes3   1:4.0.5-1   X11 miscellaneous 'fixes' extensio
ii  libxml2  2.7.7.dfsg-4GNOME XML library
ii  python   2.6.5-11interactive high-level object-orie
ii  python-glade22.17.0-3GTK+ bindings: Glade support
ii  python-gnome22.28.1-1Python bindings for the GNOME desk
ii  python-gst0.10   0.10.19-1   generic media-playing framework (P
ii  python-support   1.0.9   automated rebuilding support for P
ii  python-xlib  0.14+20091101-1 Interface for Python to the X11 Pr

istanbul recommends no packages.

Versions of packages istanbul suggests:
pn  fbpanel | perlpanel   none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571427: op-panel: FTBFS: Undefined subroutine SWF::Constants::SWFTEXTFIELD_USEFONT

2010-08-07 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,
I setup a minimal asterisk and op-panel works fine. I see no differences
between current version and the new one.

The issue is the flash plugin: op-panel works with flashplugin-nonfree
but with gnash not.
It doesn't show lines in use and also behaves as you can see at [0]:
with gnash, after 5 seconds screen starts blanking.

I'd consider this bug closed because it doesn't FTBFS anymore.
However we can't use it with any flash plugins in main.

Tzafrir, if you want to take a look and upload it, [1] or svn.
Otherwise someone could change it to make it working with gnash or we
could wait for gnash 0.8.8 and see if it works.


Thanks,
Gabriele


[0] http://www.asternic.org/demo.php
[1]
http://mentors.debian.net/debian/pool/main/o/op-panel/op-panel_0.30~dfsg-3.dsc
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkxd+d4ACgkQp3cdCbVcnCsmQACg1Cykp+1DrAI6DLbBe3ykauDA
69UAoJgh29naK1QrzYy7vcxLK8vRxRcT
=zFNz
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#571427: op-panel: FTBFS: Undefined subroutine SWF::Constants::SWFTEXTFIELD_USEFONT

2010-06-27 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

I've followed Stuart's suggestion removing SWFTEXTFIELD_USEFONT
references, Tzafrir has just repackaged it [1] and it's ready to be
uploaded.

Any feedback from op-panel users? Does it work as well as the current
version?


Thanks,
Gabriele

[1]
http://updates.xorcom.com/pkg-voip/repo-amd64-squeeze/pool/main/o/op-panel/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkwnRx8ACgkQp3cdCbVcnCsOdQCg3u7K1IabtwWbeYFoS5s2RDIx
/BUAniGHKL2CV51dfKAFeJ6/vhLysMm2
=QlU4
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#584985: lwjgl: FTBFS: /usr/bin/ld: cannot find -ljawt

2010-06-11 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 06/08/2010 07:08 AM, Nobuhiro Iwamatsu wrote:
[...]
 your package FTBFS on some architectures.

Thanks for your bug.
I've just switched from dpkg-architecture to os.arch java system
property. I've successfully tested it on powerpc and armel and it should
also work on sh4.

Cheers,
Gabriele
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkwSj5kACgkQp3cdCbVcnCsGxQCgvsDThq0szbOLSl1bAKIh54XR
WAIAoJV4TQIFbMbSSGY9TSkzKIL0H3sv
=YsG2
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#583322: jinput: FTBFS: Build-Depends-Indep entries - B-D?

2010-05-28 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 05/27/2010 04:23 AM, Aaron M. Ucko wrote:
 Package: jinput
 Version: 20100502+dfsg-1
 Severity: serious
 Justification: fails to build from source
 
 jinput's debian/control lists default-jdk and libjutils-java in
 Build-Depends-Indep rather than Build-Depends even though the
 override_dh_auto_build target in debian/rules relies on both AFAICT.
 If it is somehow possible to build the architecture-specific content
 without them, please adjust debian/rules to cope with their potential
 absence; otherwise, please promote them to Build-Depends.
 
 Thanks!

Thanks to you.
I should switch to autobuilder to get this kind of check. BTW my fault.
Will be uploaded soon.

Cheers,
Gabriele





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

iEYEARECAAYFAkwAIDUACgkQp3cdCbVcnCuh3ACgue/mI+f40X4qn4wFKBoPa02S
vM0AnRh8trgCNhizpkyZYD8i4t+6rIVW
=Xu8H
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#582253: [sweethome3d] sweethome3d crashes on startup

2010-05-21 Thread Gabriele Giacone
On Fri, May 21, 2010 at 11:03 AM, Jacob Kanev j_ka...@arcor.de wrote:

 Finding a dedicated driver for my graphic card (SiS 771/671) has been a 
 nightmare so far, and I'm already using the best there is.

Thinking you had an ati card was a bad assumption.

 Nevertheless, replacing the package
   libgl1-mesa-glx
 with the package
   libgl1-mesa-swx11
 solved the problem with Java 3D and sweethome3d.

 Server glx version string is now 1.4 (instead of 1.2 as before).

Good for the record.

Cheers,
Gabriele



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#582253: [sweethome3d] sweethome3d crashes on startup

2010-05-19 Thread Gabriele Giacone
On 05/19/2010 02:56 PM, Jacob Kanev wrote:
 Java 3D WARNING : reported GLX version = 1.2
 GLX version 1.3 or higher is required
 The reported version number may be incorrect.  There is a known
 ATI driver bug in glXQueryVersion that incorrectly reports the GLX
 version as 1.2 when it really is 1.3, so Java 3D will attempt to
 run anyway.
 Segmentation fault

Please provide the output:

$ glxinfo | egrep  render|version

Check X configuration:

http://wiki.debian.org/AtiHowTo

Already tried with proprietary driver?

http://wiki.debian.org/ATIProprietary#Squeeze




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#578413: not find the main class: com.eteks.sweethome3d.SweetHome3D.

2010-04-25 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 04/25/10 06:58, Alexander Galanin wrote:
 Yes, this workaround solves the problem. Now sweethome3d started
 successfully.

You found 2 bugs (start with Sun JRE and localizations) so I have to
double-thank you :)


Cheers,
Gabriele
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkvUFNIACgkQp3cdCbVcnCuhLACgq7GvlcAdXU1qz4zzB3ox59vE
/L8AmwTPWZ6QiDf0GMfVJV/j/0n3T4/M
=mKud
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#578413: not find the main class: com.eteks.sweethome3d.SweetHome3D.

2010-04-24 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

It seems a videodriver problem.
Please provide the output:

$ glxinfo | egrep  render|version

Check X configuration:

http://wiki.debian.org/AtiHowTo

Depending on videocard, maybe you need to update the driver to the non-free:

http://wiki.debian.org/ATIProprietary#Squeeze



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

iEYEARECAAYFAkvSzLEACgkQp3cdCbVcnCvZxwCfRprSrTjyQT6Bt/Zyn9GkoJb+
v8oAoO4guyPOzxWshS9Ym0LYMQKufUB4
=ei1A
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#578413: not find the main class: com.eteks.sweethome3d.SweetHome3D.

2010-04-24 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Unfortunately, I found out it only works with locale en and this could
be a workaround:
remove or edit $HOME/.java/.userPrefs/com/eteks/sweethome3d/io/prefs.xml
file replacing
entry key=language value=XX/  (your XX is probably ru)
with
entry key=language value=en/

Please confirm that.
It will be fixed soon in the next release.

Thanks,
Gabriele

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

iEYEARECAAYFAkvTUwsACgkQp3cdCbVcnCuLOQCgm0UJQFJIy+XcP57iN86PF4Co
VeAAoJUJ2KNOC5x6i/7M/AJgMixpH4IN
=O+NV
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#578413: not find the main class: com.eteks.sweethome3d.SweetHome3D.

2010-04-23 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,
please replace /usr/bin/sweethome with the attached one.

Does it work?


Thanks,
Gabriele
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkvR/ZsACgkQp3cdCbVcnCs24ACfVFxlvKl0Vs88alxrx7OyiiVx
MjQAoLxgtVk+/TUULtDEjNwHFjFH1qx/
=yDcy
-END PGP SIGNATURE-
#!/bin/sh
#
#
BASEPATH=/usr/share/sweethome3d
JAVA_ARGS=-Djava.library.path=/usr/lib/jni

. /usr/lib/java-wrappers/java-wrappers.sh

find_java_runtime java6

find_jars j3dcore j3dutils vecmath java3ds-fileloader
find_jars sunflow itext freehep-graphicsio-svg
find_jars /usr/share/sweethome3d/sweethome3d.jar
find_jars /usr/lib/jvm/java-6-sun/jre/lib/javaws.jar

cd $BASEPATH
run_java com.eteks.sweethome3d.SweetHome3D $@



Bug#578413: Could not find the main class: com.eteks.sweethome3d.SweetHome3D.

2010-04-19 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 04/19/2010 07:30 PM, Bastian Kleineidam wrote:

 $ echo $JAVA_HOME
 /usr/lib/jvm/java-6-sun/jre
 $ echo $CLASSPATH
 /usr/share/java/junit4.jar

JAVA_HOME should be /usr/lib/jvm/java-6-sun


Cheers,
Gabriele
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkvM3goACgkQp3cdCbVcnCtz5ACg1K2B8DN5xbQmX6cx2CSA2caW
fgEAoMDEsQXdpIk0Akqsv8hFxyl3UIQ3
=+YBW
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#569946: Blocker bug to keep instantbird out of testing until it uses the standard copy of libpurple

2010-02-15 Thread Gabriele Giacone
Package: instantbird
Severity: serious
Justification: Policy 4.13


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-trunk-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100215114339.12214.37675.report...@d620



Bug#543375: Info received (Bug not solved)

2009-10-21 Thread Gabriele Giacone

Tomasz Grzelak wrote:

2009/10/21 Gabriele Giacone losga...@libero.it mailto:losga...@libero.it

[...]

Under /etc/rc6.d,
before  after
S01sendsigs S20sendsigs
S01umountnfs.sh S31umountnfs.sh
S01umountfs S40umountfs
S01umountroot   S60umountroot
S01reboot   S90reboot
After fixing the scripts above, system booted fine. Then I fixed all
the remaining.

Hello,

Hi Tomasz


would it be enough to just manually correct symlinks as described above 
without reinstalling anything? I wouldn't like to render my system 
unusable because of messing with those critical packages.

Besides, aren't any changes required in other rcX.d - is rc6.d enough?

And what did you exactly mean by Then I fixed all the remaining?

If you have corrected the problem could you please describe step by step 
what should be done to fix this?


I started to modify the above ones then I continued with all the other ones.
My goal was to get the official sequence number.
Steps? For each init.d script, remove current rcN links and reinstall 
the package it belongs.
Use the following script. It let you choose among /etc/init.d scripts 
and the reinstallation of the package they belong.
Package reinstall implies reconfigure? My system is a desktop, I didn't 
do complex reconfiguration.
Compare before and after sequence numbers and you should see a lot of 
differences.


---
for i in /etc/init.d/*
do
_file=$(basename $i)
echo -e File  $_file  OK? \c
read _answ
[ $_answ != y ]  continue
### find to see current sequence numbers
find /etc/rc*|grep $_file
### removing current links
update-rc.d -f $_file remove
### from file to package
dpkg -S $i
_pkg=$(dpkg -S $i|cut -d: -f1)
### reinstall it?
echo -e Reinstall package  $_pkg  OK? \c
read _answ
[ $_answ != y ]  continue
apt-get -y --reinstall install $_pkg
### find to see new sequence numbers
find /etc/rc*|grep $_file
done
---

All of these fixes should be done by package upgrade phase but in the 
most cases it doesn't happen.
I've installed this squeeze a couple of months ago and during this 
period all of these sequence number have changed?


G



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#543375: Info received (Bug not solved)

2009-10-20 Thread Gabriele Giacone

Ok, solved. My boot/shutdown sequences were wrong.

I reinstalled every package that owns a script under /etc/init.d.
Not a simple reinstall. Before each reinstall, I did a update-rc.d -f 
script remove because, correct me if I'm wrong, if rcN links already 
exist, installation won't correct them, unless specified in 
preinst/postinst scripts.
Now, in util-linux.postinst, for hwclock.sh and hwclockfirst.sh, there's 
a -f remove before start and it's ok.
Reinstalling initscripts and many other packages, doing this cleanup, 
sequence numbers have significantly changed.

Under /etc/rc6.d,
before after
S01sendsigsS20sendsigs
S01umountnfs.shS31umountnfs.sh
S01umountfsS40umountfs
S01umountrootS60umountroot
S01rebootS90reboot
After fixing the scripts above, system booted fine. Then I fixed all the 
remaining.
When is the last time the superblock is written? Isn't it when 
filesystem is umounted/mounted read-only on shutdown?

Could it be UTC time when it's umounted?

G.




--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#543375: Bug not solved

2009-10-19 Thread Gabriele Giacone

Hello,
on my system, problem Superblock last write time [...] is in the 
future is not solved.

With touch and logger.agent I get:

phenomenon:~# date
Mon Oct 19 20:55:27 CEST 2009

phenomenon:~# grep rtc /var/log/syslog|tail -4
Oct 19 20:50:13 phenomenon kernel: [0.666252] rtc_cmos 00:07: RTC 
can wake from S4
Oct 19 20:50:13 phenomenon kernel: [0.666294] rtc_cmos 00:07: rtc 
core: registered rtc_cmos as rtc0
Oct 19 20:50:13 phenomenon kernel: [0.666346] rtc0: alarms up to one 
year, y3k, 114 bytes nvram, hpet irqs
Oct 19 20:50:13 phenomenon kernel: [0.667597] rtc_cmos 00:07: 
setting system clock to 2009-10-19 20:47:59 UTC (1255985279)


phenomenon:~# cat /dev/hotplug.log
HOTPLUG_TIME='Mon Oct 19 20:48:03 CEST 2009'
UDEV_LOG=3
DEVNAME=/dev/rtc0
ACTION=add
OLDPWD=/
SEQNUM=1021
MAJOR=254
DEVPATH=/devices/pnp0/00:07/rtc/rtc0
DEVLINKS=/dev/char/254:0 /dev/rtc
SUBSYSTEM=rtc
MINOR=0

phenomenon:~# ls -la /dev/rtc*
lrwxrwxrwx 1 root root  4 2009-10-19 22:47 /dev/rtc - rtc0
crw-rw 1 root root 254, 0 2009-10-19 22:47 /dev/rtc0
-rw-r--r-- 1 root root  0 2009-10-19 20:48 /dev/rtc0-appeared


More info?



-- System Information:
Debian Release: squeeze/sid
 APT prefers testing
 APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/3 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages util-linux depends on:
ii  dpkg   1.15.3.1+b1   Debian package management 
system
ii  initscripts2.87dsf-6 scripts for initializing 
and shutt
ii  install-info   4.13a.dfsg.1-5Manage installed 
documentation in

ii  libblkid1  2.16.1-4  block device id library
ii  libc6  2.9-25GNU C Library: Shared libraries
ii  libncurses55.7+20090803-2shared libraries for 
terminal hand
ii  libselinux12.0.85-4  SELinux runtime shared 
libraries
ii  libslang2  2.2.1-1   The S-Lang programming 
library - r

ii  libuuid1   2.16.1-4  Universally Unique ID library
ii  lsb-base   3.2-23Linux Standard Base 3.2 
init scrip
ii  tzdata 2009n-1   time zone and 
daylight-saving time

ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

util-linux recommends no packages.

Versions of packages util-linux suggests:
ii  console-tools  1:0.2.3dbs-66 Linux console and font 
utilities
ii  dosfstools 3.0.6-1   utilities for making and 
checking

pn  util-linux-locales none(no description available)

-- no debconf information




--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#543375: Bug not solved

2009-10-19 Thread Gabriele Giacone
Package: util-linux
Version: 2.16.1-4
Severity: normal

Hello,
on my system, problem Superblock last write time [...] is in the future is 
not solved.
With touch and logger.agent I get:

phenomenon:~# date
Mon Oct 19 20:55:27 CEST 2009

phenomenon:~# grep rtc /var/log/syslog|tail -4
Oct 19 20:50:13 phenomenon kernel: [0.666252] rtc_cmos 00:07: RTC can wake 
from S4
Oct 19 20:50:13 phenomenon kernel: [0.666294] rtc_cmos 00:07: rtc core: 
registered rtc_cmos as rtc0
Oct 19 20:50:13 phenomenon kernel: [0.666346] rtc0: alarms up to one year, 
y3k, 114 bytes nvram, hpet irqs
Oct 19 20:50:13 phenomenon kernel: [0.667597] rtc_cmos 00:07: setting 
system clock to 2009-10-19 20:47:59 UTC (1255985279)

phenomenon:~# cat /dev/hotplug.log
HOTPLUG_TIME='Mon Oct 19 20:48:03 CEST 2009'
UDEV_LOG=3
DEVNAME=/dev/rtc0
ACTION=add
OLDPWD=/
SEQNUM=1021
MAJOR=254
DEVPATH=/devices/pnp0/00:07/rtc/rtc0
DEVLINKS=/dev/char/254:0 /dev/rtc
SUBSYSTEM=rtc
MINOR=0

phenomenon:~# ls -la /dev/rtc*
lrwxrwxrwx 1 root root  4 2009-10-19 22:47 /dev/rtc - rtc0
crw-rw 1 root root 254, 0 2009-10-19 22:47 /dev/rtc0
-rw-r--r-- 1 root root  0 2009-10-19 20:48 /dev/rtc0-appeared


More info?



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/3 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages util-linux depends on:
ii  dpkg   1.15.3.1+b1   Debian package management system
ii  initscripts2.87dsf-6 scripts for initializing and shutt
ii  install-info   4.13a.dfsg.1-5Manage installed documentation in 
ii  libblkid1  2.16.1-4  block device id library
ii  libc6  2.9-25GNU C Library: Shared libraries
ii  libncurses55.7+20090803-2shared libraries for terminal hand
ii  libselinux12.0.85-4  SELinux runtime shared libraries
ii  libslang2  2.2.1-1   The S-Lang programming library - r
ii  libuuid1   2.16.1-4  Universally Unique ID library
ii  lsb-base   3.2-23Linux Standard Base 3.2 init scrip
ii  tzdata 2009n-1   time zone and daylight-saving time
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

util-linux recommends no packages.

Versions of packages util-linux suggests:
ii  console-tools  1:0.2.3dbs-66 Linux console and font utilities
ii  dosfstools 3.0.6-1   utilities for making and checking 
pn  util-linux-locales none(no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org