Bug#808850: xfonts-wqy: FTBFS: Type of arg 1 to shift must be array (not constant item) at ./bdfmerge.pl line 35, near "ARGV)"
Hi, The following patch fixes this issue by fixing bdfmerge.pl. --- xfonts-wqy-1.0.0~rc1.orig/bdfmerge.pl +++ xfonts-wqy-1.0.0~rc1/bdfmerge.pl @@ -32,7 +32,7 @@ while(@ARGV>=1&& $ARGV[0]=~/^-{0,1}0[xX] { $startpos = hex($1); $endpos=0; - $range=shift(ARGV); + $range=shift(@ARGV); if($range=~/--0[xX]([0-9A-Fa-f]{0,6})/) { $endpos=hex($1); It seems like this might be more acceptable upstream. -- Matt
Bug#843614: Fixed in python-openssl 16.2.0-1?
Hi, I was able to use torbrowser-launcher again after upgrading python-openssl to 16.2.0-1. The new version ensures that SSL_ST_INIT is defined before referencing it. I don't know if that's considered a fix for this issue, though. -- Matt https://ftbfs.org/~kraai/
Bug#340851: Still FTBFS under pbuilder
On Fri, Jan 27, 2006 at 11:08:48AM +0100, Daniel Schepler wrote: > I'm still getting FTBFS of autogen under pbuilder with version 1:5.8.1-3 on > i386; from my build log: > > ... [...] > FAIL: license.test Thanks for reproducing the problem. > I see the build is somehow succeeding on the buildd's, though... but I don't > know what's different. Nor do I. Both upstream and I are investigating. -- Matt signature.asc Description: Digital signature
Bug#340851: Still FTBFS under pbuilder
On Fri, Jan 27, 2006 at 11:08:48AM +0100, Daniel Schepler wrote: > I see the build is somehow succeeding on the buildd's, though... but I don't > know what's different. Would you please compile and run the attached program on your system and let me know what the result is? -- Matt #include #include #include #include #include #include #include #include #include #include char spaces[0x2000]; static sigjmp_buf segvJumpEnv; static void segvSignal( int sig ) { siglongjmp( segvJumpEnv, sig ); } int main( int argc, char** argv ) { static const char file_z[] = __FILE__; unsigned long fsize; int signo; void* ext_res; #ifdef _SC_PAGESIZE size_t pgsz = sysconf(_SC_PAGESIZE); #else size_t pgsz = getpagesize(); #endif { struct sigaction sa; sa.sa_handler = segvSignal; sa.sa_flags = 0; sigemptyset( &sa.sa_mask ); sigaction( SIGSEGV, &sa, NULL ); sigaction( SIGBUS, &sa, NULL ); } signo = sigsetjmp( segvJumpEnv, 0 ); if (signo != 0) { fprintf( stderr, "Segfaulted (%s) early\n", strsignal(signo) ); return EXIT_FAILURE; } { FILE* fp = fopen(file_z, "r+"); if (fp == NULL) return EXIT_FAILURE; if (fseek(fp, 0, SEEK_END) < 0) return EXIT_FAILURE; fsize = (ftell(fp) & (pgsz - 1)); if (fsize > 0) { unsigned long len = pgsz - fsize; for (fsize = len; fsize > 0;) spaces[--fsize] = '\n'; if (fwrite(spaces, len, 1, fp) != 1) { fprintf( stderr, "fs err %d (%s) writing %d bytes\n", errno, strerror(errno), len ); return EXIT_FAILURE; } } fsize = ftell(fp); fclose(fp); } { int fd; void* base_ptr; void* ext_ptr; fd = open( file_z, O_RDONLY ); if (fd < 0) { perror("reopening " __FILE__ " read-only"); return EXIT_FAILURE; } base_ptr = mmap( NULL, fsize, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0 ); if (base_ptr == (void*)(-1L)) { perror("mmap-ing " __FILE__ " PROT_READ/WRITE"); return EXIT_FAILURE; } ext_ptr = (void*)(((char*)base_ptr) + fsize); signo = sigsetjmp( segvJumpEnv, 0 ); if (signo == 0) { printf( "char at %p is %d\n", ext_ptr, *(unsigned char*)ext_ptr); fprintf( stderr, "did not fault dereferencing 0x%lX\n", ext_ptr); return EXIT_FAILURE; } signo = sigsetjmp( segvJumpEnv, 0 ); #ifdef MAP_ANONYMOUS if (signo == 0) { ext_res = mmap(ext_ptr, pgsz, PROT_READ, MAP_ANONYMOUS|MAP_FIXED|MAP_PRIVATE, 0, 0); } else { fprintf( stderr, "sig %d (%s) mmap-ping /dev/zero:\n", signo, strsignal(signo) ); emit_error: fprintf( stderr, " mmap(%p, 0x%lX, PROT_READ, " "MAP_ANONYMOUS|MAP_FIXED|MAP_PRIVATE, 0, 0)\n", ext_ptr, pgsz); return EXIT_FAILURE; } #else { int fdz; if (signo == 0) { fdz = open("/dev/zero", O_RDONLY); if (fdz < 0) { perror("open-ing /dev/zero"); return EXIT_FAILURE; } ext_res = mmap(ext_ptr, pgsz, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_PRIVATE, fdz, 0); } else { fprintf( stderr, "sig %d (%s) mmap-ping /dev/zero:\n", signo, strsignal(signo) ); emit_error: fprintf( stderr, " mmap(%p, 0x%lX, PROT_READ, " "MAP_PRIVATE|MAP_FIXED|MAP_PRIVATE, %d, 0)\n", ext_ptr, pgsz, fdz); return EXIT_FAILURE; } } #endif if (ext_ptr != ext_res) { if (ext_res == (void*)(-1L)) { fprintf( stderr, "fs err %d (%s) mmap-ping NUL page\n", errno, strerror( errno )); goto emit_error; } fprintf( stderr, "map fixed to 0x%p resulted in 0x%p -- FAILURE\n", ext_ptr, ext_res ); return EXIT_FAILURE; } } signo = sigsetjmp( segvJumpEnv, 0 ); if (signo != 0) { fprintf( stderr, "faulted dereferencing 0x%lX\n", ext_res); return EXIT_FAILURE; } printf( "Successfully mapped NUL page at %p (is %d)\n", ext_res, *(unsigned char*)ext_res); return EXIT_SUCCESS; } /* * ABCDEFGHIJKLMNOPQRSTUVWXYZ12345678abcdefghijklmnopqrstuvwxyz * ABCDEFGHIJKLMNOPQRSTUVWXYZ12345678abcdefghijklmnopqrstuvwxyz * ABCDEFGHIJKLMNOPQRSTUVWXYZ12345678abcdefghijklmnopqrstuvwxyz * ABCDEFGHIJKLMNOPQRSTUVWXYZ12345678abcdefghijklmnopqrstu
Bug#340851: Still FTBFS under pbuilder
On Fri, Jan 27, 2006 at 04:43:16PM +0100, Daniel Schepler wrote: > Le Vendredi 27 Janvier 2006 16:14, Matt Kraai a écrit : > > On Fri, Jan 27, 2006 at 11:08:48AM +0100, Daniel Schepler wrote: > > > I see the build is somehow succeeding on the buildd's, though... but I > > > don't know what's different. > > > > Would you please compile and run the attached program on your system > > and let me know what the result is? > > Running kernel 2.6.15-1-686 (version 2.6.15-3) on my laptop, I got: > > [EMAIL PROTECTED]:~/test$ ./mmap-test > char at 0xb7fc is 0 > did not fault dereferencing 0xB7FC > > (Although I got several warnings from -Wall.) Thanks for doing this. Bruce, is this what you expected? -- Matt signature.asc Description: Digital signature
Bug#350903: cmr10 not loadable
Package: texinfo Version: 4.8-4 Severity: serious When I try to build AutoGen on Alpha, it fails as follows: > TEXINPUTS="../config:$TEXINPUTS" \ > MAKEINFO='/bin/sh > /src/sid/home/kraai/autogen-5.8.1/config/missing --run > makeinfo -I../autoopts -I../autoopts -I .' \ > texi2dvi autogen.texi > This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) > entering extended mode > (./txiversion.tex (/usr/share/texmf/tex/texinfo/texinfo.tex > Loading texinfo [version 2004-11-25.16]: Basics, pdf, fonts, > ! Font \textrm=cmr10 scaled 1095 not loadable: Metric (TFM) file not > found. > \mainmagstep ->1095 > > l.1474 \setfont\textrm\rmshape{10}{\mainmagstep} > > ? > ! Emergency stop. > \mainmagstep ->1095 > > l.1474 \setfont\textrm\rmshape{10}{\mainmagstep} > > No pages of output. > Transcript written on txiversion.log. > kpathsea: Running mktextfm cmr10 > /usr/share/texmf/web2c/mktexnam: Could not map source abbreviation > for cmr10. > /usr/share/texmf/web2c/mktexnam: Need to update ? > mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; > nonstopmode; input cmr10 > This is METAFONT, Version 2.71828 (Web2C 7.5.4) > kpathsea: Running mktexmf cmr10 > > ! I can't find file `cmr10'. > <*> ...e:=ljfour; mag:=1; nonstopmode; input cmr10 > > Please type another input file name > ! Emergency stop. > <*> ...e:=ljfour; mag:=1; nonstopmode; input cmr10 > > Transcript written on mfput.log. > grep: cmr10.log: No such file or directory > mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; > input cmr10' failed to make cmr10.tfm. > kpathsea: Appending font creation commands to missfont.log. > /usr/bin/texi2dvi: texinfo.tex appears to be broken, quitting. > make[1]: *** [autogen.dvi] Error 1 > make[1]: Leaving directory `/home/kraai/autogen-5.8.1/doc' > make: *** [build-stamp] Error 2 I was able to find the cmr10.tfm file: $ find /usr -name cmr10\* /usr/share/texmf-tetex/fonts/tfm/public/cm/cmr10.tfm /usr/share/texmf-tetex/fonts/source/public/cm/cmr10.mf This is serious because it prevents the autogen package from building. -- Matt signature.asc Description: Digital signature
Bug#340851: Still FTBFS under pbuilder
On Thu, Feb 02, 2006 at 07:01:02AM -0800, Bruce Korb wrote: > Daniel Schepler wrote: > > >Le Mardi 31 Janvier 2006 17:35, vous avez écrit : > > > > > >>Daniel Schepler wrote: > >> > >> > >>>I got: > >>> > >>>[EMAIL PROTECTED]:~/test$ ./mmap-test > >>>Successfully mapped NUL page at 0xb7fe9000 (is 0) > >>> > >>> > >>THANK YOU. I now have complete confidence that adding 1 (one) to the > >>initial mmap fixes the mmap issues on the alpha. > >> > >> > > > >Umm, just to make it clear, all the results I sent were on my Pentium > >laptop, not on alpha. Sorry if I somehow gave the impression these were > >alpha results. > > > > > Oops. Yes, that's right. Nevertheless, alpha had the same issue, only > more reliably. As soon as I have a round tuit, I'll make a check on an > alpha I was just granted access to. Thanks! - Bruce I verified the patch on an Alpha, and 5.8.2 built successfully on Alpha, so I'm confident the problem's fixed. -- Matt signature.asc Description: Digital signature
Bug#350903: cmr10 not loadable
On Thu, Feb 02, 2006 at 06:25:59PM +0100, Norbert Preining wrote: > As it only happens on alpha, could it be a new instance of the failed > hardware problem? I don't know. I asked the administrator of the machine and they didn't seem to think it was hardware-specific. > I assume that it is an update problem from tetex2, wild guess. > > Matt: Can you send us the output of > kpsewhich -show-path .tfm > It is strange that this one isn't found. > > Furthermore which tetex packages are installed in which versions? The system I was testing on seems to be offline. Falk, would it be possible for me to have access to it again so that I investigate further? -- Matt signature.asc Description: Digital signature
Bug#350903: cmr10 not loadable
> Matt: Can you send us the output of > kpsewhich -show-path .tfm > It is strange that this one isn't found. $ kpsewhich -show-path .tfm .:/src/sid/home/kraai/.texmf-config/fonts/tfm//:/src/sid/home/kraai/.texmf-var/fonts/tfm//:/src/sid/home/kraai/texmf/fonts/tfm//:/etc/texmf/fonts/tfm//:!!/var/lib/texmf/fonts/tfm//:!!/usr/local/share/texmf/fonts/tfm//:!!/usr/share/texmf/fonts/tfm//:!!/usr/share/texmf-tetex/fonts/tfm//:!!/usr/share/texmf-texlive/fonts/tfm//:/var/cache/fonts/tfm// > Futhermore which tetex packages are installed in which versions? $ dpkg -l | grep tetex ii tetex-base 3.0-13 Basic library files of teTeX ii tetex-bin 3.0-10.1 The teTeX binary files -- Matt signature.asc Description: Digital signature
Bug#323731: FTBFS: Conflicting prototypes
On Sat, Feb 04, 2006 at 08:54:08PM -0500, Igor Belyi wrote: > Could you specified versions of SWIG, SSL, and gcc used? No, I don't have that information anymore. I just tried to reproduce the problem in a sid chroot on PowerPC and was unable to, so I'll understand if you want to close this bug. -- Matt signature.asc Description: Digital signature
Bug#367871: [EMAIL PROTECTED]: Log for failed build of bonobo_1.0.22-8 (dist=testing)]
On Thu, May 18, 2006 at 12:47:44PM +0200, Martin Michlmayr wrote: > Do you see this too? Putting -lcrypt sooner works for me, as in: > gcc -g -O2 -Wall -lcrypt -Wl,--as-needed -o .libs/efstool efstool.o > ./.libs/libefs.so -L/usr/lib /usr/lib/libglib.so -lz > but that doesn't seem right. > > Any idea? I can reproduce the failure. The problem seems to be that libefs isn't linked against libcrypt. The attached patch, which does link libefs against libcrypt, fixed the problem on my system. -- Matt diff -ru bonobo-1.0.22.orig/libefs/src/Makefile.am bonobo-1.0.22/libefs/src/Makefile.am --- bonobo-1.0.22.orig/libefs/src/Makefile.am 2006-05-18 07:17:26.0 -0700 +++ bonobo-1.0.22/libefs/src/Makefile.am2006-05-18 06:38:01.0 -0700 @@ -19,7 +19,7 @@ noinst_HEADERS = efs_internal.h ib1_driver.h blowfish.h libefs_la_LDFLAGS = \ - -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -lz + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -lz $(CRYPTLIB) libefs_la_SOURCES =\ efs.c \ diff -ru bonobo-1.0.22.orig/libefs/src/Makefile.in bonobo-1.0.22/libefs/src/Makefile.in --- bonobo-1.0.22.orig/libefs/src/Makefile.in 2006-05-18 07:17:33.0 -0700 +++ bonobo-1.0.22/libefs/src/Makefile.in2006-05-18 06:56:53.0 -0700 @@ -104,7 +104,7 @@ noinst_HEADERS = efs_internal.h ib1_driver.h blowfish.h -libefs_la_LDFLAGS =-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -lz +libefs_la_LDFLAGS =-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -lz $(CRYPTLIB) libefs_la_SOURCES =efs.c wrapper.c lock.c ib1_cache.c ib1_alloc.c ib1_driver.cib1_inode.c ib1_file.c blowfish.c mime.c signature.asc Description: Digital signature
Bug#366832: Patch
tag 366832 patch thanks Adding xbitmaps to the build-depends fixes this problem. The attached patch does so. -- Matt diff -ru fvwm1-1.24r-orig/debian/control fvwm1-1.24r/debian/control --- fvwm1-1.24r-orig/debian/control 2006-05-19 15:04:46.0 -0700 +++ fvwm1-1.24r/debian/control 2006-05-19 15:05:03.0 -0700 @@ -3,7 +3,7 @@ Priority: extra Maintainer: Phil Brooke <[EMAIL PROTECTED]> Standards-Version: 3.6.2 -Build-Depends: debhelper (>> 4.0.0), patch, libx11-dev, libxext-dev, libxmu-dev, libxpm-dev, libxt-dev, x-dev, xutils, librplay3-dev +Build-Depends: debhelper (>> 4.0.0), patch, libx11-dev, libxext-dev, libxmu-dev, libxpm-dev, libxt-dev, x-dev, xutils, librplay3-dev, xbitmaps Package: fvwm1 Architecture: any signature.asc Description: Digital signature
Bug#359892: Patch
tag 359892 patch thanks libfoundation1.0 failed to build because it used the wrong path to clean_cpu.sh and common.make. The attached patch corrects these paths, which allows it to build. -- Matt diff -rux config.guess -x config.sub libfoundation1.0-1.0.76-orig/Resources/GNUmakefile libfoundation1.0-1.0.76/Resources/GNUmakefile --- libfoundation1.0-1.0.76-orig/Resources/GNUmakefile 2006-05-19 15:44:09.0 -0700 +++ libfoundation1.0-1.0.76/Resources/GNUmakefile 2006-05-19 16:15:08.0 -0700 @@ -24,7 +24,7 @@ GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT) --include $(GNUSTEP_SYSTEM_ROOT)/Makefiles/common.make +-include $(GNUSTEP_SYSTEM_ROOT)/Library/Makefiles/common.make -include $(TOP)/Foundation/$(GNUSTEP_TARGET_CPU)/$(GNUSTEP_TARGET_OS)/$(OBJC_RUNTIME)/config.mak -include $(TOP)/config.mak diff -rux config.guess -x config.sub libfoundation1.0-1.0.76-orig/configure libfoundation1.0-1.0.76/configure --- libfoundation1.0-1.0.76-orig/configure 2006-05-19 15:44:09.0 -0700 +++ libfoundation1.0-1.0.76/configure 2006-05-19 16:03:05.0 -0700 @@ -1646,7 +1646,7 @@ RUNTIME=GNU -transformed_target_cpu=`${GNUSTEP_SYSTEM_ROOT}/Makefiles/clean_cpu.sh ${TARGET_CPU}` +transformed_target_cpu=`${GNUSTEP_SYSTEM_ROOT}/Library/Makefiles/clean_cpu.sh ${TARGET_CPU}` ac_cv_file_output_prefix=Foundation/$transformed_target_cpu/${TARGET_OS}/$RUNTIME diff -rux config.guess -x config.sub libfoundation1.0-1.0.76-orig/configure.in libfoundation1.0-1.0.76/configure.in --- libfoundation1.0-1.0.76-orig/configure.in 2006-05-19 15:44:09.0 -0700 +++ libfoundation1.0-1.0.76/configure.in2006-05-19 16:16:22.0 -0700 @@ -213,7 +213,7 @@ AC_CHECK_LIB(socket, accept) RUNTIME=GNU -transformed_target_cpu=`${GNUSTEP_SYSTEM_ROOT}/Makefiles/clean_cpu.sh ${TARGET_CPU}` +transformed_target_cpu=`${GNUSTEP_SYSTEM_ROOT}/Library/Makefiles/clean_cpu.sh ${TARGET_CPU}` ac_cv_file_output_prefix=Foundation/$transformed_target_cpu/${TARGET_OS}/$RUNTIME signature.asc Description: Digital signature
Bug#366723: Patch
tag 366723 patch thanks I believe that the build-dependency on xlibmesa-glu-dev should be changed to libglu1-mesa-dev or libglu-dev. According to its description, libglu1-xorg-dev is a transitional package so I don't think it should be used. The attached patch uses libglu1-mesa-dev, which fixes the problem. -- Matt --- libsdl-erlang-0.95.0630-orig/debian/control 2006-05-20 00:16:05.0 -0700 +++ libsdl-erlang-0.95.0630/debian/control 2006-05-20 00:17:28.0 -0700 @@ -3,7 +3,7 @@ Section: libs Priority: optional Standards-Version: 3.6.2 -Build-Depends: debhelper (>> 4.0.0), erlang, libsdl1.2-dev, perl5, xlibmesa-gl-dev, xlibmesa-glu-dev +Build-Depends: debhelper (>> 4.0.0), erlang, libsdl1.2-dev, perl5, xlibmesa-gl-dev, libglu1-mesa-dev Package: libsdl-erlang Architecture: any signature.asc Description: Digital signature
Bug#363030: root settings
Howdy, I am able to reproduce this problem. Here are the root-related settings in /etc/pbuilderrc: > #for pbuilder debuild > BUILDSOURCEROOTCMD="fakeroot" > PBUILDERROOTCMD="sudo" -- Matt signature.asc Description: Digital signature
Bug#340851: 5.7.3 fixed two license test bugs
On Sat, Nov 26, 2005 at 09:12:31AM -0800, Bruce Korb wrote: > P.S. I'm curious: > > > Package: autogen > > Version: 1:5.7.2-1 > > Severity: serious > > Justification: no longer builds from source > > yet I just noticed the "autogen-5.7.3" element in the path above. > If you were using 5.7.3 and encountered this problem, then the > fixes noted above are already in the sources you were working with According to the full build log, it was building 5.7.3-1. -- Matt signature.asc Description: Digital signature
Bug#340851: 5.7.3 fixed two license test bugs
On Sat, Nov 26, 2005 at 09:12:31AM -0800, Bruce Korb wrote: > > It also fails with autogen 1:5.7.2-1 from sid: > > > > [EMAIL > > PROTECTED]:/var/cache/pbuilder/build/5817/tmp/autogen-5.7.3/agen5/test/FAILURES# > > \ > > autogen -b license --no-def -T license.tpl > > AutoGen aborting on signal 10 (Bus error) in state LOAD_TPL > > processing template NULL file name > > on line 0 > >for function pseudo-macro (-1) > > zsh: abort (core dumped) autogen -b license --no-def -T license.tpl > > It does appear though that once you have a failing example, it fails > regularly. (You caused this by typing in the command, yes?). Maybe > I can debug the issue with the contents of the FAILURES directory? I wasn't able to reproduce this problem with autogen 1:5.7.3-1 in the unstable chroot on escher.debian.org. Falk, would you try to reproduce the problem and let me know whether or not you are able to? -- Matt signature.asc Description: Digital signature
Bug#340851: 5.7.3 fixed two license test bugs
On Tue, Nov 29, 2005 at 09:07:39AM +0100, Falk Hueffner wrote: > Matt Kraai <[EMAIL PROTECTED]> writes: > > > On Sat, Nov 26, 2005 at 09:12:31AM -0800, Bruce Korb wrote: > >> > It also fails with autogen 1:5.7.2-1 from sid: > >> > > >> > [EMAIL > >> > PROTECTED]:/var/cache/pbuilder/build/5817/tmp/autogen-5.7.3/agen5/test/FAILURES# > >> > \ > >> > autogen -b license --no-def -T license.tpl > >> > AutoGen aborting on signal 10 (Bus error) in state LOAD_TPL > >> > processing template NULL file name > >> > on line 0 > >> >for function pseudo-macro (-1) > >> > zsh: abort (core dumped) autogen -b license --no-def -T license.tpl > >> > >> It does appear though that once you have a failing example, it fails > >> regularly. (You caused this by typing in the command, yes?). Maybe > >> I can debug the issue with the contents of the FAILURES directory? > > > > I wasn't able to reproduce this problem with autogen 1:5.7.3-1 in the > > unstable chroot on escher.debian.org. Falk, would you try to > > reproduce the problem and let me know whether or not you are able to? > > I was able to reproduce it within pbuilder's chroot, but not outside > (both sid). Weird. If anybody wants to debug this, I can try to set up > an environment where it can be reproduced and provide an account. If you can give me access to an environment where I can reproduce it, I'll investigate further. -- Matt signature.asc Description: Digital signature
Bug#340851: 5.7.3 failure
On Mon, Dec 05, 2005 at 01:34:43PM -0800, Bruce Korb wrote: > On Thursday 01 December 2005 08:11 am, Bruce Korb wrote: > > The call to scm_makstr() is faulting (every time for me): > > Hi all, > > I have now been able to recreate the failure on this call fairly > often, but I have not found a cause. Nevertheless, this call is > only useful if you use SCM_CHARS() and that has been so strongly > "deprecated" that the current development releases (1.7.x) of > Guile emit warnings when it is used. Rather than fight it, I have > removed all usage of either of these for all variations of AutoGen. > (Each version of Guile causes me to rewrite some portion of > AutoGen. 1.7 is the worst yet, causing me several days of work.) > > Upshot: I now (finally) have a 1.7.x-ready version of AutoGen. > Problem: still seg faults on Alpha Linux 2.2. The issue: mmap > > Details: > > When I mmap a file, I have to test for it being a multiple of the > page size. My "license.test" forces this for both the template > and for the license text. Both of these files get mmapped, so > I use this test to verify proper functioning of mmap, too. > > My mapping descriptor structure shows this: > > (gdb) print *pMI > $2 = {txt_data = 0x201c000, txt_size = 8192, txt_full_size = 16384, > txt_fd = 7, txt_zero_fd = -1, txt_errno = 0, txt_prot = 0, txt_flags = 0, > txt_alloc = 0} > > Immediately before this call: > > pNuls = mmap( > (void*)(((char*)pMI->txt_data) + pMI->txt_size), > pgsz, > PROT_READ|PROT_WRITE, > MAP_ANONYMOUS|MAP_FIXED|MAP_SHARED, 0, 0 ); > > The address passed is: > > (gdb) print 0x201c000+8192 > $5 = 0x201e000 > > According to my reading of the doc for mmap, this should work. It does > work on other platforms. It also seg faults instead of returning ((void*)-1). > Now, what? :-( If you don't want to require that users use a kernel that doesn't misbehave like this, shouldn't you add an autoconf test that checks for this behavior and falls back to some other method? -- Matt signature.asc Description: Digital signature
Bug#358940: Patch
tag 358940 patch thanks The attached patch fixes this bug by implementing Peter's suggestion of removing the "". -- Matt diff -ru bwbar-1.2.2-orig/debian/rules bwbar-1.2.2/debian/rules --- bwbar-1.2.2-orig/debian/rules 2006-04-04 08:32:58.0 -0700 +++ bwbar-1.2.2/debian/rules2006-04-04 08:35:28.0 -0700 @@ -4,7 +4,7 @@ include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk -DEB_MAKE_INSTALL_TARGET = "" +DEB_MAKE_INSTALL_TARGET = common-install-arch common-install-indep:: common-install-impl common-install-impl:: signature.asc Description: Digital signature
Bug#360955: FTBFS: Missing build-dependency on libxml-parser-perl
Package: gaim Version: 1:2.0.0+beta3-1 Severity: serious Tags: patch gaim fails to compile because it can't find XML::Parser: > checking for XML::Parser... configure: error: XML::Parser perl module is > required for intltool > make: *** [config.status] Error 1 Adding libxml-parser-perl to the build-dependencies fixes this problem. -- Matt --- debian/control.orig 2006-04-05 10:08:39.0 -0700 +++ debian/control 2006-04-05 09:35:41.0 -0700 @@ -9,7 +9,7 @@ libaudiofile-dev, libgtkspell-dev, libltdl3-dev, libperl-dev, libstartup-notification0-dev, xutils, libzephyr-dev, libxml2-dev, libebook1.2-dev, libedata-book1.2-dev, libcamel1.2-dev, - libdbus-glib-1-dev, dbus, python2.4 + libdbus-glib-1-dev, dbus, python2.4, libxml-parser-perl Standards-Version: 3.6.1 Package: gaim signature.asc Description: Digital signature
Bug#359645: Patch
tag 359645 patch thanks The attached patch implements Daniel's suggestion and changes the build-dependency on libgnustep-gui0.9-dev to libgnustep-gui0.10-dev. -- Matt diff -ru camelbones-0.2.3.cvs20040220-orig/debian/control camelbones-0.2.3.cvs20040220/debian/control --- camelbones-0.2.3.cvs20040220-orig/debian/control2006-04-06 09:44:33.0 -0700 +++ camelbones-0.2.3.cvs20040220/debian/control 2006-04-06 09:44:51.0 -0700 @@ -2,7 +2,7 @@ Section: devel Priority: optional Maintainer: Wolfgang Sourdeau <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), gnustep-make, libgnustep-gui0.9-dev, libperl-dev (>= 5.8.4) +Build-Depends: debhelper (>= 4.0.0), gnustep-make, libgnustep-gui0.10-dev, libperl-dev (>= 5.8.4) Standards-Version: 3.6.1.1 Package: libcamelbones0 signature.asc Description: Digital signature
Bug#359204: reassign 359204 cheops
reassign 359204 libsnmp4.2-dev retitle 359204 Missing snmp_api.h tag 359204 patch thanks cheops fails to build because libsnmp4.2-dev is missing snmp_api.h. libsnmp4.2-dev is missing snmp_api.h because the snmplib subdirectory fails to build. The snmplib subdirectory fails to build because scapi.c does not include . The attached patch fixes this problem. -- Matt diff -ru ucd-snmp-4.2.5-orig/snmplib/scapi.c ucd-snmp-4.2.5/snmplib/scapi.c --- ucd-snmp-4.2.5-orig/snmplib/scapi.c 2006-04-06 11:12:08.0 -0700 +++ ucd-snmp-4.2.5/snmplib/scapi.c 2006-04-06 11:30:17.0 -0700 @@ -56,6 +56,7 @@ #include #include #include +#include #endif #ifdef QUITFUN signature.asc Description: Digital signature
Bug#355824: Patch
tag 355824 patch thanks The attached patch implements Ross's suggestion, making freebirth use pkg-config to determine CFLAGS and LDFLAGS, which fixes the build. -- Matt diff -ru freebirth-0.3.2-orig/debian/rules freebirth-0.3.2/debian/rules --- freebirth-0.3.2-orig/debian/rules 2006-04-06 13:33:56.0 -0700 +++ freebirth-0.3.2/debian/rules2006-04-06 13:52:11.0 -0700 @@ -5,7 +5,8 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -CFLAGS=-g -O2 -Wall -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pango-1.0 -DXTHREADS -I/usr/X11R6/include -I/usr/include/atk-1.0 +CFLAGS=-g -O2 -Wall $(shell pkg-config --cflags gtk+-2.0) +LDFLAGS=$(shell pkg-config --libs gtk+-2.0) # Handle DEB_BUILD_OPTIONS ifneq "$(findstring debug,$(DEB_BUILD_OPTIONS))" "" @@ -24,7 +25,7 @@ dh_testdir # Add here commands to compile the package. - $(MAKE) CFLAGS="$(CFLAGS)" + $(MAKE) CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" /usr/bin/docbook-to-man debian/freebirth.sgml > debian/freebirth.1 touch build-stamp signature.asc Description: Digital signature
Bug#359841: Patch
tag 359841 patch thanks The attached patch, based on Norbert's suggestion, replaces dh_installtexfonts with dh_installtex, which fixes the build. -- Matt diff -ru hlatex-fonts-1.0-orig/debian/rules hlatex-fonts-1.0/debian/rules --- hlatex-fonts-1.0-orig/debian/rules 2006-04-06 15:08:05.0 -0700 +++ hlatex-fonts-1.0/debian/rules 2006-04-06 15:09:01.0 -0700 @@ -84,7 +84,7 @@ # dh_installmanpages # dh_installinfo # dh_undocumented - dh_installtexfonts + dh_installtex dh_installchangelogs # dh_link # dh_strip signature.asc Description: Digital signature
Bug#358303: reassign 358303 libgpgme11-dev and tag patch
reassign 358303 libgpgme11-dev tag 358303 patch thanks As noted in the upstream bug report, this is a bug in gpgme-config. I'm reassigning this bug to the appropriate package and attaching the patch used by upstream to fix this problem. I verified that it does fix the problem. -- Matt diff -Nru gpgme1.0-1.1.2-orig/gpgme/gpgme-config.in gpgme1.0-1.1.2/gpgme/gpgme-config.in --- gpgme1.0-1.1.2-orig/gpgme/gpgme-config.in 2006-04-14 14:33:41.0 -0700 +++ gpgme1.0-1.1.2/gpgme/gpgme-config.in2006-04-14 14:34:01.0 -0700 @@ -25,6 +25,10 @@ libs_pth="@PTH_LDFLAGS@ @PTH_LIBS@" cflags_pth="@PTH_CFLAGS@" [EMAIL PROTECTED]@thread_modules="$thread_modules pthread" +libs_pthread="-lpthread" +cflags_pthread="" + # Configure glib. libs_glib="@GLIB_LIBS@" cflags_glib="@GLIB_CFLAGS@" signature.asc Description: Digital signature
Bug#360379: tag 360379 fixed-upstream patch
tag 360379 fixed-upstream patch thanks This problem was fixed upstream by http://cvs.gnome.org/viewcvs/balsa/src/ab-main.c?r1=1.19&r2=1.20 and http://cvs.gnome.org/viewcvs/balsa/src/main.c?r1=1.195&r2=1.196 . The attached patch includes both of these patches. -- Matt diff -Nru balsa-2.3.8-orig/src/ab-main.c balsa-2.3.8/src/ab-main.c --- balsa-2.3.8-orig/src/ab-main.c 2006-04-14 15:13:17.0 -0700 +++ balsa-2.3.8/src/ab-main.c 2006-04-14 15:13:39.0 -0700 @@ -929,10 +929,15 @@ /* FIXME: do we need to allow a non-GUI mode? */ gtk_init_check(&argc, &argv); gnome_program_init(PACKAGE, VERSION, LIBGNOMEUI_MODULE, argc, argv, +#ifndef GNOME_PARAM_GOPTION_CONTEXT GNOME_PARAM_POPT_TABLE, NULL, GNOME_PARAM_APP_PREFIX, BALSA_STD_PREFIX, GNOME_PARAM_APP_DATADIR, BALSA_STD_PREFIX "/share", NULL); +#else + GNOME_PARAM_GOPTION_CONTEXT, NULL, + GNOME_PARAM_NONE); +#endif #ifdef GTKHTML_HAVE_GCONF if (!gconf_init(argc, argv, &gconf_error)) diff -Nru balsa-2.3.8-orig/src/main.c balsa-2.3.8/src/main.c --- balsa-2.3.8-orig/src/main.c 2006-04-14 15:13:17.0 -0700 +++ balsa-2.3.8/src/main.c 2006-04-14 15:13:40.0 -0700 @@ -204,9 +204,10 @@ static void balsa_init(int argc, char **argv) { -poptContext context; -int opt; static char *attachment = NULL; +#ifndef GNOME_PARAM_GOPTION_CONTEXT +int opt; +poptContext context; static struct poptOption options[] = { {"checkmail", 'c', POPT_ARG_NONE, @@ -254,7 +255,59 @@ GNOME_PARAM_APP_DATADIR, BALSA_STD_PREFIX "/share", GNOME_PARAM_HUMAN_READABLE_NAME, _("The Balsa E-Mail Client"), NULL); - +#else /* USE GOption interface */ +static gchar **remaining_args = NULL; +static GOptionEntry option_entries[] = { + {"checkmail", 'c', 0, G_OPTION_ARG_NONE, +&(cmd_check_mail_on_startup), +N_("Get new mail on startup"), NULL}, + {"compose", 'm', 0, G_OPTION_ARG_STRING, &(opt_compose_email), +N_("Compose a new email to [EMAIL PROTECTED]"), "[EMAIL PROTECTED]"}, + {"attach", 'a', 0, G_OPTION_ARG_STRING, &(attachment), +N_("Attach file at PATH"), "PATH"}, + {"open-mailbox", 'o', 0, G_OPTION_ARG_STRING, + &(cmd_line_open_mailboxes), +N_("Opens MAILBOXNAME"), N_("MAILBOXNAME")}, + {"open-unread-mailbox", 'u', 0, G_OPTION_ARG_NONE, +&(cmd_open_unread_mailbox), +N_("Opens first unread mailbox"), NULL}, + {"open-inbox", 'i', 0, G_OPTION_ARG_NONE, +&(cmd_open_inbox), +N_("Opens default Inbox on startup"), NULL}, + {"get-stats", 's', 0, G_OPTION_ARG_NONE, +&(cmd_get_stats), +N_("Prints number unread and unsent messages"), NULL}, + {"debug-pop", 'd', 0, G_OPTION_ARG_NONE, &PopDebug, +N_("Debug POP3 connection"), NULL}, + {"debug-imap", 'D', 0, G_OPTION_ARG_NONE, &ImapDebug, +N_("Debug IMAP connection"), NULL}, +/* last but not least a special option that collects filenames */ +{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, + &remaining_args, + "Special option that collects any remaining arguments for us" }, +{ NULL } +}; +GOptionContext *option_context = g_option_context_new("balsa"); +GnomeProgram *my_app; +g_option_context_add_main_entries(option_context, option_entries, NULL); + +my_app = gnome_program_init(PACKAGE, VERSION, +LIBGNOMEUI_MODULE, argc, argv, +GNOME_PARAM_GOPTION_CONTEXT, option_context, +GNOME_PARAM_NONE); + +if (remaining_args != NULL) { +gint i, num_args; + +num_args = g_strv_length (remaining_args); +for (i = 0; i < num_args; ++i) { +/* process remaining_args[i] here */ +/* we do nothing for now */ +} +g_strfreev (remaining_args); +remaining_args = NULL; +} +#endif /* OPTION HANDLING */ balsa_handle_automation_options(); } signature.asc Description: Digital signature
Bug#352794: Patch for acheck-rules FTBFS with new make
tag 352794 patch thanks The attached patch makes acheck-rules build by adding a space after the first "done". -- Matt diff -ru acheck-rules-0.3-orig/debian/rules acheck-rules-0.3/debian/rules --- acheck-rules-0.3-orig/debian/rules 2006-02-19 11:29:48.0 -0800 +++ acheck-rules-0.3/debian/rules 2006-02-19 11:30:18.0 -0800 @@ -28,7 +28,7 @@ if test -e man/$(package).$$lang.$$i.pod; then\ pod2man --section=$$i man/$(package).$$lang.$$i.pod > man/$(package).$$lang.$$i;\ fi\ - done\ + done \ done touch build-stamp signature.asc Description: Digital signature
Bug#352795: Patch for acheck FTBFS with new make
tag 352795 patch thanks The attached patch fixes the acheck build failure by adding a space after the first "done". -- Matt diff -ru acheck-0.5-orig/debian/rules acheck-0.5/debian/rules --- acheck-0.5-orig/debian/rules2006-02-19 11:25:11.0 -0800 +++ acheck-0.5/debian/rules 2006-02-19 11:25:36.0 -0800 @@ -28,7 +28,7 @@ if test -e man/$(package).$$lang.$$i.pod; then\ pod2man --section=$$i man/$(package).$$lang.$$i.pod > man/$(package).$$lang.$$i;\ fi\ - done\ + done \ done $(MAKE) -C po all touch build-stamp signature.asc Description: Digital signature
Bug#351801: Adding the sarge tag
tag 351801 sarge thanks Since this bug only applies to sarge, I'm adding the sarge tag. -- Matt signature.asc Description: Digital signature
Bug#352796: Patch to fix malformed dependency
tag 352796 patch thanks The attached patch fixes the malformed values in alml's Conflict field by adding an equal sign before the version number. -- Matt diff -ru alml-2005.01.01-orig/debian/control alml-2005.01.01/debian/control --- alml-2005.01.01-orig/debian/control 2006-02-19 11:37:56.0 -0800 +++ alml-2005.01.01/debian/control 2006-02-19 11:41:51.0 -0800 @@ -8,7 +8,7 @@ Package: alml Architecture: all Depends: perl, tetex-bin (>= 0.9.990310-1), tetex-extra (>= 1.0.2), latex-ucs, latex-ucs-contrib, latex-ucs-uninames, html2ps (>= 1.0), liblocale-gettext-perl (>= 1.01-8), sharutils (>= 4.2.1-1), imagemagick (>= 4.2.8-9), sp, psutils (>= 1.17-9), gs, gs-common, sgml-base, sgml-data, tetex-base, dvipdfm, lilypond (>= 2.1.0), transfig, dviutils, gnuplot -Conflicts: gs-gpl (8.01-4), gs (8.01-4) +Conflicts: gs-gpl (= 8.01-4), gs (= 8.01-4) Description: SGML typesetting system able to generate PDF, PS, HTML and TXT Alml is a SGML typesetting system developed for a big italian document: "Appunti di informatica libera"; signature.asc Description: Digital signature
Bug#352382: Patch to update libgnustep-gui0.9-dev build dependency
tag 352382 patch thanks The attached patch makes connect.app build-depend on libgnustep-gui0.10-dev instead of libgnustep-gui0.9-dev. -- Matt Only in connect.app-0.1-orig: build-stamp Only in connect.app-0.1-orig: configure-stamp diff -ru connect.app-0.1-orig/debian/control connect.app-0.1/debian/control --- connect.app-0.1-orig/debian/control 2006-02-19 14:47:26.0 -0800 +++ connect.app-0.1/debian/control 2006-02-19 14:48:12.0 -0800 @@ -2,7 +2,7 @@ Section: net Priority: optional Maintainer: Gürkan Sengün <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.9-dev, gnustep-make +Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.10-dev, gnustep-make Standards-Version: 3.6.1 Package: connect.app signature.asc Description: Digital signature
Bug#352785: Patch to fix Recommends field
tag 352785 patch thanks The attached patch adds commas between the packages in couriergraph's Recommends field. -- Matt diff -ru couriergraph-0.24-orig/debian/control couriergraph-0.24/debian/control --- couriergraph-0.24-orig/debian/control 2006-02-19 14:53:56.0 -0800 +++ couriergraph-0.24/debian/control2006-02-19 14:54:15.0 -0800 @@ -9,7 +9,7 @@ Architecture: all Pre-Depends: debconf (>= 1.1) Depends: libfile-tail-perl, librrds-perl -Recommends: httpd courier-pop courier-imap +Recommends: httpd, courier-pop, courier-imap Description: Mail statistics RRDtool frontend for Courier-{POP,IMAP} Couriergraph is a very simple mail statistics RRDtool frontend for Courier-POP & Courier-IMAP that produces daily, weekly, monthly and signature.asc Description: Digital signature
Bug#353101: Patch to fix dependency parsing error
tag 353101 patch thanks The attached patch fixes the dependency parsing problem by adding a comma between httpd and bind9 on the Recommends line. -- Matt diff -ru bindgraph-0.2-orig/debian/control bindgraph-0.2/debian/control --- bindgraph-0.2-orig/debian/control 2006-02-21 22:11:59.0 -0800 +++ bindgraph-0.2/debian/control2006-02-21 22:12:43.0 -0800 @@ -9,7 +9,7 @@ Architecture: all Pre-Depends: debconf (>= 1.1) Depends: libfile-tail-perl, librrds-perl -Recommends: httpd bind9 +Recommends: httpd, bind9 Description: DNS statistics RRDtool frontend for BIND9 BindGraph is a very simple DNS statistics RRDtool frontend for BIND9 that produces daily, weekly, monthly and yearly graphs of signature.asc Description: Digital signature
Bug#353112: Patch to fix make-induced build failure
tag 353112 patch thanks The attached patch fixes this build failure by, as Steve suggests, adding a space after "then". It also fixes some similar problems elsewhere in the file. -- Matt diff -ru aranym-0.9.0final-orig/src/Unix/Makefile.in aranym-0.9.0final/src/Unix/Makefile.in --- aranym-0.9.0final-orig/src/Unix/Makefile.in 2006-02-21 22:06:20.0 -0800 +++ aranym-0.9.0final/src/Unix/Makefile.in 2006-02-21 22:08:21.0 -0800 @@ -150,7 +150,7 @@ install: $(APP) $(TAPIF) $(APP).1.gz installdirs $(INSTALL_PROGRAM) $(APP) $(DESTDIR)$(bindir)/$(APP) - if [ "x$(APP_IFC)" = "x$(TAPIF)" ]; then\ + if [ "x$(APP_IFC)" = "x$(TAPIF)" ]; then \ $(INSTALL_PROGRAM) $(APP_IFC) $(DESTDIR)$(bindir)/$(APP_IFC);\ fi $(INSTALL_DATA) $(APP).1.gz $(DESTDIR)$(man1dir)/$(APP).1.gz @@ -196,7 +196,7 @@ uninstall: rm -f $(DESTDIR)$(bindir)/$(APP) - if [ "x$(APP_IFC)" = "x$(TAPIF)" ]; then\ + if [ "x$(APP_IFC)" = "x$(TAPIF)" ]; then \ rm -f $(DESTDIR)$(bindir)/$(APP_IFC);\ fi rm -f $(DESTDIR)$(man1dir)/$(APP).1.gz @@ -269,7 +269,7 @@ bindist: $(APP) $(TAPIF) $(APP).1.gz bindistdirs $(INSTALL_PROGRAM) $(APP) tmpdist$(bindir)/$(APP) - if [ "x$(APP_IFC)" = "x$(TAPIF)" ]; then\ + if [ "x$(APP_IFC)" = "x$(TAPIF)" ]; then \ $(INSTALL_PROGRAM) $(APP_IFC) tmpdist$(bindir)/$(APP_IFC);\ fi $(INSTALL_DATA) $(APP).1.gz tmpdist$(man1dir)/$(APP).1.gz signature.asc Description: Digital signature
Bug#353102: Patch for dependency parse error
tag 353102 patch thanks The attached patch fixes the dependency parse error by adding a comma between ${shlibs:Depends} and ${misc:Depends}, both of which are replaced by the empty string, resulting in a field containing a single space. It also fixes the misspelling of the Recommends field name. -- Matt diff -ru drgeo-doc-1.5-orig/debian/control drgeo-doc-1.5/debian/control --- drgeo-doc-1.5-orig/debian/control 2006-02-21 22:21:13.0 -0800 +++ drgeo-doc-1.5/debian/control2006-02-21 23:18:22.0 -0800 @@ -7,9 +7,9 @@ Package: drgeo-doc Architecture: all -Recommands: drgeo -Depends: ${shlibs:Depends} ${misc:Depends}, dillo +Recommends: drgeo +Depends: ${shlibs:Depends}, ${misc:Depends}, dillo Description: The Dr. Geo online manual. Install this package if you want the on-line help for the Dr. Geo software. The on-line help can be used directly signature.asc Description: Digital signature
Bug#352372: Patch
tag 352372 patch thanks The attached patch fixes this bug by changing the build-dependency on libgnustep-base1.10-dev to libgnustep-base1.11-dev. It also changes the dependency on libgnustep-base1.10 to libgnustep-base1.11. -- Matt diff -ru gnustep-netclasses-0.0.20040112-orig/debian/control gnustep-netclasses-0.0.20040112/debian/control --- gnustep-netclasses-0.0.20040112-orig/debian/control 2006-02-22 12:59:12.0 -0800 +++ gnustep-netclasses-0.0.20040112/debian/control 2006-02-22 12:59:51.0 -0800 @@ -2,13 +2,13 @@ Section: libs Priority: optional Maintainer: Brent A. Fulgham <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-base1.10-dev (>= 1.5.0-1) +Build-Depends: debhelper (>= 4.0.0), libgnustep-base1.11-dev (>= 1.5.0-1) Standards-Version: 3.6.1.1 Package: gnustep-netclasses Section: libs Architecture: any -Depends: libgnustep-base1.10, ${shlibs:Depends}, ${misc:Depends} +Depends: libgnustep-base1.11, ${shlibs:Depends}, ${misc:Depends} Conflicts: netclasses-framework Description: Objective-C framework for socket programming with GNUstep Netclasses is an easy to use interface to socket programming in Objective-C signature.asc Description: Digital signature
Bug#347128: Patch
tag 347128 patch thanks The attached patch removes the build-dependency on xlibs-dev, as iconx appears to depend on all of the necessary development packages. -- Matt diff -ru noweb-2.10c-orig/debian/control noweb-2.10c/debian/control --- noweb-2.10c-orig/debian/control 2006-02-22 15:04:45.0 -0800 +++ noweb-2.10c/debian/control 2006-02-22 15:05:29.0 -0800 @@ -2,7 +2,7 @@ Section: devel Priority: extra Maintainer: Federico Di Gregorio <[EMAIL PROTECTED]> -Build-Depends: iconc, icont, iconx, debhelper, tetex-extra, xlibs-dev (>= 3.3.5), dbs +Build-Depends: iconc, icont, iconx, debhelper, tetex-extra, dbs Standards-Version: 3.5.9 Package: nowebm signature.asc Description: Digital signature
Bug#352390: Patch
tag 352390 patch thanks The attached patch changes the build-dependency on libgnustep-gui0.9-dev to libgnustep-gui0.10-dev. -- Matt diff -ru imageviewer-0.6.3-orig/debian/control imageviewer-0.6.3/debian/control --- imageviewer-0.6.3-orig/debian/control 2006-02-22 14:00:53.0 -0800 +++ imageviewer-0.6.3/debian/control2006-02-22 14:02:05.0 -0800 @@ -2,7 +2,7 @@ Section: graphics Priority: optional Maintainer: Evan Prodromou <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.9-dev (>= 0.9.4) +Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.10-dev (>= 0.9.4) Standards-Version: 3.6.1.1 Package: imageviewer signature.asc Description: Digital signature
Bug#352383: Patch
tag 352383 patch thanks The attached patch changes the build-dependency on libgnustep-gui0.9-dev to libgnustep-gui0.10-dev. -- Matt diff -ru helpviewer.app-0.3-orig/debian/control helpviewer.app-0.3/debian/control --- helpviewer.app-0.3-orig/debian/control 2006-02-22 13:52:54.0 -0800 +++ helpviewer.app-0.3/debian/control 2006-02-22 13:53:08.0 -0800 @@ -2,7 +2,7 @@ Section: doc Priority: optional Maintainer: Gürkan Sengün <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.9-dev, gnustep-make +Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.10-dev, gnustep-make Standards-Version: 3.6.1 Package: helpviewer.app signature.asc Description: Digital signature
Bug#353130: Patch to fix build failure
tag 353130 patch thanks The attached patch fixes the build failure by making chinput build-depend on unicon-imc2 instead of unicon-im, since the forme is the latter's new name, and adding a missing build-dependency on libxt-dev. -- Matt diff -ru chinput-3.0.2-orig/debian/control chinput-3.0.2/debian/control --- chinput-3.0.2-orig/debian/control 2006-02-22 11:31:00.0 -0800 +++ chinput-3.0.2/debian/control2006-02-22 12:29:08.0 -0800 @@ -1,7 +1,7 @@ Source: chinput Section: utils Priority: optional -Build-Depends: debhelper, libpth-dev, imlib11-dev, unicon-im (>= 3.0.4-9) +Build-Depends: debhelper, libpth-dev, libxt-dev, imlib11-dev, unicon-imc2 Maintainer: Yu Guanghui <[EMAIL PROTECTED]> Standards-Version: 3.5.8 Only in chinput-3.0.2-orig/src/IMdkit/Xi18n_sample: README.orig signature.asc Description: Digital signature
Bug#353309: Patch
tag 353309 patch thanks The attached patch changes $(CFLAGS) to CFLAGS in the ifndef conditional. -- Matt diff -ru mguesser-0.2-orig/Makefile mguesser-0.2/Makefile --- mguesser-0.2-orig/Makefile 2006-02-22 14:38:30.0 -0800 +++ mguesser-0.2/Makefile 2006-02-22 14:49:47.0 -0800 @@ -1,4 +1,4 @@ -ifndef $(CFLAGS) +ifndef CFLAGS CFLAGS=-Wall -g endif DEFINES=-DUDM_GUESSER_STANDALONG -DLMDIR=\"${DESTDIR}/usr/share/mguesser\" -DMGUESSER_VERSION=\"0.2\" signature.asc Description: Digital signature
Bug#353103: Patch for build failure
tag 353103 patch thanks The attached patch fixes the build failure by commenting out the copy commands, since they aren't necessary anymore. -- Matt diff -ru dvipdfm-cjk-20021231-orig/debian/rules dvipdfm-cjk-20021231/debian/rules --- dvipdfm-cjk-20021231-orig/debian/rules 2006-02-22 12:35:10.0 -0800 +++ dvipdfm-cjk-20021231/debian/rules 2006-02-22 12:37:07.0 -0800 @@ -45,9 +45,9 @@ # Add here commands to clean up after the build process. #-$(MAKE) distclean #-test -r /usr/share/misc/config.sub && \ - cp -f /usr/share/misc/config.sub config.sub + # cp -f /usr/share/misc/config.sub config.sub #-test -r /usr/share/misc/config.guess && \ - cp -f /usr/share/misc/config.guess config.guess + # cp -f /usr/share/misc/config.guess config.guess dh_clean signature.asc Description: Digital signature
Bug#353314: Patch
tag 353314 patch thanks The attached patch fixes the build failure by quoting each line of the sed expression individually. -- Matt diff -ru surfraw-2.1.1-orig/Makefile.in surfraw-2.1.1/Makefile.in --- surfraw-2.1.1-orig/Makefile.in 2006-02-22 13:06:02.0 -0800 +++ surfraw-2.1.1/Makefile.in 2006-02-22 13:18:17.0 -0800 @@ -631,12 +631,12 @@ %: %.IN -rm -f $@ [EMAIL PROTECTED] - sed 's,@bindir\@,${bindir},g; \ -s,@mandir\@,${mandir},g; \ -s,@VERSION\@,${VERSION},g; \ -s,@prefix\@,${prefix},g; \ -s,@ELVIDIR\@,${ELVIDIR},g; \ -s,@sysconfdir\@,${sysconfdir},g' $< >[EMAIL PROTECTED] + sed 's,@bindir\@,${bindir},g; '\ +' s,@mandir\@,${mandir},g; '\ +' s,@VERSION\@,${VERSION},g; '\ +' s,@prefix\@,${prefix},g; '\ +' s,@ELVIDIR\@,${ELVIDIR},g; '\ +' s,@sysconfdir\@,${sysconfdir},g' $< >[EMAIL PROTECTED] chmod +x [EMAIL PROTECTED] mv [EMAIL PROTECTED] $@ diff -ru surfraw-2.1.1-orig/Makefile.include surfraw-2.1.1/Makefile.include --- surfraw-2.1.1-orig/Makefile.include 2006-02-22 13:06:02.0 -0800 +++ surfraw-2.1.1/Makefile.include 2006-02-22 13:11:23.0 -0800 @@ -2,12 +2,12 @@ %: %.IN -rm -f $@ [EMAIL PROTECTED] - sed 's,@bindir\@,${bindir},g; \ -s,@mandir\@,${mandir},g; \ -s,@VERSION\@,${VERSION},g; \ -s,@prefix\@,${prefix},g; \ -s,@ELVIDIR\@,${ELVIDIR},g; \ -s,@sysconfdir\@,${sysconfdir},g' $< >[EMAIL PROTECTED] + sed 's,@bindir\@,${bindir},g; '\ +' s,@mandir\@,${mandir},g; '\ +' s,@VERSION\@,${VERSION},g; '\ +' s,@prefix\@,${prefix},g; '\ +' s,@ELVIDIR\@,${ELVIDIR},g; '\ +' s,@sysconfdir\@,${sysconfdir},g' $< >[EMAIL PROTECTED] chmod +x [EMAIL PROTECTED] mv [EMAIL PROTECTED] $@ signature.asc Description: Digital signature
Bug#352401: Patch
tag 352401 patch thanks The attached patch changes the build-dependency on libgnustep-gui0.9-dev to libgnustep-gui0.10-dev. -- Matt diff -ru gorm-0.9.2-orig/debian/control gorm-0.9.2/debian/control --- gorm-0.9.2-orig/debian/control 2006-02-22 13:02:44.0 -0800 +++ gorm-0.9.2/debian/control 2006-02-22 13:03:22.0 -0800 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian GNUstep maintainers <[EMAIL PROTECTED]> Uploaders: Gürkan Sengün <[EMAIL PROTECTED]>, Eric Heintzmann <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.7), libgnustep-gui0.9-dev, tetex-bin (>= 2.0.2), texi2html (>= 1.66), texinfo (>= 4.6) +Build-Depends: debhelper (>= 4.0.7), libgnustep-gui0.10-dev, tetex-bin (>= 2.0.2), texi2html (>= 1.66), texinfo (>= 4.6) Standards-Version: 3.6.1 Package: gorm signature.asc Description: Digital signature
Bug#352408: Patch
tag 352408 patch thanks The attached patch makes the cddb.bundle source package build-depend on libgnustep-base1.11-dev instead of libgnustep-base1.10-dev and the binary package depend on libgnustep-base1.11 instead of libgnustep-base1.10. -- Matt diff -ru cddb.bundle-0.2-orig/debian/control cddb.bundle-0.2/debian/control --- cddb.bundle-0.2-orig/debian/control 2006-02-23 16:45:46.0 -0800 +++ cddb.bundle-0.2/debian/control 2006-02-23 16:48:56.0 -0800 @@ -2,11 +2,11 @@ Section: sound Priority: optional Maintainer: Gürkan Sengün <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-base1.10-dev +Build-Depends: debhelper (>= 4.0.0), libgnustep-base1.11-dev Standards-Version: 3.6.1 Package: cddb.bundle Architecture: any -Depends: ${shlibs:Depends}, libgnustep-base1.10 +Depends: ${shlibs:Depends}, libgnustep-base1.11 Description: Bundle for CDDB access for GNUstep This is a GNUstep bundle for cddb access. signature.asc Description: Digital signature
Bug#350688: Patch
tag 350688 patch thanks The attached patch integrates Daniel's patch into the build system. It fixes the problem on PowerPC. -- Matt diff -Nru gcc-2.95-2.95.4.ds15-orig/debian/patches/p-make-lang.dpatch gcc-2.95-2.95.4.ds15/debian/patches/p-make-lang.dpatch --- gcc-2.95-2.95.4.ds15-orig/debian/patches/p-make-lang.dpatch 1969-12-31 16:00:00.0 -0800 +++ gcc-2.95-2.95.4.ds15/debian/patches/p-make-lang.dpatch 2006-02-22 12:55:05.0 -0800 @@ -0,0 +1,56 @@ +#! /bin/sh -e + +# DP: Quote the arguments to sed in the Pascal Make-lang.in. + +if [ $# -eq 3 -a "$2" = '-d' ]; then +pdir="-d $3" +elif [ $# -ne 1 ]; then +echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" +exit 1 +fi +case "$1" in +-patch) patch $pdir -f --no-backup-if-mismatch -p0 < $0;; +-unpatch) patch $pdir -f --no-backup-if-mismatch -R -p0 < $0;; +*) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +esac +exit 0 + +--- gcc/p/Make-lang.in.old 2006-01-31 12:15:09.0 + gcc/p/Make-lang.in 2006-01-31 12:16:05.0 + +@@ -570,20 +570,20 @@ + # Exclude patched files from language-independent object file list. + # Not necessary for gcc-3 since for a library (libbackend.a), the linker does this automatically. + p/stamp-gbe: stamp-objlist Makefile +- sed -e 's: ../: :g;\ +- s: convert.o::g;\ +- s: dbxout.o::g;\ +- s: dwarf2out.o::g;\ +- s: emit-rtl.o::g;\ +- s: expr.o::g;\ +- s: fold-const.o::g;\ +- s: function.o::g;\ +- s: integrate.o::g;\ +- s: optabs.o::g;\ +- s: stmt.o::g;\ +- s: stor-layout.o::g;\ +- s: toplev.o::g;\ +- s: tree.o::g' "$<" > "$@" || { rm -f "$@"; false; } ++ sed -e 's: ../: :g;'\ ++' s: convert.o::g;'\ ++' s: dbxout.o::g;'\ ++' s: dwarf2out.o::g;'\ ++' s: emit-rtl.o::g;'\ ++' s: expr.o::g;'\ ++' s: fold-const.o::g;'\ ++' s: function.o::g;'\ ++' s: integrate.o::g;'\ ++' s: optabs.o::g;'\ ++' s: stmt.o::g;'\ ++' s: stor-layout.o::g;'\ ++' s: toplev.o::g;'\ ++' s: tree.o::g' "$<" > "$@" || { rm -f "$@"; false; } + + gpc1$(exeext): $(P) $(GPC_GCC_VERSION_DEPS) $(GPC_OBJS) $(LIBDEPS) + @grep "@@ PATCHED FOR GPC 20030218 @@" $(srcdir)/stor-layout.c > /dev/null || \ diff -Nru gcc-2.95-2.95.4.ds15-orig/debian/rules gcc-2.95-2.95.4.ds15/debian/rules --- gcc-2.95-2.95.4.ds15-orig/debian/rules 2006-02-22 12:51:16.0 -0800 +++ gcc-2.95-2.95.4.ds15/debian/rules 2006-02-22 12:56:09.0 -0800 @@ -36,7 +36,7 @@ $(MAKE) -f debian/rules.conf control touch $(control_stamp) -configure: control $(configure_stamps) +configure: patch $(configure_stamps) $(configure_stamp)-%: $(MAKE) -f debian/rules2 TARGET=$* $@ diff -Nru gcc-2.95-2.95.4.ds15-orig/debian/rules.patch gcc-2.95-2.95.4.ds15/debian/rules.patch --- gcc-2.95-2.95.4.ds15-orig/debian/rules.patch2006-02-22 12:51:16.0 -0800 +++ gcc-2.95-2.95.4.ds15/debian/rules.patch 2006-02-22 14:47:58.0 -0800 @@ -182,6 +182,8 @@ # conflicts with gcc-core-2.95.2-avr-1.1 #all_patches += gcc-s390 +debian_patches += p-make-lang + # testing only #debian_patches := $(all_patches) #debian_patches := $(min_patches) signature.asc Description: Digital signature
Bug#353134: Merged into libtest-simple-perl - remove package?
Howdy, According to both the upstream Changes and libtest-simple-perl's dependencies, libtest-builder-tester has been merged into libtest-simple-perl. Should this package be removed? -- Matt signature.asc Description: Digital signature
Bug#353135: Patch
tag 353135 patch thanks This is actually a bug in libtest-builder-tester, but it has been superseded by libtest-simple-perl, so the attached patch makes libtest-pod-perl build-depend on the latter instead, which fixes its build. -- Matt diff -ru libtest-pod-perl-1.20-orig/debian/control libtest-pod-perl-1.20/debian/control --- libtest-pod-perl-1.20-orig/debian/control 2006-02-24 08:11:13.0 -0800 +++ libtest-pod-perl-1.20/debian/control2006-02-24 08:17:01.0 -0800 @@ -2,7 +2,7 @@ Section: perl Priority: optional Maintainer: Jay Bonci <[EMAIL PROTECTED]> -Build-Depends-Indep: debhelper (>> 4.0.0), libio-stringy-perl, libtest-builder-tester-perl, libpod-simple-perl +Build-Depends-Indep: debhelper (>> 4.0.0), libio-stringy-perl, libtest-simple-perl, libpod-simple-perl Standards-Version: 3.6.1.0 Package: libtest-pod-perl signature.asc Description: Digital signature
Bug#353315: Patch
tag 353315 patch thanks The attached patch implements Daniel's suggestion. I verified that it fixed the build. -- Matt diff -ru upsd-2.6-orig/Makefile upsd-2.6/Makefile --- upsd-2.6-orig/Makefile 2006-02-24 20:38:56.0 -0800 +++ upsd-2.6/Makefile 2006-02-24 20:39:34.0 -0800 @@ -105,5 +105,5 @@ $(LD) $(OBJS) $(LDFLAGS) -o $@ .c.o: - $(CC) $(DEBUG) $(CFLAGS) $(PWRSTAT)\ + $(CC) $(DEBUG) $(CFLAGS) $(PWRSTAT) \ $(CFGFILE) $(UPSSTAT) $(VER) -c $< -o $@ signature.asc Description: Digital signature
Bug#347095: Patch
tag 347095 patch tag 349443 patch thanks The attached patch fixes both of these bugs. To fix bug 347095, it removes the build-dependency on xlibs-dev. To fix bug 349443, it removes the X11 subdirectory. -- Matt diff -ru pixmap-2.6pl4-orig/debian/control pixmap-2.6pl4/debian/control --- pixmap-2.6pl4-orig/debian/control 2006-02-25 12:44:17.0 -0800 +++ pixmap-2.6pl4/debian/control2006-02-25 12:44:25.0 -0800 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Paul Slootman <[EMAIL PROTECTED]> Standards-Version: 3.6.1 -Build-Depends: xlibs-dev, xutils, libxaw7-dev +Build-Depends: xutils, libxaw7-dev Package: pixmap Depends: ${shlibs:Depends} diff -ru pixmap-2.6pl4-orig/debian/rules pixmap-2.6pl4/debian/rules --- pixmap-2.6pl4-orig/debian/rules 2006-02-25 12:44:17.0 -0800 +++ pixmap-2.6pl4/debian/rules 2006-02-25 13:07:13.0 -0800 @@ -24,6 +24,7 @@ build: # Builds the binary package. + rm -fr X11 xmkmf rm -f clean make Makefiles signature.asc Description: Digital signature
Bug#350435: Blocked by 350435
block 350435 by 351408 thanks I created a patch that should fix this bug but when I tested it, the build failed because of bug 351408. I've attached the patch anyway. -- Matt diff -ru lusernet.app-0.4.1-orig/debian/control lusernet.app-0.4.1/debian/control --- lusernet.app-0.4.1-orig/debian/control 2006-02-26 10:51:11.0 -0800 +++ lusernet.app-0.4.1/debian/control 2006-02-26 10:51:47.0 -0800 @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Gürkan Sengün <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.9-dev, pantomime-dev, gnustep-make +Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.10-dev, pantomime-dev, gnustep-make Standards-Version: 3.6.1 Package: lusernet.app signature.asc Description: Digital signature
Bug#353857: Pending
tag 353857 pending thanks Per Mattias's message that this is just waiting for a sponsor, I'm marking this bug pending. -- Matt signature.asc Description: Digital signature
Bug#352375: tag 352375 patch
tag 352375 patch thanks The attached patch changes the build-dependencies on libgnustep-gui0.9-dev and gnustep-back to libgnustep-gui0.10-dev and gnustep-gpbs, respectively, which fixes the build. -- Matt signature.asc Description: Digital signature
Bug#352375: tag 352375 patch
On Sun, Feb 26, 2006 at 11:43:47AM -0800, Matt Kraai wrote: > The attached patch changes the build-dependencies on > libgnustep-gui0.9-dev and gnustep-back to libgnustep-gui0.10-dev and > gnustep-gpbs, respectively, which fixes the build. And now for the actual patch. -- Matt diff -ru preferences-1.2.100.0-orig/debian/control preferences-1.2.100.0/debian/control --- preferences-1.2.100.0-orig/debian/control 2006-02-26 11:20:00.0 -0800 +++ preferences-1.2.100.0/debian/control2006-02-26 11:30:23.0 -0800 @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Gürkan Sengün <[EMAIL PROTECTED]> -Build-Depends: debhelper (>> 4.1.0), libgnustep-gui0.9-dev, gnustep-back +Build-Depends: debhelper (>> 4.1.0), libgnustep-gui0.10-dev, gnustep-gpbs Standards-Version: 3.6.1 Package: preferences signature.asc Description: Digital signature
Bug#353312: Patch
tag 353312 patch thanks The attached patch fixes the build problems that sufary has when using the new make. -- Matt diff -ru sufary-2.1.1-orig/debian/rules sufary-2.1.1/debian/rules --- sufary-2.1.1-orig/debian/rules 2006-02-26 11:32:51.0 -0800 +++ sufary-2.1.1/debian/rules 2006-02-26 11:40:15.0 -0800 @@ -76,7 +76,7 @@ # Add here commands to install the package into debian/tmp. # sufary - cp array/array mkary/mkary mkdid/mkdid tools/af tools/sass\ + cp array/array mkary/mkary mkdid/mkdid tools/af tools/sass \ $(TMPDIR)/usr/bin mv $(TMPDIR)/usr/bin/af $(TMPDIR)/usr/bin/sufary-af cp debian/array.1 $(TMPDIR)/usr/share/man/man1 @@ -90,8 +90,8 @@ >$(TMPDIR)/usr/share/doc/sufary/MakeIndex.txt $(PERL) doc/txt2txt.perl doc/Tools.txt\ >$(TMPDIR)/usr/share/doc/sufary/Tools.txt - sed -e '1s;local/;;'\ - -e '/^\$$SADIR/d'\ + sed -e '1s;local/;;' \ + -e '/^\$$SADIR/d' \ -e '/mkdid/s;\$$SADIR/mkdid;/usr/bin;' mkdid/mkdids.perl\ >$(TMPDIR)/usr/share/doc/sufary/examples/mkdids.perl chmod 755 $(TMPDIR)/usr/share/doc/sufary/examples/mkdids.perl @@ -128,13 +128,13 @@ sed -e '1s;local/bin/wish;bin/wish;' kwicview/online_help.tcl\ > debian/sufary-tcltk/usr/share/sufary/kwicview/online_help.tcl chmod 755 debian/sufary-tcltk/usr/share/sufary/kwicview/online_help.tcl - sed -e '1s;local/bin/wish;bin/wish;'\ - -e '/^set sufary_path/s;auto/home/tatuo-y/work/sufary;usr/share;'\ - -e '/auto_path/s;\$$sufary_path;/usr/share/sufary;'\ - -e '/^set arraybin/s;\$$sufary_path/array;/usr/bin;'\ - -e '/^kanji/s/^/#/'\ - -e '/kanji string/s//string/g'\ - -e '/^ *option add/s/^/#/'\ + sed -e '1s;local/bin/wish;bin/wish;' \ + -e '/^set sufary_path/s;auto/home/tatuo-y/work/sufary;usr/share;' \ + -e '/auto_path/s;\$$sufary_path;/usr/share/sufary;' \ + -e '/^set arraybin/s;\$$sufary_path/array;/usr/bin;' \ + -e '/^kanji/s/^/#/' \ + -e '/kanji string/s//string/g' \ + -e '/^ *option add/s/^/#/' \ kwicview/kwicview >debian/sufary-tcltk/usr/bin/kwicview chmod 755 debian/sufary-tcltk/usr/bin/kwicview cp debian/kwicview.1 debian/sufary-tcltk/usr/share/man/man1/ signature.asc Description: Digital signature
Bug#352385: Patch
tag 352385 patch thanks The attached patch replaces the build-dependency on libgnustep-gui0.9-dev with libgnustep-gui0.10-dev and the dependency on libgnustep-gui0.9 with libgnustep-gui0.10. -- Matt diff -ru projectcenter-0.4.2-orig/debian/control projectcenter-0.4.2/debian/control --- projectcenter-0.4.2-orig/debian/control 2006-02-27 20:09:07.0 -0800 +++ projectcenter-0.4.2/debian/control 2006-02-27 20:10:29.0 -0800 @@ -2,12 +2,12 @@ Section: devel Priority: optional Maintainer: Evan Prodromou <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.1.48), libgnustep-gui0.9-dev (>= 0.9.4) +Build-Depends: debhelper (>= 4.1.48), libgnustep-gui0.10-dev Standards-Version: 3.6.1 Package: projectcenter Architecture: any -Depends: ${shlibs:Depends}, libgnustep-gui0.9-dev +Depends: ${shlibs:Depends}, libgnustep-gui0.10-dev Recommends: gorm Description: IDE for GNUstep Development ProjectCenter is an integrated development environment (IDE) for signature.asc Description: Digital signature
Bug#343805: Block 343805 by 354595
block 343805 by 354595 thanks sqlrelay build-depends on mdbtools-dev, which depends on libmdbodbc, which can't be installed because of bug 354595. -- Matt signature.asc Description: Digital signature
Bug#350691: Patch
tag 350691 patch thanks The attached patch fixes this bug by, as Daniel suggests, changing the build-dependency on freetype2-dev to libttf-dev. -- Matt diff -ru sdl-ttf1.2-1.2.2-orig/debian/control sdl-ttf1.2-1.2.2/debian/control --- sdl-ttf1.2-1.2.2-orig/debian/control2006-02-27 23:28:51.0 -0800 +++ sdl-ttf1.2-1.2.2/debian/control 2006-02-27 23:29:31.0 -0800 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]> Standards-Version: 3.6.1.0 -Build-Depends: debhelper (>= 3.0), libsdl1.2-dev (>= 1.2.2-3.2), freetype2-dev +Build-Depends: debhelper (>= 3.0), libsdl1.2-dev (>= 1.2.2-3.2), libttf-dev Package: libsdl-ttf1.2 Section: oldlibs signature.asc Description: Digital signature
Bug#352392: Patch
tag 352392 patch thanks The attached patch fixes this bug by changing the build-dependency on libgnustep-gui0.9-dev to libgnustep-gui0.10-dev. -- Matt diff -ru rssreader.app-0.2.2-orig/debian/control rssreader.app-0.2.2/debian/control --- rssreader.app-0.2.2-orig/debian/control 2006-02-27 23:26:28.0 -0800 +++ rssreader.app-0.2.2/debian/control 2006-02-27 23:26:40.0 -0800 @@ -2,7 +2,7 @@ Section: net Priority: optional Maintainer: Gürkan Sengün <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.9-dev, gnustep-make +Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.10-dev, gnustep-make Standards-Version: 3.6.1 Package: rssreader.app signature.asc Description: Digital signature
Bug#352397: Patch
tag 352397 patch thanks The attached patch fixes this bug by, as Luk suggests, changing the build-dependency on libgnustep-gui0.9-dev to libgnustep-gui0.10-dev. -- Matt diff -ru simpleui.bundle-0.1-orig/debian/control simpleui.bundle-0.1/debian/control --- simpleui.bundle-0.1-orig/debian/control 2006-02-27 23:30:25.0 -0800 +++ simpleui.bundle-0.1/debian/control 2006-02-27 23:31:05.0 -0800 @@ -2,7 +2,7 @@ Section: libs Priority: optional Maintainer: Eric Heintzmann <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.9-dev (>= 0.9.4) +Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.10-dev Standards-Version: 3.6.1.1 signature.asc Description: Digital signature
Bug#350078: tag 350078 patch
tag 350078 patch thanks Hubert Chan submitted a patch so I'm tagging this bug as such. -- Matt signature.asc Description: Digital signature
Bug#354969: Does not depend on libpantomime1
Package: libpantomime1-dev Version: 1.1.2.dfsg-4 Severity: serious libpantomime1-dev does not depend on libpantomime1. This is serious because it causes lusernet.app to fail to build since it can't find -lPantomime. > Linking app LuserNET ... > /usr/bin/ld: cannot find -lPantomime > collect2: ld returned 1 exit status -- Matt signature.asc Description: Digital signature
Bug#350435: Block 350435 by 354969
block 350435 by 354969 thanks Bug 354969 prevents lusernet.app from building, and thus prevents 350435 from being fixed. -- Matt signature.asc Description: Digital signature
Bug#355133: Patch
tag 355133 patch thanks The attached patch fixes this problem by replacing the build-dependency on gkrellm-common to gkrellm, which replaces it. -- Matt diff -ru alltraxclock-2.0.2-orig/debian/control alltraxclock-2.0.2/debian/control --- alltraxclock-2.0.2-orig/debian/control 2006-03-08 19:52:42.0 -0800 +++ alltraxclock-2.0.2/debian/control 2006-03-08 19:53:06.0 -0800 @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Romain Lerallut <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4), gkrellm-common (>= 2.1.12), libgtk2.0-dev +Build-Depends: debhelper (>= 4), gkrellm, libgtk2.0-dev Standards-Version: 3.6.1 Package: gkrellm-alltraxclock signature.asc Description: Digital signature
Bug#355136: Patch
tag 355136 patch thanks The attached patch changes the build-dependency on xlibmesa-dev to xlibmesa-gl-dev, which replaces it. -- Matt diff -ru cl-sdl-0.2.2-orig/debian/control cl-sdl-0.2.2/debian/control --- cl-sdl-0.2.2-orig/debian/control2006-03-08 19:56:22.0 -0800 +++ cl-sdl-0.2.2/debian/control 2006-03-08 19:59:45.0 -0800 @@ -2,7 +2,7 @@ Section: devel Priority: optional Maintainer: Matthew Danish <[EMAIL PROTECTED]> -Build-Depends: debhelper (>> 4.0.0), libsdl1.2-dev, xlibmesa-dev | libgl-dev, libsdl-ttf2.0-dev, libsdl-mixer1.2-dev, libsdl-image1.2-dev, xlibmesa-glu-dev | libglu-dev +Build-Depends: debhelper (>> 4.0.0), libsdl1.2-dev, xlibmesa-gl-dev | libgl-dev, libsdl-ttf2.0-dev, libsdl-mixer1.2-dev, libsdl-image1.2-dev, xlibmesa-glu-dev | libglu-dev Standards-Version: 3.6.1 Package: cl-sdl signature.asc Description: Digital signature
Bug#355075: Patch
tag 355075 patch thanks The attached patch fixes this problem by adding a space between the { and the \, since otherwise the new make leaves no space between the { and the echo, which leads to the error. -- Matt diff -ru cpipe-3.0.0-orig/makefile cpipe-3.0.0/makefile --- cpipe-3.0.0-orig/makefile 2006-03-08 19:56:27.0 -0800 +++ cpipe-3.0.0/makefile2006-03-08 20:14:47.0 -0800 @@ -27,7 +27,7 @@ cmdline.c cmdline.h cpipe.1: cmdline.cli - clig cmdline.cli || {\ + clig cmdline.cli || { \ echo "*"; \ echo "Get clig at http://wsd.iitb.fhg.de/~kir/clighome";; \ echo "or use cmdline.c, cmdline.h and cpipe.1 as they come"; \ signature.asc Description: Digital signature
Bug#355131: Patch
tag 355131 patch thanks The attached patch fixes this problem by replacing the build-dependency on gkrellm-common with gkrellm. -- Matt diff -ru gkrellm-reminder-2.0.0-orig/debian/control gkrellm-reminder-2.0.0/debian/control --- gkrellm-reminder-2.0.0-orig/debian/control 2006-03-09 02:10:15.0 -0800 +++ gkrellm-reminder-2.0.0/debian/control 2006-03-09 02:10:25.0 -0800 @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Joerg Jaspert <[EMAIL PROTECTED]> -Build-Depends: debhelper (>> 4.0.0), libgtk2.0-dev, gkrellm-common (>= 2.1.12) +Build-Depends: debhelper (>> 4.0.0), libgtk2.0-dev, gkrellm Standards-Version: 3.6.1 Package: gkrellm-reminder signature.asc Description: Digital signature
Bug#354205: Patch
tag 354205 patch thanks The attached patch fixes this problem by adding a build-dependency on libgnatvsn-dev, which contains gnatvsn.gpr. -- Matt diff -ru gnat-glade-3.15p-orig/debian/control gnat-glade-3.15p/debian/control --- gnat-glade-3.15p-orig/debian/control2006-03-09 02:26:28.0 -0800 +++ gnat-glade-3.15p/debian/control 2006-03-09 02:27:03.0 -0800 @@ -4,7 +4,7 @@ Section: devel Priority: optional Standards-Version: 3.6.2 -Build-Depends: debhelper (>= 4.1), gnat (>= 3.15p-17), gnat (<< 3.16), texinfo, zlib1g-dev, libgnatprj-dev +Build-Depends: debhelper (>= 4.1), gnat (>= 3.15p-17), gnat (<< 3.16), texinfo, zlib1g-dev, libgnatprj-dev, libgnatvsn-dev Package: libgarlic3.15p Architecture: i386 sparc powerpc signature.asc Description: Digital signature
Bug#355076: Patch
tag 355076 patch thanks The attached patch fixes this bug by making gpw build-depend on wamerican instead of wenglish, since wenglish was a dummy package depending on wamerican before it was removed. -- Matt diff -ru gpw-0.0.19940601-orig/debian/control gpw-0.0.19940601/debian/control --- gpw-0.0.19940601-orig/debian/control2006-03-09 02:37:02.0 -0800 +++ gpw-0.0.19940601/debian/control 2006-03-09 02:37:22.0 -0800 @@ -2,7 +2,7 @@ Section: utils Priority: optional Maintainer: Francesco Paolo Lovergine <[EMAIL PROTECTED]> -Build-Depends: debhelper (>> 3.0.0), wenglish +Build-Depends: debhelper (>> 3.0.0), wamerican Standards-Version: 3.5.8 Package: gpw signature.asc Description: Digital signature
Bug#354205: Patch
On Thu, Mar 09, 2006 at 01:43:23PM +0100, Ludovic Brenta wrote: > tag 354205 pending > thanks > > > tag 354205 patch > > thanks > > > > The attached patch fixes this problem by adding a build-dependency on > > libgnatvsn-dev, which contains gnatvsn.gpr. > > Thanks a lot for taking the time to produce this patch. gnat-glade > 3.15p-10 fixes this problem already. It has been on > www.ada-france.org/debian for several days, but my sponsor has not > found the time to upload it to Debian. Please feel free to perform > the upload if you want to (please notify Alexander if you do). I've sponsored the package. Thanks for creating it. In the future, would you please send a note to the bug report indicating that a sponsorable package that fixes the problem is available? Off topic, linda and lintian produce some errors and warnings that you may want to investigate. -- Matt signature.asc Description: Digital signature
Bug#356101: RC bug patches
tag 356101 patch thanks On Fri, Mar 10, 2006 at 05:45:24AM +, Martin Michlmayr wrote: > BTW, maybe you can take a look at #356101 It appears to be a bug in gtkmathview. cdbs provides the following single-colon rule: > unpatch: deapply-dpatches gtkmathview contains the following double-colon rule in its debian/rules: > unpatch:: deapply-dpatches The Make manual says that you can't have runs of both types for the same target. Since cdbs already provides a rule, the attached patch just removes the other rule from gtkmathview's debian/rules, which fixes the problem. -- Matt diff -ru gtkmathview-0.7.5-orig/debian/rules gtkmathview-0.7.5/debian/rules --- gtkmathview-0.7.5-orig/debian/rules 2006-03-09 21:52:43.0 -0800 +++ gtkmathview-0.7.5/debian/rules 2006-03-09 21:54:09.0 -0800 @@ -2,4 +2,3 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/rules/dpatch.mk -unpatch:: deapply-dpatches signature.asc Description: Digital signature
Bug#350000: reassign 350000 libmusicbrainz4-dev
reassign 35 libmusicbrainz4-dev retitle 35 Missing dependency on libexpat1-dev thanks /usr/lib/libmusicbrainz.la sets dependency_libs to /usr/lib/libexpat.la, but libmusicbrainz4-dev does not depend on libexpat1-dev. -- Matt signature.asc Description: Digital signature
Bug#355357: Patch
tag 355357 patch thanks The attached patch fixes this bug by not passing FORCE to SET for CMAKE_INSTALL_PREFIX, which was causing cmake to ignore the value passed on the command line. -- Matt diff -ru libapache2-mod-xmlrpc2-2.2.1-orig/CMakeLists.txt libapache2-mod-xmlrpc2-2.2.1/CMakeLists.txt --- libapache2-mod-xmlrpc2-2.2.1-orig/CMakeLists.txt2006-03-10 06:56:50.0 -0800 +++ libapache2-mod-xmlrpc2-2.2.1/CMakeLists.txt 2006-03-10 07:04:20.0 -0800 @@ -56,8 +56,7 @@ INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}) SET(CMAKE_SHARED_LIBRARY_PREFIX "") SET(CMAKE_INSTALL_PREFIX / CACHE PATH - "Install path prefix, prepended onto install directories." - FORCE) + "Install path prefix, prepended onto install directories.") SET(INSTALL_INCLUDE_DIR /usr/include CACHE PATH "Installation directory for header files") ADD_LIBRARY(mod_xmlrpc SHARED mod_xmlrpc.c mod_xmlrpc_c.c mod_xmlrpc_rb.c mod_xmlrpc_server.c) signature.asc Description: Digital signature
Bug#355314: Patch
tag 355314 patch thanks The attached patch fixes this problem by removing the build-dependency on libdb4.2-dev. -- Matt diff -ru libapache-mod-auth-useragent-1.0-orig/debian/control libapache-mod-auth-useragent-1.0/debian/control --- libapache-mod-auth-useragent-1.0-orig/debian/control2006-03-10 06:23:17.0 -0800 +++ libapache-mod-auth-useragent-1.0/debian/control 2006-03-10 06:24:17.0 -0800 @@ -2,7 +2,7 @@ Section: web Priority: optional Maintainer: Pawel Wiecek <[EMAIL PROTECTED]> -Build-Depends: debhelper (>> 3.0.0), apache-dev (>= 1.3.28), libdb4.2-dev +Build-Depends: debhelper (>> 3.0.0), apache-dev (>= 1.3.28) Standards-Version: 3.6.1 Package: libapache-mod-auth-useragent signature.asc Description: Digital signature
Bug#354196: Patch
tag 354196 patch thanks The build failed because Make didn't know how to generate y.tab.c, because it doesn't know that $(top_builddir)/src/y.tab.c refers to the same thing. Changing the latter to the former, as the attached patch does, fixes the problem. -- Matt diff -ru mailfilter-0.6.2-orig/src/Makefile.am mailfilter-0.6.2/src/Makefile.am --- mailfilter-0.6.2-orig/src/Makefile.am 2006-03-10 07:38:38.0 -0800 +++ mailfilter-0.6.2/src/Makefile.am2006-03-10 08:07:12.0 -0800 @@ -32,13 +32,13 @@ rcfile.cc: $(srcdir)/rcfile.ll rcparser.h $(LEX) $(AM_LFLAGS) -o$@ $^ -rcparser.h: $(top_builddir)/src/y.tab.c -$(top_builddir)/src/y.tab.c: $(srcdir)/rcfile.yy -$(YACC) $(YFLAGS) -o$@ $^; \ -mv --force y.tab.c rcparser.cc;\ -mv --force y.tab.h rcparser.h; \ -$(CXXCOMPILE) -c rcparser.cc; \ -touch $(top_builddir)/src/y.tab.c +rcparser.h: y.tab.c +y.tab.c: $(srcdir)/rcfile.yy + $(YACC) $(YFLAGS) -o$@ $^; \ + mv --force y.tab.c rcparser.cc;\ + mv --force y.tab.h rcparser.h; \ + $(CXXCOMPILE) -c rcparser.cc; \ + touch y.tab.c # This thing is a workaround to avoid compile errors. # We always re-generate the source from the flex/bison input, so it diff -ru mailfilter-0.6.2-orig/src/Makefile.in mailfilter-0.6.2/src/Makefile.in --- mailfilter-0.6.2-orig/src/Makefile.in 2006-03-10 07:38:38.0 -0800 +++ mailfilter-0.6.2/src/Makefile.in2006-03-10 08:23:03.0 -0800 @@ -553,13 +553,13 @@ rcfile.cc: $(srcdir)/rcfile.ll rcparser.h $(LEX) $(AM_LFLAGS) -o$@ $^ -rcparser.h: $(top_builddir)/src/y.tab.c -$(top_builddir)/src/y.tab.c: $(srcdir)/rcfile.yy -$(YACC) $(YFLAGS) -o$@ $^; \ -mv --force y.tab.c rcparser.cc;\ -mv --force y.tab.h rcparser.h; \ -$(CXXCOMPILE) -c rcparser.cc; \ -touch $(top_builddir)/src/y.tab.c +rcparser.h: y.tab.c +y.tab.c: $(srcdir)/rcfile.yy + $(YACC) $(YFLAGS) -o$@ $^; \ + mv --force y.tab.c rcparser.cc;\ + mv --force y.tab.h rcparser.h; \ + $(CXXCOMPILE) -c rcparser.cc; \ + touch y.tab.c # Looks like automake still wants to distribute rcfile.cc, even if it # is in nodist_*_sources. signature.asc Description: Digital signature
Bug#352377: Patch
tag 352377 patch thanks The attached patch fixes this problem by changing the build-dependency on libgnustep-gui0.9-dev to libgnustep-gui0.10-dev. -- Matt diff -ru wrapperfactory.app-0.1.0-orig/debian/control wrapperfactory.app-0.1.0/debian/control --- wrapperfactory.app-0.1.0-orig/debian/control2006-03-10 21:55:51.0 -0800 +++ wrapperfactory.app-0.1.0/debian/control 2006-03-10 21:56:00.0 -0800 @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Gürkan Sengün <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.9-dev, gnustep-make +Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.10-dev, gnustep-make Standards-Version: 3.6.1 Package: wrapperfactory.app signature.asc Description: Digital signature
Bug#342857: Why not install /etc/shells during upgrade?
Howdy, Why does the postinst not install shells if debianutils is being upgraded? I verified that the passwd postinst used to do the same thing, but I didn't find any explanation of why. -- Matt signature.asc Description: Digital signature
Bug#343805: Patch
tag 343805 patch thanks The attached patch fixes this bug by changing the build-dependency on libmysqlclient14-dev to libmysqlclient15-dev. -- Matt Only in sqlrelay-0.36.4-orig: config.guess Only in sqlrelay-0.36.4-orig: config.sub diff -ru sqlrelay-0.36.4-orig/debian/control sqlrelay-0.36.4/debian/control --- sqlrelay-0.36.4-orig/debian/control 2006-03-12 23:23:48.0 -0800 +++ sqlrelay-0.36.4/debian/control 2006-03-12 23:26:03.0 -0800 @@ -2,7 +2,7 @@ Section: misc Priority: optional Maintainer: Matthias Klose <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.2), libmysqlclient14-dev, freetds-dev, libiodbc2-dev, libpq-dev, libsqlite0-dev, mdbtools-dev (>= 0.5.99.0.6pre1.0.20050409-1.2), python, python2.3-dev, python2.4-dev, libpcre3-dev, libssl-dev, libxml2-dev, librudiments-dev (>= 0.28), libreadline5-dev, libgtk1.2-dev, ruby, ruby1.8-dev, tcl8.4-dev, php4-dev (>= 4:4.3.10-10), autotools-dev, chrpath, java-gcj-compat-dev [!mips !mipsel], zope-debhelper +Build-Depends: debhelper (>= 4.2), libmysqlclient15-dev, freetds-dev, libiodbc2-dev, libpq-dev, libsqlite0-dev, mdbtools-dev (>= 0.5.99.0.6pre1.0.20050409-1.2), python, python2.3-dev, python2.4-dev, libpcre3-dev, libssl-dev, libxml2-dev, librudiments-dev (>= 0.28), libreadline5-dev, libgtk1.2-dev, ruby, ruby1.8-dev, tcl8.4-dev, php4-dev (>= 4:4.3.10-10), autotools-dev, chrpath, java-gcj-compat-dev [!mips !mipsel], zope-debhelper Standards-Version: 3.6.2 Package: sqlrelay signature.asc Description: Digital signature
Bug#355551: Patch
tag 31 patch thanks The attached patch fixes the problem by changing the build-dependency on libmysqlclient14-dev to libmysqlclient15-dev in both control and control.in. -- Matt diff -ru libgda2-1.2.2-orig/debian/control libgda2-1.2.2/debian/control --- libgda2-1.2.2-orig/debian/control 2006-03-13 07:33:54.0 -0800 +++ libgda2-1.2.2/debian/control2006-03-13 07:39:06.0 -0800 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Gustavo R. Montesino <[EMAIL PROTECTED]> Uploaders: Debian GNOME Maintainers <[EMAIL PROTECTED]>, Akira TAGOH <[EMAIL PROTECTED]>, Andreas Rottmann <[EMAIL PROTECTED]>, Andrew Lau <[EMAIL PROTECTED]>, Carlos Perelló MarÃn <[EMAIL PROTECTED]>, Clément Stenac <[EMAIL PROTECTED]>, Ed Boraas <[EMAIL PROTECTED]>, Edd Dumbill <[EMAIL PROTECTED]>, Emil Soleyman-Zomalan <[EMAIL PROTECTED]>, Guilherme de S. Pastore <[EMAIL PROTECTED]>, Gustavo Noronha Silva <[EMAIL PROTECTED]>, J.H.M. Dassen (Ray) <[EMAIL PROTECTED]>, Joe Drew <[EMAIL PROTECTED]>, Johannes Rohr <[EMAIL PROTECTED]>, Jordi Mallach <[EMAIL PROTECTED]>, Jose Carlos Garcia Sogo <[EMAIL PROTECTED]>, Josselin Mouette <[EMAIL PROTECTED]>, Loic Minier <[EMAIL PROTECTED]>, Marc HE Brockschmidt <[EMAIL PROTECTED]>, OndÅej Surý <[EMAIL PROTECTED]>, Rob Bradford <[EMAIL PROTECTED]>, Robert McQueen <[EMAIL PROTECTED]>, Ross Burton <[EMAIL PROTECTED]>, Sebastien Bacher <[EMAIL PROTECTED]>, Sjoerd Simons <[EMAIL PROTECTED]>, Takuo KITAME <[EMAIL PROTECTED]> -Build-Depends: cdbs, debhelper (>= 4.1.46), gnome-pkg-tools, intltool, pkg-config, libglib2.0-dev (>= 2.4.1-2), libxml2-dev (>= 2.4.22), libxslt1-dev (>= 1.0.18), libmysqlclient14-dev, libpq-dev, libsqlite3-dev, freetds-dev (>= 0.61), unixodbc-dev, libgdbm-dev, libreadline5-dev, libpopt-dev, zlib1g-dev, scrollkeeper +Build-Depends: cdbs, debhelper (>= 4.1.46), gnome-pkg-tools, intltool, pkg-config, libglib2.0-dev (>= 2.4.1-2), libxml2-dev (>= 2.4.22), libxslt1-dev (>= 1.0.18), libmysqlclient15-dev, libpq-dev, libsqlite3-dev, freetds-dev (>= 0.61), unixodbc-dev, libgdbm-dev, libreadline5-dev, libpopt-dev, zlib1g-dev, scrollkeeper Build-Depends-Indep: gtk-doc-tools, sgmltools-lite Standards-Version: 3.6.1 diff -ru libgda2-1.2.2-orig/debian/control.in libgda2-1.2.2/debian/control.in --- libgda2-1.2.2-orig/debian/control.in2006-03-13 07:33:54.0 -0800 +++ libgda2-1.2.2/debian/control.in 2006-03-13 07:38:51.0 -0800 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Gustavo R. Montesino <[EMAIL PROTECTED]> Uploaders: @GNOME_TEAM@ -Build-Depends: cdbs, debhelper (>= 4.1.46), gnome-pkg-tools, intltool, pkg-config, libglib2.0-dev (>= 2.4.1-2), libxml2-dev (>= 2.4.22), libxslt1-dev (>= 1.0.18), libmysqlclient14-dev, libpq-dev, libsqlite3-dev, freetds-dev (>= 0.61), unixodbc-dev, libgdbm-dev, libreadline5-dev, libpopt-dev, zlib1g-dev, scrollkeeper +Build-Depends: cdbs, debhelper (>= 4.1.46), gnome-pkg-tools, intltool, pkg-config, libglib2.0-dev (>= 2.4.1-2), libxml2-dev (>= 2.4.22), libxslt1-dev (>= 1.0.18), libmysqlclient15-dev, libpq-dev, libsqlite3-dev, freetds-dev (>= 0.61), unixodbc-dev, libgdbm-dev, libreadline5-dev, libpopt-dev, zlib1g-dev, scrollkeeper Build-Depends-Indep: gtk-doc-tools, sgmltools-lite Standards-Version: 3.6.1 signature.asc Description: Digital signature
Bug#356114: Patch
tag 356114 patch thanks The only patch in debian/patches changed the Makefile, which was regenerated anyway, so there's no need to apply the patches. The attached patch removes the code to do so, which fixes the build. -- Matt diff -ru aspell-it-0.60-orig/debian/rules aspell-it-0.60/debian/rules --- aspell-it-0.60-orig/debian/rules2006-03-14 23:33:19.0 -0800 +++ aspell-it-0.60/debian/rules 2006-03-14 23:35:14.0 -0800 @@ -32,10 +32,6 @@ dh_testroot dh_clean -k dh_installdirs - - #for file in `ls $(CURDIR)/debian/patches` ; do \ -cat $(CURDIR)/debian/patches/$$file | patch -p0 ; \ -done $(MAKE) install DESTDIR=$(CURDIR)/debian/aspell-it signature.asc Description: Digital signature
Bug#355979: Patch
tag 355979 patch thanks The attached patch adds a build-dependency on libxpm-dev, which contains xpm.h. -- Matt diff -ru gnome-iconedit-1.2.0-orig/debian/control gnome-iconedit-1.2.0/debian/control --- gnome-iconedit-1.2.0-orig/debian/control2006-03-14 23:41:57.0 -0800 +++ gnome-iconedit-1.2.0/debian/control 2006-03-14 23:43:06.0 -0800 @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Jan-Hendrik Palic <[EMAIL PROTECTED]> -Build-Depends: debhelper (>> 3.0.0), libgdk-pixbuf-gnome-dev (>= 0.11.0-1), zlib1g-dev, libgdk-pixbuf-dev (>= 0.11.0-1), liboaf-dev (>= 0.6.5-1), libgnome-dev (>=1.2.13-1), libxml-dev, gettext, libpng12-dev +Build-Depends: debhelper (>> 3.0.0), libgdk-pixbuf-gnome-dev (>= 0.11.0-1), zlib1g-dev, libgdk-pixbuf-dev (>= 0.11.0-1), liboaf-dev (>= 0.6.5-1), libgnome-dev (>=1.2.13-1), libxml-dev, gettext, libpng12-dev, libxpm-dev Build-Conflicts: libbonobo-dev Standards-Version: 3.5.8 signature.asc Description: Digital signature
Bug#356044: Patch
tag 356044 patch thanks The attached patch implements Daniel's suggestion and adds a space before each backslash, which fixes the build. -- Matt diff -ru dict-foldoc-20030919-orig/debian/rules dict-foldoc-20030919/debian/rules --- dict-foldoc-20030919-orig/debian/rules 2006-03-14 23:39:44.0 -0800 +++ dict-foldoc-20030919/debian/rules 2006-03-14 23:41:34.0 -0800 @@ -60,9 +60,9 @@ stamp-build: # Builds the binary package. $(checkdir) - cat Dictionary debian/Dictionary.debian|\ - /usr/share/konwert/filters/iso1-ascii |\ - /usr/bin/dictfmt -f --allchars -u http://foldoc.doc.ic.ac.uk/foldoc/Dictionary.gz\ + cat Dictionary debian/Dictionary.debian| \ + /usr/share/konwert/filters/iso1-ascii | \ + /usr/bin/dictfmt -f --allchars -u http://foldoc.doc.ic.ac.uk/foldoc/Dictionary.gz \ -s "The Free On-line Dictionary of Computing (19 Sep 2003)" foldoc /usr/bin/dictzip -v foldoc.dict touch stamp-build signature.asc Description: Digital signature
Bug#355985: Patch
tag 355985 patch thanks The attached patch fixes this bug by replacing $(CFLAGS) with CFLAGS in the ifndef statement, which fixes the build. -- Matt diff -ru tcm-2.20+TSQD-orig/debian/Config.tmpl tcm-2.20+TSQD/debian/Config.tmpl --- tcm-2.20+TSQD-orig/debian/Config.tmpl 2006-03-15 21:23:29.0 -0800 +++ tcm-2.20+TSQD/debian/Config.tmpl2006-03-15 21:23:59.0 -0800 @@ -5,7 +5,7 @@ # STRIP = /usr/bin/strip --strip-debug STRIP = true -ifndef $(CFLAGS) +ifndef CFLAGS CFLAGS = -Wall -pedantic CFLAGS += -O3 -fomit-frame-pointer # CFLAGS += -g signature.asc Description: Digital signature
Bug#354847: tag 354847 patch
tag 354847 patch thanks Goswin has submitted a patch, so I'm tagging the bug as such. -- Matt signature.asc Description: Digital signature
Bug#356274: Patch
tag 356274 patch thanks The attached patch passes --ldflags to fltk-config instead of --ldstaticflags, which fixes the build. -- Matt diff -ru tuxpaint-config-0.0.6-orig/Makefile tuxpaint-config-0.0.6/Makefile --- tuxpaint-config-0.0.6-orig/Makefile 2006-03-16 15:13:13.0 -0800 +++ tuxpaint-config-0.0.6/Makefile 2006-03-16 15:13:41.0 -0800 @@ -70,7 +70,7 @@ # Libraries, paths, and flags: FLTK_CFLAGS=`fltk-config --cxxflags` -FLTK_LIBS=`fltk-config --ldstaticflags` +FLTK_LIBS=`fltk-config --ldflags` # Default CFLAGS: CFLAGS=-O2 -Wall signature.asc Description: Digital signature
Bug#356014: Patch
tag 356014 patch thanks The attached patch implements Daniel's suggestion of adding zlib1g-dev to the build-depends. I verified that this fixes the problem. -- Matt diff -ru openexr-1.2.2-orig/debian/control openexr-1.2.2/debian/control --- openexr-1.2.2-orig/debian/control 2006-03-16 13:50:21.0 -0800 +++ openexr-1.2.2/debian/control2006-03-16 13:51:02.0 -0800 @@ -2,7 +2,7 @@ Section: graphics Priority: optional Maintainer: Andrew Lau <[EMAIL PROTECTED]> -Build-Depends: autotools-dev, cdbs, debhelper (>= 4.1), dh-buildinfo, libfltk1.1-dev (>= 1.1.6-6), xlibmesa-gl-dev | libgl-dev, libglu1-xorg-dev | libglu-dev +Build-Depends: autotools-dev, cdbs, debhelper (>= 4.1), dh-buildinfo, libfltk1.1-dev (>= 1.1.6-6), xlibmesa-gl-dev | libgl-dev, libglu1-xorg-dev | libglu-dev, zlib1g-dev Standards-Version: 3.6.2 Package: openexr signature.asc Description: Digital signature
Bug#356404: Patch
tag 356404 patch thanks The attached patch implements Martin's suggestion of removing the parentheses, which fixes the build. -- Matt diff -ru sarg-2.1-orig/debian/control sarg-2.1/debian/control --- sarg-2.1-orig/debian/control2006-03-16 13:43:06.0 -0800 +++ sarg-2.1/debian/control 2006-03-16 13:45:32.0 -0800 @@ -9,7 +9,7 @@ Architecture: any Replaces: sqmgrlog Depends: ${shlibs:Depends} -Suggests: squid, (httpd | apache), squidguard, libapache-mod-php4 +Suggests: squid, httpd | apache, squidguard, libapache-mod-php4 Conflicts: sqmgrlog Description: squid analysis report generator Sarg is a Squid Analysis Report Generator that allow you to view "where" signature.asc Description: Digital signature
Bug#355999: Patch
tag 355999 patch thanks The attached patch changes the build-dependency on libneon24-dev to libneon25-dev, which fixes this problem. -- Matt diff -ru tla-1.3.3-orig/debian/control tla-1.3.3/debian/control --- tla-1.3.3-orig/debian/control 2006-03-16 17:44:50.0 -0800 +++ tla-1.3.3/debian/control2006-03-16 17:45:25.0 -0800 @@ -2,7 +2,7 @@ Section: devel Priority: optional Maintainer: Andrew Suffield <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.4), libneon24-dev, perl +Build-Depends: debhelper (>= 4.0.4), libneon25-dev, perl Standards-Version: 3.6.1 Package: tla signature.asc Description: Digital signature
Bug#356236: Patch
tag 356236 patch thanks The attached patch adds build-dependencies on libxt-dev and libxpm-dev, which fixes the build. I tried Luk's suggestion but it didn't work. -- Matt diff -ru qvwm-1.1.12-orig/debian/control qvwm-1.1.12/debian/control --- qvwm-1.1.12-orig/debian/control 2006-03-16 17:42:45.0 -0800 +++ qvwm-1.1.12/debian/control 2006-03-16 17:42:55.0 -0800 @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Falk Hueffner <[EMAIL PROTECTED]> -Build-Depends: debhelper (>> 5.0.0), flex, bison, imlib11-dev, libesd0-dev, libx11-dev, libxext-dev, libice-dev, libsm-dev, libxss-dev +Build-Depends: debhelper (>> 5.0.0), flex, bison, imlib11-dev, libesd0-dev, libx11-dev, libxext-dev, libice-dev, libsm-dev, libxss-dev, libxt-dev, libxpm-dev Standards-Version: 3.6.2.0 Package: qvwm signature.asc Description: Digital signature
Bug#356236: Patch
On Fri, Mar 17, 2006 at 09:47:35AM +0100, Falk Hueffner wrote: > Matt Kraai <[EMAIL PROTECTED]> writes: > > > The attached patch adds build-dependencies on libxt-dev and > > libxpm-dev, which fixes the build. > > Actually, both of them shouldn't actually be needed as build > dependency. I tried to find out why it doesn't work, but probably it's > not really worth bothering, so I guess I'll just apply this patch soon > (or feel free to NMU if you have the time). Why aren't they necessary? The configure script checks for X11/Intrinsic.h, which is included in libxt-dev and src/main.cc includes X11/xpm.h, which is included in libxpm-dev. -- Matt signature.asc Description: Digital signature
Bug#357011: Patch
tag 357011 patch thanks The attached patch replaces the spaces between the rdoc options with "' << '", as suggested at http://dev.rubyonrails.org/ticket/3757. It fixes the build. -- Matt diff -ru rails-1.0.0-orig/actionmailer/Rakefile rails-1.0.0/actionmailer/Rakefile --- rails-1.0.0-orig/actionmailer/Rakefile 2006-03-20 22:05:55.0 -0800 +++ rails-1.0.0/actionmailer/Rakefile 2006-03-20 22:11:58.0 -0800 @@ -32,7 +32,7 @@ Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title= "Action Mailer -- Easy email delivery and testing" - rdoc.options << '--line-numbers --inline-source --main README --accessor adv_attr_accessor=M' + rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README' << '--accessor' << 'adv_attr_accessor=M' rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.rdoc_files.include('README', 'CHANGELOG') rdoc.rdoc_files.include('lib/action_mailer.rb') diff -ru rails-1.0.0-orig/actionpack/Rakefile rails-1.0.0/actionpack/Rakefile --- rails-1.0.0-orig/actionpack/Rakefile2006-03-20 22:05:56.0 -0800 +++ rails-1.0.0/actionpack/Rakefile 2006-03-20 22:11:25.0 -0800 @@ -37,7 +37,7 @@ Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title= "Action Pack -- On rails from request to response" - rdoc.options << '--line-numbers --inline-source --main README' + rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README' rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG') rdoc.rdoc_files.include('lib/**/*.rb') diff -ru rails-1.0.0-orig/actionwebservice/Rakefile rails-1.0.0/actionwebservice/Rakefile --- rails-1.0.0-orig/actionwebservice/Rakefile 2006-03-20 22:05:56.0 -0800 +++ rails-1.0.0/actionwebservice/Rakefile 2006-03-20 22:11:10.0 -0800 @@ -35,7 +35,7 @@ Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title= "Action Web Service -- Web services for Action Pack" - rdoc.options << '--line-numbers --inline-source --main README --accessor class_inheritable_option=RW' + rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README' << '--accessor' << 'class_inheritable_option=RW' rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.rdoc_files.include('README') rdoc.rdoc_files.include('CHANGELOG') diff -ru rails-1.0.0-orig/activerecord/Rakefile rails-1.0.0/activerecord/Rakefile --- rails-1.0.0-orig/activerecord/Rakefile 2006-03-20 22:05:55.0 -0800 +++ rails-1.0.0/activerecord/Rakefile 2006-03-20 22:11:39.0 -0800 @@ -76,7 +76,7 @@ Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title= "Active Record -- Object-relation mapping put on rails" - rdoc.options << '--line-numbers --inline-source --accessor cattr_accessor=object' + rdoc.options << '--line-numbers' << '--inline-source' << '--accessor' << 'cattr_accessor=object' rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG') rdoc.rdoc_files.include('lib/**/*.rb') diff -ru rails-1.0.0-orig/activesupport/Rakefile rails-1.0.0/activesupport/Rakefile --- rails-1.0.0-orig/activesupport/Rakefile 2006-03-20 22:05:55.0 -0800 +++ rails-1.0.0/activesupport/Rakefile 2006-03-20 22:11:47.0 -0800 @@ -27,7 +27,7 @@ Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title= "Active Support -- Utility classes and standard library extensions from Rails" - rdoc.options << '--line-numbers --inline-source --main README' + rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README' rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.rdoc_files.include('README', 'CHANGELOG') rdoc.rdoc_files.include('lib/active_support.rb') diff -ru rails-1.0.0-orig/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile rails-1.0.0/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile --- rails-1.0.0-orig/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile 2006-03-20 22:05:56.0 -0800 +++ rails-1.0.0/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile 2006-03-20 22:10:52.0 -0800 @@ -16,7 +16,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title= '<%= class_name %>' - rdoc.options << '--line-numbers --inline-source' + rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README') rdoc.rdoc_files.include('lib/**/*.rb') end diff -ru rails-1.0.0-orig/railties/lib/tasks/documentation.rake rails-1.0.0/railties/lib/tasks/documentation.rake --- rails-1.0.0-orig/railties/lib/tasks/documentation.rake 2006-03-20 22:05:56.0 -0800 +++ rails-1.0.0/railties/lib/tasks/documentation.rake 2006-03-20 22:
Bug#356491: Patch
tag 356491 patch thanks The attached patch adds a comma after the ${shlibs:Depends}, as suggested by Robert, which fixes the build. -- Matt diff -ru cegui-mk2-0.4.1-orig/debian/control cegui-mk2-0.4.1/debian/control --- cegui-mk2-0.4.1-orig/debian/control 2006-03-20 21:20:49.0 -0800 +++ cegui-mk2-0.4.1/debian/control 2006-03-20 21:21:01.0 -0800 @@ -23,7 +23,7 @@ Package: libcegui-mk2-0c2a-dbg Section: libdevel Architecture: any -Depends: ${shlibs:Depends} libcegui-mk2-0c2a (= ${Source-Version}) +Depends: ${shlibs:Depends}, libcegui-mk2-0c2a (= ${Source-Version}) Conflicts: libcegui-mk2-0-dbg Replaces: libcegui-mk2-0-dbg Description: Crazy Eddie's GUI (debugging libraries) signature.asc Description: Digital signature
Bug#326997: FTBFS: Can't find module IO in user directories
On Tue, Jun 20, 2006 at 12:38:58AM +0200, Steinar H. Gunderson wrote: > Version: 3.10-1 > > On Mon, Oct 10, 2005 at 02:12:59PM -0700, Matt Kraai wrote: > >> Does this bug also affect the unstable version of hmake (3.10-1)? > > No, it looks like 1.10-1 fixed it. > > When the bug is marked as found in 3.09-3, closing it in 1.10-1 won't help > the BTS any (was that a typo?); I'm marking it as closed in 3.10-1 so it's > marked as done for etch/sid. I guess 1.10-1 must have been a typo. Thanks for finding and fixing this. -- Matt signature.asc Description: Digital signature
Bug#325650: [Pbuilder-maint] Bug#325650: pbuilder: More information, slightly different error on amd64?
On Wed, Jun 28, 2006 at 01:50:17AM -0500, Bob Tanner wrote: > % sudo pbuilder create --configfile /home/tanner/etc/pbuilder/sid --debug > Password: > ++ shift > ++ '[' -n '' ']' > ++ BUILDPLACE=/var/cache/pbuilder/build/ > ++ BASEBUILDPLACE=/var/cache/pbuilder/build/ > ++ '[' '' '!=' yes -a no '!=' yes ']' > ++ BUILDPLACE=/var/cache/pbuilder/build//8922 > ++ '[' -z '' ']' > ++ CHROOTEXEC='chroot /var/cache/pbuilder/build//8922 ' > ++ '[' sid = experimental ']' > ++ EXPERIMENTAL= > ++ case "$PBCURRENTCOMMANDLINEOPERATION" in > ++ '[' noninteractive = noninteractive -o noninteractive = Noninteractive ']' > ++ exec > ++ FORCE_CONFNEW[0]=-o > ++ FORCE_CONFNEW[1]=DPkg::Options::=--force-confnew > + . /usr/lib/pbuilder/pbuilder-runhooks > ++ hooks=tmp/hooks > + '[' -z sid ']' > + echo 'Distribution is sid.' > + '[' yes = yes ']' > + TRAP='echo ignoring trap ' > + cleanbuildplace > + '[' 0 -ne 0 ']' > + '[' '' '!=' yes ']' > + '[' -d /var/cache/pbuilder/build//8922 ']' > + echo 'Building the build environment' > + mkdir -p /var/cache/pbuilder/build//8922 > + '[' '!' -d /var/cache/pbuilder/build//8922 ']' > + echo ignoring trap cleanbuildplace exit > + echo ' -> running cdebootstrap' > + unset DEBOOTSTRAPSCRIPT > + '[' -n '' ']' > + which cdebootstrap > + : > + cd /var/cache/pbuilder/build//8922 > + cdebootstrap sid . http://mirrors.kernel.org/debian > W: can't find package: base-config > E: Couldn't install system due to errors! > + echo 'pbuilder: cdebootstrap failed' > pbuilder: cdebootstrap failed > + exit 1 I suspect this is a symptom of bug 375510. Would you please try again, adding "--debootstrapopts --debug", and see if that's true? -- Matt signature.asc Description: Digital signature
Bug#336135: FTBFS: Memory input 2 is not directly addressable
Package: linuxsampler Version: 0.3.cvs20050715+3-1 Severity: serious pbuilder fails to build linuxsampler in an unstable chroot on i386: > if /bin/sh ../../../libtool --tag=CXX --mode=compile i486-linux-gnu-g++ > -DHAVE_CONFIG_H -I. -I. -I../../..-Wreturn-type -ffast-math -Wall -g > -fPIC -O2 -msse -MT Synthesizer.lo -MD -MP -MF ".deps/Synthesizer.Tpo" -c -o > Synthesizer.lo Synthesizer.cpp; \ > then mv -f ".deps/Synthesizer.Tpo" ".deps/Synthesizer.Plo"; else rm -f > ".deps/Synthesizer.Tpo"; exit 1; fi > i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../../.. -Wreturn-type > -ffast-math -Wall -g -fPIC -O2 -msse -MT Synthesizer.lo -MD -MP -MF > .deps/Synthesizer.Tpo -c Synthesizer.cpp -o Synthesizer.o > Filter.h: In member function 'void > LinuxSampler::gig::Filter::SetParameters(LinuxSampler::bq_t, > LinuxSampler::bq_t, LinuxSampler::bq_t)': > Filter.h:97: warning: enumeration value 'vcf_type_lowpassturbo' not handled > in switch > Filter.h:97: warning: enumeration value 'vcf_type_bandreject' not handled in > switch > Filter.h: In member function 'void > LinuxSampler::gig::Filter::SetParameters(LinuxSampler::biquad_param_t*, > LinuxSampler::biquad_param_t*, LinuxSampler::bq_t, LinuxSampler::bq_t, > LinuxSampler::bq_t)': > Filter.h:115: warning: enumeration value 'vcf_type_lowpassturbo' not handled > in switch > Filter.h:115: warning: enumeration value 'vcf_type_bandreject' not handled in > switch > ../common/Resampler.h: In static member function 'static void > LinuxSampler::Resampler::GetNext4SamplesMonoMMXSSE(sample_t*, > void*, float&) [with bool INTERPOLATE = false]': > Synthesizer.h:311: instantiated from 'static void > LinuxSampler::gig::Synthesizer INTERPOLATE, DOLOOP, CONSTPITCH>::Synthesize(sample_t*, void*, float&, > float*, float*, uint&, float*, const float*, const float*, > LinuxSampler::gig::Filter&, LinuxSampler::gig::Filter&, > LinuxSampler::biquad_param_t&, LinuxSampler::biquad_param_t&) [with > implementation_t IMPLEMENTATION = CPP, LinuxSampler::gig::channels_t CHANNELS > = MONO, bool USEFILTER = false, bool INTERPOLATE = false, bool DOLOOP = > false, bool CONSTPITCH = true]' > Synthesizer.h:177: instantiated from 'static void > LinuxSampler::gig::Synthesizer INTERPOLATE, DOLOOP, CONSTPITCH>::Synthesize(VOICE_T&, void*, sample_t*, > uint&, const float*, const float*) [with VOICE_T = LinuxSampler::gig::Voice, > implementation_t IMPLEMENTATION = CPP, LinuxSampler::gig::channels_t CHANNELS > = MONO, bool USEFILTER = false, bool INTERPOLATE = false, bool DOLOOP = > false, bool CONSTPITCH = true]' > Synthesizer.h:145: instantiated from 'static void > LinuxSampler::gig::Synthesizer INTERPOLATE, DOLOOP, CONSTPITCH>::SynthesizeFragment(VOICE_T&, uint, > sample_t*, uint&, uint&, uint, uint, uint, uint&, void*, float&, float&, > const float*, const float*) [with VOICE_T = LinuxSampler::gig::Voice, > implementation_t IMPLEMENTATION = CPP, LinuxSampler::gig::channels_t CHANNELS > = MONO, bool USEFILTER = false, bool INTERPOLATE = false, bool DOLOOP = > false, bool CONSTPITCH = true]' > Synthesizer.h:101: instantiated from 'static void > LinuxSampler::gig::Synthesizer INTERPOLATE, DOLOOP, CONSTPITCH>::SynthesizeFragment(VOICE_T&, uint, > sample_t*, uint) [with VOICE_T = LinuxSampler::gig::Voice, implementation_t > IMPLEMENTATION = CPP, LinuxSampler::gig::channels_t CHANNELS = MONO, bool > USEFILTER = false, bool INTERPOLATE = false, bool DOLOOP = false, bool > CONSTPITCH = true]' > Synthesizer.cpp:42: instantiated from here > ../common/Resampler.h:101: error: memory input 2 is not directly addressable > ../common/Resampler.h: In static member function 'static void > LinuxSampler::Resampler::GetNext4SamplesStereoMMXSSE(sample_t*, > void*, float&) [with bool INTERPOLATE = false]': > Synthesizer.h:343: instantiated from 'static void > LinuxSampler::gig::Synthesizer INTERPOLATE, DOLOOP, CONSTPITCH>::Synthesize(sample_t*, void*, float&, > float*, float*, uint&, float*, const float*, const float*, > LinuxSampler::gig::Filter&, LinuxSampler::gig::Filter&, > LinuxSampler::biquad_param_t&, LinuxSampler::biquad_param_t&) [with > implementation_t IMPLEMENTATION = CPP, LinuxSampler::gig::channels_t CHANNELS > = MONO, bool USEFILTER = false, bool INTERPOLATE = false, bool DOLOOP = > false, bool CONSTPITCH = true]' > Synthesizer.h:177: instantiated from 'static void > LinuxSampler::gig::Synthesizer INTERPOLATE, DOLOOP, CONSTPITCH>::Synthesize(VOICE_T&, void*, sample_t*, > uint&, const float*, const float*) [with VOICE_T = LinuxSampler::gig::Voice, > implementation_t IMPLEMENTATION = CPP, LinuxSampler::gig::channels_t CHANNELS > = MONO, bool USEFILTER = false, bool INTERPOLATE = false, bool DOLOOP = > false, bool CONSTPITCH = true]' > Synthesizer.h:145: instantiated from 'static void > LinuxSampler::gig::Synthesizer INTERPOLATE, DOLOOP, CONSTPITCH>::SynthesizeFragment(VOICE_T&, uint, > sample_t*, uint&, uint&, uint, uint, uint, uint&, void
Bug#336276: FTBFS: Unable to run dh_installxsp
Package: monodoc Version: 1.1.9-1 Severity: serious pbuilder fails to build monodoc in an unstable chroot on i386: > dh_installxsp > make: dh_installxsp: Command not found -- Matt signature.asc Description: Digital signature
Bug#336277: FTBFS: Missing build-dependency on gcc-3.3
Package: mindi-kernel Version: 2.4.27-2 Severity: serious pbuilder fails to build mindi-kernel in an unstable chroot on i386: > gcc-3.3 -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/mkdep > scripts/mkdep.c > make[3]: gcc-3.3: Command not found -- Matt signature.asc Description: Digital signature
Bug#336278: FTBFS: No match for operator<
Package: maxdb-7.5.00 Version: 7.5.00.30-3 Severity: serious pbuilder fails to build maxdb-7.5.00 in an unstable chroot on i386: > Join_Execute.cpp slow > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/DataAcce\ > ss/Data_Chain.hpp: In member function 'void Data_Chain::WriteToTrace(\ > const char*) const': > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/DataAcc\ > ess/Data_Chain.hpp:634: error: no match for 'operator<<' in '(Kernel_VTr\ > ace() << "Data_Chain: mode: ") << ((const Data_Chain*)this)->Data_Cha\ > in::m_RootId.Data_PageId::PageRecoveryMode()' > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:268: note: candidates are: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_OStream& (*)(SAPDB_OStream&)) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:282: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(const SAPDB_Char*) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:287: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_Char) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:292: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_Int1) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:297: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_Int2) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:302: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_Int4) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:308: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_Int8) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:314: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_Long) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:319: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_UInt1) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:324: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_UInt2) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:329: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_UInt4) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:335: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_UInt8) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:341: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_ULong) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:346: note: SAPDB_OStream& SAPDB_O\ > Stream::operator<<(SAPDB_Real8) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/SAPDB_OStream.hpp:436: note: SAPDB_OStream& operato\ > r<<(SAPDB_OStream&, const SAPDB_Manipulator&) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/Tracing/SAPDBTrace_Streaming.hpp:42: note: SAPDB_OS\ > tream& operator<<(SAPDB_OStream&, void* const&) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/Tracing/SAPDBTrace_Streaming.hpp:45: note: SAPDB_OS\ > tream& operator<<(SAPDB_OStream&, const tgg00_BdInvRange&) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/Tracing/SAPDBTrace_Streaming.hpp:48: note: SAPDB_OS\ > tream& operator<<(SAPDB_OStream&, const tgg07_StratEnum&) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/Tracing/SAPDBTrace_Streaming.hpp:51: note: SAPDB_OS\ > tream& operator<<(SAPDB_OStream&, const bool&) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/Tracing/SAPDBTrace_Streaming.hpp:54: note: SAPDB_OS\ > tream& operator<<(SAPDB_OStream&, const tgg04_Distinct&) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/Tracing/SAPDBTrace_Streaming.hpp:70: note: SAPDB_OS\ > tream& operator<<(SAPDB_OStream&, const tgg04_CacheType&) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/Tracing/SAPDBTrace_Streaming.hpp:73: note: SAPDB_OS\ > tream& operator<<(SAPDB_OStream&, const tgg00_MessType&) > /tmp/buildd/maxdb-7.5.00-7.5.00.30/MaxDB_DEV/sys/wrk/incl/SAPDB/SAPDBCo\ > mmon/Tracing/SAPDBTrace_Streaming.hpp:76: note:
Bug#336279: FTBFS: Unsatisfiable build-dependency on dvips
Package: magicfilter Version: 1.2-58 Severity: serious Tags: patch pbuilder fails to build magicfilter in an unstable chroot on i386: > -> Considering dvips >-> Trying dvips >-> Cannot install dvips; apt errors follow: > Reading package lists... > Building dependency tree... > E: Package dvips has no installation candidate > Package dvips is not available, but is referred to by another package. > This may mean that the package is missing, has been obsoleted, or > is only available from another source > E: Could not satisfy build-dependency. The attached patch just removes this build-dependency, since magicfilter already build-depends on tetex-bin which provides the dvips binary. -- Matt diff -u magicfilter-1.2/debian/control magicfilter-1.2/debian/control --- magicfilter-1.2/debian/control +++ magicfilter-1.2/debian/control @@ -1,5 +1,5 @@ Source: magicfilter -Build-Depends: dvips, netpbm, libjpeg-progs|libjpeg-gif, libtiff-tools, groff, tetex-bin, transfig, recode, djtools, gs, enscript, bzip2, gzip (>= 1.2.4-33), xpdf-utils +Build-Depends: netpbm, libjpeg-progs|libjpeg-gif, libtiff-tools, groff, tetex-bin, transfig, recode, djtools, gs, enscript, bzip2, gzip (>= 1.2.4-33), xpdf-utils Section: text Priority: optional Maintainer: David Frey <[EMAIL PROTECTED]> signature.asc Description: Digital signature