Processing of vcg_1.30debian-6_i386.changes
vcg_1.30debian-6_i386.changes uploaded successfully to localhost along with the files: vcg_1.30debian-6.dsc vcg_1.30debian-6.diff.gz vcg_1.30debian-6_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
vcg_1.30debian-6_i386.changes ACCEPTED
Accepted: vcg_1.30debian-6.diff.gz to pool/main/v/vcg/vcg_1.30debian-6.diff.gz vcg_1.30debian-6.dsc to pool/main/v/vcg/vcg_1.30debian-6.dsc vcg_1.30debian-6_i386.deb to pool/main/v/vcg/vcg_1.30debian-6_i386.deb Override entries for your package: vcg_1.30debian-6.dsc - source graphics vcg_1.30debian-6_i386.deb - optional graphics Announcing to debian-devel-changes@lists.debian.org Closing bugs: 415586 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#415586: marked as done (vcg: FTBFS on GNU/kFreeBSD: buggy OS detection)
Your message dated Wed, 11 Apr 2007 09:47:03 + with message-id <[EMAIL PROTECTED]> and subject line Bug#415586: fixed in vcg 1.30debian-6 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: vcg Version: 1.30debian-5 Severity: important Tags: patch Hi, currently this package FTBFS on GNU/kFreeBSD since it uses directly the output of "uname -s" in filenames, although this output can contain slashes. The attached patch catches GNU/kFreeBSD as well as GNU(/Hurd) and make them look like Linux, which allows at least a fine build on GNU/kFreeBSD. Cheers, -- Cyril Brulebois --- vcg-1.30debian/Makefile 2003-02-20 22:06:27.0 +0100 +++ vcg-1.30debian/Makefile 2007-03-20 16:41:33.0 +0100 @@ -24,6 +24,10 @@ SHELL = /bin/sh +# GNU/kFreeBSD and GNU(/Hurd) are like Linux +UNAME = $(shell uname -s | sed -e 's/GNU\/kFreeBSD/Linux/' | sed -e 's/GNU/Linux/') + + #-- Rules -- #all: stamp-all @@ -54,7 +58,7 @@ if (test ! -r tMakefile) then \ (cd preconf/X11; /bin/rm -f Makefile x11setup x11setup2; \ xmkmf; make | sed -e "s/^make.*//" > x11setup); \ - (cd preconf; cd X11cc`uname -s`; \ + (cd preconf; cd X11cc$(UNAME); \ /bin/cp tMakefile ../../Make.tmp; \ /bin/cp globals.h ../../src; \ /bin/cp demo.csh ../../demo/demo.tmp); \ @@ -67,7 +71,7 @@ if (test ! -r tMakefile) then \ (cd preconf/X11; /bin/rm -f Makefile x11setup x11setup2; \ xmkmf; make | sed -e "s/^make.*//" > x11setup); \ - (cd preconf; cd X11gcc`uname -s`; \ + (cd preconf; cd X11gcc$(UNAME); \ /bin/cp tMakefile ../../Make.tmp; \ /bin/cp globals.h ../../src; \ /bin/cp demo.csh ../../demo/demo.tmp); \ @@ -80,7 +84,7 @@ if (test ! -r tMakefile) then \ (cd preconf/X11; /bin/rm -f Makefile x11setup x11setup2; \ xmkmf; make | sed -e "s/^make.*//" > x11setup); \ - (cd preconf; cd X11g++`uname -s`; \ + (cd preconf; cd X11g++$(UNAME); \ /bin/cp tMakefile ../../Make.tmp; \ /bin/cp globals.h ../../src; \ /bin/cp demo.csh ../../demo/demo.tmp); \ @@ -93,7 +97,7 @@ if (test ! -r tMakefile) then \ (cd preconf/X11; /bin/rm -f Makefile x11setup x11setup2; \ xmkmf; make | sed -e "s/^make.*//" > x11setup); \ - (cd preconf; cd X11c89`uname -s`; \ + (cd preconf; cd X11c89$(UNAME); \ /bin/cp tMakefile ../../Make.tmp; \ /bin/cp globals.h ../../src; \ /bin/cp demo.csh ../../demo/demo.tmp); \ @@ -105,7 +109,7 @@ xvcg_cc_noxmkmf: if (test ! -r tMakefile) then \ (cd preconf/X11; /bin/cp ../x11setup ../x11setup2 .); \ - (cd preconf; cd X11cc`uname -s`; \ + (cd preconf; cd X11cc$(UNAME); \ /bin/cp tMakefile ../../Make.tmp; \ /bin/cp globals.h ../../src; \ /bin/cp demo.csh ../../demo/demo.tmp); \ @@ -117,7 +121,7 @@ xvcg_gcc_noxmkmf: if (test ! -r tMakefile) then \ (cd preconf/X11; /bin/cp ../x11setup ../x11setup2 .); \ - (cd preconf; cd X11gcc`uname -s`; \ + (cd preconf; cd X11gcc$(UNAME); \ /bin/cp tMakefile ../../Make.tmp; \ /bin/cp globals.h ../../src; \ /bin/cp demo.csh ../../demo/demo.tmp); \ @@ -129,7 +133,7 @@ xvcg_c89_noxmkmf: if (test ! -r tMakefile) then \ (cd preconf/X11; /bin/cp ../x11setup ../x11setup2 .); \ - (cd preconf; cd X11c89`uname -s`; \ + (cd preconf; cd X11c89$(UNAME); \ /bin/cp tMakefile ../../Make.tmp; \ /bin/cp globals.h ../../src; \ /bin/cp demo.csh ../../demo/demo.tmp); \ @@ -140,7 +144,7 @@ vcg_gcc: if (test ! -r tMakefile) then \ - (cd preconf; cd SunVgcc`uname -s`; \ + (cd preconf; cd SunVgcc$(UNAME); \ /bin/cp tMakefile ../../tMakefile; \ /bin/cp globals.h ../../src; \ /bin/cp demo.csh ../../demo/demo.csh); \ @@ -148,7 +152,7 @@ vcg_cc: if (test ! -r tMakefile) then \ - (cd p
Processing of doc-html-w3_2003.03-2_i386.changes
doc-html-w3_2003.03-2_i386.changes uploaded successfully to localhost along with the files: doc-html-w3_2003.03-2.dsc doc-html-w3_2003.03-2.tar.gz doc-html-w3_2003.03-2_all.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
doc-html-w3_2003.03-2_i386.changes ACCEPTED
Accepted: doc-html-w3_2003.03-2.dsc to pool/non-free/d/doc-html-w3/doc-html-w3_2003.03-2.dsc doc-html-w3_2003.03-2.tar.gz to pool/non-free/d/doc-html-w3/doc-html-w3_2003.03-2.tar.gz doc-html-w3_2003.03-2_all.deb to pool/non-free/d/doc-html-w3/doc-html-w3_2003.03-2_all.deb Override entries for your package: doc-html-w3_2003.03-2.dsc - source non-free/doc doc-html-w3_2003.03-2_all.deb - optional non-free/doc Announcing to debian-devel-changes@lists.debian.org Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of pyzor_0.4.0+cvs20030201-7_i386.changes
pyzor_0.4.0+cvs20030201-7_i386.changes uploaded successfully to localhost along with the files: pyzor_0.4.0+cvs20030201-7.dsc pyzor_0.4.0+cvs20030201-7.diff.gz pyzor_0.4.0+cvs20030201-7_all.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
pyzor_0.4.0+cvs20030201-7_i386.changes ACCEPTED
Accepted: pyzor_0.4.0+cvs20030201-7.diff.gz to pool/main/p/pyzor/pyzor_0.4.0+cvs20030201-7.diff.gz pyzor_0.4.0+cvs20030201-7.dsc to pool/main/p/pyzor/pyzor_0.4.0+cvs20030201-7.dsc pyzor_0.4.0+cvs20030201-7_all.deb to pool/main/p/pyzor/pyzor_0.4.0+cvs20030201-7_all.deb Override entries for your package: pyzor_0.4.0+cvs20030201-7.dsc - source mail pyzor_0.4.0+cvs20030201-7_all.deb - optional mail Announcing to debian-devel-changes@lists.debian.org Closing bugs: 416215 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#418660: texmacs: Depends on tetex-base, tetex-bin, tetex-extra
On 4/10/07, Kumar Appaiah <[EMAIL PROTECTED]> wrote: Please note that teTeX has been phased out, and TeX Live is replacing it. So, I would request you to consider depending on texlive-* packages instead of teTeX. Hi Kumar Thanks for the bug report. Pretty soon, all the packages will be migrated to texlive-* from tetex-*. I think it will be prudent to wait till an announcement from the Debian Tex Task Force comes up. The announcement will explain the ideal way to set up dependencies etc., so that the package will conform to the Debian's Tex policy. If you have any additional info as to how to do the migration, that would also be of help. thanks raju -- Kamaraju S Kusumanchi http://www.people.cornell.edu/pages/kk288/ http://malayamaarutham.blogspot.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#418799: libdmalloc-dev: fails to install with doc-base 0.8.0
Package: libdmalloc-dev Version: 5.4.2-7 Severity: serious Hi, The package fails to install when doc-base 0.8.0 is installed: Setting up libdmalloc-dev (5.4.2-7) ... error in control file: `Index' value missing for format `info' at /usr/sbin/install-docs line 842, line 9. Regards, robert -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.18 Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2) Shell: /bin/sh linked to /bin/pdksh Versions of packages libdmalloc-dev depends on: ii libdmalloc4 5.4.2-7debug memory allocation library libdmalloc-dev recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#400879: libapache-mod-auth-mysql still missing in etch
This package is still MIA in etch 4.0r0... I can't seem to find a reason why? -- "Genius might be described as a supreme capacity for getting its possessors into trouble of all kinds." -- Samuel Butler -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#418660: texmacs: Depends on tetex-base, tetex-bin, tetex-extra
On 11/04/07, Kamaraju Kusumanchi wrote: Hi Kumar Thanks for the bug report. Pretty soon, all the packages will be migrated to texlive-* from tetex-*. I think it will be prudent to wait till an announcement from the Debian Tex Task Force comes up. The announcement will explain the ideal way to set up dependencies etc., so that the package will conform to the Debian's Tex policy. Dear Raju, Thanks for getting back to me on this. If this is the case, then you can consider closing the bug, or at least reducing the severity to wishlist. If you have any additional info as to how to do the migration, that would also be of help. Not exactly, but I was wondering whether you could try depending on the teTeX "or" TeX Live packages, so that both may work. My only issue is that I can't have the updated TeX Live packages and then try to install TeXmacs, because that removes the TeX Live packages and installs the teTeX packages. Thanks. Kumar -- Kumar Appaiah, 462, Jamuna Hostel, Indian Institute of Technology Madras, Chennai - 600036 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of dmalloc_5.4.2-8_i386.changes
dmalloc_5.4.2-8_i386.changes uploaded successfully to localhost along with the files: dmalloc_5.4.2-8.dsc dmalloc_5.4.2-8.diff.gz libdmalloc4_5.4.2-8_i386.deb libdmalloc-dev_5.4.2-8_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]