Processing of rfb_0.6.1-13_amd64.changes
rfb_0.6.1-13_amd64.changes uploaded successfully to localhost along with the files: rfb_0.6.1-13.dsc rfb_0.6.1-13.diff.gz rfb_0.6.1-13_amd64.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
rfb_0.6.1-13_amd64.changes ACCEPTED
Accepted: rfb_0.6.1-13.diff.gz to pool/main/r/rfb/rfb_0.6.1-13.diff.gz rfb_0.6.1-13.dsc to pool/main/r/rfb/rfb_0.6.1-13.dsc rfb_0.6.1-13_amd64.deb to pool/main/r/rfb/rfb_0.6.1-13_amd64.deb Announcing to debian-devel-changes@lists.debian.org Closing bugs: 379266 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379266: marked as done (FTBFS: needs an update for new libxclass0-dev)
Your message dated Fri, 28 Jul 2006 02:02:24 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#379266: fixed in rfb 0.6.1-13 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: rfb Version: 0.6.1-12 Severity: serious This package needs an update for libxclass0-dev 0.9.1. > Automatic build of rfb_0.6.1-12 on usurper by sbuild/amd64 0.46 ... > Checking correctness of source dependencies... > After installing, the following source dependencies are still unsatisfied: > libxclass0-dev(inst 0.9.1-1 ! << wanted 0.9.0) > Source-dependencies not satisfied; skipping rfb -- Martin Michlmayr http://www.cyrius.com/ --- End Message --- --- Begin Message --- Source: rfb Source-Version: 0.6.1-13 We believe that the bug you reported is fixed in the latest version of rfb, which is due to be installed in the Debian FTP archive: rfb_0.6.1-13.diff.gz to pool/main/r/rfb/rfb_0.6.1-13.diff.gz rfb_0.6.1-13.dsc to pool/main/r/rfb/rfb_0.6.1-13.dsc rfb_0.6.1-13_amd64.deb to pool/main/r/rfb/rfb_0.6.1-13_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 [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Michael Ablassmeier <[EMAIL PROTECTED]> (supplier of updated rfb 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 [EMAIL PROTECTED]) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Fri, 28 Jul 2006 10:46:01 +0200 Source: rfb Binary: rfb Architecture: source amd64 Version: 0.6.1-13 Distribution: unstable Urgency: low Maintainer: Debian QA Group <[EMAIL PROTECTED]> Changed-By: Michael Ablassmeier <[EMAIL PROTECTED]> Description: rfb- VNC Server for X11 - exports current display Closes: 379266 Changes: rfb (0.6.1-13) unstable; urgency=low . * QA Upload * Relax Build-Dependency on libclass0-dev (Closes: #379266) * Conforms with new Standards Version Files: 3de929f922a96c96bcd08a7e44558176 650 x11 optional rfb_0.6.1-13.dsc 8ebc0028a1186b08890e34640032d67f 9641 x11 optional rfb_0.6.1-13.diff.gz afd07f29dade92a11afcba6f298602e5 251660 x11 optional rfb_0.6.1-13_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQFEydB3EFV7g4B8rCURAu8OAJ9aAjwtm3W8D3hCF4Zg1nun9f16ygCcDUm5 Pox2sTfhyKzJXoJrCt50fMs= =59VN -END PGP SIGNATURE- --- End Message ---
Bug#379497: libjpeg-mmx: FTBFS: Error: suffix or operands invalid for `ldmxcsr'
tags 379497 + patch thanks hi, attached patch fixes this issue. Im not entirely sure if it breaks something, see this bugreport: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26653 as by now upstream has not fixed this either in CVS or newer releases. bye, - michael --- libjpeg-mmx-0.1.5.orig/jquant_x86simd.c +++ libjpeg-mmx-0.1.5/jquant_x86simd.c @@ -104,7 +104,7 @@ /* Initialise zero block flags */ /* Set up SSE rounding mode */ - __asm__ ( "ldmxcsr %0\n" : : "X" (trunc_mxcsr) ); + __asm__ ( "ldmxcsr %0\n" : : "m" (*&trunc_mxcsr) ); for (i=0; i < 64 ; i+=4) {
Processed: Re: libjpeg-mmx: FTBFS: Error: suffix or operands invalid for `ldmxcsr'
Processing commands for [EMAIL PROTECTED]: > tags 379497 + patch Bug#379497: libjpeg-mmx: FTBFS: Error: suffix or operands invalid for `ldmxcsr' There were no tags set. Tags added: 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#379497: updated patch
tags 379497 + help thanks hi, see attached patch, *& can be omitted, though. Another posibility is to use: __asm__ ( "ldmxcsr (%0)\n" : : "X" (trunc_mxcsr) ); i lack the needed SSE/ASM/Intel know-how, tagging with help, asking upstream for what would be the best solution. Both gentoo and other rpm packages use the attached patch for fixing this problem. bye, - michael --- libjpeg-mmx-0.1.5.orig/jquant_x86simd.c +++ libjpeg-mmx-0.1.5/jquant_x86simd.c @@ -104,7 +104,7 @@ /* Initialise zero block flags */ /* Set up SSE rounding mode */ - __asm__ ( "ldmxcsr %0\n" : : "X" (trunc_mxcsr) ); + __asm__ ( "ldmxcsr %0\n" : : "m" (trunc_mxcsr) ); for (i=0; i < 64 ; i+=4) {
Processed: updated patch
Processing commands for [EMAIL PROTECTED]: > tags 379497 + help Bug#379497: libjpeg-mmx: FTBFS: Error: suffix or operands invalid for `ldmxcsr' Tags were: patch Tags added: help > 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#379497: jpeg-xmms build issues with gcc 4.1
forwarded 379497 [EMAIL PROTECTED] thanks hi, jpeg-xmms fails to build from source using gcc 4.1: > gcc -O2 -I. -c -o fdctdata.o fdctdata.c > gcc -O2 -I. -c -o jquant_x86simd.o jquant_x86simd.c > /tmp/ccT4Nyhx.s: Assembler messages: > /tmp/ccT4Nyhx.s:59: Error: suffix or operands invalid for `ldmxcsr' > make[1]: *** [jquant_x86simd.o] Error 1 > make[1]: Leaving directory `/build/buildd/libjpeg-mmx-0.1.5' various other vendors like gentoo already use a slightly modified patch from the following bugreport filed against gcc: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26653 as it stands this is a issue with jpeg-mmx, not gcc. You can find the full bugreport (also with some ways to fix this issue) in the Debian Bug Tracking System: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=379497 I'am no ASM/SSE Expert, so i think it would be best if you guys could have a look at the patches provided in the above link and could tell me if its safe to include them in the package. bye, - michael -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: jpeg-xmms build issues with gcc 4.1
Processing commands for [EMAIL PROTECTED]: > forwarded 379497 [EMAIL PROTECTED] Bug#379497: libjpeg-mmx: FTBFS: Error: suffix or operands invalid for `ldmxcsr' Noted your statement that Bug has been forwarded to [EMAIL PROTECTED] > 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#380237: qla2x00: Short description very misleading: this package works with kernel 2.6
Package: qla2x00 Severity: important This should be fixed promptly as it makes the package look considerably less useful than it actually is. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
encore 4.0.1-3 MIGRATED to testing
FYI: The status of the encore source package in Debian's testing distribution has changed. Previous version: 4.0.1-2 Current version: 4.0.1-3 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
fvwm-icons 2001.08.13-4 MIGRATED to testing
FYI: The status of the fvwm-icons source package in Debian's testing distribution has changed. Previous version: 2001.08.13-3 Current version: 2001.08.13-4 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
jhcore 20050204-2 MIGRATED to testing
FYI: The status of the jhcore source package in Debian's testing distribution has changed. Previous version: 20050204-1 Current version: 20050204-2 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
ghostcore 0.9.8-7 MIGRATED to testing
FYI: The status of the ghostcore source package in Debian's testing distribution has changed. Previous version: 0.9.8-6 Current version: 0.9.8-7 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
lambdamoo 1:1.8.2-cvs20050209-5 MIGRATED to testing
FYI: The status of the lambdamoo source package in Debian's testing distribution has changed. Previous version: 1:1.8.2-cvs20050209-4 Current version: 1:1.8.2-cvs20050209-5 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
lambdacore 20040517-2 MIGRATED to testing
FYI: The status of the lambdacore source package in Debian's testing distribution has changed. Previous version: 20040517-1 Current version: 20040517-2 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
newbiedoc 0.6.0-3 MIGRATED to testing
FYI: The status of the newbiedoc source package in Debian's testing distribution has changed. Previous version: 0.6.0-2 Current version: 0.6.0-3 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
lambdamoo-docs 1.8.2-9 MIGRATED to testing
FYI: The status of the lambdamoo-docs source package in Debian's testing distribution has changed. Previous version: 1.8.2-8 Current version: 1.8.2-9 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
ratmenu 2.3.12 MIGRATED to testing
FYI: The status of the ratmenu source package in Debian's testing distribution has changed. Previous version: 2.3.11 Current version: 2.3.12 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
tapiir 0.7.1-9 MIGRATED to testing
FYI: The status of the tapiir source package in Debian's testing distribution has changed. Previous version: 0.7.1-8 Current version: 0.7.1-9 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]