Bug#384290: python-gtk-1.2: depends on python < 2.4
Package: python-gnome Version: 0.6.12-4 Severity: serious Hello, > Some packages could not be installed. This may mean that you have > requested an impossible situation or if you are using the unstable > distribution that some required packages have not yet been created > or been moved out of Incoming. > The following information may help to resolve the situation: > > The following packages have unmet dependencies: > python-gtk-1.2: Depends: python (< 2.4) but 2.4.3-11 is to be installed > E: Broken packages > apt-get failed. > Package installation failed Cheers, -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#384293: spe: SPE doc directory is empty
Subject: spe: SPE doc directory is empty Package: spe Version: 0.8.2a+repack-1 Severity: important *** Please type your report below this line *** After you upgrad SPE to version 0.8.2a+repack-1, /usr/lib/python2.4/site-packages/_spe/doc/ is empty. You can see that simply lauching SPE. It trigs this error : "Unable to open requested HTML document: /usr/lib/python2.4/site-packages/_spe/doc/donate.html" SPE remains usable but all the doc is missing. Xavier. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-rc4-4 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Versions of packages spe depends on: ii kiki 0.5.6-3 tool for python regular expression ii python 2.4.3-11An interactive high-level object-o ii python-central 0.5.5 register and build utility for Pyt ii python-wxglade 0.4.1-1 GUI designer written in Python wit
Bug#384259: Python transition (#2): you are building a private python module
tags 380974 - patch tags 384259 - patch thanks Gregory Colpart <[EMAIL PROTECTED]> writes: > With reading this clear explanations: > http://np237.livejournal.com/8981.html, > patch for Python transition could be like: [...] I'm afraid this patch is not correct. The build dependency on python2.3-dev should be replaced with python (see Python policy), binary-indep should definitely not be replaced by binary-arch, and there may be other issues. Thanks, Matej -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#384293: spe: SPE doc directory is empty
block 384293 by 383686 thanks [EMAIL PROTECTED] writes: > After you upgrad SPE to version 0.8.2a+repack-1, > /usr/lib/python2.4/site-packages/_spe/doc/ is empty. > > You can see that simply lauching SPE. It trigs this error : > "Unable to open requested HTML document: > /usr/lib/python2.4/site-packages/_spe/doc/donate.html" > > SPE remains usable but all the doc is missing. This is due to a bug in python-central, #383686. Thanks, Matej -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: Re: Bug#384293: spe: SPE doc directory is empty
Processing commands for [EMAIL PROTECTED]: > block 384293 by 383686 Bug#384293: spe: SPE doc directory is empty Was not blocked by any bugs. Blocking bugs of 384293 added: 383686 > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: Re: Python transition (#2): you are building a private python module
Processing commands for [EMAIL PROTECTED]: > tags 380974 - patch Bug#380974: Python transition (#2): you are building a private python module ! Tags were: patch Tags removed: patch > tags 384259 - patch Bug#384259: tla-buildpackage: Diff for QA upload Tags were: patch Tags removed: patch > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#384312: xawtv: FTBFS (powerpc/ppc64): 'PAGE_MASK' undeclared (first use in this function)
Package: xawtv Version: 3.95-2 Severity: serious Tags: patch When building 'xawtv' on powerpc/unstable, I get the following error: CC console/fbtv.o In file included from console/fbtv.c:31: ./libng/grab-ng.h:28:1: warning: "bool" redefined In file included from /usr/include/curses.h:161, from console/fbtv.c:24: /usr/lib/gcc/powerpc64-linux-gnu/4.1.2/include/stdbool.h:36:1: warning: this is the location of the previous definition console/fbtv.c: In function 'text_out': console/fbtv.c:341: warning: pointer targets in passing argument 4 of 'fs_puts' differ in signedness console/fbtv.c: In function 'text_width': console/fbtv.c:347: warning: pointer targets in passing argument 2 of 'fs_textwidth' differ in signedness console/fbtv.c: In function 'main': console/fbtv.c:813: warning: pointer targets in assignment differ in signedness CC console/fbtools.o console/fbtools.c: In function 'fb_init': console/fbtools.c:427: error: 'PAGE_MASK' undeclared (first use in this function) console/fbtools.c:427: error: (Each undeclared identifier is reported only once console/fbtools.c:427: error: for each function it appears in.) make[1]: *** [console/fbtools.o] Error 1 make[1]: Leaving directory `/xawtv-3.95' make: *** [build-stamp] Error 2 With the attached patch 'xawtv' can be compiled on powerpc. Regards Andreas Jochens diff -urN ../tmp-orig/xawtv-3.95/console/fbtools.c ./console/fbtools.c --- ../tmp-orig/xawtv-3.95/console/fbtools.c2003-02-14 14:14:04.0 + +++ ./console/fbtools.c 2006-08-23 10:57:40.0 + @@ -21,8 +21,6 @@ #include #include -#include - #include "fbtools.h" /* */ @@ -424,7 +422,7 @@ goto err; } #endif -fb_mem_offset = (unsigned long)(fb_fix.smem_start) & (~PAGE_MASK); +fb_mem_offset = (unsigned long)(fb_fix.smem_start) & ~(sysconf(_SC_PAGE_SIZE)-1); fb_mem = mmap(NULL,fb_fix.smem_len+fb_mem_offset, PROT_READ|PROT_WRITE,MAP_SHARED,fb,0); if (-1L == (long)fb_mem) { diff -urN ../tmp-orig/xawtv-3.95/console/matrox.c ./console/matrox.c --- ../tmp-orig/xawtv-3.95/console/matrox.c 2005-02-03 10:40:41.0 + +++ ./console/matrox.c 2006-08-23 11:09:51.0 + @@ -9,7 +9,6 @@ #include #include -#include /* PAGE_SIZE */ #include #include "byteswap.h" @@ -226,7 +225,7 @@ return -1; } off = (unsigned long)fb_fix.mmio_start - - ((unsigned long)fb_fix.mmio_start & ~(PAGE_SIZE-1)); + ((unsigned long)fb_fix.mmio_start & ~(sysconf(_SC_PAGE_SIZE)-1)); bmmio += off; mmio = (uint32_t*)bmmio; return 0; -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#384312: xawtv: FTBFS (powerpc/ppc64): 'PAGE_MASK' undeclared (first use in this function)
On Wed, Aug 23, 2006 at 02:28:42PM +0200, Andreas Jochens wrote: > Package: xawtv > Version: 3.95-2 > Severity: serious > Tags: patch > > When building 'xawtv' on powerpc/unstable, > I get the following error: > [snip] > > With the attached patch 'xawtv' can be compiled on powerpc. > > Regards > Andreas Jochens > > diff -urN ../tmp-orig/xawtv-3.95/console/fbtools.c ./console/fbtools.c > --- ../tmp-orig/xawtv-3.95/console/fbtools.c 2003-02-14 14:14:04.0 > + > +++ ./console/fbtools.c 2006-08-23 10:57:40.0 + > @@ -21,8 +21,6 @@ > #include > #include > > -#include > - > #include "fbtools.h" > > /* */ > @@ -424,7 +422,7 @@ > goto err; > } > #endif > -fb_mem_offset = (unsigned long)(fb_fix.smem_start) & (~PAGE_MASK); > +fb_mem_offset = (unsigned long)(fb_fix.smem_start) & > ~(sysconf(_SC_PAGE_SIZE)-1); ^ Are you sure it is correct? -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' [EMAIL PROTECTED] | [EMAIL PROTECTED] `-people.debian.org/~aurel32 | www.aurel32.net -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#384312: xawtv: FTBFS (powerpc/ppc64): 'PAGE_MASK' undeclared (first use in this function)
Aurelien Jarno a écrit : On Wed, Aug 23, 2006 at 02:28:42PM +0200, Andreas Jochens wrote: Package: xawtv Version: 3.95-2 Severity: serious Tags: patch When building 'xawtv' on powerpc/unstable, I get the following error: [snip] With the attached patch 'xawtv' can be compiled on powerpc. Regards Andreas Jochens diff -urN ../tmp-orig/xawtv-3.95/console/fbtools.c ./console/fbtools.c --- ../tmp-orig/xawtv-3.95/console/fbtools.c2003-02-14 14:14:04.0 + +++ ./console/fbtools.c 2006-08-23 10:57:40.0 + @@ -21,8 +21,6 @@ #include #include -#include - #include "fbtools.h" /* */ @@ -424,7 +422,7 @@ goto err; } #endif -fb_mem_offset = (unsigned long)(fb_fix.smem_start) & (~PAGE_MASK); +fb_mem_offset = (unsigned long)(fb_fix.smem_start) & ~(sysconf(_SC_PAGE_SIZE)-1); ^ Are you sure it is correct? I haven't seen the "-1", so this patch is correct. Sorry. -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' [EMAIL PROTECTED] | [EMAIL PROTECTED] `-people.debian.org/~aurel32 | www.aurel32.net -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of xawtv_3.95-3_sparc.changes
xawtv_3.95-3_sparc.changes uploaded successfully to localhost along with the files: xawtv_3.95-3.dsc xawtv_3.95-3.diff.gz xawtv_3.95-3_sparc.deb pia_3.95-3_sparc.deb fbtv_3.95-3_sparc.deb ttv_3.95-3_sparc.deb scantv_3.95-3_sparc.deb streamer_3.95-3_sparc.deb radio_3.95-3_sparc.deb v4l-conf_3.95-3_sparc.deb xawtv-tools_3.95-3_sparc.deb xawtv-plugin-qt_3.95-3_sparc.deb xawtv-plugins_3.95-3_sparc.deb webcam_3.95-3_sparc.deb alevtd_3.95-3_sparc.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xawtv_3.95-3_sparc.changes ACCEPTED
Accepted: alevtd_3.95-3_sparc.deb to pool/main/x/xawtv/alevtd_3.95-3_sparc.deb fbtv_3.95-3_sparc.deb to pool/main/x/xawtv/fbtv_3.95-3_sparc.deb pia_3.95-3_sparc.deb to pool/main/x/xawtv/pia_3.95-3_sparc.deb radio_3.95-3_sparc.deb to pool/main/x/xawtv/radio_3.95-3_sparc.deb scantv_3.95-3_sparc.deb to pool/main/x/xawtv/scantv_3.95-3_sparc.deb streamer_3.95-3_sparc.deb to pool/main/x/xawtv/streamer_3.95-3_sparc.deb ttv_3.95-3_sparc.deb to pool/main/x/xawtv/ttv_3.95-3_sparc.deb v4l-conf_3.95-3_sparc.deb to pool/main/x/xawtv/v4l-conf_3.95-3_sparc.deb webcam_3.95-3_sparc.deb to pool/main/x/xawtv/webcam_3.95-3_sparc.deb xawtv-plugin-qt_3.95-3_sparc.deb to pool/main/x/xawtv/xawtv-plugin-qt_3.95-3_sparc.deb xawtv-plugins_3.95-3_sparc.deb to pool/main/x/xawtv/xawtv-plugins_3.95-3_sparc.deb xawtv-tools_3.95-3_sparc.deb to pool/main/x/xawtv/xawtv-tools_3.95-3_sparc.deb xawtv_3.95-3.diff.gz to pool/main/x/xawtv/xawtv_3.95-3.diff.gz xawtv_3.95-3.dsc to pool/main/x/xawtv/xawtv_3.95-3.dsc xawtv_3.95-3_sparc.deb to pool/main/x/xawtv/xawtv_3.95-3_sparc.deb Override entries for your package: alevtd_3.95-3_sparc.deb - extra net fbtv_3.95-3_sparc.deb - extra graphics pia_3.95-3_sparc.deb - extra x11 radio_3.95-3_sparc.deb - extra sound scantv_3.95-3_sparc.deb - extra graphics streamer_3.95-3_sparc.deb - extra graphics ttv_3.95-3_sparc.deb - extra graphics v4l-conf_3.95-3_sparc.deb - extra graphics webcam_3.95-3_sparc.deb - extra net xawtv-plugin-qt_3.95-3_sparc.deb - extra graphics xawtv-plugins_3.95-3_sparc.deb - extra graphics xawtv-tools_3.95-3_sparc.deb - extra graphics xawtv_3.95-3.dsc - source x11 xawtv_3.95-3_sparc.deb - extra x11 Announcing to debian-devel-changes@lists.debian.org Closing bugs: 384312 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#384312: xawtv: FTBFS (powerpc/ppc64): 'PAGE_MASK' undeclared (first use in this function)
On Wed, Aug 23, 2006 at 08:39:37PM +0200, Aurelien Jarno wrote: > > With the attached patch 'xawtv' can be compiled on powerpc. > > Regards > > Andreas Jochens > > > > diff -urN ../tmp-orig/xawtv-3.95/console/fbtools.c ./console/fbtools.c > > --- ../tmp-orig/xawtv-3.95/console/fbtools.c2003-02-14 > > 14:14:04.0 + > > +++ ./console/fbtools.c 2006-08-23 10:57:40.0 + > > @@ -21,8 +21,6 @@ > > #include > > #include > > > > -#include > > - > > #include "fbtools.h" > > > > /* */ > > @@ -424,7 +422,7 @@ > > goto err; > > } > > #endif > > -fb_mem_offset = (unsigned long)(fb_fix.smem_start) & (~PAGE_MASK); > > +fb_mem_offset = (unsigned long)(fb_fix.smem_start) & > > ~(sysconf(_SC_PAGE_SIZE)-1); > > ^ > Are you > sure it is correct? Yes, this is the correct way to detect the kernel page size at runtime, either _SC_PAGE_SIZE or _SC_PAGESIZE is recognized. Cheers, -- Steve Langasek Give me a lever long enough and a Free OS Debian Developer to set it on, and I can move the world. [EMAIL PROTECTED] http://www.debian.org/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#384312: marked as done (xawtv: FTBFS (powerpc/ppc64): 'PAGE_MASK' undeclared (first use in this function))
Your message dated Wed, 23 Aug 2006 14:33:26 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#384312: fixed in xawtv 3.95-3 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xawtv Version: 3.95-2 Severity: serious Tags: patch When building 'xawtv' on powerpc/unstable, I get the following error: CC console/fbtv.o In file included from console/fbtv.c:31: ./libng/grab-ng.h:28:1: warning: "bool" redefined In file included from /usr/include/curses.h:161, from console/fbtv.c:24: /usr/lib/gcc/powerpc64-linux-gnu/4.1.2/include/stdbool.h:36:1: warning: this is the location of the previous definition console/fbtv.c: In function 'text_out': console/fbtv.c:341: warning: pointer targets in passing argument 4 of 'fs_puts' differ in signedness console/fbtv.c: In function 'text_width': console/fbtv.c:347: warning: pointer targets in passing argument 2 of 'fs_textwidth' differ in signedness console/fbtv.c: In function 'main': console/fbtv.c:813: warning: pointer targets in assignment differ in signedness CC console/fbtools.o console/fbtools.c: In function 'fb_init': console/fbtools.c:427: error: 'PAGE_MASK' undeclared (first use in this function) console/fbtools.c:427: error: (Each undeclared identifier is reported only once console/fbtools.c:427: error: for each function it appears in.) make[1]: *** [console/fbtools.o] Error 1 make[1]: Leaving directory `/xawtv-3.95' make: *** [build-stamp] Error 2 With the attached patch 'xawtv' can be compiled on powerpc. Regards Andreas Jochens diff -urN ../tmp-orig/xawtv-3.95/console/fbtools.c ./console/fbtools.c --- ../tmp-orig/xawtv-3.95/console/fbtools.c2003-02-14 14:14:04.0 + +++ ./console/fbtools.c 2006-08-23 10:57:40.0 + @@ -21,8 +21,6 @@ #include #include -#include - #include "fbtools.h" /* */ @@ -424,7 +422,7 @@ goto err; } #endif -fb_mem_offset = (unsigned long)(fb_fix.smem_start) & (~PAGE_MASK); +fb_mem_offset = (unsigned long)(fb_fix.smem_start) & ~(sysconf(_SC_PAGE_SIZE)-1); fb_mem = mmap(NULL,fb_fix.smem_len+fb_mem_offset, PROT_READ|PROT_WRITE,MAP_SHARED,fb,0); if (-1L == (long)fb_mem) { diff -urN ../tmp-orig/xawtv-3.95/console/matrox.c ./console/matrox.c --- ../tmp-orig/xawtv-3.95/console/matrox.c 2005-02-03 10:40:41.0 + +++ ./console/matrox.c 2006-08-23 11:09:51.0 + @@ -9,7 +9,6 @@ #include #include -#include /* PAGE_SIZE */ #include #include "byteswap.h" @@ -226,7 +225,7 @@ return -1; } off = (unsigned long)fb_fix.mmio_start - - ((unsigned long)fb_fix.mmio_start & ~(PAGE_SIZE-1)); + ((unsigned long)fb_fix.mmio_start & ~(sysconf(_SC_PAGE_SIZE)-1)); bmmio += off; mmio = (uint32_t*)bmmio; return 0; --- End Message --- --- Begin Message --- Source: xawtv Source-Version: 3.95-3 We believe that the bug you reported is fixed in the latest version of xawtv, which is due to be installed in the Debian FTP archive: alevtd_3.95-3_sparc.deb to pool/main/x/xawtv/alevtd_3.95-3_sparc.deb fbtv_3.95-3_sparc.deb to pool/main/x/xawtv/fbtv_3.95-3_sparc.deb pia_3.95-3_sparc.deb to pool/main/x/xawtv/pia_3.95-3_sparc.deb radio_3.95-3_sparc.deb to pool/main/x/xawtv/radio_3.95-3_sparc.deb scantv_3.95-3_sparc.deb to pool/main/x/xawtv/scantv_3.95-3_sparc.deb streamer_3.95-3_sparc.deb to pool/main/x/xawtv/streamer_3.95-3_sparc.deb ttv_3.95-3_sparc.deb to pool/main/x/xawtv/ttv_3.95-3_sparc.deb v4l-conf_3.95-3_sparc.deb to pool/main/x/xawtv/v4l-conf_3.95-3_sparc.deb webcam_3.95-3_sparc.deb to pool/main/x/xawtv/webcam_3.95-3_sparc.deb xawtv-plugin-qt_3.95-3_sparc.deb to pool/main/x/xawtv/xawtv-plugin-qt_3.95-3_sparc.deb xawtv-plugins_3.95-3_sparc.deb to pool/main/x/xawtv/xawtv-plugins_3.95-3_sparc.deb xawtv-tools_3.95-3_sparc.deb to pool/main/x/xawtv/xawtv-tools_3.95-3_sparc.deb xawtv_3.95-3.diff.gz to pool/main/x/xawtv/xawtv_3.95-3.diff.gz xawtv_3.95-3.dsc to pool/main/x/xawtv/xawtv_3.95-3.dsc xawtv_3.95-3_sparc.deb to pool/main/x/xawtv/xawtv_3.95-3_sparc.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 [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Aurelien Jarno
Bug#369533: spim hangs after start
I am experiencing the same problem as Joachim. I had version 7.1.something which worked fine, then I upgraded to 7.2.1-1 and it stopped working.
Bug#384290: python-gtk-1.2: depends on python < 2.4
On Wed, Aug 23, 2006 at 11:10:19AM +0200, Julien Danjou wrote: > > Some packages could not be installed. This may mean that you have > > requested an impossible situation or if you are using the unstable > > distribution that some required packages have not yet been created > > or been moved out of Incoming. > > The following information may help to resolve the situation: > > The following packages have unmet dependencies: > > python-gtk-1.2: Depends: python (< 2.4) but 2.4.3-11 is to be installed > > E: Broken packages > > apt-get failed. > > Package installation failed I'm having a look at this one now, though I don't promise not to get so frustrated with python-support+update-alternatives that I remove it from testing instead. Cheers, -- Steve Langasek Give me a lever long enough and a Free OS Debian Developer to set it on, and I can move the world. [EMAIL PROTECTED] http://www.debian.org/ signature.asc Description: Digital signature
Processed: severity of 373541 is serious, merging 373541 384290
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.9.20 > severity 373541 serious Bug#373541: Python policy transition Severity set to `serious' from `important' > merge 373541 384290 Bug#373541: Python policy transition Bug#384290: python-gtk-1.2: depends on python < 2.4 Merged 373541 384290. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]