Bug#656359: [Pkg-fonts-bugs] Bug#656359: [Pkg-fonts-devel] Bug#656359: Bug#656359: Segfault when pressing modifier/arrow keys if more than 4 points are selected

2012-01-19 Thread john knightley
The problem is in the debian package not with fontforge itself - I just
removed the debian fontforge and built fontforge from source using
fontforge_full-20110222.tar.bz2. The build from source does not have the
same problem.

The process of making did require pythonui.c which did not register as a
problem at the configure stage but only at the make stage - I am using
python 2.6.6

So no need I think to contact George Williams himself however who is able
to remake the package?






On Thu, Jan 19, 2012 at 3:39 PM, Daniel Kahn Gillmor
d...@fifthhorseman.netwrote:

 On 01/19/2012 02:21 AM, Khaled Hosny wrote:
  I can't reproduce this with fontforge built from git master running
  under Ubuntu 10.04.

 hmm, just trying to build from upstream's git master
 (265be01a4ce5978fbb2c1a6ecf6402af0ea54115) with a ./configure  make
 on sid yields me this error:

 cvdgloss.c: In function ‘DVGlossExpose’:
 cvdgloss.c:1054:21: error: ‘struct TT_ExecContextRec_’ has no member
 named ‘grayscale’
 make[1]: *** [cvdgloss.o] Error 1
 make[1]: Leaving directory `/home/dkg/src/fontforge/fontforge/fontforge'

 what steps are you taking to build from upstream's git master?

--dkg


 ___
 Pkg-fonts-bugs mailing list
 pkg-fonts-b...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-fonts-bugs



Bug#654395: additional patches for newer libav sources

2012-01-19 Thread John Vogel
I had the same problem with blender 2.61-1 segfaulting on my wheezy/sid 
box. So I went about trying to build from git. Right away had problems 
with missing headers declarations for libavutil/mathematics.h. Then, had 
problems with avformat_alloc_open_context2() in 
intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp. I found a fix in Gentoo's 
ebuild for blender-2.60a which negates most of the current
debian/patches/0009-fix_FTBFS_ffmpeg_debian.patch. So I added the first 
patch below and replaced the 0009 patch with the second patch below (the 
one I found for the Gentoo ebuild).


Builds fine and blender seems to running fine on my system, using up to 
date sid and strictly pure debian system other then my wacom driver 
(upstream kernel module and xorg driver).


---
 intern/ffmpeg/ffmpeg_compat.h |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/intern/ffmpeg/ffmpeg_compat.h b/intern/ffmpeg/ffmpeg_compat.h
index dfdad22..bf6e4a9 100644
--- a/intern/ffmpeg/ffmpeg_compat.h
+++ b/intern/ffmpeg/ffmpeg_compat.h
@@ -74,6 +74,10 @@
 #define FFMPEG_SWSCALE_COLOR_SPACE_SUPPORT
 #endif

+#if (LIBAVUTIL_VERSION_MAJOR  51) || ((LIBAVUTIL_VERSION_MAJOR == 51) 
 (LIBAVUTIL_VERSION_MINOR = 9))

+#include libavutil/mathematics.h
+#endif
+
 #ifndef FFMPEG_HAVE_AVIO
 #define AVIO_FLAG_WRITE URL_WRONLY
 #define avio_open url_fopen
--




---
 intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp |   13 ++---
 1 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp 
b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp

index 702c366..4fadbd1 100644
--- a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
+++ b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
@@ -38,6 +38,8 @@ extern C {
 #include libavcodec/avcodec.h
 #include libavformat/avformat.h
 #include libavformat/avio.h
+#include libavutil/mathematics.h
+#include libavutil/avstring.h
 #include ffmpeg_compat.h
 }

@@ -55,10 +57,15 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string 
filename, AUD_DeviceSpecs specs,

 {
 	static const char* formats[] = { NULL, ac3, flac, matroska, 
mp2, mp3, ogg, wav };


-	if(avformat_alloc_output_context2(m_formatCtx, NULL, formats[format], 
filename.c_str()))

-   AUD_THROW(AUD_ERROR_FFMPEG, context_error);
+   m_formatCtx = avformat_alloc_context();
+if (!m_formatCtx) AUD_THROW(AUD_ERROR_FFMPEG, context_error);

-   m_outputFmt = m_formatCtx-oformat;
+	av_strlcpy(m_formatCtx-filename, filename.c_str(), 
sizeof(m_formatCtx-filename));
+	m_outputFmt = m_formatCtx-oformat = av_guess_format(formats[format], 
filename.c_str(), NULL);

+   if (!m_outputFmt) {
+avformat_free_context(m_formatCtx);
+AUD_THROW(AUD_ERROR_FFMPEG, context_error);
+}

switch(codec)
{
--

Perhaps you have already solved these issues, but since I had trouble 
building from anonscm.debian.org/pkg-multimedia/blender.git, I thought 
perhaps this may help.


Regards,
John Vogel jvog...@stny.rr.com



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



Bug#656359: [Pkg-fonts-bugs] Bug#656359: [Pkg-fonts-devel] Bug#656359: Segfault when pressing modifier/arrow keys if more than 4 points are selected

2012-01-19 Thread john knightley
Dear Khaled

the segmentation fault is somewhat erratic for example moving around the
letter g does not crash but moving say a character at uf8000 does - in some
cases starting a new font, making it full unicode  going to a higher point
and simply pressing element is sufficient to crash. Even if somewhat
difficult to describe there is indeed a serious problem here. I have one
machine running ubuntu 9.10 which I have been doing all my fontforge work
on because when I update to ubuntu 10.4 I noticed this bug, which has
remained though I have updated to 10.10 .

Over the past week I have been preparing to do a fontforge training session
in Feb and I myself thought that install rather than updating to Maverick
solved the problem because I only tested 'g' .

Regards
John

On Thu, Jan 19, 2012 at 3:21 PM, Khaled Hosny khaledho...@eglug.org wrote:

 On Thu, Jan 19, 2012 at 01:35:26AM -0500, Daniel Kahn Gillmor wrote:
  Hi fontforge folks--
 
  over on Debian, we've just gotten http://bugs.debian.org/656359, which
  appears to contain a reproducible segfault.
 
  Some folks have suggested that it may be due to more recent versions of
  dependent libraries, but i haven't been able to track it down in more
  detail, i'm afraid.
 
  From Theppitak's original report, a recipe to produce the crash:
 
  Steps to reproduce:
  - Start fontforge and create a new font.
  - Randomly choose a first glyph to edit.
  - Draw splines with at least 5 points.
  - Select up to 4 points and press a modifier or arrow key. It won't
 crash.
  - Select at least 5 points and press a modifier or arrow key. It will
always crash.
 
  Any suggestions?

 I can't reproduce this with fontforge built from git master running
 under Ubuntu 10.04.

 Regards,
  Khaled

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

 iEYEARECAAYFAk8XxIQACgkQRoqITGOuyPK1ZQCcCbpBJVv/rWPqjv2Nt2WucSTo
 +z8AnjaCxF1rgN9XERdIUtuhNgPzxdWq
 =DfU6
 -END PGP SIGNATURE-

 ___
 Pkg-fonts-bugs mailing list
 pkg-fonts-b...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-fonts-bugs



Bug#656427: hdf5-helpers collides with hdf5-tools at upgrade time

2012-01-19 Thread Francesco Paolo Lovergine
Package: hdf5-helpers
Version: 1.8.8-2
Severity: serious

(Sorry for localized output pasting)

Selecting previously unselected package hdf5-helpers.
(Lettura del database... 352194 file e directory attualmente installati.)
Estrazione di hdf5-helpers (da .../hdf5-helpers_1.8.8-2_i386.deb)...
dpkg: errore nell'elaborare 
/var/cache/apt/archives/hdf5-helpers_1.8.8-2_i386.deb (--unpack):
 tentata sovrascrittura di /usr/share/man/man1/h5cc.1.gz presente anche nel 
pacchetto hdf5-tools 1.8.4-patch1-3
configured to not write apport reports
  Elaborazione dei trigger per man-db...
Si sono verificati degli errori nell'elaborazione:
 /var/cache/apt/archives/hdf5-helpers_1.8.8-2_i386.deb


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

Kernel: Linux 3.1.0-1-686-pae (SMP w/1 CPU core)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.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



Bug#652146: hwinfo: diff for NMU version 16.0-2.2

2012-01-19 Thread Steffen Winterfeldt

On Wed, 18 Jan 2012, Christoph Biedl wrote:


Steffen Winterfeldt wrote...


Thanks! But shouldn't it be 'mov %%rbx,%%rdi' etc, then?


Hm, why? cpuid affects only the lower 32 Bits. Using %rbx instead
shouldn't do harm, though.


No, the result is zero-extended to 64 bits in 64bit-mode.


Steffen



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



Bug#656247: phpmyadmin: Local File Inclusion via XXE-injection (CVE-2011-4107)

2012-01-19 Thread Thijs Kinkhorst
fixed 656247 4:3.4.7.1-1
thanks

On Tue, January 17, 2012 20:11, Henri Salo wrote:
 Package: phpmyadmin
 Version: 4:3.3.7-6
 Severity: normal

 Vulnerability in phpmyadmin in squeeze has been exploited wildly in
 public. Spion from #debian-security asked this to be handled quickly.

I will provide an update to stable later today.
Marking bug has fixed for wheezy/sid.


Thijs




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



Processed: Re: Bug#656247: phpmyadmin: Local File Inclusion via XXE-injection (CVE-2011-4107)

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

 fixed 656247 4:3.4.7.1-1
Bug #656247 [phpmyadmin] phpmyadmin: Local File Inclusion via XXE-injection 
(CVE-2011-4107)
Bug Marked as fixed in versions phpmyadmin/4:3.4.7.1-1.
 thanks
Stopping processing here.

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


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



Bug#656428: libghc-hsql-doc: fails to upgrade from squeeze - trying to overwrite ...

2012-01-19 Thread Andreas Beckmann
Package: libghc-hsql-doc
Version: 1.8.1-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
squeeze. It installed fine in squeeze, then the upgrade to wheezy fails
because it tries to overwrite other packages files without declaring a
replaces relation.

See policy 7.6 at
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

From the attached log (scroll to the bottom...):

  Selecting previously unselected package libghc-hsql-doc.
  Unpacking libghc-hsql-doc (from .../libghc-hsql-doc_1.8.1-1_all.deb) ...
  dpkg: error processing 
/var/cache/apt/archives/libghc-hsql-doc_1.8.1-1_all.deb (--unpack):
   trying to overwrite '/usr/share/doc/haskell-hsql-doc/html/src/hscolour.css', 
which is also in package libghc6-hsql-doc 1.7.1-4


cheers,

Andreas


haskell-hsql-mysql-doc_1:6.log.gz
Description: GNU Zip compressed data


Bug#656429: [xserver-xorg] Ctrl+Alt+* (multiply) kills running screensaver

2012-01-19 Thread Felicitus
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: xserver-xorg
Version: 1:7.6+10
Severity: critical
Tags: security
X-Debbugs-CC: secure-testing-t...@lists.alioth.debian.org

- --- Please enter the report below this line. ---
When you have any screensaver running (like Xscreensaver) and hit
Ctrl+Alt+*, the screensaver is killed.

See http://article.gmane.org/gmane.comp.security.oss.general/6725

- --- System information. ---
Architecture: amd64
Kernel:   Linux 3.1.0-1-amd64

Debian Release: wheezy/sid
  500 unstableftp.de.debian.org
  500 testing security.debian.org
  500 testing http.us.debian.org
  500 testing ftp.de.debian.org

- --- Package information. ---
Depends(Version) | Installed
-+-
xserver-xorg-core(= 2:1.11) | 2:1.11.3.901-1
xserver-xorg-video-all   | 1:7.6+10
 OR xorg-driver-video|
xserver-xorg-input-all   | 1:7.6+10
 OR xorg-driver-input|
xserver-xorg-input-evdev | 1:2.6.0-2+b2
libc6   (= 2.7) | 2.13-24
xkb-data(= 1.4) | 2.3-2
x11-xkb-utils| 7.6+4


Recommends   (Version) | Installed
==-+-===
libgl1-mesa-dri| 7.11.2-1


Package's Suggests field is empty.



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPF+1oAAoJEJYpjrA42x19R30H/RJI2L/iZ9T5Kv/pNYol4WkP
YdMJTUoZ0lG08IHVuqB+sT+oTaJx1vc3Jo1aiXuMTfBOVRgiekyiX0HJoxGgAZaA
40owNeWtKAjCIEyZ1HV6aZ3H7f9sXofWMPmnVWFiWsNq2VIl1GpgWfV+/r8PkUHa
KFA178OFMhsF85AtWjbg68kFn+nW8WUystpgl3I5P+WsXU2K3SjdInIeoXiVvI4i
gDkgcWoX0j5o7tQb/h8WzDjT/8fJzRKMcMUjTgt84t9GmhI+BwIHduffwmpn+HcV
CBC3LnWNnqOSbst3vv3Z6gAe04/FAMDP0R5wwKyFou+ijErK/z+j82vRXw81xic=
=T582
-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#656430: libghc-hsql-mysql-doc: fails to upgrade from squeeze - trying to overwrite ...

2012-01-19 Thread Andreas Beckmann
Package: libghc-hsql-mysql-doc
Version: 1.8.1-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
squeeze. It installed fine in squeeze, then the upgrade to wheezy fails
because it tries to overwrite other packages files without declaring a
replaces relation.

See policy 7.6 at
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

From the attached log (scroll to the bottom...):

  Unpacking libghc-hsql-mysql-doc (from 
.../libghc-hsql-mysql-doc_1.8.1-1_all.deb) ...
  dpkg: error processing 
/var/cache/apt/archives/libghc-hsql-mysql-doc_1.8.1-1_all.deb (--unpack):
   trying to overwrite 
'/usr/share/doc/haskell-hsql-mysql-doc/html/src/Database-HSQL-MySQL.html', 
which is also in package libghc6-hsql-mysql-doc 1.7.1-6


cheers,

Andreas


haskell-hsql-doc_1:6.log.gz
Description: GNU Zip compressed data


Bug#656431: libghc-edison-core-doc: fails to upgrade from squeeze - trying to overwrite ...

2012-01-19 Thread Andreas Beckmann
Package: libghc-edison-core-doc
Version: 1.2.1.3-6
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
squeeze. It installed fine in squeeze, then the upgrade to wheezy fails
because it tries to overwrite other packages files without declaring a
replaces relation.

See policy 7.6 at
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

From the attached log (scroll to the bottom...):

  Selecting previously unselected package libghc-edison-core-doc.
  Unpacking libghc-edison-core-doc (from 
.../libghc-edison-core-doc_1.2.1.3-6_all.deb) ...
  dpkg: error processing 
/var/cache/apt/archives/libghc-edison-core-doc_1.2.1.3-6_all.deb (--unpack):
   trying to overwrite 
'/usr/share/doc/haskell-edison-core-doc/html/Data-Edison-Seq-SimpleQueue.html', 
which is also in package libghc6-edison-core-doc 1.2.1.3-5


cheers,

Andreas


haskell-edison-core-doc_1:6.log.gz
Description: GNU Zip compressed data


Bug#656410: marked as done (xorg-server: screen lockers bypassed via key combo)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 10:19:01 +
with message-id e1rnp5b-0001rv...@franck.debian.org
and subject line Bug#656410: fixed in xorg-server 2:1.11.3.901-2
has caused the Debian Bug report #656410,
regarding xorg-server: screen lockers bypassed via key combo
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
656410: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656410
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
package: xorg-server
version: 2:1.11.3.901-1
severity: critical
tag: security

A commit introduced in the xorg 1.11 seems to have introduced a key
combination capable of killing all screen locker programs; thus
allowing unauthorized local access to a system.  See:
http://openwall.com/lists/oss-security/2012/01/19/1


---End Message---
---BeginMessage---
Source: xorg-server
Source-Version: 2:1.11.3.901-2

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

xdmx-tools_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xdmx-tools_1.11.3.901-2_amd64.deb
xdmx_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xdmx_1.11.3.901-2_amd64.deb
xnest_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xnest_1.11.3.901-2_amd64.deb
xorg-server_1.11.3.901-2.diff.gz
  to main/x/xorg-server/xorg-server_1.11.3.901-2.diff.gz
xorg-server_1.11.3.901-2.dsc
  to main/x/xorg-server/xorg-server_1.11.3.901-2.dsc
xserver-common_1.11.3.901-2_all.deb
  to main/x/xorg-server/xserver-common_1.11.3.901-2_all.deb
xserver-xephyr_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xserver-xephyr_1.11.3.901-2_amd64.deb
xserver-xfbdev_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xserver-xfbdev_1.11.3.901-2_amd64.deb
xserver-xorg-core-dbg_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xserver-xorg-core-dbg_1.11.3.901-2_amd64.deb
xserver-xorg-core-udeb_1.11.3.901-2_amd64.udeb
  to main/x/xorg-server/xserver-xorg-core-udeb_1.11.3.901-2_amd64.udeb
xserver-xorg-core_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xserver-xorg-core_1.11.3.901-2_amd64.deb
xserver-xorg-dev_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xserver-xorg-dev_1.11.3.901-2_amd64.deb
xvfb_1.11.3.901-2_amd64.deb
  to main/x/xorg-server/xvfb_1.11.3.901-2_amd64.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 656...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois k...@debian.org (supplier of updated xorg-server package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 19 Jan 2012 10:47:49 +0100
Source: xorg-server
Binary: xserver-xorg-core xserver-xorg-core-udeb xserver-xorg-dev xdmx 
xdmx-tools xnest xvfb xserver-xephyr xserver-xfbdev xserver-xorg-core-dbg 
xserver-common
Architecture: source all amd64
Version: 2:1.11.3.901-2
Distribution: unstable
Urgency: high
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Cyril Brulebois k...@debian.org
Description: 
 xdmx   - distributed multihead X server
 xdmx-tools - Distributed Multihead X tools
 xnest  - Nested X server
 xserver-common - common files used by various X servers
 xserver-xephyr - nested X server
 xserver-xfbdev - Linux framebuffer device tiny X server
 xserver-xorg-core - Xorg X server - core server
 xserver-xorg-core-dbg - Xorg - the X.Org X server (debugging symbols)
 xserver-xorg-core-udeb - Xorg X server - core server (udeb)
 xserver-xorg-dev - Xorg X server - development files
 xvfb   - Virtual Framebuffer 'fake' X server
Closes: 656410
Changes: 
 xorg-server (2:1.11.3.901-2) unstable; urgency=high
 .
   * Revert XKB: Add debug key actions for grabs  window tree to stop
 making it possible to bypass X screen locking programs. This is
 CVE-2012-0064 (Closes: #656410).
   * Set urgency to “high” accordingly.
Checksums-Sha1: 
 1e6dace0d5f5018c2e1e578b3e2bdf61ef4b3967 3488 xorg-server_1.11.3.901-2.dsc
 dede7fed734ab143cecb60f78cb30b02bcabb965 397899 
xorg-server_1.11.3.901-2.diff.gz
 d4e6eb7ea66fc2b72863aed2c877416cc852912f 1281504 
xserver-common_1.11.3.901-2_all.deb
 fc1bd99179d03ca658b2eadf82fcfba40937e40a 1755988 
xserver-xorg-core_1.11.3.901-2_amd64.deb
 799da1fe2275251c658ca5d963b5dd68af9fe005 1065498 

Bug#656388: tucan

2012-01-19 Thread Henri Salo
CVE-2012-0063 is assigned to this case.



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



Processed: affects 656428, found 656428 in haskell-hsql-doc/1:6, affects 656430 ..., affects 656431 ...

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

 affects 656428 haskell-hsql-doc libghc6-hsql-doc
Bug #656428 [libghc-hsql-doc] libghc-hsql-doc: fails to upgrade from squeeze - 
trying to overwrite ...
Added indication that 656428 affects libghc6-hsql-doc and haskell-hsql-doc
 found 656428 haskell-hsql-doc/1:6
Bug #656428 [libghc-hsql-doc] libghc-hsql-doc: fails to upgrade from squeeze - 
trying to overwrite ...
The source haskell-hsql-doc and version 1:6 do not appear to match any binary 
packages
Bug Marked as found in versions haskell-hsql-doc/1:6.
 affects 656430 libghc6-hsql-mysql-doc haskell-hsql-mysql-doc
Bug #656430 [libghc-hsql-mysql-doc] libghc-hsql-mysql-doc: fails to upgrade 
from squeeze - trying to overwrite ...
Added indication that 656430 affects haskell-hsql-mysql-doc and 
libghc6-hsql-mysql-doc
 found 656430 haskell-hsql-mysql-doc/1:6
Bug #656430 [libghc-hsql-mysql-doc] libghc-hsql-mysql-doc: fails to upgrade 
from squeeze - trying to overwrite ...
The source haskell-hsql-mysql-doc and version 1:6 do not appear to match any 
binary packages
Bug Marked as found in versions haskell-hsql-mysql-doc/1:6.
 affects 656431 libghc6-edison-core-doc haskell-edison-core-doc
Bug #656431 [libghc-edison-core-doc] libghc-edison-core-doc: fails to upgrade 
from squeeze - trying to overwrite ...
Added indication that 656431 affects libghc6-edison-core-doc and 
haskell-edison-core-doc
 found 656431 haskell-edison-core-doc/1:6
Bug #656431 [libghc-edison-core-doc] libghc-edison-core-doc: fails to upgrade 
from squeeze - trying to overwrite ...
The source haskell-edison-core-doc and version 1:6 do not appear to match any 
binary packages
Bug Marked as found in versions haskell-edison-core-doc/1:6.
 thanks
Stopping processing here.

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


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



Bug#635566: marked as done (Unsatisfiable build-dependency on glade-gnome)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 10:33:45 +
with message-id e1rnpjr-0003n3...@franck.debian.org
and subject line Bug#635566: fixed in taxbird 0.18-1
has caused the Debian Bug report #635566,
regarding Unsatisfiable build-dependency on glade-gnome
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
635566: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635566
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: taxbird
Version: 0.15-1
Severity: serious

Hi,

glade-gnome is no longer installable in unstable and scheduled to be
removed, so taxbird ftbfs.
The build dependencies of taxbird should be adjusted, replacing
glade-gnome with glade might be sufficient or dropping this build
dependency altogether as it doesn't look like it is actually required
(from a cursory glance).


Cheers,
Michael


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

Kernel: Linux 2.6.39-2-486
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


---End Message---
---BeginMessage---
Source: taxbird
Source-Version: 0.18-1

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

taxbird_0.18-1.diff.gz
  to main/t/taxbird/taxbird_0.18-1.diff.gz
taxbird_0.18-1.dsc
  to main/t/taxbird/taxbird_0.18-1.dsc
taxbird_0.18-1_amd64.deb
  to main/t/taxbird/taxbird_0.18-1_amd64.deb
taxbird_0.18.orig.tar.gz
  to main/t/taxbird/taxbird_0.18.orig.tar.gz



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 635...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Marvin Stark m...@der-marv.de (supplier of updated taxbird package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 20 Dec 2011 12:36:20 +
Source: taxbird
Binary: taxbird
Architecture: source amd64
Version: 0.18-1
Distribution: unstable
Urgency: low
Maintainer: Marvin Stark m...@der-marv.de
Changed-By: Marvin Stark m...@der-marv.de
Description: 
 taxbird- Free Elster client (German Tax Declarations)
Closes: 635566
Changes: 
 taxbird (0.18-1) unstable; urgency=low
 .
   * New upstream release
 - Fixed build dependencys (Closes: #635566)
 - Removed not needed patches, fixed in upstream now
   * debian/rules:
 - Added build-arch build-indep targets
Checksums-Sha1: 
 5e056c4debd6596b60d912555b0ea4d67d18032d 1750 taxbird_0.18-1.dsc
 2fec2f7f3744ae89c3d7e025bbe0bd45824daeab 414988 taxbird_0.18.orig.tar.gz
 036f105769c898eac0b5bdc61d5f37aa31a25d08 12707 taxbird_0.18-1.diff.gz
 e58ad956e36fb21f78cd60d7765f3e13099d6785 99854 taxbird_0.18-1_amd64.deb
Checksums-Sha256: 
 65331adc5977ff70070e24a527db6366b7f8de7f370abdd5366f9f5fb0f4d2fb 1750 
taxbird_0.18-1.dsc
 4ed073989eb9d17b06e120e3e9a5669fc48c2b2df26b118521baa98f11e81413 414988 
taxbird_0.18.orig.tar.gz
 a0ffd1bd52d315b78f88f0b611134d27f28e8a5891e9d26559b3d8e0d0511476 12707 
taxbird_0.18-1.diff.gz
 52aad04946e4d5c657194f58bc9458c181dc7a756259e1c3bf3f11634a871794 99854 
taxbird_0.18-1_amd64.deb
Files: 
 b449952188ef54c4620f3067e1bba6bf 1750 gnome optional taxbird_0.18-1.dsc
 213e63cb9283fbcc539259742271445f 414988 gnome optional taxbird_0.18.orig.tar.gz
 8f88a7ca7cec931f17c5c1f227466950 12707 gnome optional taxbird_0.18-1.diff.gz
 da1a10949ad82b46ba6f696bdfeee16f 99854 gnome optional taxbird_0.18-1_amd64.deb

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

iQIcBAEBCAAGBQJPF+zxAAoJEExaa6sS0qeuKzUQAI00JvnwbmYi8m1sp2e5xiqI
OPXCZ8Zfkl6YH2YYBcCEYvXgpj4Bw5vOhtTq8ugsUNASULWRQMtI3wWH54JWD0yA
2oQD259I3CMqkiqby323V+NRoEn3XNIlGWQ1uU4KZkKvnvfKiaGjNAASAqjI1orS
HM1kPRHdi6+8vDsHAnwoU+vPcL/ny1EWD6+lW33VcNIkGUbotm4Gc2Q4aSz/IEX+
/DOGx4v0k6gTfz/JejlvEQlY+TjgJvVpaZPW8fQo+sqKSLcqHr62ONmCC61pcjme
ZahCvHDM9pL6ZdVTnFl3oItpmT3Dx8sssgwfqxOL73lInrIOp1FxVP008Lx7PtGE
ZSlgIKUiRkV0tT2NGFlyCDZAUUCHiJmSrlbQhp33gxCfvXQFojqzi85amoQOYtUM
5m0fJPrkLaD6f1odYN5ecTpSR0Ua1Vi1xhi46Yp3GeXMVf3PiMv5iCU6fHBMjHfH
3fR4nTDs+rmVUSYxb4TGv0hZlCilPpb7rafUqoO+VoSjdKoM4ABcDgUtHOlXD0cm
MGmmzBD2ur1Otj7weeV7ElaKUIJ90fMB+WQaKKW9TOyVQvUa/oOqgXGa9XRMDVL1

Bug#653527: libogre-1.7.3: includes files that don't change their name when the ABI changes (policy 8.2)

2012-01-19 Thread Manuel A. Fernandez Montecelo
Hello,

2011/12/30 Paul Wise p...@debian.org:
 I suggest that you contact upstream to find out why they do not use
 versioned names for the plugin-related files.

They plan to do that but in the long run along with other changes,
probably it won't happen in the upcoming 1.8 series (which were
planned to be released by now).

I uploaded 1.7.3-5 yesterday with more changes regarding this:
http://packages.debian.org/sid/amd64/libogre-1.7.3/filelist

Plugins (for amd64) are now in:
/usr/lib/x86_64-linux-gnu/OGRE-1.7.3/

I don't know if this is going to make users of the library very happy
(for development or for games providing plugins.cfg with a fixed
path), or they'll refrain from using Debian packages and install their
own version.

For our packages that will depend on OGRE it doesn't make any
difference, but maybe the packagers have to do some extra work
modifying the plugins.cfg provided from upstream.


 Your solution sounds fine, I'm not sure if it will work for these:

 libogre-1.7.3: /usr/bin/update-ogre-plugins
 libogre-1.7.3: /usr/share/man/man1/update-ogre-plugins.1.gz

This is not fixed yet, but I am unconvinced about the utility of such
script and if it was for me I would remove it altogether, as I did
with other ad-hoc script in the package which was not even shipped.  I
will probably do that in 1.8.

The whole point of a plugin is that your application doesn't have to
use all of the features provided by software, and plugins are optional
features.  So IMO it doesn't make sense to provide such file so
packagers of other Debian software point to it and load all of the
plugins (even if they don't cause runtime overhead, which hopefully
they will not).  It's up to the applications to decide what they use.

Cheers.



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



Bug#610933: marked as done (libvdeplug3 declares a conflict with libvdeplug2)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 10:48:36 +
with message-id e1rnpxo-0004lk...@franck.debian.org
and subject line Bug#610933: fixed in vde2 2.3.2-1
has caused the Debian Bug report #610933,
regarding libvdeplug3 declares a conflict with libvdeplug2
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
610933: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610933
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libvdeplug3
Version: 2.3.1-1
Severity: important
Justification: policy §8.1

libvdeplug3 declares

Conflicts: libvdeplug2
Replaces: libvdeplug2

but the documentation (e.g., the package description) does not
explain a reason.  dpkg -L libvdeplug2 does not reveal any
unversioned filenames that would cause file conflicts, at least.
Is the conflict needed?

I am hoping not, because it makes the upgrade path more rigid, both
from the point of view of keeping sid working during a transition
and keeping a working system during a dist-upgrade.

Thanks for keeping this basic component working well.


---End Message---
---BeginMessage---
Source: vde2
Source-Version: 2.3.2-1

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

libvde-dev_2.3.2-1_amd64.deb
  to main/v/vde2/libvde-dev_2.3.2-1_amd64.deb
libvde0_2.3.2-1_amd64.deb
  to main/v/vde2/libvde0_2.3.2-1_amd64.deb
libvdeplug-dev_2.3.2-1_amd64.deb
  to main/v/vde2/libvdeplug-dev_2.3.2-1_amd64.deb
libvdeplug2_2.3.2-1_amd64.deb
  to main/v/vde2/libvdeplug2_2.3.2-1_amd64.deb
vde2-cryptcab_2.3.2-1_amd64.deb
  to main/v/vde2/vde2-cryptcab_2.3.2-1_amd64.deb
vde2_2.3.2-1.diff.gz
  to main/v/vde2/vde2_2.3.2-1.diff.gz
vde2_2.3.2-1.dsc
  to main/v/vde2/vde2_2.3.2-1.dsc
vde2_2.3.2-1_amd64.deb
  to main/v/vde2/vde2_2.3.2-1_amd64.deb
vde2_2.3.2.orig.tar.gz
  to main/v/vde2/vde2_2.3.2.orig.tar.gz



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 610...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ludovico Gardenghi gar...@debian.org (supplier of updated vde2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 19 Jan 2012 11:35:11 +0100
Source: vde2
Binary: vde2 vde2-cryptcab libvdeplug-dev libvdeplug2 libvde-dev libvde0
Architecture: source amd64
Version: 2.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian VSquare Team pkg-vsquare-de...@lists.alioth.debian.org
Changed-By: Ludovico Gardenghi gar...@debian.org
Description: 
 libvde-dev - Virtual Distributed Ethernet - support libraries development file
 libvde0- Virtual Distributed Ethernet - support libraries
 libvdeplug-dev - Virtual Distributed Ethernet - Plug development files
 libvdeplug2 - Virtual Distributed Ethernet - Plug library
 vde2   - Virtual Distributed Ethernet
 vde2-cryptcab - Virtual Distributed Ethernet - CryptCab
Closes: 610933 636745 646627
Changes: 
 vde2 (2.3.2-1) unstable; urgency=low
 .
   * New upstream version
   * Remove Piotr Roszatycki dex...@debian.org from Uploaders
 (Closes: #636745)
   * Suggest qemu-kvm instead of dummy transitional package kvm
 (Closes: #646627)
   * Add major version in dlopen in libvdeplug_dyn.h to avoid binary dependency
 on -dev package (for additional explanations see the header file itself)
 Patch file: debian/patches/libvdeplug_dyn_versioned_dlopen.patch
   * Add patch for fixing missing format string in fprintf() and syslog()
 calls. Patch file: debian/patches/printf_add_format_string.patch
   * Add patch for fixing wrong SONAME for libraries. -version-number had
 been used instead of version-info, this gave incorrect SONAMEs and broke
 compatibility between this version and the previous ones (althought there
 is no actual ABI incompatibility).
 Patch file: debian/patches/fix_soname_version_info.patch
 - reset libvdeplug name to libvdeplug2 (w.r.t 2.3.1-1) (Closes: #610933)
   * Move /usr/lib/libvdetap.a to -dev package
   * Update Standards-Version to 3.9.2: nothing to do
   * Switch to CDBS and quilt
   * Remove useless .dirs files
Checksums-Sha1: 
 31af8038bbfed3cf772e068e6796357ffc17c377 1895 vde2_2.3.2-1.dsc
 

Bug#656429: [xserver-xorg] Ctrl+Alt+* (multiply) kills running screensaver

2012-01-19 Thread Cyril Brulebois
forcemerge 656410 656429
thanks

Felicitus felici...@felicitus.org (19/01/2012):
 When you have any screensaver running (like Xscreensaver) and hit
 Ctrl+Alt+*, the screensaver is killed.
 
 See http://article.gmane.org/gmane.comp.security.oss.general/6725

Thanks, but already fixed, see above-mentioned bug.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Processed: found 656213 in xine-ui/0.99.6-1.1

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

 found 656213 xine-ui/0.99.6-1.1
Bug #656213 [libxine1-bin] xine-ui: unowned files after purge (policy 6.8) 
violating FHS (policy 9.1) too
Bug Marked as found in versions xine-ui/0.99.6-1.1.
 thanks
Stopping processing here.

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


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



Bug#610933: libvdeplug3 declares a conflict with libvdeplug2

2012-01-19 Thread Jonathan Nieder
Ludovico Gardenghi wrote:

* Add patch for fixing wrong SONAME for libraries. -version-number had
  been used instead of version-info, this gave incorrect SONAMEs and broke
  compatibility between this version and the previous ones (althought there
  is no actual ABI incompatibility).

Thanks, Ludovico!  This is great.

Some tiny questions from looking over the diff:

 * If this header file is used to generate binaries meant to be used on other
 * distributions, it could be safe to redefine LIBVDEPLUG_DLOPEN_FILENAME with
 * the unversioned name.

Do the various distros not agree on a soname for libvdeplug?

 # There is a copyright file for each package, so the debian/copyright file is
 # not needed.

I think ftpmasters tend to rely on debian/copyright documenting the
copyright of the source package.

Happy,
Jonathan



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



Bug#656359: [Pkg-fonts-bugs] Bug#656359: [Pkg-fonts-devel] Bug#656359: Segfault when pressing modifier/arrow keys if more than 4 points are selected

2012-01-19 Thread Khaled Hosny
I use FontForge extensively I never encountered this, and generally it
is less crashy than it used to be. May be it is 64bit specific bug?

Regards,
 Khaled

On Thu, Jan 19, 2012 at 05:20:57PM +0800, john knightley wrote:
 Dear Khaled
 
 the segmentation fault is somewhat erratic for example moving around the 
 letter
 g does not crash but moving say a character at uf8000 does - in some cases
 starting a new font, making it full unicode  going to a higher point and 
 simply
 pressing element is sufficient to crash. Even if somewhat difficult to 
 describe
 there is indeed a serious problem here. I have one machine running ubuntu 9.10
 which I have been doing all my fontforge work on because when I update to
 ubuntu 10.4 I noticed this bug, which has remained though I have updated to
 10.10 .
 
 Over the past week I have been preparing to do a fontforge training session in
 Feb and I myself thought that install rather than updating to Maverick solved
 the problem because I only tested 'g' .
 
 Regards
 John
 
 On Thu, Jan 19, 2012 at 3:21 PM, Khaled Hosny khaledho...@eglug.org wrote:
 
 On Thu, Jan 19, 2012 at 01:35:26AM -0500, Daniel Kahn Gillmor wrote:
  Hi fontforge folks--
 
  over on Debian, we've just gotten http://bugs.debian.org/656359, which
  appears to contain a reproducible segfault.
 
  Some folks have suggested that it may be due to more recent versions of
  dependent libraries, but i haven't been able to track it down in more
  detail, i'm afraid.
 
  From Theppitak's original report, a recipe to produce the crash:
 
  Steps to reproduce:
  - Start fontforge and create a new font.
  - Randomly choose a first glyph to edit.
  - Draw splines with at least 5 points.
  - Select up to 4 points and press a modifier or arrow key. It won't
 crash.
  - Select at least 5 points and press a modifier or arrow key. It will
    always crash.
 
  Any suggestions?
 
 I can't reproduce this with fontforge built from git master running
 under Ubuntu 10.04.
 
 Regards,
  Khaled
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.10 (GNU/Linux)
 
 iEYEARECAAYFAk8XxIQACgkQRoqITGOuyPK1ZQCcCbpBJVv/rWPqjv2Nt2WucSTo
 +z8AnjaCxF1rgN9XERdIUtuhNgPzxdWq
 =DfU6
 -END PGP SIGNATURE-
 
 ___
 Pkg-fonts-bugs mailing list
 pkg-fonts-b...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-fonts-bugs
 
 



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



Bug#656429: marked as done ([xserver-xorg] Ctrl+Alt+* (multiply) kills running screensaver)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 12:19:19 +0100
with message-id 20120119111919.gc29...@mraw.org
and subject line Re: Processed (with 1 errors): Re: Bug#656429: [xserver-xorg] 
Ctrl+Alt+* (multiply) kills running screensaver
has caused the Debian Bug report #656429,
regarding [xserver-xorg] Ctrl+Alt+* (multiply) kills running screensaver
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
656429: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656429
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: xserver-xorg
Version: 1:7.6+10
Severity: critical
Tags: security
X-Debbugs-CC: secure-testing-t...@lists.alioth.debian.org

- --- Please enter the report below this line. ---
When you have any screensaver running (like Xscreensaver) and hit
Ctrl+Alt+*, the screensaver is killed.

See http://article.gmane.org/gmane.comp.security.oss.general/6725

- --- System information. ---
Architecture: amd64
Kernel:   Linux 3.1.0-1-amd64

Debian Release: wheezy/sid
  500 unstableftp.de.debian.org
  500 testing security.debian.org
  500 testing http.us.debian.org
  500 testing ftp.de.debian.org

- --- Package information. ---
Depends(Version) | Installed
-+-
xserver-xorg-core(= 2:1.11) | 2:1.11.3.901-1
xserver-xorg-video-all   | 1:7.6+10
 OR xorg-driver-video|
xserver-xorg-input-all   | 1:7.6+10
 OR xorg-driver-input|
xserver-xorg-input-evdev | 1:2.6.0-2+b2
libc6   (= 2.7) | 2.13-24
xkb-data(= 1.4) | 2.3-2
x11-xkb-utils| 7.6+4


Recommends   (Version) | Installed
==-+-===
libgl1-mesa-dri| 7.11.2-1


Package's Suggests field is empty.



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPF+1oAAoJEJYpjrA42x19R30H/RJI2L/iZ9T5Kv/pNYol4WkP
YdMJTUoZ0lG08IHVuqB+sT+oTaJx1vc3Jo1aiXuMTfBOVRgiekyiX0HJoxGgAZaA
40owNeWtKAjCIEyZ1HV6aZ3H7f9sXofWMPmnVWFiWsNq2VIl1GpgWfV+/r8PkUHa
KFA178OFMhsF85AtWjbg68kFn+nW8WUystpgl3I5P+WsXU2K3SjdInIeoXiVvI4i
gDkgcWoX0j5o7tQb/h8WzDjT/8fJzRKMcMUjTgt84t9GmhI+BwIHduffwmpn+HcV
CBC3LnWNnqOSbst3vv3Z6gAe04/FAMDP0R5wwKyFou+ijErK/z+j82vRXw81xic=
=T582
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
Debian Bug Tracking System ow...@bugs.debian.org (19/01/2012):
  forcemerge 656410 656429
 Bug#656410: xorg-server: screen lockers bypassed via key combo
 Bug#656429: [xserver-xorg] Ctrl+Alt+* (multiply) kills running screensaver
 Mismatch - only Bugs in the same package can be forcibly merged:
 Bug 656429 is not in the same package as 656410
  thanks
 Stopping processing here.

bah, closing then.

Mraw,
KiBi.


signature.asc
Description: Digital signature
---End Message---


Bug#656359: [Fontforge-devel] Segfault when pressing modifier/arrow keys if more than 4 points are selected

2012-01-19 Thread Paul Flo Williams
Daniel Kahn Gillmor wrote:
 Hi fontforge folks--

 over on Debian, we've just gotten http://bugs.debian.org/656359, which
 appears to contain a reproducible segfault.

 Some folks have suggested that it may be due to more recent versions of
 dependent libraries, but i haven't been able to track it down in more
 detail, i'm afraid.

 From Theppitak's original report, a recipe to produce the crash:

 Steps to reproduce:
 - Start fontforge and create a new font.
 - Randomly choose a first glyph to edit.
 - Draw splines with at least 5 points.
 - Select up to 4 points and press a modifier or arrow key. It won't crash.
 - Select at least 5 points and press a modifier or arrow key. It will
   always crash.

 Any suggestions?

See if this one line patch is relevant, as it sounds familiar. This was
applied back in March.

http://fontforge.git.sourceforge.net/git/gitweb.cgi?p=fontforge/fontforge;a=blobdiff;f=fontforge/charview.c;h=5e529185424e1dad2f66a1c29c6ceb706e1a315b;hp=ce84acec1dd9492954cc63e921d0f43aba691358;hb=38744f1f74ac88b1012585b9b1a6eb94818cc783;hpb=f17fa77717a1f19bb95eb9bc8c56be3c2c8ae95f



-- 
Paul Flo Williams
http://hisdeedsaredust.com/




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



Bug#647613: boswars: Crashes when loading saved game.

2012-01-19 Thread Dean Evans
Hi,

When you tried to load the save game were you trying to load a save
file created by older version of boswars than 2.6.1 or were you trying
to load a 2.6.1 save file?

If you were trying to load a save file from an older version then
unfortunately it will not work as upstream does not support old save
files.

If you were trying to load a save file created with 2.6.1 and you still
have it could you please attach it?

Thanks,
Dean



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



Bug#656439: fts: unowned files after purge (policy 6.8) violating FHS (policy 9.1) too

2012-01-19 Thread Andreas Beckmann
Package: fts
Version: 1.0-2
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package left unowned files on
the system after purge, which is a violation of policy 6.8:

http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-removedetails

From the attached log (scroll to the bottom...):

0m25.8s ERROR: FAIL: Package purging left files on system:
  /etc/fts   owned by: fts
  /etc/fts/confignot owned
  /tftpboot  not owned
  /tftpboot/pxelinux.cfg not owned
  /tftpboot/pxelinux.static  not owned
  /tftpboot/pxelinux.static/default  not owned


As putting files into /tftpboot is also a violation of
http://www.debian.org/doc/debian-policy/ch-opersys.html#s9.1.2
I'm setting the severity to serious.

See e.g. http://bugs.debian.org/411322 for the transition to
/var/lib/tftpboot in the atftpd package.


cheers,

Andreas


fts_1.0-2.log.gz
Description: GNU Zip compressed data


Bug#654395: additional patches for newer libav sources

2012-01-19 Thread Reinhard Tartler
On Do, Jan 19, 2012 at 09:51:20 (CET), John Vogel wrote:

 I had the same problem with blender 2.61-1 segfaulting on my wheezy/sid
 box. So I went about trying to build from git. Right away had problems
 with missing headers declarations for libavutil/mathematics.h. Then, had
 problems with avformat_alloc_open_context2() in
 intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp. I found a fix in Gentoo's
 ebuild for blender-2.60a which negates most of the current
 debian/patches/0009-fix_FTBFS_ffmpeg_debian.patch. So I added the first
 patch below and replaced the 0009 patch with the second patch below (the
 one I found for the Gentoo ebuild).

 Builds fine and blender seems to running fine on my system, using up to
 date sid and strictly pure debian system other then my wacom driver
 (upstream kernel module and xorg driver).

 ---
  intern/ffmpeg/ffmpeg_compat.h |4 
  1 files changed, 4 insertions(+), 0 deletions(-)

 diff --git a/intern/ffmpeg/ffmpeg_compat.h b/intern/ffmpeg/ffmpeg_compat.h
 index dfdad22..bf6e4a9 100644
 --- a/intern/ffmpeg/ffmpeg_compat.h
 +++ b/intern/ffmpeg/ffmpeg_compat.h
 @@ -74,6 +74,10 @@
  #define FFMPEG_SWSCALE_COLOR_SPACE_SUPPORT
  #endif

 +#if (LIBAVUTIL_VERSION_MAJOR  51) || ((LIBAVUTIL_VERSION_MAJOR == 51)
  (LIBAVUTIL_VERSION_MINOR = 9))
 +#include libavutil/mathematics.h
 +#endif
 +

No need to guard this #include directive. You don't do that below
either. Just #include unconditionally

  #ifndef FFMPEG_HAVE_AVIO
  #define AVIO_FLAG_WRITE URL_WRONLY
  #define avio_open url_fopen
 -- 




 ---
  intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp |   13 ++---
  1 files changed, 10 insertions(+), 3 deletions(-)

 diff --git a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
 b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
 index 702c366..4fadbd1 100644
 --- a/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
 +++ b/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
 @@ -38,6 +38,8 @@ extern C {
  #include libavcodec/avcodec.h
  #include libavformat/avformat.h
  #include libavformat/avio.h
 +#include libavutil/mathematics.h
 +#include libavutil/avstring.h
  #include ffmpeg_compat.h
  }

 @@ -55,10 +57,15 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::string
 filename, AUD_DeviceSpecs specs,
  {
   static const char* formats[] = { NULL, ac3, flac,
 matroska, mp2, mp3, ogg, wav };

 - if(avformat_alloc_output_context2(m_formatCtx, NULL,
 formats[format], filename.c_str()))
 - AUD_THROW(AUD_ERROR_FFMPEG, context_error);
 + m_formatCtx = avformat_alloc_context();
 +if (!m_formatCtx) AUD_THROW(AUD_ERROR_FFMPEG, context_error);

That's tright, there is no avformat_alloc_output_context2() in libav,
only in FFmpeg.

 - m_outputFmt = m_formatCtx-oformat;
 + av_strlcpy(m_formatCtx-filename, filename.c_str(),
 sizeof(m_formatCtx-filename));
 + m_outputFmt = m_formatCtx-oformat =
 av_guess_format(formats[format], filename.c_str(), NULL);
 + if (!m_outputFmt) {
 +avformat_free_context(m_formatCtx);
 +AUD_THROW(AUD_ERROR_FFMPEG, context_error);
 +}

   switch(codec)
   {

I guess that's fine, and would work just fine with FFmpeg as well, if
that was some concern for Blender upstream.

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4



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



Bug#610933: [Pkg-vsquare-devel] Bug#610933: libvdeplug3 declares a conflict with libvdeplug2

2012-01-19 Thread Ludovico Gardenghi
On Thu, Jan 19, 2012 at 05:06:30 -0600, Jonathan Nieder wrote:

 * Add patch for fixing wrong SONAME for libraries. -version-number had
   been used instead of version-info, this gave incorrect SONAMEs and 
  broke
   compatibility between this version and the previous ones (althought 
  there
   is no actual ABI incompatibility).
 
 Thanks, Ludovico!  This is great.

I had to modify the SONAME in Debian w.r.t. the current upstream SONAME,
and I tried to do this in the safest way I could imagine, although it is
not 100% conformant to the typical libtool current/revision/age
progression (I bumped from 3:1:0 to 3:2:1). I discussed the thing a bit
with some of the other upstream people (I am part of them) and it seemed
safe enough -- we're going to update the upstream as well in the near
future with the same patch I applied for Debian.

I hope this won't generate havoc and chaos.

 Some tiny questions from looking over the diff:
 
  * If this header file is used to generate binaries meant to be used on other
  * distributions, it could be safe to redefine LIBVDEPLUG_DLOPEN_FILENAME 
  with
  * the unversioned name.
 Do the various distros not agree on a soname for libvdeplug?

I am aware that, for instance, the upstream of Virtualbox does a
dlopen(libvdeplug.so), while the Debian package has a patch for
dlopening libvdeplug.so.2. So I guess there may be other software out
there who would like to redefine this.

vde and its libraries has been used for creating stand-alone images of
virtual machines (e.g. for education purposes) or other custom
environments, so I added this possibility so to let other people use the
libvdeplug_dyn.h header for building, on Debian, software that will be
used with other distributions or in different situations.

Moreover, given the -version-number vs -version-info problem I
described in the changelog, there are people who will have to deal with
the wrong libvdeplug.so.3 which comes from the current upstream SVN
revision.

I know all this is not proper/clean, but I'm not sure there is a really
clean way to deal with this without uselessly breaking backward
compatibility. It seemed cleaner than keeping 3:1:0 and creating
symlinks .so.2 - .so.3 or similar.

  # There is a copyright file for each package, so the debian/copyright file 
  is
  # not needed.
 I think ftpmasters tend to rely on debian/copyright documenting the
 copyright of the source package.

Uhm, ok. I started creating an unified copyright file but I noticed I
was duplicating information by hand -- then I thought it would have been
better to make without debian/copyright rather than to have to keep
debian/copyright in sync with debian/*.copyright manually, with the
potential inconsistencies this could generate. But if that's required I
can do it.

Ludovico
-- 
l...@dovi.coIRC: garden@freenode
OpenPGP: 1024D/63D2D5D907F89BB8 Jabber/gtalk: garde...@gmail.com



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



Processed: Re: alevt and dvb-apps: error when trying to install together

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

 # letting version tracking do its work
 tags 654818 - wheezy sid
Bug #654818 [dvb-apps,alevt] alevt and dvb-apps: error when trying to install 
together
Removed tag(s) sid and wheezy.
 found 654818 linuxtv-dvb-apps/1.1.1+rev1457-3
Bug #654818 [dvb-apps,alevt] alevt and dvb-apps: error when trying to install 
together
Bug Marked as found in versions linuxtv-dvb-apps/1.1.1+rev1457-3.
 notfound 654818 dvb-apps/1.1.1+rev1457-3
Bug #654818 [dvb-apps,alevt] alevt and dvb-apps: error when trying to install 
together
The source dvb-apps and version 1.1.1+rev1457-3 do not appear to match any 
binary packages
Bug No longer marked as found in versions dvb-apps/1.1.1+rev1457-3.

End of message, stopping processing here.

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


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



Bug#656410:

2012-01-19 Thread Olivier Berger
On Thu, Jan 19, 2012 at 12:53:24AM -0500, Michael Gilbert wrote:
 Temporary solution:
 http://openwall.com/lists/oss-security/2012/01/19/7
 

I've tested the following workaround :
xmodmap -e 'keysym 0x1008fe21 = KP_Multiply'
and restarting gnome-screensaver if it was killed previously ;)

Workaround source : http://linuxfr.org/users/moules/journaux/faille-xorg-111

Hope this helps.

Best regards,
-- 
Olivier BERGER 
http://www-public.it-sudparis.eu/~berger_o/ - OpenPGP-Id: 2048R/5819D7E8
Ingenieur Recherche - Dept INF
Institut TELECOM, SudParis (http://www.it-sudparis.eu/), Evry (France)




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



Processed: found 641450 in 3.1.0-9

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

 found 641450 3.1.0-9
Bug #641450 {Done: Thijs Kinkhorst th...@debian.org} [backuppc] backuppc: new 
upstream release fixes security issue
Bug Marked as found in versions backuppc/3.1.0-9; no longer marked as fixed in 
versions backuppc/3.1.0-9.1.
 thanks
Stopping processing here.

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


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



Bug#656359: [Pkg-fonts-devel] Bug#656359: [Fontforge-devel] Segfault when pressing modifier/arrow keys if more than 4 points are selected

2012-01-19 Thread Theppitak Karoonboonyanan
On Thu, Jan 19, 2012 at 5:30 PM, Paul Flo Williams p...@frixxon.co.uk wrote:

 See if this one line patch is relevant, as it sounds familiar. This was
 applied back in March.

 http://fontforge.git.sourceforge.net/git/gitweb.cgi?p=fontforge/fontforge;a=blobdiff;f=fontforge/charview.c;h=5e529185424e1dad2f66a1c29c6ceb706e1a315b;hp=ce84acec1dd9492954cc63e921d0f43aba691358;hb=38744f1f74ac88b1012585b9b1a6eb94818cc783;hpb=f17fa77717a1f19bb95eb9bc8c56be3c2c8ae95f

Yes, it does fix the crash in my box. Thank you!
So, let's apply it to the debian package.

Regards,
-- 
Theppitak Karoonboonyanan
http://linux.thai.net/~thep/



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



Bug#612035: Ping: Bug#612035: [Pkg-phototools-devel] Bug#612035: vulnerability: rewrite arbitrary user file

2012-01-19 Thread Jonathan Wiltshire
On Fri, Jul 08, 2011 at 08:06:17PM +0200, Julien Cristau wrote:
 On Fri, Jul  8, 2011 at 16:08:17 +0200, Andreas Tille wrote:
 
  @@ -275,7 +278,21 @@
path = ;
  }
  else
  -  path = /tmp/;
  +  snprintf(cppid, sizeof(cppid), %06ld, (long) getpid());
  +
  +   while ((path == NULL)  (i  )) {
  +   snprintf(num, sizeof(num), %06ld, i++);
  +
  +   path = estrjoin(, /tmp/feh, _, cppid, _, num, /, 
  NULL);
  +   if (mkdir(path, 0700) == -1) {
  +   free(path);
  +   path = NULL;
  +   } else
  +   opt.tmp_path = path;
  +   }
  +   if (path == NULL)
  +   weprintf(Failed to create temporary directory:);
  +
   
  basename = strrchr(url, '/') + 1;
  tmpname = feh_unique_filename(path, basename);
 
 ick.  mkdtemp(3), please.
 

Hi,

Any news on this?



-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



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



Processed: fixed 641450 in 3.1.0-9.1

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

 fixed 641450 3.1.0-9.1
Bug #641450 {Done: Thijs Kinkhorst th...@debian.org} [backuppc] backuppc: new 
upstream release fixes security issue
Bug Marked as fixed in versions backuppc/3.1.0-9.1.
 thanks
Stopping processing here.

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


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



Bug#656445: snort: fails to install - command not found in postinst

2012-01-19 Thread Andreas Beckmann
Package: snort
Version: 2.9.2-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package failed to install. As
per definition of the release team this makes the package too buggy for
a release, thus the severity.

From the attached log (scroll to the bottom...):

  Selecting previously unselected package snort.
  (Reading database ... 8644 files and directories currently installed.)
  Unpacking snort (from .../snort_2.9.2-1_amd64.deb) ...
  Setting up snort (2.9.2-1) ...
  /var/lib/dpkg/info/snort.config: 15: /var/lib/dpkg/info/snort.config: 
ifconfig: not found
  /var/lib/dpkg/info/snort.postinst: 163: /var/lib/dpkg/info/snort.postinst: 
cannot create /var/lib/snort/snort.debian.conf.md5sum: Directory nonexistent
  dpkg: error processing snort (--configure):
   subprocess installed post-installation script returned error exit status 2
  Errors were encountered while processing:
   snort


cheers,

Andreas


snort_2.9.2-1.log.gz
Description: GNU Zip compressed data


Processed: tagging 637213

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

 # doesnt fail in squeeze
 tags 637213 + wheezy sid
Bug #637213 [maven-plugin-tools] maven-plugin-tools: FTBFS due to outdated 
maven dependency on jtidy
Added tag(s) sid and wheezy.
 thanks
Stopping processing here.

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


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



Bug#653527: libogre-1.7.3: includes files that don't change their name when the ABI changes (policy 8.2)

2012-01-19 Thread Manuel A. Fernandez Montecelo
2012/1/19 Manuel A. Fernandez Montecelo manuel.montez...@gmail.com:
 [...]
 This is not fixed yet, but I am unconvinced about the utility of such
 script and if it was for me I would remove it altogether, as I did
 with other ad-hoc script in the package which was not even shipped.  I
 will probably do that in 1.8.

 The whole point of a plugin is that your application doesn't have to
 use all of the features provided by software, and plugins are optional
 features.  So IMO it doesn't make sense to provide such file so
 packagers of other Debian software point to it and load all of the
 plugins (even if they don't cause runtime overhead, which hopefully
 they will not).  It's up to the applications to decide what they use.

Adding another comment from upstream, OGRE's CMake/Linux guy:

Most applications probably do ship their own version of plugins.cfg
(after all, no other platform offers a default plugins.cfg to rely on).
Loaded but unused plugins will incur a slight memory penalty, but
shouldn't otherwise affect performance.

So even if no harmful (well, actually they're now creating problems
for the issue at hand), the way that Debian packages handle this is
ad-hoc and different from OGRE community practice.  I think that it
should be removed in the future.

Regards.



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



Bug#653051: Would you push this a little more?

2012-01-19 Thread Miguel San Miguel
It seems that Gnome Shell 3.2 in Testing is waiting for this
bughttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652482#39.
That means a lot of users stucked with 3.0 and its absolute lack of
configurability.
Thanks!

-- 

Miguel San Miguel http://miguelsanmiguel.com


Bug#644352:

2012-01-19 Thread Dominique Belhachemi
Slicer4 is currently using development versions of pythonqt and ctk.
I have to wait for a new upstream release of those packages before I
can continue working on the slicer4 package.



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



Bug#652482: FTBTFS on kfreebsd-*: No package 'libnm-glib' found

2012-01-19 Thread Michael Biebl
On 13.01.2012 19:21, Alexandre Rostovtsev wrote:
 You may be interested to know that in Gentoo we applied a modified
 version of Michael Biebl's patch; the original patch
 (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652482#29) was found
 to have a few problems, e.g. reassigning to a constant variable and
 trying to import ui.status.network when networkmanager was disabled.
 
 The modified patch is attached.

Thanks for sharing.

Btw, while arguing about the name of the configure flag is indeed
bikeshedding, one of the reason I chose --enable-network-manager was,
that it is already used in existing GNOME projects like vino or tracker
and I thought some consistency is good.


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Processed: tagging bug src:ogre #653527

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

 forwarded 653527 http://www.ogre3d.org/mantis/view.php?id=496
Bug #653527 [libogre-1.7.3] libogre-1.7.3: includes files that don't change 
their name when the ABI changes (policy 8.2)
Set Bug forwarded-to-address to 'http://www.ogre3d.org/mantis/view.php?id=496'.
 tag 653527 + upstream
Bug #653527 [libogre-1.7.3] libogre-1.7.3: includes files that don't change 
their name when the ABI changes (policy 8.2)
Added tag(s) upstream.
 stop
Stopping processing here.

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


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



Bug#640562: FTBFS against libav/0.7.1

2012-01-19 Thread Muammar El Khatib
Package: motion
Followup-For: Bug #640562

Any advance on applying this patch to make motion compile against libav 0.7.1?

Regards,

--
Muammar El Khatib.
Linux user: 403107.
Key fingerprint = 90B8 BFC4 4A75 B881 39A3 1440 30EB 403B 1270 29F1
http://muammar.me | http://proyectociencia.org
  ,''`.
 : :' :
 `. `'
   `-



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



Bug#656359: [Pkg-fonts-devel] Bug#656359: [Pkg-fonts-bugs] Bug#656359: Bug#656359: Segfault when pressing modifier/arrow keys if more than 4 points are selected

2012-01-19 Thread Daniel Kahn Gillmor
On 01/19/2012 06:15 AM, Khaled Hosny wrote:
 I use FontForge extensively I never encountered this, and generally it
 is less crashy than it used to be. May be it is 64bit specific bug?

nope.  as i've said, i'm able to replicate it in i386.

--dkg



signature.asc
Description: OpenPGP digital signature


Bug#617613: freecad: links with both GPL-licensed and GPL-incompatible libraries

2012-01-19 Thread Marko Knöbl
On Sun, Jan 8, 2012 at 12:05 PM, Juergen Riegel
free...@juergen-riegel.net wrote:
  Hi together,
 I'm, together with Werner, the maintainer of FreeCAD.
 Based on the long history of license struggle with OCTPL I do not think they
 will change the license soon.

Actually there is some chance for the license  to be changed. Daniel Brunier 
Coulin from OpenCASCADE SAS announced that they are currently considering 
relicensing OCCT to LGPL.[1] According to him the decistion will be made in a 
couple of weeks.

[1] https://mail.gna.org/public/pythonocc-users/2012-01/msg00019.html



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



Bug#615765: pornview: diff for NMU version 0.2pre1-11.1

2012-01-19 Thread gregor herrmann
tags 615765 + patch
tags 615765 + pending
thanks

Dear maintainer,

I've prepared an NMU for pornview (versioned as 0.2pre1-11.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Ostbahn-Kurti  Die Chefpartie: Wirklich Wahr
diff -u pornview-0.2pre1/debian/changelog pornview-0.2pre1/debian/changelog
--- pornview-0.2pre1/debian/changelog
+++ pornview-0.2pre1/debian/changelog
@@ -1,3 +1,12 @@
+pornview (0.2pre1-11.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix ftbfs with gold or ld --no-add-needed: new patch
+615765-gold-no-add-needed: pass -lm to linker.
+(Closes: #615765)
+
+ -- gregor herrmann gre...@debian.org  Thu, 19 Jan 2012 17:37:24 +0100
+
 pornview (0.2pre1-11) unstable; urgency=low
 
   * Ack NMU
diff -u pornview-0.2pre1/debian/patches/series pornview-0.2pre1/debian/patches/series
--- pornview-0.2pre1/debian/patches/series
+++ pornview-0.2pre1/debian/patches/series
@@ -14,0 +15 @@
+615765-gold-no-add-needed
only in patch2:
unchanged:
--- pornview-0.2pre1.orig/debian/patches/615765-gold-no-add-needed
+++ pornview-0.2pre1/debian/patches/615765-gold-no-add-needed
@@ -0,0 +1,25 @@
+Description: pass -lm to linker to avoid FTBFS with binutils-gold or --no-add-needed
+Origin:  vendor
+Bug-Debian:  http://bugs.debian.org/615765
+Forwarded:   no
+Author:  gregor herrmann gre...@debian.org
+Last-Update: 2012-01-19
+--- a/src/Makefile.am
 b/src/Makefile.am
+@@ -55,4 +55,4 @@
+ pornview_LDADD = $(GTK_LIBS) $(GDK_PIXBUF_LIBS) $(PNG_LIBS) $(MOVIELIB_LIBS) \
+ 	$(INTLLIBS) $(LIBICONV) $(LIBCHARSET) $(X_LIBS) $(XINERAMA_LIBS) \
+ 	prefs_ui/libprefs_ui.la  support/widgets/libsupport_widgets.la \
+-	support/libsupport_utils.la $(LIBEXIF)
++	support/libsupport_utils.la $(LIBEXIF) -lm
+--- a/src/Makefile.in
 b/src/Makefile.in
+@@ -144,7 +144,7 @@
+ pornview_LDFLAGS =  	-export-dynamic
+ 
+ 
+-pornview_LDADD = $(GTK_LIBS) $(GDK_PIXBUF_LIBS) $(PNG_LIBS) $(MOVIELIB_LIBS) 	$(INTLLIBS) $(LIBICONV) $(LIBCHARSET) $(X_LIBS) $(XINERAMA_LIBS) 	prefs_ui/libprefs_ui.la  support/widgets/libsupport_widgets.la 	support/libsupport_utils.la $(LIBEXIF)
++pornview_LDADD = $(GTK_LIBS) $(GDK_PIXBUF_LIBS) $(PNG_LIBS) $(MOVIELIB_LIBS) 	$(INTLLIBS) $(LIBICONV) $(LIBCHARSET) $(X_LIBS) $(XINERAMA_LIBS) 	prefs_ui/libprefs_ui.la  support/widgets/libsupport_widgets.la 	support/libsupport_utils.la $(LIBEXIF) -lm
+ 
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = ../config.h


signature.asc
Description: Digital signature


Processed: pornview: diff for NMU version 0.2pre1-11.1

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

 tags 615765 + patch
Bug #615765 [pornview] pornview: ftbfs with gold or ld --no-add-needed
Added tag(s) patch.
 tags 615765 + pending
Bug #615765 [pornview] pornview: ftbfs with gold or ld --no-add-needed
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#656383: undeclared file conflict with systemtap-sdt-dev_1.6-1

2012-01-19 Thread Robert Millan
clone 656383 -1
reassign -1 systemtap-sdt-dev
retitle -1 uninstallable on kfreebsd-* (should be Architecture: linux-any)
severity -1 important
reassign 656383 drizzle
retitle 656383 FTBFS on kfreebsd-* (Build-Depends unconditionally on
linux-specific package)
severity 656383 important
thanks

El 18 de gener de 2012 22:16, Christoph Egger christ...@debian.org ha escrit:
  Noticed a file conflict in drizzle's build log on kfreebsd:

 dpkg: error processing 
 /var/cache/apt/archives/systemtap-sdt-dev_1.6-1_all.deb (--unpack):
  trying to overwrite '/usr/include/sys/sdt.h', which is also in package 
 kfreebsd-kernel-headers 0.62

As systemtap-sdt-dev is a Linux-specific package, there's no point in
trying to make it installable on GNU/kFreeBSD, as it shouldn't be
available there in first place.

-- 
Robert Millan



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



Processed (with 1 errors): Re: Bug#656383: undeclared file conflict with systemtap-sdt-dev_1.6-1

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

 clone 656383 -1
Bug#656383: undeclared file conflict with systemtap-sdt-dev_1.6-1
Bug 656383 cloned as bug 656477.

 reassign -1 systemtap-sdt-dev
Bug #656477 [kfreebsd-kernel-headers] undeclared file conflict with 
systemtap-sdt-dev_1.6-1
Bug reassigned from package 'kfreebsd-kernel-headers' to 'systemtap-sdt-dev'.
Bug No longer marked as found in versions kfreebsd-kernel-headers/0.62.
 retitle -1 uninstallable on kfreebsd-* (should be Architecture: linux-any)
Bug #656477 [systemtap-sdt-dev] undeclared file conflict with 
systemtap-sdt-dev_1.6-1
Changed Bug title to 'uninstallable on kfreebsd-* (should be Architecture: 
linux-any)' from 'undeclared file conflict with systemtap-sdt-dev_1.6-1'
 severity -1 important
Bug #656477 [systemtap-sdt-dev] uninstallable on kfreebsd-* (should be 
Architecture: linux-any)
Severity set to 'important' from 'serious'

 reassign 656383 drizzle
Bug #656383 [kfreebsd-kernel-headers] undeclared file conflict with 
systemtap-sdt-dev_1.6-1
Bug reassigned from package 'kfreebsd-kernel-headers' to 'drizzle'.
Bug No longer marked as found in versions kfreebsd-kernel-headers/0.62.
 retitle 656383 FTBFS on kfreebsd-* (Build-Depends unconditionally on
Bug #656383 [drizzle] undeclared file conflict with systemtap-sdt-dev_1.6-1
Changed Bug title to 'FTBFS on kfreebsd-* (Build-Depends unconditionally on' 
from 'undeclared file conflict with systemtap-sdt-dev_1.6-1'
 linux-specific package)
Unknown command or malformed arguments to command.

 severity 656383 important
Bug #656383 [drizzle] FTBFS on kfreebsd-* (Build-Depends unconditionally on
Severity set to 'important' from 'serious'

 thanks
Stopping processing here.

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


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



Bug#656494: [xserver-xorg-core] All screen-lockers broken by a keypress (Ctrl+Alt+* (keypad))

2012-01-19 Thread Mario Palomo
Package: xserver-xorg-core
Version: 2:1.11.3.901-1
Severity: critical
Tags: security
X-Debbugs-CC: secure-testing-t...@lists.alioth.debian.org

It is possible to kill every screensaver/screen locker program
(gnome-screensaver, kscreenlocker, slock, slimlock...) on the latest
version of Xorg (1.11) using the Ctrl+Alt+Multiply key binding. It
didn't work for multiply from shift+plus (Spanish keyboard layout) but
the keypad's plus (involving Num lock) did bypass the password dialog.
I have tested it with kscreenlocker.

This behavior seems to have been introduced in a recent commit in Xorg upstream:
http://cgit.freedesktop.org/xorg/xserver/commit/?id=7d2543a3cb3089241982ce4f8984fd723d5312a1

(source: http://seclists.org/oss-sec/2012/q1/191)


--- System information. ---
Architecture: i386
Kernel: Linux 3.1.0-1-686-pae

Debian Release: wheezy/sid
500 unstable www.debian-multimedia.org
500 unstable http.us.debian.org
500 stable security.debian.org

--- Package information. ---
Depends (Version) | Installed
==-+-
xserver-common (= 2:1.11.3.901-1) | 2:1.11.3.901-1
keyboard-configuration | 1.75
udev (= 149) | 175-3
libaudit0 (= 1.7.13) | 1.7.18-1
libc6 (= 2.8) | 2.13-24
libdrm2 (= 2.3.1) | 2.4.30-1
libgcrypt11 (= 1.4.5) | 1.5.0-3
libpciaccess0 (= 0.10.7) | 0.12.902-1
libpixman-1-0 (= 0.21.6) | 0.24.0-1
libselinux1 (= 2.0.82) | 2.1.0-4
libudev0 (= 146) | 175-3
libxau6 | 1:1.0.6-4
libxdmcp6 | 1:1.1.0-4
libxfont1 (= 1:1.4.2) | 1:1.4.4-1


Recommends (Version) | Installed
=-+-==
libgl1-mesa-dri (= 7.10.2-4) | 7.11.2-1


Suggests (Version) | Installed
==-+-===
xfonts-100dpi | 1:1.0.3
OR xfonts-75dpi | 1:1.0.3
xfonts-scalable | 1:1.0.3-1



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



Bug#656494: marked as done ([xserver-xorg-core] All screen-lockers broken by a keypress (Ctrl+Alt+* (keypad)))

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 18:32:53 +0100
with message-id 20120119173253.gb25...@mraw.org
and subject line Re: Bug#656494: [xserver-xorg-core] All screen-lockers broken 
by a keypress (Ctrl+Alt+* (keypad))
has caused the Debian Bug report #656494,
regarding [xserver-xorg-core] All screen-lockers broken by a keypress 
(Ctrl+Alt+* (keypad))
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
656494: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656494
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg-core
Version: 2:1.11.3.901-1
Severity: critical
Tags: security
X-Debbugs-CC: secure-testing-t...@lists.alioth.debian.org

It is possible to kill every screensaver/screen locker program
(gnome-screensaver, kscreenlocker, slock, slimlock...) on the latest
version of Xorg (1.11) using the Ctrl+Alt+Multiply key binding. It
didn't work for multiply from shift+plus (Spanish keyboard layout) but
the keypad's plus (involving Num lock) did bypass the password dialog.
I have tested it with kscreenlocker.

This behavior seems to have been introduced in a recent commit in Xorg upstream:
http://cgit.freedesktop.org/xorg/xserver/commit/?id=7d2543a3cb3089241982ce4f8984fd723d5312a1

(source: http://seclists.org/oss-sec/2012/q1/191)


--- System information. ---
Architecture: i386
Kernel: Linux 3.1.0-1-686-pae

Debian Release: wheezy/sid
500 unstable www.debian-multimedia.org
500 unstable http.us.debian.org
500 stable security.debian.org

--- Package information. ---
Depends (Version) | Installed
==-+-
xserver-common (= 2:1.11.3.901-1) | 2:1.11.3.901-1
keyboard-configuration | 1.75
udev (= 149) | 175-3
libaudit0 (= 1.7.13) | 1.7.18-1
libc6 (= 2.8) | 2.13-24
libdrm2 (= 2.3.1) | 2.4.30-1
libgcrypt11 (= 1.4.5) | 1.5.0-3
libpciaccess0 (= 0.10.7) | 0.12.902-1
libpixman-1-0 (= 0.21.6) | 0.24.0-1
libselinux1 (= 2.0.82) | 2.1.0-4
libudev0 (= 146) | 175-3
libxau6 | 1:1.0.6-4
libxdmcp6 | 1:1.1.0-4
libxfont1 (= 1:1.4.2) | 1:1.4.4-1


Recommends (Version) | Installed
=-+-==
libgl1-mesa-dri (= 7.10.2-4) | 7.11.2-1


Suggests (Version) | Installed
==-+-===
xfonts-100dpi | 1:1.0.3
OR xfonts-75dpi | 1:1.0.3
xfonts-scalable | 1:1.0.3-1


---End Message---
---BeginMessage---
Hi Mario.

Mario Palomo mario...@gmail.com (19/01/2012):
 It is possible to kill every screensaver/screen locker program
 (gnome-screensaver, kscreenlocker, slock, slimlock...) on the latest
 version of Xorg (1.11) using the Ctrl+Alt+Multiply key binding. It
 didn't work for multiply from shift+plus (Spanish keyboard layout) but
 the keypad's plus (involving Num lock) did bypass the password dialog.
 I have tested it with kscreenlocker.

Fixed already: #656429

 This behavior seems to have been introduced in a recent commit in Xorg
 upstream:
 http://cgit.freedesktop.org/xorg/xserver/commit/?id=7d2543a3cb3089241982ce4f8984fd723d5312a1

(FSVO “recent”…)

Mraw,
KiBi.


signature.asc
Description: Digital signature
---End Message---


Bug#648384: marked as done (buildbot: FTBFS due to missing build-dependency on python-twisted-words)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 17:32:15 +
with message-id e1rnvqr-0006c9...@franck.debian.org
and subject line Bug#648384: fixed in buildbot 0.8.5-1.1
has caused the Debian Bug report #648384,
regarding buildbot: FTBFS due to missing build-dependency on 
python-twisted-words
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
648384: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648384
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: buildbot
Version: 0.8.5-1
Severity: important
Tags: patch

Just fixed the FTBFS in Ubuntu Precise with the following patch.


*** buildbot_0.8.5-1ubuntu1.debdiff
diff -Nru buildbot-0.8.5/debian/control buildbot-0.8.5/debian/control
--- buildbot-0.8.5/debian/control   2011-10-22 18:07:25.0 -0400
+++ buildbot-0.8.5/debian/control   2011-11-10 17:09:15.0 -0500
@@ -1,9 +1,9 @@
 Source: buildbot
 Section: devel
 Priority: optional
 Maintainer: Matthias Klose d...@debian.org
 Uploaders: Andriy Senkovych jolly_ro...@itblog.org.ua
-Build-Depends: debhelper (= 7.0.50~), python-all (= 2.6.6-3), 
python-twisted-core (= 2.0), python-twisted-web, python-twisted-mail, 
python-jinja2 (= 2.1), python-mock, texinfo, python-sqlalchemy, python-migrate
+Build-Depends: debhelper (= 7.0.50~), python-all (= 2.6.6-3), 
python-twisted-core (= 2.0), python-twisted-web, python-twisted-mail, 
python-jinja2 (= 2.1), python-mock, texinfo, python-sqlalchemy, 
python-migrate, python-twisted-words
 Homepage: http://buildbot.net
 Standards-Version: 3.9.2
 X-Python-Version: = 2.5


-- System Information:
Debian Release: wheezy/sid
  APT prefers oneiric-updates
  APT policy: (500, 'oneiric-updates'), (500, 'oneiric-security'), (500, 
'oneiric-proposed'), (500, 'oneiric')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-12-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


---End Message---
---BeginMessage---
Source: buildbot
Source-Version: 0.8.5-1.1

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

buildbot_0.8.5-1.1.debian.tar.gz
  to main/b/buildbot/buildbot_0.8.5-1.1.debian.tar.gz
buildbot_0.8.5-1.1.dsc
  to main/b/buildbot/buildbot_0.8.5-1.1.dsc
buildbot_0.8.5-1.1_all.deb
  to main/b/buildbot/buildbot_0.8.5-1.1_all.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 648...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
gregor herrmann gre...@debian.org (supplier of updated buildbot package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Jan 2012 17:53:00 +0100
Source: buildbot
Binary: buildbot
Architecture: source all
Version: 0.8.5-1.1
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 buildbot   - system to automate the compile/test cycle
Closes: 648384
Changes: 
 buildbot (0.8.5-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix FTBFS due to missing build-dependency on python-twisted-words:
 add python-twisted-words to Build-Depends (thanks to Ubuntu / Daniel T
 Chen for the bug report and the fix). (Closes: #648384)
Checksums-Sha1: 
 ba8abc647cfb54c897d05af462001cbf6cc90e70 1961 buildbot_0.8.5-1.1.dsc
 cd6cd0299a6a626696c6f5f0276481a3abedeb5b 7351 buildbot_0.8.5-1.1.debian.tar.gz
 ad03c845e57e8183e129be2e497b6ff15edc7af5 656576 buildbot_0.8.5-1.1_all.deb
Checksums-Sha256: 
 2aa087beb9bf39e0c99d1957386b9d8d15adb625d389bc460f61cc2f59878dee 1961 
buildbot_0.8.5-1.1.dsc
 4e936141475e8dbba57d175c7c0119646f84f2b52bd4b90cca38eac8ea3509c6 7351 
buildbot_0.8.5-1.1.debian.tar.gz
 0b4269f01bbcc4340390c322e74b42ff6e308ee441f8a0e848f54dcf954030f9 656576 
buildbot_0.8.5-1.1_all.deb
Files: 
 be231c67d3aab0d944bef8c277c54eff 1961 devel optional buildbot_0.8.5-1.1.dsc
 cf3763b800c30f3434fa8b2f0843de0c 7351 devel optional 
buildbot_0.8.5-1.1.debian.tar.gz
 58e6a40d6851031363e50fae2db3a5d2 656576 devel optional 
buildbot_0.8.5-1.1_all.deb

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


Bug#656359: [Pkg-fonts-devel] Bug#656359: Bug#656359: [Fontforge-devel] Segfault when pressing modifier/arrow keys if more than 4 points are selected

2012-01-19 Thread Daniel Kahn Gillmor
tags 656359 + patch
thanks

On 01/19/2012 07:39 AM, Theppitak Karoonboonyanan wrote:
 On Thu, Jan 19, 2012 at 5:30 PM, Paul Flo Williams p...@frixxon.co.uk wrote:
 
 See if this one line patch is relevant, as it sounds familiar. This was
 applied back in March.

 http://fontforge.git.sourceforge.net/git/gitweb.cgi?p=fontforge/fontforge;a=blobdiff;f=fontforge/charview.c;h=5e529185424e1dad2f66a1c29c6ceb706e1a315b;hp=ce84acec1dd9492954cc63e921d0f43aba691358;hb=38744f1f74ac88b1012585b9b1a6eb94818cc783;hpb=f17fa77717a1f19bb95eb9bc8c56be3c2c8ae95f
 
 Yes, it does fix the crash in my box. Thank you!
 So, let's apply it to the debian package.

agreed, it also fixes the bug for me. i don't apparently have access to
scm_pkg-fonts on svn.debian.org; maybe someone else can apply the
attached patch?

thanks,

--dkg
commit fb91b231818fd320a2b662abf7236c0fbd8773bd
Author: Daniel Kahn Gillmor d...@fifthhorseman.net
Date:   Thu Jan 19 12:22:59 2012 -0500

fix #656443

diff --git a/debian/changelog b/debian/changelog
index af95d37..c6d63c9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,11 @@ fontforge (0.0.20110222-7) unstable; urgency=low
 
   * Build using dh_python2. Patch from Ubuntu.
 
+  [ Daniel Kahn Gillmor ]
+  * Fix memory corruption when moving spline points via upstream patch by
+Paul Flo Williams
+Closes: #656443
+  
  -- Christian Perrier bubu...@debian.org  Sun, 08 Jan 2012 13:44:41 +0100
 
 fontforge (0.0.20110222-6) unstable; urgency=low
diff --git a/debian/patches/905_fix_selection_crashes.diff b/debian/patches/905_fix_selection_crashes.diff
new file mode 100644
index 000..cb3c9e4
--- /dev/null
+++ b/debian/patches/905_fix_selection_crashes.diff
@@ -0,0 +1,24 @@
+Description: Fix crashes during selection and moving of keys
+Author: Paul Flo Willians
+Forwarded: yes
+Bug: http://bugs.debian.org/656443
+
+From 38744f1f74ac88b1012585b9b1a6eb94818cc783 Mon Sep 17 00:00:00 2001
+From: George Williams pfae...@users.sourceforge.net
+Date: Mon, 14 Mar 2011 14:17:22 -0700
+Subject: [PATCH] Patch by Paul Flo Williams.
+ The charview hint routines used a routine which could try to store 5 points in an array that only held 4. The resultant memory corruption could cause crashes.
+
+diff --git a/fontforge/charview.c b/fontforge/charview.c
+index ce84ace..5e52918 100644
+--- a/fontforge/charview.c
 b/fontforge/charview.c
+@@ -8659,7 +8659,7 @@ static void CVMenuClearHints(GWindow gw,struct gmenuitem *mi,GEvent *e) {
+ static int CVNumForePointsSelected(CharView *cv, BasePoint **bp) {
+ SplineSet *spl;
+ SplinePoint *test, *first;
+-BasePoint *bps[4];
++BasePoint *bps[5];
+ int i, cnt;
+ 
+ if ( cv-b.drawmode!=dm_fore )
diff --git a/debian/patches/series b/debian/patches/series
index f0c8cee..36b4c6f 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -7,3 +7,4 @@
 900_debian_HelpDir_path.diff
 901_ld_as_needed.diff
 902_fix_optipng_reads.diff
+905_fix_selection_crashes.diff


signature.asc
Description: OpenPGP digital signature


Processed: Re: [Pkg-fonts-devel] Bug#656359: Bug#656359: [Fontforge-devel] Segfault when pressing modifier/arrow keys if more than 4 points are selected

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

 tags 656359 + patch
Bug #656359 [fontforge] fontforge: Segfault when pressing modifier/arrow keys 
if more than 4 points are selected
Added tag(s) patch.
 thanks
Stopping processing here.

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


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



Bug#617710: (no subject)

2012-01-19 Thread Maximiliano Curia
cont...@bugs.debian.org
Cc: 
Bcc: 
Subject: Change missing
Reply-To: 

fixed 617710 3.102-0.1
thank

Hi,

I've uploaded a new upstream release of xawtv (version 3.102), the new
upstream release doesn't ship a configure script so it depends on autoconf.
Which I think covers the bug you were fixing.

Sadly, I was working on it before your upload and forgot to update the
changelog with your changes.

Thanks,
-- 
If you can't write it down in English, you can't code it. -- Peter Halpern
Saludos /\/\ /\  `/


signature.asc
Description: Digital signature


Processed: Change missing

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

 fixed 617710 3.102-0.1
Bug #617710 {Done: Julien Cristau jcris...@debian.org} [src:xawtv] xawtv: 
randomly FTBFS: autoconf: not found
Bug Marked as fixed in versions xawtv/3.102-0.1.
 thank
Stopping processing here.

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


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



Bug#656500: xkb-data: XF86_Ungrab and XF86_ClearGrab security hole upstream

2012-01-19 Thread Mark Nipper
Package: xkb-data
Version: 2.3-2
Severity: grave
Tags: security upstream
Justification: user security hole

As originally reported at:
---
http://gu1.aeroxteam.fr/2012/01/19/bypass-screensaver-locker-program-xorg-111-and-up/

and further syndicated by:
---
http://www.phoronix.com/scan.php?page=news_itempx=MTA0NTA

the currently shipping version of this package contains a rather glaring
security hole with regards to locking screen savers under X.

Fix seems to be commenting any references to XF86_Ungrab and
XF86_ClearGrab, at least for the time being.  I'm not sure what the long
term fix will be (reintroducing previously removed functionality
possibly).

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

Kernel: Linux 3.1.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 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



Processed: fix typo

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

 severity 656441 serious
Bug #656441 [binutils] binutils FTBFS on armel, powerpc, s390 and s390x buildds
Severity set to 'serious' from 'normal'

 thanks
Stopping processing here.

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


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



Bug#652302: marked as done (python-rhash: cannot be imported)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 18:48:02 +
with message-id e1rnx1m-0003yc...@franck.debian.org
and subject line Bug#652302: fixed in rhash 1.2.8-3
has caused the Debian Bug report #652302,
regarding python-rhash: cannot be imported
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

Package: python-rhash
Version: 1.2.8-2
Severity: grave
Justification: renders package unusable

$ python -c 'import rhash'
Traceback (most recent call last):
  File string, line 1, in module
ImportError: No module named rhash

--
Jakub Wilk


---End Message---
---BeginMessage---
Source: rhash
Source-Version: 1.2.8-3

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

librhash-dev_1.2.8-3_amd64.deb
  to main/r/rhash/librhash-dev_1.2.8-3_amd64.deb
librhash-java-doc_1.2.8-3_all.deb
  to main/r/rhash/librhash-java-doc_1.2.8-3_all.deb
librhash-java_1.2.8-3_amd64.deb
  to main/r/rhash/librhash-java_1.2.8-3_amd64.deb
librhash-perl_1.2.8-3_amd64.deb
  to main/r/rhash/librhash-perl_1.2.8-3_amd64.deb
librhash-ruby1.8_1.2.8-3_amd64.deb
  to main/r/rhash/librhash-ruby1.8_1.2.8-3_amd64.deb
librhash-ruby_1.2.8-3_all.deb
  to main/r/rhash/librhash-ruby_1.2.8-3_all.deb
librhash0-dbg_1.2.8-3_amd64.deb
  to main/r/rhash/librhash0-dbg_1.2.8-3_amd64.deb
librhash0_1.2.8-3_amd64.deb
  to main/r/rhash/librhash0_1.2.8-3_amd64.deb
python-rhash_1.2.8-3_all.deb
  to main/r/rhash/python-rhash_1.2.8-3_all.deb
rhash_1.2.8-3.debian.tar.gz
  to main/r/rhash/rhash_1.2.8-3.debian.tar.gz
rhash_1.2.8-3.dsc
  to main/r/rhash/rhash_1.2.8-3.dsc
rhash_1.2.8-3_amd64.deb
  to main/r/rhash/rhash_1.2.8-3_amd64.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 652...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aleksey Kravchenko rhash.ad...@gmail.com (supplier of updated rhash package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 18 Jan 2012 22:51:54 +0700
Source: rhash
Binary: rhash librhash0 librhash-dev librhash0-dbg python-rhash librhash-java 
librhash-java-doc librhash-perl librhash-ruby librhash-ruby1.8
Architecture: source amd64 all
Version: 1.2.8-3
Distribution: unstable
Urgency: low
Maintainer: Aleksey Kravchenko rhash.ad...@gmail.com
Changed-By: Aleksey Kravchenko rhash.ad...@gmail.com
Description: 
 librhash-dev - header files of librhash and static library
 librhash-java - Java interface for LibRHash hash sums calculation library
 librhash-java-doc - documentation for librhash Java bindings
 librhash-perl - Perl interface for LibRHash hash sums calculation library
 librhash-ruby - Ruby interface for LibRHash hash sums calculation library
 librhash-ruby1.8 - Ruby 1.8 interface for LibRHash hash sums calculation 
library
 librhash0  - shared library for hash functions computing
 librhash0-dbg - debugging symbols for librhash
 python-rhash - Python interface for LibRHash hash sums calculation library
 rhash  - utility for computing hash sums and magnet links
Closes: 652302 654180
Changes: 
 rhash (1.2.8-3) unstable; urgency=low
 .
   * fixed loading of the RHash python module (Closes: 652302)
   * fixed librhash-java compilation on Ubuntu (Closes: 654180)
   * updated debian/copyright
Checksums-Sha1: 
 514ea69baec7a928174016b382a8ec99c24b4b05 1690 rhash_1.2.8-3.dsc
 3deb447601a0102ab2fcfb3a4a8a62ae7b508a61 7060 rhash_1.2.8-3.debian.tar.gz
 ee416fe4dcc06540a3f7d6380dc4dc3a5674fca6 122834 rhash_1.2.8-3_amd64.deb
 15be159ba5917f4be8dd5c54c15bdef0afb4146c 87216 librhash0_1.2.8-3_amd64.deb
 cd47eb4574dc1dc5405e5e75d8200201672f6f57 98978 librhash-dev_1.2.8-3_amd64.deb
 9c54fde07e145efe24b35aae6babb0528d661bb5 12974 librhash0-dbg_1.2.8-3_amd64.deb
 bc05c1443a724c25016757ea4bd925b2f4377f77 0 python-rhash_1.2.8-3_all.deb
 1415fe872494bcd884821b233e74198e121d9094 17970 librhash-java_1.2.8-3_amd64.deb
 56414b4c717c7c557f822870c90bd290fcf4e61e 25162 
librhash-java-doc_1.2.8-3_all.deb
 6a7ed7f4bc2fadfec1efac3b522a872e94916923 27718 librhash-perl_1.2.8-3_amd64.deb
 fb4597ee5d88a35c744b3c5fdcdc8a90b2b3e32d 8752 

Bug#656213: Oh no you don't

2012-01-19 Thread Darren Salt
notfound 656213 xine-ui/0.99.6-1.1
affects 656213 + xine-ui
clone 656213 -1
reassign -1 libxine2-bin
thanks

This is NOT a bug in xine-ui.

I've already correctly re-assigned this and marked it as affecting two other
packages (gxine and xine-ui), but it is not limited to those two packages
(see below).

I've also fixed the bug in upstream xine-lib hg. This fix will find its way
into Debian either via new upstream releases or new Debian revisions, if I
choose to backport the patch instead.

There is NOTHING to be fixed, or at least not worthwhile fixing, regarding
this bug, elsewhere: fixing it in xine-lib fixes it elsewhere.

If you're going to re-assign or mark it as found elsewhere again, DON'T –
it'd be much more useful, not to mention correct, to mark it as affecting any
package which uses xine-list-1.1 (or xine-list-1.2, if in experimental).

-- 
|  _  | Darren Salt, using Debian GNU/Linux (and Android)
| ( ) |
|  X  | ASCII Ribbon campaign against HTML e-mail
| / \ | http://www.asciiribbon.org/

Internal error: abort on caffeine fetch at 00C0FFEE



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



Bug#656500: xkb-data: XF86_Ungrab and XF86_ClearGrab security hole upstream

2012-01-19 Thread Cyril Brulebois
severity 656500 important
thanks

Mark Nipper ni...@bitgnome.net (19/01/2012):
 http://gu1.aeroxteam.fr/2012/01/19/bypass-screensaver-locker-program-xorg-111-and-up/
 
 and further syndicated by:
 ---
 http://www.phoronix.com/scan.php?page=news_itempx=MTA0NTA
 
 the currently shipping version of this package contains a rather glaring
 security hole with regards to locking screen savers under X.
 
   Fix seems to be commenting any references to XF86_Ungrab and
 XF86_ClearGrab, at least for the time being.  I'm not sure what the long
 term fix will be (reintroducing previously removed functionality
 possibly).

Downgrading severity per:
  http://packages.qa.debian.org/x/xorg-server/news/20120119T101901Z.html

As for the upstream fixes:
  http://lists.x.org/archives/xorg-devel/2012-January/028691.html
  http://lists.x.org/archives/xorg-devel/2012-January/028693.html

Mraw,
KiBi.


signature.asc
Description: Digital signature


Processed: Re: Bug#656500: xkb-data: XF86_Ungrab and XF86_ClearGrab security hole upstream

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

 severity 656500 important
Bug #656500 [xkb-data] xkb-data: XF86_Ungrab and XF86_ClearGrab security hole 
upstream
Severity set to 'important' from 'grave'

 thanks
Stopping processing here.

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


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



Processed: Oh no you don't

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

 notfound 656213 xine-ui/0.99.6-1.1
Bug #656213 [libxine1-bin] xine-ui: unowned files after purge (policy 6.8) 
violating FHS (policy 9.1) too
Bug No longer marked as found in versions xine-ui/0.99.6-1.1.
 affects 656213 + xine-ui
Bug #656213 [libxine1-bin] xine-ui: unowned files after purge (policy 6.8) 
violating FHS (policy 9.1) too
Ignoring request to set affects of bug 656213 to the same value previously set

 clone 656213 -1
Bug#656213: xine-ui: unowned files after purge (policy 6.8) violating FHS 
(policy 9.1) too
Bug 656213 cloned as bug 656501.

 reassign -1 libxine2-bin
Bug #656501 [libxine1-bin] xine-ui: unowned files after purge (policy 6.8) 
violating FHS (policy 9.1) too
Bug reassigned from package 'libxine1-bin' to 'libxine2-bin'.
Bug No longer marked as found in versions xine-lib/1.1.20.1-1.
 thanks
Stopping processing here.

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


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



Bug#647598: marked as done (bind9: installation fails: chgrp: cannot access `/var/run/named': No such file or directory)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 19:02:40 +
with message-id e1rnxfw-0005wq...@franck.debian.org
and subject line Bug#647598: fixed in bind9 1:9.8.1.dfsg.P1-1
has caused the Debian Bug report #647598,
regarding bind9: installation fails: chgrp: cannot access `/var/run/named': No 
such file or directory
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
647598: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=647598
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: bind9
Version: 1:9.8.1.dfsg-1
Severity: grave
Justification: renders package unusable


Clean sid chroot as of today, running apt-get install bind9:

| Setting up bind9 (1:9.8.1.dfsg-1) ...
| Adding group `bind' (GID 103) ...
| Done.
| Adding system user `bind' (UID 101) ...
| Adding new user `bind' (UID 101) with group `bind' ...
| Not creating home directory `/var/cache/bind'.
| wrote key file /etc/bind/rndc.key
| NOT updating named.conf.options to include DNSSEC enablement
| #
| chgrp: cannot access `/var/run/named': No such file or directory
| dpkg: error processing bind9 (--configure):
|  subprocess installed post-installation script returned error exit status 1

regards,
-mika-


---End Message---
---BeginMessage---
Source: bind9
Source-Version: 1:9.8.1.dfsg.P1-1

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

bind9-doc_9.8.1.dfsg.P1-1_all.deb
  to main/b/bind9/bind9-doc_9.8.1.dfsg.P1-1_all.deb
bind9-host_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/bind9-host_9.8.1.dfsg.P1-1_amd64.deb
bind9-host_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/bind9-host_9.8.1.dfsg.P1-1_i386.deb
bind9_9.8.1.dfsg.P1-1.diff.gz
  to main/b/bind9/bind9_9.8.1.dfsg.P1-1.diff.gz
bind9_9.8.1.dfsg.P1-1.dsc
  to main/b/bind9/bind9_9.8.1.dfsg.P1-1.dsc
bind9_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/bind9_9.8.1.dfsg.P1-1_amd64.deb
bind9_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/bind9_9.8.1.dfsg.P1-1_i386.deb
bind9_9.8.1.dfsg.P1.orig.tar.gz
  to main/b/bind9/bind9_9.8.1.dfsg.P1.orig.tar.gz
bind9utils_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/bind9utils_9.8.1.dfsg.P1-1_amd64.deb
bind9utils_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/bind9utils_9.8.1.dfsg.P1-1_i386.deb
dnsutils_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/dnsutils_9.8.1.dfsg.P1-1_amd64.deb
dnsutils_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/dnsutils_9.8.1.dfsg.P1-1_i386.deb
host_9.8.1.dfsg.P1-1_all.deb
  to main/b/bind9/host_9.8.1.dfsg.P1-1_all.deb
libbind-dev_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/libbind-dev_9.8.1.dfsg.P1-1_amd64.deb
libbind-dev_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/libbind-dev_9.8.1.dfsg.P1-1_i386.deb
libbind9-80_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/libbind9-80_9.8.1.dfsg.P1-1_amd64.deb
libbind9-80_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/libbind9-80_9.8.1.dfsg.P1-1_i386.deb
libdns81_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/libdns81_9.8.1.dfsg.P1-1_amd64.deb
libdns81_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/libdns81_9.8.1.dfsg.P1-1_i386.deb
libisc83_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/libisc83_9.8.1.dfsg.P1-1_amd64.deb
libisc83_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/libisc83_9.8.1.dfsg.P1-1_i386.deb
libisccc80_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/libisccc80_9.8.1.dfsg.P1-1_amd64.deb
libisccc80_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/libisccc80_9.8.1.dfsg.P1-1_i386.deb
libisccfg82_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/libisccfg82_9.8.1.dfsg.P1-1_amd64.deb
libisccfg82_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/libisccfg82_9.8.1.dfsg.P1-1_i386.deb
liblwres80_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/liblwres80_9.8.1.dfsg.P1-1_amd64.deb
liblwres80_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/liblwres80_9.8.1.dfsg.P1-1_i386.deb
lwresd_9.8.1.dfsg.P1-1_amd64.deb
  to main/b/bind9/lwresd_9.8.1.dfsg.P1-1_amd64.deb
lwresd_9.8.1.dfsg.P1-1_i386.deb
  to main/b/bind9/lwresd_9.8.1.dfsg.P1-1_i386.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 647...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
LaMont Jones lam...@debian.org (supplier of updated bind9 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 

Bug#656502: blender: [FTBFS] Does not build with libav 0.8~beta2

2012-01-19 Thread Thomas Preud'homme
Source: blender
Version: 6.3.1
Severity: serious
Tags: patch upstream
Justification: Fails to build from source

In addition to #654428, blender also fails to build from source because
of API changes in libav 0.9~beta2. Attached is a patch which fix all (3)
the issues I found until #654428 build failure.

Note the change related to avformat_alloc_output_context2 in
ffmpeg_compat.h header. Blender is likely to need the same kind of
change when a future version of libav will be uploaded to Debian.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: armhf (armv7l)

Kernel: Linux 2.6.38-ac2-ac100 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Description: Adapt to libavutil API changes
 Add include for libavutil/mathematics.h in ffmpeg_compat.h and writeffmpeg.c
 since it is no longer included in libavutil/avutil.h
Author: Thomas Preud'homme robo...@celest.fr
Origin: vendor
Forwarded: no
Last-Update: 2012-01-19
---

--- blender-2.61.orig/intern/ffmpeg/ffmpeg_compat.h
+++ blender-2.61/intern/ffmpeg/ffmpeg_compat.h
@@ -35,6 +35,7 @@
 
 #include libavcodec/avcodec.h
 #include libavutil/rational.h
+#include libavutil/mathematics.h
 
 #if (LIBAVFORMAT_VERSION_MAJOR  52) || ((LIBAVFORMAT_VERSION_MAJOR = 52)  (LIBAVFORMAT_VERSION_MINOR = 101))
 #define FFMPEG_HAVE_PARSE_UTILS 1

--- blender-2.61.orig/source/blender/blenkernel/intern/writeffmpeg.c
+++ blender-2.61/source/blender/blenkernel/intern/writeffmpeg.c
@@ -36,6 +36,7 @@
 #include libavformat/avformat.h
 #include libavcodec/avcodec.h
 #include libavutil/rational.h
+#include libavutil/mathematics.h
 #include libswscale/swscale.h
 #include libavcodec/opt.h
 
From 63b4c577c951245904fd59ac8c6021bab18b0de4 Mon Sep 17 00:00:00 2001
From: Antonio Ospite osp...@studenti.unina.it
Date: Sat, 17 Dec 2011 15:45:16 +0100
Subject: [PATCH] Make blender compile with FFmpeg from Debian.
X-Face: z*RaLf`X@C75u6Ig9}{oW$H;1_\2t5)({*|jhMpyWR#k60!#=#/Vb;]yA5GWI5`6u+
 ;6b'@y|8wwB;4/e!7wYYrcqdJFY,~%Gk_4]cq$Ei/7jN3ah(m`ku?pX.+~:_/wC~dwn^)MizBG
 !pE^+iDQQ1yC6^,)YDKkxDd!T\I~93J_`4)A{':UrE

avformat_alloc_output_context2() should be in the libavformat 53.2.0 but
it isn't in Debian, re-define it.

Signed-off-by: Antonio Ospite osp...@studenti.unina.it
---
 intern/ffmpeg/ffmpeg_compat.h |   61 +
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/intern/ffmpeg/ffmpeg_compat.h b/intern/ffmpeg/ffmpeg_compat.h
index dfdad22..5259f69 100644
--- a/intern/ffmpeg/ffmpeg_compat.h
+++ b/intern/ffmpeg/ffmpeg_compat.h
@@ -48,6 +48,67 @@
 #define FFMPEG_HAVE_AVIO 1
 #endif
 
+#if (LIBAVFORMAT_VERSION_MAJOR  53) || ((LIBAVFORMAT_VERSION_MAJOR == 53)  (LIBAVFORMAT_VERSION_MINOR  21))
+/* XXX The last check above should be (LIBAVFORMAT_VERSION_MINOR  2),
+ * look at http://patches.libav.org/patch// but ffmpeg in Debian is
+ * strange: 53.2.0 should have avformat_alloc_output_context2() but it does
+ * not.
+ */
+#include libavutil/avstring.h
+static int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat,
+   const char *format, const char *filename)
+{
+AVFormatContext *s = avformat_alloc_context();
+int ret = 0;
+
+*avctx = NULL;
+if (!s)
+goto nomem;
+
+if (!oformat) {
+if (format) {
+oformat = av_guess_format(format, NULL, NULL);
+if (!oformat) {
+av_log(s, AV_LOG_ERROR, Requested output format '%s' is not a suitable output format\n, format);
+ret = AVERROR(EINVAL);
+goto error;
+}
+} else {
+oformat = av_guess_format(NULL, filename, NULL);
+if (!oformat) {
+ret = AVERROR(EINVAL);
+av_log(s, AV_LOG_ERROR, Unable to find a suitable output format for '%s'\n,
+   filename);
+goto error;
+}
+}
+}
+
+s-oformat = oformat;
+if (s-oformat-priv_data_size  0) {
+s-priv_data = av_mallocz(s-oformat-priv_data_size);
+if (!s-priv_data)
+goto nomem;
+if (s-oformat-priv_class) {
+*(const AVClass**)s-priv_data= s-oformat-priv_class;
+av_opt_set_defaults(s-priv_data);
+}
+} else
+s-priv_data = NULL;
+
+if (filename)
+av_strlcpy(s-filename, filename, sizeof(s-filename));
+*avctx = s;
+return 0;
+nomem:
+av_log(s, AV_LOG_ERROR, Out of memory\n);
+ret = AVERROR(ENOMEM);
+error:
+avformat_free_context(s);
+return ret;
+}
+#endif
+
 #if (LIBAVCODEC_VERSION_MAJOR  53) || ((LIBAVCODEC_VERSION_MAJOR == 53)  (LIBAVCODEC_VERSION_MINOR  1)) || ((LIBAVCODEC_VERSION_MAJOR == 53)  (LIBAVCODEC_VERSION_MINOR == 1)  (LIBAVCODEC_VERSION_MICRO = 1)) || ((LIBAVCODEC_VERSION_MAJOR == 52)  (LIBAVCODEC_VERSION_MINOR = 121))
 

Bug#656359: [Fontforge-devel] [Pkg-fonts-devel] Bug#656359: Segfault when pressing modifier/arrow keys if more than 4 points are selected

2012-01-19 Thread Brian Zick
Also, though this may not be totally relevant, if I get a segfault for any
reason, usually deleting my preferences file in my home directory fixes the
issue. Fofo would segfault on my Mac every time I pressed control in the
glyph window, and this fixed it...

Still, there has to be a problem somewhere in the code.

--
Brian M Zick
21326.info


On Thu, Jan 19, 2012 at 6:39 AM, Theppitak Karoonboonyanan 
t...@linux.thai.net wrote:

 On Thu, Jan 19, 2012 at 5:30 PM, Paul Flo Williams p...@frixxon.co.uk
 wrote:

  See if this one line patch is relevant, as it sounds familiar. This was
  applied back in March.
 
 
 http://fontforge.git.sourceforge.net/git/gitweb.cgi?p=fontforge/fontforge;a=blobdiff;f=fontforge/charview.c;h=5e529185424e1dad2f66a1c29c6ceb706e1a315b;hp=ce84acec1dd9492954cc63e921d0f43aba691358;hb=38744f1f74ac88b1012585b9b1a6eb94818cc783;hpb=f17fa77717a1f19bb95eb9bc8c56be3c2c8ae95f

 Yes, it does fix the crash in my box. Thank you!
 So, let's apply it to the debian package.

 Regards,
 --
 Theppitak Karoonboonyanan
 http://linux.thai.net/~thep/


 --
 Keep Your Developer Skills Current with LearnDevNow!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-d2d
 ___
 Fontforge-devel mailing list
 fontforge-de...@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/fontforge-devel



Bug#656505: taxbird: build-dependency on libgier-dev needs to be versioned

2012-01-19 Thread peter green

package: taxbird
version: 0.18-1
severity: serious
tags: patch

Taxbird failed to build on most buildds with the following error

checking for GEIER... no
configure: error: Package requirements (libgeier = 0.13 libxml-2.0) were not 
met:

Requested 'libgeier = 0.13' but version of libgeier is 0.12

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GEIER_CFLAGS
and GEIER_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
make: *** [config.status] Error 1

It seems that the problem is that configure is looking for libgier 0.13 but
your build-depends on libgier-dev is not versioned to match.

Please version your build-depends on libgier-dev correctly.



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



Processed: r4430 - packages/fontforge/trunk/debian

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

 tags 656359 pending
Bug #656359 [fontforge] fontforge: Segfault when pressing modifier/arrow keys 
if more than 4 points are selected
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#610933: libvdeplug3 declares a conflict with libvdeplug2

2012-01-19 Thread Jonathan Nieder
Ludovico Gardenghi wrote:

  I'm not sure there is a really
 clean way to deal with this without uselessly breaking backward
 compatibility. It seemed cleaner than keeping 3:1:0 and creating
 symlinks .so.2 - .so.3 or similar.

Makes sense.

 Uhm, ok. I started creating an unified copyright file but I noticed I
 was duplicating information by hand -- then I thought it would have been
 better to make without debian/copyright rather than to have to keep
 debian/copyright in sync with debian/*.copyright manually, with the
 potential inconsistencies this could generate. But if that's required I
 can do it.

Oh, that seems reasonable.  This seems to have been discussed recently
on the debian-policy list (search for I don't think there's much gain
in relaxing this):

 http://bugs.debian.org/556015#141
 http://bugs.debian.org/556015#224

If I understand correctly, it probably would not be too harmful to
allow the split-up style, but for simplicity policy doesn't allow it
currently.



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



Bug#656445: snort: fails to install - command not found in postinst

2012-01-19 Thread Javier Fernández-Sanguino Peña
On Thu, Jan 19, 2012 at 02:03:42PM +0100, Andreas Beckmann wrote:
 during a test with piuparts I noticed your package failed to install.
(...)
   Setting up snort (2.9.2-1) ...
   /var/lib/dpkg/info/snort.config: 15: /var/lib/dpkg/info/snort.config: 
 ifconfig: not found
   /var/lib/dpkg/info/snort.postinst: 163: /var/lib/dpkg/info/snort.postinst: 
 cannot create /var/lib/snort/snort.debian.conf.md5sum: Directory nonexistent
(...)

This is because of two issues:

 - the configuration script requires 'ifconfig'. I though that would be
   essential but it seems that now this belongs in the net-tools package
   which is important Priority only.
 - the directory where the md5sums does not get create properly and the
   postinst script fails.

I will fix both of these and upload a new package to unstable. Thanks for
reporting these issues.

Regards

Javier


signature.asc
Description: Digital signature


Processed: bug 655710 is forwarded to http://rt.cpan.org/Public/Bug/Display.html?id=74168

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

 forwarded 655710 http://rt.cpan.org/Public/Bug/Display.html?id=74168
Bug #655710 [src:libdevel-ebug-perl] libdevel-ebug-perl: Failing tests 
t/finished.t
Set Bug forwarded-to-address to 
'http://rt.cpan.org/Public/Bug/Display.html?id=74168'.
 thanks
Stopping processing here.

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


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



Bug#656294: marked as done (pyformex: FTBFS when only building -lib package)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 20:51:13 +
with message-id e1rnywz-gq...@franck.debian.org
and subject line Bug#656294: fixed in pyformex 0.8.6-4
has caused the Debian Bug report #656294,
regarding pyformex: FTBFS when only building -lib package
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
656294: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656294
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: pyformex
Version: 0.8.6-2
Severity: serious
Justification: fails to build from source

Builds of pyformex (as on the autobuilders) only covering its
architecture-dependent -lib package are failing:

  make[1]: Entering directory `/.../pyformex-0.8.6'
  dh_python2
  # Replace embedded Javascript libraries with symlinks
  set -e; for FILENAME in jquery underscore; do \
find debian/pyformex -name $FILENAME.js -print \
  -exec ln -sf /usr/share/javascript/$FILENAME/$FILENAME.js {} 
\; \
; done
  find: `debian/pyformex': No such file or directory
  make[1]: *** [override_dh_python2] Error 1
  make[1]: Leaving directory `/.../pyformex-0.8.6'
  make: *** [binary-arch] Error 2

Could you please conditionalize such commands on the existence of
debian/pyformex?

Thanks!


---End Message---
---BeginMessage---
Source: pyformex
Source-Version: 0.8.6-4

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

pyformex-lib_0.8.6-4_i386.deb
  to main/p/pyformex/pyformex-lib_0.8.6-4_i386.deb
pyformex_0.8.6-4.debian.tar.gz
  to main/p/pyformex/pyformex_0.8.6-4.debian.tar.gz
pyformex_0.8.6-4.dsc
  to main/p/pyformex/pyformex_0.8.6-4.dsc
pyformex_0.8.6-4_all.deb
  to main/p/pyformex/pyformex_0.8.6-4_all.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 656...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Benedict Verhegghe benedict.verheg...@ugent.be (supplier of updated pyformex 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 18 Jan 2012 16:41:52 +0100
Source: pyformex
Binary: pyformex pyformex-lib
Architecture: source all i386
Version: 0.8.6-4
Distribution: unstable
Urgency: low
Maintainer: Benedict Verhegghe benedict.verheg...@ugent.be
Changed-By: Benedict Verhegghe benedict.verheg...@ugent.be
Description: 
 pyformex   - program to create 3D geometry from Python scripts.
 pyformex-lib - program to create 3D geometry from Python scripts.
Closes: 656294
Changes: 
 pyformex (0.8.6-4) unstable; urgency=low
 .
   * Registered documentation with doc-base
 .
   * Made pyformex-lib depend on pyformex(=${source:Version})
 .
   * Restored corrupted changelog entries
 .
 pyformex (0.8.6-3) unstable; urgency=low
 .
   * Fixed building of architecture-dependent -lib package (Closes: #656294)
Checksums-Sha1: 
 06de91ae7d582c420070b26ace83c9a40e9a93bf 1394 pyformex_0.8.6-4.dsc
 1acc50b2daac21d8c11ea09a2da7fd58f4f38efa 3368 pyformex_0.8.6-4.debian.tar.gz
 53cb0f62955145c5987b6aedcae873cf2bdc5b0c 2404878 pyformex_0.8.6-4_all.deb
 329b690a6c7a8fc7af3f861c6c3731092fd5edc6 45658 pyformex-lib_0.8.6-4_i386.deb
Checksums-Sha256: 
 a035a4995957743499baf624ffce2ce067fdca0fcae89d0d8f747f198ad43ca4 1394 
pyformex_0.8.6-4.dsc
 efa61a8e1f1b4a48a72633e67d4a906c73986d6b732c0a567edf14dee715bec0 3368 
pyformex_0.8.6-4.debian.tar.gz
 dd8e96a75e7a16f0eefac2088d1f082bfa7636b7c9a83d3202605ebbb17a130a 2404878 
pyformex_0.8.6-4_all.deb
 d43cfdf6a13cd8f082fbf2c3e3a71c78c292909b9875036018194450af01c375 45658 
pyformex-lib_0.8.6-4_i386.deb
Files: 
 8a67f056b4ba5e6169bec6d7fac8b923 1394 science optional pyformex_0.8.6-4.dsc
 f8cc06279c92a6587dc42e7b0a32abf4 3368 science optional 
pyformex_0.8.6-4.debian.tar.gz
 6dd73d2c07b62dfe673ff827ecc611eb 2404878 science optional 
pyformex_0.8.6-4_all.deb
 b11195e23a061e496927cbb77181d567 45658 science optional 
pyformex-lib_0.8.6-4_i386.deb

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

iEYEARECAAYFAk8Yc+oACgkQ5UTeB5t8Mo0ZAgCcDF0LTwJ1fFhaPUxqnA5TpMwn
3tAAnin1tFqHdVDkzDAAi3yrYkWS3Cjk
=d/os
-END PGP SIGNATURE-


---End Message---


Bug#656445: marked as done (snort: fails to install - command not found in postinst)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jan 2012 21:18:55 +
with message-id e1rnznn-0003af...@franck.debian.org
and subject line Bug#656445: fixed in snort 2.9.2-2
has caused the Debian Bug report #656445,
regarding snort: fails to install - command not found in postinst
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
656445: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656445
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: snort
Version: 2.9.2-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package failed to install. As
per definition of the release team this makes the package too buggy for
a release, thus the severity.

From the attached log (scroll to the bottom...):

  Selecting previously unselected package snort.
  (Reading database ... 8644 files and directories currently installed.)
  Unpacking snort (from .../snort_2.9.2-1_amd64.deb) ...
  Setting up snort (2.9.2-1) ...
  /var/lib/dpkg/info/snort.config: 15: /var/lib/dpkg/info/snort.config: 
ifconfig: not found
  /var/lib/dpkg/info/snort.postinst: 163: /var/lib/dpkg/info/snort.postinst: 
cannot create /var/lib/snort/snort.debian.conf.md5sum: Directory nonexistent
  dpkg: error processing snort (--configure):
   subprocess installed post-installation script returned error exit status 2
  Errors were encountered while processing:
   snort


cheers,

Andreas


snort_2.9.2-1.log.gz
Description: GNU Zip compressed data
---End Message---
---BeginMessage---
Source: snort
Source-Version: 2.9.2-2

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

snort-common-libraries_2.9.2-2_i386.deb
  to main/s/snort/snort-common-libraries_2.9.2-2_i386.deb
snort-common_2.9.2-2_all.deb
  to main/s/snort/snort-common_2.9.2-2_all.deb
snort-doc_2.9.2-2_all.deb
  to main/s/snort/snort-doc_2.9.2-2_all.deb
snort-mysql_2.9.2-2_i386.deb
  to main/s/snort/snort-mysql_2.9.2-2_i386.deb
snort-pgsql_2.9.2-2_i386.deb
  to main/s/snort/snort-pgsql_2.9.2-2_i386.deb
snort-rules-default_2.9.2-2_all.deb
  to main/s/snort/snort-rules-default_2.9.2-2_all.deb
snort_2.9.2-2.debian.tar.gz
  to main/s/snort/snort_2.9.2-2.debian.tar.gz
snort_2.9.2-2.dsc
  to main/s/snort/snort_2.9.2-2.dsc
snort_2.9.2-2_i386.deb
  to main/s/snort/snort_2.9.2-2_i386.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 656...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Javier Fernandez-Sanguino Pen~a j...@debian.org (supplier of updated snort 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 19 Jan 2012 20:34:02 +0100
Source: snort
Binary: snort snort-common snort-doc snort-mysql snort-pgsql 
snort-rules-default snort-common-libraries
Architecture: source i386 all
Version: 2.9.2-2
Distribution: unstable
Urgency: low
Maintainer: Javier Fernandez-Sanguino Pen~a j...@debian.org
Changed-By: Javier Fernandez-Sanguino Pen~a j...@debian.org
Description: 
 snort  - flexible Network Intrusion Detection System
 snort-common - flexible Network Intrusion Detection System [common files]
 snort-common-libraries - flexible Network Intrusion Detection System ruleset
 snort-doc  - Documentation for the Snort IDS [documentation]
 snort-mysql - flexible Network Intrusion Detection System [MySQL]
 snort-pgsql - flexible Network Intrusion Detection System [PostgreSQL]
 snort-rules-default - flexible Network Intrusion Detection System ruleset
Closes: 656445
Changes: 
 snort (2.9.2-2) unstable; urgency=low
 .
   * debian/control:  Add net-tools to Depends: of snort, snort-mysql and
 snort-pgsql since 'ifconfig' is required for the configuration script
 to work. (Closes: #656445)
   * debian/snort{,-mysql,-psql}.postinst: Create the checksum directory if it
 does not exist right at the beginning since it might not be created.
 (Closes: #656445)
Checksums-Sha1: 
 92ace3d12557c99e9d9979d6073de3c3f6260aa2 1637 snort_2.9.2-2.dsc
 487aa60c622ec45beeeddc1a078db18f2edc24cd 1585904 snort_2.9.2-2.debian.tar.gz
 26027858efb788c419976905a38513006b8538da 852904 snort_2.9.2-2_i386.deb
 

Bug#655710: libdevel-ebug-perl: Failing tests t/finished.t

2012-01-19 Thread Florian Schlichting
Hi,

this may be related to changes between YAML 0.77 and 0.78, as indicated
by https://rt.perl.org/rt3//Public/Bug/Display.html?id=108294 -- I've
pinged the author about it, not sure if
https://rt.cpan.org/Public/Bug/Display.html?id=74020 is useful as an
upstream bug?

Florian



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



Bug#652700: [RFS] haildb NMU -- fixes 1 RC bug

2012-01-19 Thread Tobias Frost
Hallo Gregor

maybe you want to sponsor this upload to fix this issue?

http://mentors.debian.net/package/haildb
dget -x http://mentors.debian.net/debian/pool/main/h/haildb/haildb_2.3.2-1.1.dsc

coldtobi



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



Bug#652700:

2012-01-19 Thread Tobias Frost
Hallo,

I can reproduce the error with pdebuild on i386.

Adding libcloog-ppl-dev to Build-Depends helps.

coldtobi




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



Bug#656494: Please use CVE-2012-0064 for this issue.

2012-01-19 Thread Kurt Seifried
Please use CVE-2012-0064 for this issue.

http://www.openwall.com/lists/oss-security/2012/01/19/6


-- -- Kurt Seifried / Red Hat Security Response Team




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



Bug#655710: libdevel-ebug-perl: Failing tests t/finished.t

2012-01-19 Thread gregor herrmann
forwarded 655710 https://rt.cpan.org/Public/Bug/Display.html?id=74020
thanks

On Thu, 19 Jan 2012 22:00:00 +0100, Florian Schlichting wrote:

 this may be related to changes between YAML 0.77 and 0.78, as indicated
 by https://rt.perl.org/rt3//Public/Bug/Display.html?id=108294 -- I've
 pinged the author about it, not sure if
 https://rt.cpan.org/Public/Bug/Display.html?id=74020 is useful as an
 upstream bug?

Better than nothing, and we can always change/nuke it :)

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Schmetterlinge: Hitlers Blue


signature.asc
Description: Digital signature


Processed: Re: Bug#655710: libdevel-ebug-perl: Failing tests t/finished.t

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

 forwarded 655710 https://rt.cpan.org/Public/Bug/Display.html?id=74020
Bug #655710 [src:libdevel-ebug-perl] libdevel-ebug-perl: Failing tests 
t/finished.t
Changed Bug forwarded-to-address to 
'https://rt.cpan.org/Public/Bug/Display.html?id=74020' from 
'http://rt.cpan.org/Public/Bug/Display.html?id=74168'
 thanks
Stopping processing here.

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


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



Bug#652598: aboot FTBFS in unstable

2012-01-19 Thread Jonathan Nieder
reassign 652598 src:aboot 1.0~pre20040408-3
tags 652598 + upstream patch
quit

Hi,

peter green wrote:

 package: aboot
 severity: serious

 Aboot FTBFS with the following error

Yep, I can reproduce this; thanks for filing it.  Just some quick tips
for the future:

 1. Please use Source: aboot, not Package: aboot.
 2. Please indicate what version the report concerns.

Doing those things makes the maintainers' lives easier, for example
by saving them from spending time trying to track down the cause of
the bug using the wrong source package (think: automake vs
automake1.11) or the wrong version of the source code (think: sid
versus wheezy).

[...]
 In file included from ../include/isolib.h:10:0, from isomarkboot.c:33:
 /usr/include/x86_64-linux-gnu/asm/stat.h:68:8: error: redefinition of ‘struct 
 stat’
 /usr/include/x86_64-linux-gnu/bits/stat.h:46:8: note: originally defined here

Looks like the cause is that isolib.h #include-s asm/stat.h from
linux-libc-dev which conflicts in namespace with sys/stat from glibc.
So in the spirit of

aboot (1.0~pre20040408-2) unstable; urgency=low

  * Include userspace headers from lib/isolib.c instead of kernel
headers; this isn't kernel code anyway, and the kernel headers don't
work right on i386 the way they're being used.

does this patch help?

By the way, do you know which package changed to introduce this build
failure?  (I would have guessed glibc, but I haven't found a relevant
change.)

Curious,
Jonathan

diff --git a/include/isolib.h b/include/isolib.h
index 392327a..7353da1 100644
--- a/include/isolib.h
+++ b/include/isolib.h
@@ -1,13 +1,7 @@
 #ifndef isolib_h
 #define isolib_h
 
-#ifndef __KERNEL_STRICT_NAMES
-  /* ask kernel to be careful about name-space pollution: */
-# define __KERNEL_STRICT_NAMES
-# define fd_set kernel_fd_set
-#endif
-
-#include asm/stat.h
+#include sys/stat.h
 
 extern int  iso_read_super (void * data, int quiet);
 extern int  iso_open (const char * filename);



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



Processed: Re: aboot FTBFS in unstable

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

 reassign 652598 src:aboot 1.0~pre20040408-3
Bug #652598 [aboot] aboot FTBFS in unstable
Bug reassigned from package 'aboot' to 'src:aboot'.
Bug #652598 [src:aboot] aboot FTBFS in unstable
Bug Marked as found in versions aboot/1.0~pre20040408-3.
 tags 652598 + upstream patch
Bug #652598 [src:aboot] aboot FTBFS in unstable
Added tag(s) upstream and patch.
 quit
Stopping processing here.

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


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



Bug#655616: Acetoniso: build-depends not satisfiable by sbuild

2012-01-19 Thread Jonathan Nieder
reassign 655616 src:acetoneiso 2.3-1
tags 655616 + patch
quit

peter green wrote:

 Currently acetoneiso has a build-depends on

 libqt4-dev ( 4:4.7.0~beta2) | libqtwebkit-dev

 This makes it impossible to install the build-depends with tools
 that only look at the first option for a build-depends

Good catch.  Here's a patch (untested) for convenience.  I couldn't
resist sneaking in an unrelated change. ;-)
---
 debian/changelog |   12 +++-
 debian/control   |2 +-
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d05b3ce..b986ad0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+acetoneiso (2.3-1.1) local; urgency=low
+
+  * debian/control:
+- swapped order of alternatives that satisfy QtWebKit build-time
+  dependency to help sbuild (Closes: #655616) [Thanks to Peter Green]
+  * debian/changelog:
+- corrected spelling of MS
+
+ -- Jonathan Nieder jrnie...@gmail.com  Thu, 19 Jan 2012 18:58:52 -0600
+
 acetoneiso (2.3-1) unstable; urgency=low
 
   * New upstream release
@@ -9,7 +19,7 @@ acetoneiso (2.3-1) unstable; urgency=low
 - fixed segmentation fault in erase cd/dvd function when no cd/dvd device
   is found
 - notice user if mounting an UDF ISO image providing him correct linux
-  command to mount the image as root user (tested with M$ Windows7 isos)
+  command to mount the image as root user (tested with MS Windows7 isos)
 - small gui changes, most important is that the gui window size is not
   locked anymore to a minimum value
 - updated some i18n translations
diff --git a/debian/control b/debian/control
index 83b3e12..e181866 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: otherosfs
 Priority: optional
 Maintainer: Nick Andrik nick.and...@gmail.com
 Build-Depends: cdbs, debhelper (= 7),
-  libqt4-dev ( 4:4.7.0~beta2) | libqtwebkit-dev,
+  libqtwebkit-dev | libqt4-dev ( 4:4.7.0~beta2),
   libphonon-dev
 Standards-Version: 3.9.1
 Homepage: http://www.acetoneteam.org/
-- 
1.5.6.5




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



Processed: Re: Acetoniso: build-depends not satisfiable by sbuild

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

 reassign 655616 src:acetoneiso 2.3-1
Bug #655616 [acetoneiso] Acetoniso: build-depends not satisfiable by sbuild
Bug reassigned from package 'acetoneiso' to 'src:acetoneiso'.
Bug #655616 [src:acetoneiso] Acetoniso: build-depends not satisfiable by sbuild
Bug Marked as found in versions acetoneiso/2.3-1.
 tags 655616 + patch
Bug #655616 [src:acetoneiso] Acetoniso: build-depends not satisfiable by sbuild
Added tag(s) patch.
 quit
Stopping processing here.

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


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



Bug#655803: marked as done (komi: FTBFS: ld: cannot find -lXrandr)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Fri, 20 Jan 2012 01:32:25 +
with message-id e1ro3l7-0004xh...@franck.debian.org
and subject line Bug#655803: fixed in komi 1.04-5
has caused the Debian Bug report #655803,
regarding komi: FTBFS: ld: cannot find -lXrandr
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
655803: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655803
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: komi
Version: 1.04-4
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120112 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 cc -Wall -pedantic -std=c99 -O2 -I/usr/include/SDL -D_GNU_SOURCE=1 
 -D_REENTRANT -DDATAPATH=\/usr/share/games/komi/\ komi.o -o komi 
 -L/usr/lib/x86_64-linux-gnu -lSDL -lpthread -lm -ldl -lasound -lm -ldl 
 -lpthread -lpulse-simple -lpulse -lX11 -lXext -lXrandr -lXrender -L/usr/lib 
 -ldirectfb -lfusion -ldirect -lpthread -L/usr/lib -lcaca -lpthread -lSDL_mixer
 /usr/bin/ld: cannot find -lXrandr
 /usr/bin/ld: cannot find -lXrender
 collect2: ld returned 1 exit status

The full build log is available from:
   http://people.debian.org/~lucas/logs/2012/01/12/komi_1.04-4_lsid64.buildlog

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.


---End Message---
---BeginMessage---
Source: komi
Source-Version: 1.04-5

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

komi_1.04-5.diff.gz
  to main/k/komi/komi_1.04-5.diff.gz
komi_1.04-5.dsc
  to main/k/komi/komi_1.04-5.dsc
komi_1.04-5_i386.deb
  to main/k/komi/komi_1.04-5_i386.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 655...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Brandon Barnes winterkni...@nerdshack.com (supplier of updated komi package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 18 Jan 2012 13:54:00 -0800
Source: komi
Binary: komi
Architecture: source i386
Version: 1.04-5
Distribution: unstable
Urgency: low
Maintainer: Brandon Barnes winterkni...@nerdshack.com
Changed-By: Brandon Barnes winterkni...@nerdshack.com
Description: 
 komi   - Single player arcade game with Komi the Space Frog!
Closes: 655803
Changes: 
 komi (1.04-5) unstable; urgency=low
 .
   * Fixed problem in Makefile that caused komi to link against many libraries
 unnecessarily, and in some cases causes komi to fail to build. Fixes
 shlibdeps warnings. (Closes: #655803)
   * Debian rules no longer ignores make clean error. Fixes lintian warning.
   * Copyright file now refers to GPL-2, rather than symlink GPL. Fixes lintian
 pedantic warning.
   * Removed unused and outdated debian/komi.6. Continue to use upstream man
 page.
   * Fixed man page warnings. Fixes lintian warning.
   * Fixed several printf format warnings on amd64 and other architectures.
   * Description no longer starts with the article, a.
   * Removed unnecessary code from rules, and other misc cosmetic fixes
   * Added build-arch and build-indep targets to rules.
   * Rules file now respects DEB_BUILD_OPTIONS noopt and includes debugging
 symbols for nostrip.
   * Rules file now calls dh_prep instead of deprecated dh_clean -k. Fixes
 lintian warning.
   * Upgrade debhelper requirements and version compatibility to 8
   * Set debian/source/format to 1.0. Fixes lintian info warning.
   * Set Standards-Version to 3.9.2 (no changes needed)
   * Removed duplicate entries from changelog
Checksums-Sha1: 
 e2bb4ab2c1da6767ac76451067b7a89f04e99209 1026 komi_1.04-5.dsc
 c93d78d3233133d3260c838adfcdaea767fcbd9c 4867 komi_1.04-5.diff.gz
 93098997a137bc398807dfd0e5d8e010d0b06122 947016 komi_1.04-5_i386.deb
Checksums-Sha256: 
 d1100c639776556d0a553bd35cd75e496118d6228051c316fbab3e7621e7c16c 1026 
komi_1.04-5.dsc
 

Processed: limit source to py-asterisk, tagging 650245, tagging 656440

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

 #py-asterisk (0.2-1) UNRELEASED; urgency=low
 #
 #  * New upstream release
 #- Fixes Please package version 0.2 (Closes: #656440)
 #- Fix fails to work with current version of Asterisk (Closes: #650245)
 #
 limit source py-asterisk
Limiting to bugs with field 'source' containing at least one of 'py-asterisk'
Limit currently set to 'source':'py-asterisk'

 tags 650245 + pending
Bug #650245 [python-asterisk] python-asterisk: fails to work with current 
version of Asterisk
Added tag(s) pending.
 tags 656440 + pending
Bug #656440 [python-asterisk] Please package version 0.2
Ignoring request to alter tags of bug #656440 to the same tags previously set
 thanks
Stopping processing here.

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


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



Processed: Re: FTBFS: fatal error: curl/types.h: No such file or directory

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

 # Aurelien Jarno wrote:
 #
 #  telak currently FTBFS on sid, as it tries to include curl/types.h
 #  which has been removed (see bug#636457):
 #
 # Luckily, curl/types.h was not removed until curl 7.22.0 so this
 # doesn't need fixing in squeeze.
 #tags 637702 +notsqueeze
 tags 637702 + wheezy sid experimental
Bug #637702 {Done: Julien Danjou a...@debian.org} [telak] FTBFS: fatal error: 
curl/types.h: No such file or directory
Added tag(s) sid, wheezy, and experimental.

End of message, stopping processing here.

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


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



Bug#637702: FTBFS: fatal error: curl/types.h: No such file or directory

2012-01-19 Thread Jonathan Nieder
Jonathan Nieder wrote:

 # Aurelien Jarno wrote:
 #
 #  telak currently FTBFS on sid, as it tries to include curl/types.h
 #  which has been removed (see bug#636457):
 #
 # Luckily, curl/types.h was not removed until curl 7.22.0 so this
 # doesn't need fixing in squeeze.

Or rather 7.21.7~115 (include: cleanup, 2011-05-03) which is still
newer than squeeze.  Sorry for the noise.



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



Processed: block 652165 with 656550

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

 block 652165 with 656550
Bug #652165 [src:scli] FTBFS: autoconf check for GNET fails
Was not blocked by any bugs.
Added blocking bug(s) of 652165: 656550
 thanks
Stopping processing here.

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


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



Processed: affects 655835, found 655835 in debbugs/2.4.1, found 656536 in 0.8.5-1.1

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

 affects 655835 debbugs
Bug #655835 [citadel-server] citadel-server: doesnt use invoke-rc.d
Added indication that 655835 affects debbugs
 found 655835 debbugs/2.4.1
Bug #655835 [citadel-server] citadel-server: doesnt use invoke-rc.d
The source debbugs and version 2.4.1 do not appear to match any binary packages
Bug Marked as found in versions debbugs/2.4.1.
 found 656536 0.8.5-1.1
Bug #656536 [buildbot] buildbot: fails to purge - command (deluser|adduser) in 
postrm not found
Bug Marked as found in versions buildbot/0.8.5-1.1.
 thanks
Stopping processing here.

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


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



Bug#652598: aboot FTBFS in unstable

2012-01-19 Thread peter green

tags 652598 +wheezy sid
thanks

 1. Please use Source: aboot, not Package: aboot.
  
I'll start doing that if and when the official rc bugs list introduces 
sane handling

of such bugs. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650999

Until then IMO having the bug actually visible to those looking to fix
rc bugs is more important than some corner cases involving packages
that do crazy things with source/binary package names.

 2. Please indicate what version the report concerns.
  
Yeah sorry about that, I usually include it. Still the version of this 
package

in unstable hasn't changed in a VERY long time.

What I did forget to do though is tag which realeases this bug applied to,
doing so now.

Looks like the cause is that isolib.h #include-s asm/stat.h from
linux-libc-dev which conflicts in namespace with sys/stat from glibc.
So in the spirit of

aboot (1.0~pre20040408-2) unstable; urgency=low

  * Include userspace headers from lib/isolib.c instead of kernel
headers; this isn't kernel code anyway, and the kernel headers don't
work right on i386 the way they're being used.

does this patch help?
  
It makes the package build on amd64 sid. I have no way of testing if the 
resulting

package works.


By the way, do you know which package changed to introduce this build
failure?  (I would have guessed glibc, but I haven't found a relevant
change.)
  

hmm, asm/stat.h doesn't seem to have changed at all since squeeze and none
of the changes in sys/stat.h or bits/stat,h look relavent on a quick glance

I wonder if it's a change in default defines and their handling similar 
to the

one that caused the struct user issues on arm*.



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



Bug#650245: marked as done (python-asterisk: fails to work with current version of Asterisk)

2012-01-19 Thread Debian Bug Tracking System
Your message dated Fri, 20 Jan 2012 02:49:20 +
with message-id e1ro4xy-bt...@franck.debian.org
and subject line Bug#650245: fixed in py-asterisk 0.2-1
has caused the Debian Bug report #650245,
regarding python-asterisk: fails to work with current version of Asterisk
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
650245: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650245
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-asterisk
Version: 0.1a3+r160-4.1
Severity: grave
Justification: renders package unusable

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

I tried to use python-asterisk to connect to my Asterisk server, after recently
upgrading to Squeeze, and it failed to connect, raising an exception about
Server banner was incorrect.

Turns out, the expected banner is hardcoded as Asterisk Call Manager/1.0, and
Asterisk is now advertising itself as Asterisk Call Manager/1.1

A naive change to the hardcoded string expected fixes this, but I'm not sure if
there are other compatibility issues beyond that.

Given I'm having this issue with Asterisk 1:1.6.2.9-2+squeeze3 in stable, it
most probably is also applicable to 1:1.8.7.1~dfsg-2 in unstable

- -- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-asterisk depends on:
ii  python  2.6.6-3+squeeze6 interactive high-level object-orie
ii  python-support  1.0.10   automated rebuilding support for P

python-asterisk recommends no packages.

python-asterisk suggests no packages.

- -- Configuration Files:
/etc/asterisk/py-asterisk.conf [Errno 13] Permission denied: 
u'/etc/asterisk/py-asterisk.conf'

- -- no debconf information

- -- debsums errors found:
debsums: changed file /usr/share/pyshared/Asterisk/Manager.py (from 
python-asterisk package)

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

iQIcBAEBCAAGBQJO0zCLAAoJEFHf2Ts++3nvsDMQAI+M2F8xMW51Z97JVUX8SpME
xu8iQG6DfgR+Gde7PwhB2RwC3tzxd8ugPura1FPKiG1HvpQkvjww4NTL+ANK+mCa
SodFRAe7W6mNG7cjGnYktIUdqEbX3Ooc7JLe5Fo5Pt6rATZt1FkS8oDC8mok9rne
hsG8TZ8vYhw5B9zXnVBrrZ6+X4rfpouf2W9wwmKc1/FETocNpyYxqk6OtcBkkTfG
wW7lZBKOkHj75D2IRJzO6tO6PcJycCaxB0WhH7syX5qiMoQQYhwa/onp41MSdXE2
em1RCgzpC4ppKFkOOFbl7L1UKg7/zAdDtHAUndiS8hEgPMXG+p3ggfEZZkz8H5iZ
1611BrhRIff/wQ/422mFFAYFkUc8sVcAuHy+yMlDydyJvfoZ3ZZAbLM2GSD16SCh
Ix87bPZHsMkV1QzA/R8/OKLppZocjIdKpEsoRJRMchzBkQ3FgzO6t2yzSooL11W1
ZeRuftYRoQjo1pTJEZiGhh8eWfdCwG26cwhy+toPLliNsVawWxANvifGhh8uMcrB
yHClJrqwwEcIXsXQwUcbDdpHfCM4E0po9939SAIgpKMIbOotQtbxGDalPbj5Uhq2
SAuOIIyXDFCTegzScUjBc0EekiIeERLCbvOpbNSoq7oXUkY68hmjGgT4495caMyT
DJc+HVfjKXQzjg4tVVi1
=gK8G
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
Source: py-asterisk
Source-Version: 0.2-1

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

py-asterisk_0.2-1.diff.gz
  to main/p/py-asterisk/py-asterisk_0.2-1.diff.gz
py-asterisk_0.2-1.dsc
  to main/p/py-asterisk/py-asterisk_0.2-1.dsc
py-asterisk_0.2.orig.tar.gz
  to main/p/py-asterisk/py-asterisk_0.2.orig.tar.gz
python-asterisk_0.2-1_all.deb
  to main/p/py-asterisk/python-asterisk_0.2-1_all.deb



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 650...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mark Purcell m...@debian.org (supplier of updated py-asterisk package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 20 Jan 2012 12:43:13 +1100
Source: py-asterisk
Binary: python-asterisk
Architecture: source all
Version: 0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Maintainers 
pkg-voip-maintain...@lists.alioth.debian.org
Changed-By: Mark Purcell m...@debian.org
Description: 
 python-asterisk - Asterisk Manager API interface module for Python
Closes: 559236 559237 650245 656440
Changes: 
 py-asterisk (0.2-1) unstable; urgency=low
 .
   * lca2012 release
 .
   * New upstream release
 - Fixes Please package 

Processed: notfixed 653275 in 0.6.4+squeeze1

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

 # Removing fixed version so toos like apt-listbugs stop thinking there was 
 actually a bug
 notfixed 653275 0.6.4+squeeze1
Bug #653275 {Done: Karol Kozłowski karol...@myopera.com} [gdebi-core] 
[gdebi-core] gdebi doesn't recognize the Breaks packages.
Bug No longer marked as fixed in versions gdebi-core/0.6.4+squeeze1.
 thanks
Stopping processing here.

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


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



Processed: Re: gs-common removed: this bug is now RC.

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

 # Didier Raboud wrote:
 #
 #  as the ghostscript 9.04~dfsg-3 upload (that drops both the gs-common
 #  package and the Provides: gs-common of ghostscript) now reached
 #  the archive [0], Depending or Build-Depending on gs-common is now an
 #  RC bug (as it makes the package uninstallable or unbuildable,
 #  respectively).
 #
 # but not in squeeze :)
 #tags 649696 649705 +notsqueeze
 tags 649696 + wheezy sid experimental
Bug #649696 {Done: Vincent Danjean vdanj...@debian.org} [latex-make] 
latex-make: Please Depend on ghostscript instead of gs-common.
Added tag(s) sid, wheezy, and experimental.
 tags 649705 + wheezy sid experimental
Bug #649705 {Done: Miguel de Val Borro miguel.de...@gmail.com} [src:texpower] 
Please Build-Depend on ghostscript, not gs-common.
Added tag(s) sid, wheezy, and experimental.

End of message, stopping processing here.

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


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



Bug#656562: libusb2-dev: Compilation errors from libusb.h include

2012-01-19 Thread Chow Loong Jin
Package: libusb2-dev
Version: 8.3~svn229725-2
Severity: grave
Justification: renders package unusable

libusb.h causes compilation errors from a #include libusb.h, causing libgpod
to fail on kfreebsd-* architectures[0,1] with the following compilation errors:

In file included from ../../../tools/ipod-usb.c:1:0:
/usr/include/libusb.h:254:43: error: expected '=', ',', ';', 'asm' or 
'__attribute__' before '__aligned'
/usr/include/libusb.h:296:47: error: expected '=', ',', ';', 'asm' or 
'__attribute__' before '__aligned'
/usr/include/libusb.h:312:46: error: expected '=', ',', ';', 'asm' or 
'__attribute__' before '__aligned'
/usr/include/libusb.h:321:25: error: expected '=', ',', ';', 'asm' or 
'__attribute__' before '__aligned'


[0] 
https://buildd.debian.org/status/fetch.php?pkg=libgpodarch=kfreebsd-amd64ver=0.8.2-5stamp=1326967876
[1] 
https://buildd.debian.org/status/fetch.php?pkg=libgpodarch=kfreebsd-i386ver=0.8.2-5stamp=1326968160


-- System Information:
Debian Release: wheezy/sid
  APT prefers oneiric-updates
  APT policy: (500, 'oneiric-updates'), (500, 'oneiric-security'), (500, 
'oneiric'), (400, 'oneiric-proposed'), (100, 'oneiric-backports')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-hyper2 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_SG.utf8, LC_CTYPE=en_GB.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



Processed: Merge with existing issues

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

 severity 656417 normal
Bug #656417 [scsh] wrong dependency on scsh-0.6
Severity set to 'normal' from 'grave'

 merge 486838 656417
Bug#486838: scsh: should not be available on amd64
Bug#656417: wrong dependency on scsh-0.6
Merged 486838 656417.

 thanks
Stopping processing here.

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


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