Bug#588409: perf (linux-tools-2.6.32) fails to build on many architectures

2010-07-08 Thread Ben Hutchings
On Thu, 2010-07-08 at 23:31 +1200, Michael Cree wrote:
> Regarding the perf tools:
> 
> Commit 5d7bdab75cd56d2bdc0986ae5546be3b09fea70a upstream should give the 
> -fstack-protector-all test.

Thanks; I've applied this and several other upstream build fixes and
improvements:

perf tools: Display better error messages on missing packages
perf tools: Add 'make DEBUG=1' to remove the -O6 cflag
perf tools: Test -fstack-protector-all compiler option for inclusion in CFLAGS
perf tools: Support static build
perf tools: Add V=2 option to help debug config issues
perf tools: Suggest static libraries as well
perf: Use default compiler mode by default
perf tools: Move QUIET_STDERR def to before first use
perf tools: Check if /dev/null can be used as the -o gcc argument

> Regarding the Alpha architecture the following commits that are in 
> v2.6.33 of the kernel upstream provide the performance event interface:
> 
> Commit fcd14b3203b538dca04a2b065c774c0b57863eec upstream adds the Alpha 
> specific part for perf tools.
> 
> Commit a582e6f01b90211933e70edcec9bc0bbb1157402 upstream provides 
> minimal support for performance events in the kernel for Alpha.  However 
> it probably won't apply cleanly to 2.6.32 without commit 
> 21797c599c710d3851d241c4b50690f2482bf618 which wires up quite a number 
> of missing syscalls, which in turn depends on 
> 6e17e8b9fb74b9fb9f6ea331f7f4a049c5b4c4b8 which wires up the syscall for 
> recvmmsg that is new in 2.6.33.  Thus a modified 21797c599 is required 
> for 2.6.32 to do all this;  I think I might still have the patch 
> somewhere, but in any case I could regenerate it should you wish to have it.

I'll be happy to apply backported patches.  However, Alpha is no longer
a Debian release architecture and I don't intend to spend any
significant time on it.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


signature.asc
Description: This is a digitally signed message part


Bug#554790: This breaks device.map on upgrade

2010-07-08 Thread Vadim Solomin
This fix, at least in its current form, has a potential to break grub for 
users having more than one drive, unless they are careful enough to check and 
fix their device.map after upgrade.

Old mkdevicemaps assigned grub device numbers in the sort order of kernel 
device names, which was right more often than not. On the other hand, the sort 
order of (pretty much random) stable names, used by new version, is extremely 
unlikely to have any correlation to grub device order.

Included is a rough patch which preserves the kernel-name order for grub 
devices when generating device.map.

-- 
Vadim Solomin
--- grub2-1.98+20100706/util/deviceiter.c	2010-07-06 20:57:30.0 +0400
+++ grub2-1.98+20100706-new/util/deviceiter.c	2010-07-09 07:33:16.135823063 +0400
@@ -467,14 +467,21 @@
 }
 
 #ifdef __linux__
+struct device
+{
+	char *stable;
+	char *kernel;
+};
+
 /* Like strcmp, but doesn't require a cast for use as a qsort comparator.  */
 static int
 compare_file_names (const void *a, const void *b)
 {
-  const char *left = *(const char **) a;
-  const char *right = *(const char **) b;
+  const char *left = ((const struct device *) a) -> kernel;
+  const char *right = ((const struct device *) b) -> kernel;
   return strcmp (left, right);
 }
+
 #endif /* __linux__ */
 
 void
@@ -507,10 +514,11 @@
 if (dir)
   {
 	struct dirent *entry;
-	char **names;
-	size_t names_len = 0, names_max = 1024, i;
+	struct device *devs;
+	size_t devs_len = 0, devs_max = 1024, i;
+	char *path = 0;
 
-	names = xmalloc (names_max * sizeof (*names));
+	devs = xmalloc (devs_max * sizeof (*devs));
 
 	/* Dump all the directory entries into names, resizing if
 	   necessary.  */
@@ -526,35 +534,39 @@
 	/* Skip RAID entries; they are handled by upper layers.  */
 	if (strncmp (entry->d_name, "md-", sizeof ("md-") - 1) == 0)
 	  continue;
-	if (names_len >= names_max)
+	if (devs_len >= devs_max)
 	  {
-		names_max *= 2;
-		names = xrealloc (names, names_max * sizeof (*names));
+		devs_max *= 2;
+		devs = xrealloc (devs, devs_max * sizeof (*devs));
 	  }
-	names[names_len++] = xasprintf (entry->d_name);
+	devs[devs_len].stable = xasprintf (entry->d_name);
+	path = xasprintf("/dev/disk/by-id/%s", entry->d_name);
+	devs[devs_len++].kernel = canonicalize_file_name(path);
+	free(path);
 	  }
 
 	/* /dev/disk/by-id/ usually has a few alternative identifications of
 	   devices (e.g. ATA vs. SATA).  check_device_readable_unique will
 	   ensure that we only get one for any given disk, but sort the list
 	   so that the choice of which one we get is stable.  */
-	qsort (names, names_len, sizeof (*names), &compare_file_names);
+	qsort (devs, devs_len, sizeof (*devs), &compare_file_names);
 
 	closedir (dir);
 
 	/* Now add all the devices in sorted order.  */
-	for (i = 0; i < names_len; ++i)
+	for (i = 0; i < devs_len; ++i)
 	  {
-	char *path = xasprintf ("/dev/disk/by-id/%s", names[i]);
+	char *path = xasprintf ("/dev/disk/by-id/%s", devs[i].stable);
 	if (check_device_readable_unique (path))
 	  {
 		if (hook (path, 0))
 		  goto out;
 	  }
 	free (path);
-	free (names[i]);
+	free (devs[i].stable);
+	free (devs[i].kernel);
 	  }
-	free (names);
+	free (devs);
   }
   }
 


Bug#588491: omfs-source: fails to compile with m-a

2010-07-08 Thread Brandon Del Bel
Package: omfs-source
Version: 0.8.0-2
Severity: serious
Justification: fails to build from source

buildlog from 'm-a a-i omfs':

dh_clean
/usr/bin/make KERNELDIR="/lib/modules/2.6.32-5-amd64/build" clean
make[1]: Entering directory `/usr/src/modules/omfs'
/usr/bin/make -C /lib/modules/2.6.32-5-amd64/build M=/usr/src/modules/omfs clean
make[2]: Entering directory `/usr/src/linux-headers-2.6.32-5-amd64'
make[2]: Leaving directory `/usr/src/linux-headers-2.6.32-5-amd64'
make[1]: Leaving directory `/usr/src/modules/omfs'
/usr/bin/make  -f debian/rules kdist_clean kdist_config binary-modules
make[1]: Entering directory `/usr/src/modules/omfs'
dh_clean
/usr/bin/make KERNELDIR="/lib/modules/2.6.32-5-amd64/build" clean
make[2]: Entering directory `/usr/src/modules/omfs'
/usr/bin/make -C /lib/modules/2.6.32-5-amd64/build M=/usr/src/modules/omfs clean
make[3]: Entering directory `/usr/src/linux-headers-2.6.32-5-amd64'
make[3]: Leaving directory `/usr/src/linux-headers-2.6.32-5-amd64'
make[2]: Leaving directory `/usr/src/modules/omfs'
for templ in ; do \
cp $templ `echo $templ | sed -e 's/_KVERS_/2.6.32-5-amd64/g'` ; \
  done
for templ in `ls debian/*.modules.in` ; do \
test -e ${templ%.modules.in}.backup || cp ${templ%.modules.in} 
${templ%.modules.in}.backup 2>/dev/null || true; \
sed -e 's/##KVERS##/2.6.32-5-amd64/g ;s/#KVERS#/2.6.32-5-amd64/g ; 
s/_KVERS_/2.6.32-5-amd64/g ; s/##KDREV##/2.6.32-15/g ; s/#KDREV#/2.6.32-15/g ; 
s/_KDREV_/2.6.32-15/g  ' < $templ > ${templ%.modules.in}; \
  done
dh_testdir
dh_testroot
dh_clean -k
dh_clean: dh_clean -k is deprecated; use dh_prep instead
/usr/bin/make KERNELDIR="/lib/modules/2.6.32-5-amd64/build" MODVERSIONS=detect 
KERNEL="linux-2.6.32-5-amd64"
make[2]: Entering directory `/usr/src/modules/omfs'
/usr/bin/make -C /lib/modules/2.6.32-5-amd64/build M=/usr/src/modules/omfs 
modules
make[3]: Entering directory `/usr/src/linux-headers-2.6.32-5-amd64'
/usr/src/linux-headers-2.6.32-5-common/arch/x86/Makefile:81: stack protector 
enabled but no compiler support
  CC [M]  /usr/src/modules/omfs/inode.o
/usr/src/modules/omfs/inode.c: In function ‘omfs_new_inode’:
/usr/src/modules/omfs/inode.c:40: error: ‘struct task_struct’ has no member 
named ‘fsuid’
/usr/src/modules/omfs/inode.c:41: error: ‘struct task_struct’ has no member 
named ‘fsgid’
/usr/src/modules/omfs/inode.c: In function ‘omfs_fill_super’:
/usr/src/modules/omfs/inode.c:424: error: ‘struct task_struct’ has no member 
named ‘uid’
/usr/src/modules/omfs/inode.c:425: error: ‘struct task_struct’ has no member 
named ‘gid’
/usr/src/modules/omfs/inode.c:426: error: dereferencing pointer to incomplete 
type
make[6]: *** [/usr/src/modules/omfs/inode.o] Error 1
make[5]: *** [_module_/usr/src/modules/omfs] Error 2
make[4]: *** [sub-make] Error 2
make[3]: *** [all] Error 2
make[3]: Leaving directory `/usr/src/linux-headers-2.6.32-5-amd64'
make[2]: *** [modules] Error 2
make[2]: Leaving directory `/usr/src/modules/omfs'
make[1]: *** [binary-modules] Error 2
make[1]: Leaving directory `/usr/src/modules/omfs'
make: *** [kdist_build] Error 2

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (x86_64)

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

Versions of packages omfs-source depends on:
ii  bzip2 1.0.5-4high-quality block-sorting file co
ii  debhelper 7.9.1  helper programs for debian/rules
ii  module-assistant  0.11.3 tool to make module package creati

omfs-source recommends no packages.

omfs-source suggests no packages.

-- no debconf information



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



Bug#588228: marked as done (herrie: GPL violation)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 23:17:07 +
with message-id 
and subject line Bug#588228: fixed in herrie 2.2-2
has caused the Debian Bug report #588228,
regarding herrie: GPL violation
to be marked as done.

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

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


-- 
588228: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=588228
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: herrie
Version: 2.2-1
Severity: serious

$ ldd /usr/bin/herrie 

libmad.so.0 => /usr/lib/libmad.so.0 (0x7f825a93e000)

libssl.so.0.9.8 => /usr/lib/libssl.so.0.9.8 (0x7f82585aa000)

$ 

GPL licenced libraries and OpenSSL cannot be mixed.

See also question 28 at
  http://people.debian.org/~bap/dfsg-faq

It might be enough to change the libcurl build dependency
to libcurl4-gnutls-dev.


-- System Information:

Versions of packages herrie depends on:

ii  libcurl3  7.21.0-1   Multi-protocol file transfer libra

ii  libmad0   0.15.1b-5  MPEG audio decoder library



--- End Message ---
--- Begin Message ---
Source: herrie
Source-Version: 2.2-2

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

herrie_2.2-2.debian.tar.gz
  to main/h/herrie/herrie_2.2-2.debian.tar.gz
herrie_2.2-2.dsc
  to main/h/herrie/herrie_2.2-2.dsc
herrie_2.2-2_amd64.deb
  to main/h/herrie/herrie_2.2-2_amd64.deb



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

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

Debian distribution maintenance software
pp.
Simon McVittie  (supplier of updated herrie package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 08 Jul 2010 23:43:13 +0100
Source: herrie
Binary: herrie
Architecture: source amd64
Version: 2.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group 
Changed-By: Simon McVittie 
Description: 
 herrie - Minimalistic audio player built upon Ncurses
Closes: 588228
Changes: 
 herrie (2.2-2) unstable; urgency=low
 .
   * QA upload.
   * Change libcurl build dependency to libcurl4-gnutls-dev to avoid GPL
 violation (Closes: #588228)
   * Standards-Version: 3.9.0
 - Stop mentioning /usr/share/common-licenses/BSD in debian/copyright,
   since we already quote the full text
   * Switch to 3.0 (quilt) source format
 - Remove README.source, no longer applicable
 - Remove quilt build dependency
   * Depend on ${misc:Depends}
   * Add to collab-maint git (any future maintainer is welcome to move it
 elsewhere)
   * Update Debhelper compat from 5 to 7
   * Reduce boilerplate in debian/rules using dh 7
Checksums-Sha1: 
 20acb96a99070884b770ce923f892a5fff8d96b2 1935 herrie_2.2-2.dsc
 1d5edc6e1e8e7b1fa725f1df43cf406e1440431b 5287 herrie_2.2-2.debian.tar.gz
 cd2d421be7ca1902330ce4bc80ec657f2a89c38e 71466 herrie_2.2-2_amd64.deb
Checksums-Sha256: 
 f8d091b3310a2cc59c7ba556f250c796f4ea98af02012ff78ed3ae8ee792b17c 1935 
herrie_2.2-2.dsc
 8c4cea9fc6b240d5dd11b35c7eb02ef5c8291a5c5f46b461d6ca242fcefe269c 5287 
herrie_2.2-2.debian.tar.gz
 e09c6036c257a8f23969f4e46eb210a1fbb8d71868bb983ca417d9e9752a7690 71466 
herrie_2.2-2_amd64.deb
Files: 
 b22277454df77db6f8d140c3035cd0fc 1935 sound optional herrie_2.2-2.dsc
 06cf0398c08066ab6597870db7c64584 5287 sound optional herrie_2.2-2.debian.tar.gz
 73f1b687a6b36b87a4c0465010320061 71466 sound optional herrie_2.2-2_amd64.deb

-BEGIN PGP SIGNATURE-

iQIVAwUBTDZWOU3o/ypjx8yQAQiL4Q/+Mf1kEzQsS0CZhhkS8DCsSkJPb3aZ6ZXH
AunbHmEVCocvTbUjXYn3Ts6XesD++g6hscXGpBsYBFCso4NdY76uwSrXJOTu9NVd
M/ue00ULQTcZQNho+6ZoqTf/c2bmnYjfBwYXOG6E422+++SsI7zhEyEMROF5jb7S
/SRbptbgn6qu2t8Sej7/9XIC5HQ1BVjah2Ps1whBWMQzBn70kwIYnYPWc81FgXNw
Bi2vR6pv1uj+DhHOmKTOV38+e5C+yr/RBVaN0Axp8iVvZMriKQMTGCrFiGqiBeHo
ILBSQqkrzP2H1U52a+stjpPIIUGSLvnP9OnjIrBJlTMNHhsSgasxowreu/VuePow
27MHCIAy+PXMEE8HZ5XKzzgnHGll90ty9BVTHfQIAY4pUGQ3OOurHlxseoTId5jF
5QMiTo8cGTymXl+PzEz67Q9IP/usZb4qC2hmRvlQf/7l1fmOpdvvpcZKn0aeZvsF
CtJp4vs855g7cMlem+2ZOUWU9gPDLOyngssCnbL7O93EYLGS6PCipj4ASE8UcLJv
ORjBreza7SQnhq+fcgSE6X85NoF/4lRi+Fh4CScRUdELtw4HM07kon/gmkUpta9Z
5Qc+QbILZvAGFHPbOHZRAf90RuLytJrPC2qEmIWy1b8+mZKpH3/CrfLp9YuUCxe3
xnwBygth2Oc=
=DaDU
-END PGP SIGNATURE

Bug#587125: marked as done (php-svn: FTBFS: Nonexistent build-dependency: libneon26-gnutls-dev)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 23:02:22 +
with message-id 
and subject line Bug#587125: fixed in php-svn 1.0.0-1
has caused the Debian Bug report #587125,
regarding php-svn: FTBFS: Nonexistent build-dependency: libneon26-gnutls-dev
to be marked as done.

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

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


-- 
587125: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587125
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: php-svn
Version: 0.5.1-1
Severity: serious
Tags: squeeze sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100624 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper (>= 7), php5-dev, libsvn-dev (>= 1.6), libsasl2-dev, 
> libneon26-gnutls-dev
> 
> ┌──┐
> │ Install build dependencies (internal resolver)  
>  │
> └──┘
> 
> Checking for already installed source dependencies...
> W: Unable to locate package libneon26-gnutls-dev
> debhelper: missing
> Using default version 7.9.1
> php5-dev: missing
> libsvn-dev: missing
> Using default version 1.6.12dfsg-1
> libsasl2-dev: missing
> libneon26-gnutls-dev: missing
> Checking for source dependency conflicts...
> E: Couldn't find package libneon26-gnutls-dev

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2010/06/24/php-svn_0.5.1-1_lsid64.buildlog

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

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

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: php-svn
Source-Version: 1.0.0-1

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

php-svn_1.0.0-1.debian.tar.gz
  to main/p/php-svn/php-svn_1.0.0-1.debian.tar.gz
php-svn_1.0.0-1.dsc
  to main/p/php-svn/php-svn_1.0.0-1.dsc
php-svn_1.0.0.orig.tar.gz
  to main/p/php-svn/php-svn_1.0.0.orig.tar.gz
php5-svn_1.0.0-1_amd64.deb
  to main/p/php-svn/php5-svn_1.0.0-1_amd64.deb



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

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

Debian distribution maintenance software
pp.
Martin Meredith  (supplier of updated php-svn package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 08 Jul 2010 23:38:28 +0100
Source: php-svn
Binary: php5-svn
Architecture: source amd64
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Martin Meredith 
Changed-By: Martin Meredith 
Description: 
 php5-svn   - PHP Bindings for the Subversion Revision control system
Closes: 587125
Changes: 
 php-svn (1.0.0-1) unstable; urgency=low
 .
   * New upstream release
   * Updated libneon-gnutls B-D (Closes: #587125)
   * Switch to dpkg-source 3.0 (quilt) format
Checksums-Sha1: 
 b08dd75a78365c7375bf91ba080acc26a594cee0 1712 php-svn_1.0.0-1.dsc
 d80a0e5fecc3e639820e507ad270915eecaf7723 24466 php-svn_1.0.0.orig.tar.gz
 359dbd1f1cad3931683f642129206e6028173817 4884 php-svn_1.0.0-1.debian.tar.gz
 2d4d74bc061dc4e930357c5e57068d5e06435a2c 29134 php5-svn_1.0.0-1_amd64.deb
Checksums-Sha256: 
 ab483316737909c7decf4394d269064030d3f07ff0594a8a8b7644ca6feb2fe8 1712 
php-svn_1.0.0-1.dsc
 aa3997232203280282fa65e5a29d240cffe71a97693e4afd032c49c842791360 24466 
php-svn_1.0.0.orig.tar.gz
 6f09f0cdb968755bfbc8be7d645a1a8cd9e7da93536a80a76f3cdb93bad82b80 4884 
php-svn_1.0.0-1.debian.tar.gz
 8b4026dea6cf50396f9baf548c20d9b4315484cb1143ce157fff98f6d74eebde 29134 
php5-svn_1.0.0-1_amd64.deb
Files: 
 709eea7653090aa9354cf9df13ed885d 1712 devel extra php-svn_1.0.0-1.dsc
 f89e87ff86978a121b9e3ddf69d523c1 24466 devel extra php-svn_1.0.0.orig.tar.gz
 b45fc

Bug#582937: marked as done (php5-xdebug: xdebug doesn't show local variables with PHP 5.3)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 22:47:13 +
with message-id 
and subject line Bug#582937: fixed in xdebug 2.1.0-1
has caused the Debian Bug report #582937,
regarding php5-xdebug: xdebug doesn't show local variables with PHP 5.3
to be marked as done.

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

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


-- 
582937: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582937
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: php5-xdebug
Version: 2.0.5-1+b1
Severity: grave

Hi, 

with PHP 5.3, xdebug doesn't show the value of local variables anymore.
This bug is fixed upstream, but only in development releases.
Unfortunately, without the values of such variables, xdebug is nearly
useless for debugging.

Upstream bug: http://bugs.xdebug.org/view.php?id=376
Corresponding forum discussion with screenshot:
http://www.eclipse.org/forums/index.php?t=tree&th=158396&#page_top

I don't know if packaging the development snapshot is a good solution;
however, releasing Squeeze with the current xdebug package would render
it useless for me.

Thanks
Thomas

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

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

Versions of packages php5-xdebug depends on:
ii  libapache2-mod-php5 [phpapi-2 5.3.2-1server-side, HTML-embedded scripti
ii  libc6 2.10.2-8   Embedded GNU C Library: Shared lib
ii  php5-cgi [phpapi-20090626+lfs 5.3.2-1server-side, HTML-embedded scripti
ii  php5-cli [phpapi-20090626+lfs 5.3.2-1command-line interpreter for the p
ii  ucf   3.0025 Update Configuration File: preserv

php5-xdebug recommends no packages.

php5-xdebug suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: xdebug
Source-Version: 2.1.0-1

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

php5-xdebug_2.1.0-1_amd64.deb
  to main/x/xdebug/php5-xdebug_2.1.0-1_amd64.deb
xdebug_2.1.0-1.debian.tar.gz
  to main/x/xdebug/xdebug_2.1.0-1.debian.tar.gz
xdebug_2.1.0-1.dsc
  to main/x/xdebug/xdebug_2.1.0-1.dsc
xdebug_2.1.0.orig.tar.gz
  to main/x/xdebug/xdebug_2.1.0.orig.tar.gz



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

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

Debian distribution maintenance software
pp.
Martin Meredith  (supplier of updated xdebug package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 08 Jul 2010 23:23:38 +0100
Source: xdebug
Binary: php5-xdebug
Architecture: source amd64
Version: 2.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Martin Meredith 
Changed-By: Martin Meredith 
Description: 
 php5-xdebug - Xdebug Module for PHP 5
Closes: 555643 570163 571765 582937
Changes: 
 xdebug (2.1.0-1) unstable; urgency=low
 .
   * New upstream release (Closes: #570163, #571765, #555643, #582937)
   * Switch to dpkg-source 3.0 (quilt) format
   * Bumped Standards version
Checksums-Sha1: 
 ca7b1fc0eb37e7989787ae7b9004f67ac245ab3a 1650 xdebug_2.1.0-1.dsc
 e426e5a4a02e60b34a933c29c98029a0352963be 301355 xdebug_2.1.0.orig.tar.gz
 354daa2989248deea00863765c5abfb090fad261 5937 xdebug_2.1.0-1.debian.tar.gz
 1edcdd77ca3fe6af844af966426b8c93ec046163 230308 php5-xdebug_2.1.0-1_amd64.deb
Checksums-Sha256: 
 4b91eab82885ae84480a7e96414f5d63dbb4f9a29c338443d5f1e212fa11a8cf 1650 
xdebug_2.1.0-1.dsc
 730dd64d057206956415e1aadb7a414fc9872803fd2f2ad993419dc87e1d039d 301355 
xdebug_2.1.0.orig.tar.gz
 0069566f4b4791aa084a6c7cfe33aaea33c15ec215a75dce8908c8164deac4d0 5937 
xdebug_2.1.0-1.debian.tar.gz
 fd6be19ee1551286c24589cca3556a787aa00be7aa67636c1170b62d244aaaf8 230308 
php5-xdebug_2.1.0-1_amd64.deb
Files: 
 494c2c8ea98bed1f97174542d02ca5c6 1650 devel optional xdebug_2.1.0-1.dsc
 2abf000f8d94af469773b31772aa96ab 301355 devel optional xdebug_2.1.0.orig.tar.gz
 5cae992e9db53644d5081a30ecbe0503 5937 devel optional 
xdebug_2.1.0-1.debian.tar.gz
 9323e0da17bd2b92218ff42293402fc5 230308 devel optional 
php5-xdebug_2.1.0-1_amd64.d

Bug#581620: marked as done (atlas: FTBFS on hppa)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 21:47:30 +
with message-id 
and subject line Bug#581620: fixed in atlas 3.8.3-24
has caused the Debian Bug report #581620,
regarding atlas: FTBFS on hppa
to be marked as done.

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

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


-- 
581620: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=581620
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: atlas
Version: 3.8.3-22
Severity: serious

See
https://buildd.debian.org/fetch.cgi?pkg=atlas;ver=3.8.3-22;arch=hppa;stamp=1273640620

The build log is a twisty maze of errors so I'm not sure which ones are
relevant, but it ends with:

cp: cannot stat 
`/build/buildd-atlas_3.8.3-22-hppa-nAEgZF/atlas-3.8.3/build/atlas-base/lib/atlas/libblas.a':
 No such file or directory
make[2]: *** [install_static_lib] Error 1

and

dh_install: libatlas3gf-base missing files 
(debian/tmp/usr/lib/atlas-base/*.so.*), aborting
make: *** [binary-install/libatlas3gf-base] Error 2

You might want to consider fixing the build system so that if you fail
to build stuff you stop right away and don't keep going until the
install part...

Cheers,
Julien

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (101, 
'experimental')
Architecture: amd64 (x86_64)

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


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: atlas
Source-Version: 3.8.3-24

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

atlas_3.8.3-24.diff.gz
  to main/a/atlas/atlas_3.8.3-24.diff.gz
atlas_3.8.3-24.dsc
  to main/a/atlas/atlas_3.8.3-24.dsc
libatlas-base-dev_3.8.3-24_i386.deb
  to main/a/atlas/libatlas-base-dev_3.8.3-24_i386.deb
libatlas-core2sse3-dev_3.8.3-24_i386.deb
  to main/a/atlas/libatlas-core2sse3-dev_3.8.3-24_i386.deb
libatlas-dev_3.8.3-24_all.deb
  to main/a/atlas/libatlas-dev_3.8.3-24_all.deb
libatlas-doc_3.8.3-24_all.deb
  to main/a/atlas/libatlas-doc_3.8.3-24_all.deb
libatlas-sse-dev_3.8.3-24_i386.deb
  to main/a/atlas/libatlas-sse-dev_3.8.3-24_i386.deb
libatlas-sse2-dev_3.8.3-24_i386.deb
  to main/a/atlas/libatlas-sse2-dev_3.8.3-24_i386.deb
libatlas-sse3-dev_3.8.3-24_i386.deb
  to main/a/atlas/libatlas-sse3-dev_3.8.3-24_i386.deb
libatlas-test_3.8.3-24_i386.deb
  to main/a/atlas/libatlas-test_3.8.3-24_i386.deb
libatlas3gf-base_3.8.3-24_i386.deb
  to main/a/atlas/libatlas3gf-base_3.8.3-24_i386.deb
libatlas3gf-core2sse3_3.8.3-24_i386.deb
  to main/a/atlas/libatlas3gf-core2sse3_3.8.3-24_i386.deb
libatlas3gf-sse2_3.8.3-24_i386.deb
  to main/a/atlas/libatlas3gf-sse2_3.8.3-24_i386.deb
libatlas3gf-sse3_3.8.3-24_i386.deb
  to main/a/atlas/libatlas3gf-sse3_3.8.3-24_i386.deb
libatlas3gf-sse_3.8.3-24_i386.deb
  to main/a/atlas/libatlas3gf-sse_3.8.3-24_i386.deb



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

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

Debian distribution maintenance software
pp.
Sylvestre Ledru  (supplier of updated atlas package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 07 Jul 2010 08:39:08 +0200
Source: atlas
Binary: libatlas3gf-base libatlas-base-dev libatlas-dev libatlas-test 
libatlas-doc libatlas3gf-sse libatlas-sse-dev libatlas3gf-sse2 
libatlas-sse2-dev libatlas3gf-sse3 libatlas-sse3-dev libatlas3gf-core2sse3 
libatlas-core2sse3-dev libatlas3gf-amd64sse3 libatlas-amd64sse3-dev 
libatlas3gf-corei7sse3 libatlas-corei7sse3-dev libatlas3gf-altivec 
libatlas-altivec-dev libatlas3gf-v9 libatlas-v9-dev libatlas3gf-ev6 
libatlas-ev6-dev libatlas3gf-2.0 libatlas-2.0-dev
Architecture: source all i386
Version: 3.8.3-24
Distribution: unstable
Urgency: low
Maintainer: Debian Scientific Computing Team 

Changed-By: Sylvestre Ledru 
Description: 
 libatlas-2.0-dev - Automatically Tuned Linear Algebra Software, 2.0 static
 libatlas-altivec-dev - Automatically Tuned Linear Algebra Software, altivec 
static
 libatlas-amd64sse3-dev - Automatically Tuned Linear Algebra Software, 
AMD64SSE3 static
 libatlas-base-dev - Automatically Tuned Li

Processed: your mail

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 587737
Bug #587737 {Done: Mark Purcell } [hplip-gui] [hplip-gui] 
hp-systray fails to start
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
>
End of message, stopping processing here.

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


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



Bug#586844: marked as done (mgltools-pmv: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 21:02:28 +
with message-id 
and subject line Bug#586844: fixed in mgltools-pmv 1.5.4.cvs.20090603-1.1
has caused the Debian Bug report #586844,
regarding mgltools-pmv: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-pmv
Source-Version: 1.5.4.cvs.20090603-1.1

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

mgltools-pmv_1.5.4.cvs.20090603-1.1.diff.gz
  to non-free/m/mgltools-pmv/mgltools-pmv_1.5.4.cvs.20090603-1.1.diff.gz
mgltools-pmv_1.5.4.cvs.20090603-1.1.dsc
  to non-free/m/mgltools-pmv/mgltools-pmv_1.5.4.cvs.20090603-1.1.dsc
mgltools-pmv_1.5.4.cvs.20090603-1.1_all.deb
  to non-free/m/mgltools-pmv/mgltools-pmv_1.5.4.cvs.20090603-1.1_all.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-pmv package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 20:05:07 +0200
Source: mgltools-pmv
Binary: mgltools-pmv
Architecture: source all
Version: 1.5.4.cvs.20090603-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-pmv - Python-based Molecular Viewer
Closes: 585252 586844
Changes: 
 mgltools-pmv (1.5.4.cvs.20090603-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Add fix_shebangs.patch and change XS-Python-Version to >= 2.5
 (closes: #586844)
   * Remove runPmv file in clean rule
   * Add fix_string_exceptions.patch (closes: #585252)
Checksums-Sha1: 
 20712b6f490cfcba0e680dc93d3dfaf0500358f9 1552 
mgltools-pmv_1.5.4.cvs.20090603-1.1.dsc
 55d94045be55f3b81902d98068ef1e86a9cfd339 6295 
mgltools-pmv_1.5.4.cvs.20090603-1.1.diff.gz
 6d7f72edd606efa2f032226c13f9f103b395d927 10850582 
mgltools-pmv_1.5.4.cvs.20090603-1.1_all.deb
Checksums-Sha256: 
 9427faffa763c92dd57f4e639f5896c4aa91cc29a645bd8df73c01bd4780d4d0 1552 
mgltools-pmv_1.5.4.cvs.20090603-1.1.dsc
 7dfea2345da7e53402fc12afdb1c56cd8765c2576e90badb402730b73955cb99 6295 
mgltools-pmv_1.5.4.cvs.20090603-1.1.diff.gz
 dfc11cbd1b18bece2a927e3efb171db2154eaf605e00dcc17ea8f94764b2bd3e 10850582 
mgltools-pmv_1.5.4.cvs.20090603-1.1_all.deb
Files: 
 89e28f48e71323af33346fd5646b5247 1552 non-free/science optional 
mgltools-pmv_1.5.4.cvs.20090603-1.1.dsc
 1381451053c4375c90e4381c717aa41d 6295 non-free/science optional 
mgltools-pmv_1.5.4.cvs.20090603-1.1.diff.gz
 12a1de6c5dcb291ba733030b64252507 10850582 non-free/science optional 
mgltools-pmv_1.5.4.cvs.20090603-1.1_all.deb

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

iEYEARECAAYFAkws9LMACgkQB01zfu119ZmtcwCeKIXfQkOVezXnSE0RK4wVIb+H
KVgAoKrWHvTHtvDAmMxz6rx2iRCsh+Gj
=+288
-END PGP SIGNATURE-


--- End Message ---


Bug#586850: marked as done (mgltools-viewerframework: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 20:34:01 +
with message-id 
and subject line Bug#586850: fixed in mgltools-viewerframework 
1.5.4.cvs.20090603-1.1
has caused the Debian Bug report #586850,
regarding mgltools-viewerframework: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-viewerframework
Source-Version: 1.5.4.cvs.20090603-1.1

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

mgltools-viewerframework_1.5.4.cvs.20090603-1.1.diff.gz
  to 
non-free/m/mgltools-viewerframework/mgltools-viewerframework_1.5.4.cvs.20090603-1.1.diff.gz
mgltools-viewerframework_1.5.4.cvs.20090603-1.1.dsc
  to 
non-free/m/mgltools-viewerframework/mgltools-viewerframework_1.5.4.cvs.20090603-1.1.dsc
mgltools-viewerframework_1.5.4.cvs.20090603-1.1_all.deb
  to 
non-free/m/mgltools-viewerframework/mgltools-viewerframework_1.5.4.cvs.20090603-1.1_all.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated 
mgltools-viewerframework package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 22:38:16 +0200
Source: mgltools-viewerframework
Binary: mgltools-viewerframework
Architecture: source all
Version: 1.5.4.cvs.20090603-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-viewerframework - ViewerFramework supports building visualization 
applications
Closes: 586850
Changes: 
 mgltools-viewerframework (1.5.4.cvs.20090603-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Allow byte-compilation for Python >= 2.5 (closes: #586850)
Checksums-Sha1: 
 55baad044fb70cbce220e11654ba91a102cc97db 1659 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1.dsc
 55bceaa6b5f2fa7e9b40b68797af28bab2a810b7 3087 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1.diff.gz
 6b1dc6a63ed1880ea2d66d81c0361fa9daf48245 323908 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1_all.deb
Checksums-Sha256: 
 808cfe2ad0890a672491be0d1ef26ba8fb3780b925441506f450ae652c66e968 1659 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1.dsc
 956e3b9de561eb632466478081c8ba07fbcf55f3942bbc2cce3a42b1728ee3bf 3087 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1.diff.gz
 92c3fe8987225c62fa3c0295611a0aa5bb6d9a737dc9177351dbd3499668d781 323908 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1_all.deb
Files: 
 48449be0310b6b0ae01d4c8756cd714c 1659 non-free/science optional 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1.dsc
 ab9bb26efee20a3856a035f690266fa3 3087 non-free/science optional 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1.diff.gz
 990d893b4499297df1753bc85bc58664 323908 non-free/science optional 
mgltools-viewerframework_1.5.4.cvs.20090603-1.1_all.deb

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

iEYEARECAAYFAkws8tcACgkQB01zfu119ZkNKACfWwPrcTxt91LKXCOrUKbOZ8p2
d1UAn1ogaIFXq70IDs04GVOC4MDeQp3I
=2PN0
-END PGP SIGNATURE-


--- End Message ---


Bug#586847: marked as done (mgltools-sff: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 20:33:52 +
with message-id 
and subject line Bug#586847: fixed in mgltools-sff 1.5.4.cvs.20090603-1.1
has caused the Debian Bug report #586847,
regarding mgltools-sff: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-sff
Source-Version: 1.5.4.cvs.20090603-1.1

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

mgltools-sff_1.5.4.cvs.20090603-1.1.diff.gz
  to non-free/m/mgltools-sff/mgltools-sff_1.5.4.cvs.20090603-1.1.diff.gz
mgltools-sff_1.5.4.cvs.20090603-1.1.dsc
  to non-free/m/mgltools-sff/mgltools-sff_1.5.4.cvs.20090603-1.1.dsc
mgltools-sff_1.5.4.cvs.20090603-1.1_amd64.deb
  to non-free/m/mgltools-sff/mgltools-sff_1.5.4.cvs.20090603-1.1_amd64.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-sff package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 21:11:05 +0200
Source: mgltools-sff
Binary: mgltools-sff
Architecture: source amd64
Version: 1.5.4.cvs.20090603-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-sff - Simple Force Field for Python
Closes: 586847
Changes: 
 mgltools-sff (1.5.4.cvs.20090603-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Build extension for all supported Python versions (closes: #586847)
Checksums-Sha1: 
 ec232d554b53ac3a10f098df1c7fed916de207f1 1593 
mgltools-sff_1.5.4.cvs.20090603-1.1.dsc
 c239008181adf8fc82196c23fa2ddacab08d9f3c 4530 
mgltools-sff_1.5.4.cvs.20090603-1.1.diff.gz
 6e7c5313cd759b6a8001131f777430f14633b861 164182 
mgltools-sff_1.5.4.cvs.20090603-1.1_amd64.deb
Checksums-Sha256: 
 e8c14c83a10f9076453bc7881d7b60ce7d546c9712a3451d5933a6d6fc57dbf4 1593 
mgltools-sff_1.5.4.cvs.20090603-1.1.dsc
 487b00043422bafc1cd0167643f397ad4a355ecfc77bb2669f40699ecd28513b 4530 
mgltools-sff_1.5.4.cvs.20090603-1.1.diff.gz
 588e8f875f3bc282b4a79013484761aa48aa13f55fd7515e00fa2ec08c17c595 164182 
mgltools-sff_1.5.4.cvs.20090603-1.1_amd64.deb
Files: 
 7af751968c9c01c43a03b842ff8645a6 1593 non-free/science optional 
mgltools-sff_1.5.4.cvs.20090603-1.1.dsc
 559422f644f8c4ef688a26534c53e73c 4530 non-free/science optional 
mgltools-sff_1.5.4.cvs.20090603-1.1.diff.gz
 da720ddae1178d20983d41629ca73fd8 164182 non-free/science optional 
mgltools-sff_1.5.4.cvs.20090603-1.1_amd64.deb

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

iEYEARECAAYFAkws8BUACgkQB01zfu119ZlzxQCeJ7U/ncyw3lvfGbVze7UxnlKm
Oq8AoMNqzWNJ9gg1Rd+YwY15WWxRUvjE
=G+2O
-END PGP SIGNATURE-


--- End Message ---


Bug#586846: marked as done (mgltools-pyglf: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 20:33:44 +
with message-id 
and subject line Bug#586846: fixed in mgltools-pyglf 1.5.4.cvs.20090603-1.1
has caused the Debian Bug report #586846,
regarding mgltools-pyglf: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-pyglf
Source-Version: 1.5.4.cvs.20090603-1.1

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

mgltools-pyglf_1.5.4.cvs.20090603-1.1.diff.gz
  to non-free/m/mgltools-pyglf/mgltools-pyglf_1.5.4.cvs.20090603-1.1.diff.gz
mgltools-pyglf_1.5.4.cvs.20090603-1.1.dsc
  to non-free/m/mgltools-pyglf/mgltools-pyglf_1.5.4.cvs.20090603-1.1.dsc
mgltools-pyglf_1.5.4.cvs.20090603-1.1_amd64.deb
  to non-free/m/mgltools-pyglf/mgltools-pyglf_1.5.4.cvs.20090603-1.1_amd64.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-pyglf package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 22:32:52 +0200
Source: mgltools-pyglf
Binary: mgltools-pyglf
Architecture: source amd64
Version: 1.5.4.cvs.20090603-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-pyglf - GLF library Python extension to write text in OpenGL
Closes: 586846
Changes: 
 mgltools-pyglf (1.5.4.cvs.20090603-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Build extension for all supported Python versions (closes: #586846)
Checksums-Sha1: 
 0e142a56e8dbca07c849e61d88fdda9ccb8cdc6d 1659 
mgltools-pyglf_1.5.4.cvs.20090603-1.1.dsc
 31a893f43ff49e2e6822b6c27be27670f3afa722 4197 
mgltools-pyglf_1.5.4.cvs.20090603-1.1.diff.gz
 582df25d50de1cbf70e79bebfb233591c5a3c068 690516 
mgltools-pyglf_1.5.4.cvs.20090603-1.1_amd64.deb
Checksums-Sha256: 
 80557d7c08ab7dd931d5ba65f09614e2419aaad41f3d479af05b9a9f89cc3bc0 1659 
mgltools-pyglf_1.5.4.cvs.20090603-1.1.dsc
 3a33ccf1da659694a5446e35eceb03e373fffc4278ef108644f718c32cdc9e95 4197 
mgltools-pyglf_1.5.4.cvs.20090603-1.1.diff.gz
 4cb932a5f6f3c76b90c354e6936f0ce6a44c574af10499fb56a8d0cceac0586b 690516 
mgltools-pyglf_1.5.4.cvs.20090603-1.1_amd64.deb
Files: 
 300dd754910d9fbeb1f10376642b004e 1659 non-free/science optional 
mgltools-pyglf_1.5.4.cvs.20090603-1.1.dsc
 99bc7cf47178e0c80728a60b3976d20f 4197 non-free/science optional 
mgltools-pyglf_1.5.4.cvs.20090603-1.1.diff.gz
 7b9eabf2a1b6a78af5edf4941870bdd3 690516 non-free/science optional 
mgltools-pyglf_1.5.4.cvs.20090603-1.1_amd64.deb

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

iEYEARECAAYFAkws7acACgkQB01zfu119ZkwPACfZPFzdPVzp1KSFh76+HNp2o2k
pvYAn1lzdAgHrp3Mnf2bRjvVWT9ixGN4
=7l9d
-END PGP SIGNATURE-


--- End Message ---


Bug#586843: marked as done (mgltools-opengltk: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 20:33:37 +
with message-id 
and subject line Bug#586843: fixed in mgltools-opengltk 1.5.4.cvs.20090603-1.1
has caused the Debian Bug report #586843,
regarding mgltools-opengltk: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-opengltk
Source-Version: 1.5.4.cvs.20090603-1.1

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

mgltools-opengltk_1.5.4.cvs.20090603-1.1.diff.gz
  to 
non-free/m/mgltools-opengltk/mgltools-opengltk_1.5.4.cvs.20090603-1.1.diff.gz
mgltools-opengltk_1.5.4.cvs.20090603-1.1.dsc
  to non-free/m/mgltools-opengltk/mgltools-opengltk_1.5.4.cvs.20090603-1.1.dsc
mgltools-opengltk_1.5.4.cvs.20090603-1.1_amd64.deb
  to 
non-free/m/mgltools-opengltk/mgltools-opengltk_1.5.4.cvs.20090603-1.1_amd64.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-opengltk 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 21:21:01 +0200
Source: mgltools-opengltk
Binary: mgltools-opengltk
Architecture: source amd64
Version: 1.5.4.cvs.20090603-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-opengltk - opengltk python extension
Closes: 586843
Changes: 
 mgltools-opengltk (1.5.4.cvs.20090603-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Build extension for all supported Python versions (closes: #586843)
Checksums-Sha1: 
 f586be6c1f4e24f16e34eba3695ab70d7cbecc34 1521 
mgltools-opengltk_1.5.4.cvs.20090603-1.1.dsc
 0e0256ed0ac67ff731f38dda26531669c2c7f07c 4974 
mgltools-opengltk_1.5.4.cvs.20090603-1.1.diff.gz
 938cdd40146d3214e6c615b6efed8627a5ec8ea2 583786 
mgltools-opengltk_1.5.4.cvs.20090603-1.1_amd64.deb
Checksums-Sha256: 
 a343432f72e7a91823db4cbe23708c20b55cfa8324a0ce4dd7682bdb534754b0 1521 
mgltools-opengltk_1.5.4.cvs.20090603-1.1.dsc
 0ee3d76b3eb0518f79cc7c24af9c2e1d32c61e983736485ae51560552a99ac75 4974 
mgltools-opengltk_1.5.4.cvs.20090603-1.1.diff.gz
 bd28b74af3fb1afaaf01df1a19459ed72858e0d6e00414cf217a569c1f3e09fd 583786 
mgltools-opengltk_1.5.4.cvs.20090603-1.1_amd64.deb
Files: 
 5f5aa01ff6ef6bd8cc353c96824f0f03 1521 non-free/science optional 
mgltools-opengltk_1.5.4.cvs.20090603-1.1.dsc
 3b6dc34d2c6dfc9664861d1710e5e479 4974 non-free/science optional 
mgltools-opengltk_1.5.4.cvs.20090603-1.1.diff.gz
 35378f4b98d9a65bc96c4d2982f77594 583786 non-free/science optional 
mgltools-opengltk_1.5.4.cvs.20090603-1.1_amd64.deb

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

iEYEARECAAYFAkws6voACgkQB01zfu119Zmi7wCePUaHGU/MJwT9Dw5u4xqrOc8J
pvsAoIkL267kht5IBq8e5iOwp1tgi5nN
=Du2m
-END PGP SIGNATURE-


--- End Message ---


Bug#512915: affected css files

2010-07-08 Thread Simon McVittie
On Fri, 29 Jan 2010 at 16:26:12 +0100, Alexander Reichle-Schmehl wrote:
> * Alexander Reichle-Schmehl  [100129 15:56]:
> 
> > However, the many (all?) css files are compressed, too, and sadly they
> > don't have that -min.css, only the compressed css.  It might be possible
> > to add the real source for them and "build" them with yui-compressor
> > during package build; so the package would fulfil the dfsg and would be
> > saved to the upcoming release.
> 
> Okay, I give up for now; I don't understand $upstream build system good
> enough, to understand which css files of src/ are compressed to the
> specific build directories.

The trick here appears to be that the Debian package is based on the upstream
release zip file, yui_2.8.1.zip (as documented in debian/README.Debian-source),
whereas the preferred form for modification found in upstream git is really
something else.

There is an upstream build system, but sadly it uses a wrapper 'builder',
around Ant. The 'builder' git repository contains (a modified version of?)
JSLint (with the "used for Good, not Evil" joke/non-free-clause), an embedded
binary copy of Rhino, five binary copies of yui-compressor (each of which might
contain its own copy of Rhino, I haven't checked), and a binary copy of
ant-contrib with a bug fixed (which may or may not have also been fixed in
Debian's copy).

Having discovered those, I must admit that I gave up on further investigation
for the moment, but I suspect that the way forward here would be to have a new
orig.tar.gz containing snapshots of an appropriate version of both yui2 and
builder, with unnecessary binaries removed.

Regards,
Simon


signature.asc
Description: Digital signature


Processed: RM: libdownload -- RoQA; library with no rdepends, abandoned upstream

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 585024 ftp.debian.org
Bug #585024 [libdownload] libdownload: Should this package be removed?
Bug reassigned from package 'libdownload' to 'ftp.debian.org'.
> retitle 585024 RM: libdownload -- RoQA; library with no rdepends, abandoned 
> upstream
Bug #585024 [ftp.debian.org] libdownload: Should this package be removed?
Changed Bug title to 'RM: libdownload -- RoQA; library with no rdepends, 
abandoned upstream' from 'libdownload: Should this package be removed?'
> severity 585024 normal
Bug #585024 [ftp.debian.org] RM: libdownload -- RoQA; library with no rdepends, 
abandoned upstream
Severity set to 'normal' from 'serious'

> thanks
Stopping processing here.

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


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



Bug#585024: RM: libdownload -- RoQA; library with no rdepends, abandoned upstream

2010-07-08 Thread Simon McVittie
reassign 585024 ftp.debian.org
retitle 585024 RM: libdownload -- RoQA; library with no rdepends, abandoned 
upstream
severity 585024 normal
thanks

libdownload, a fork of libfetch, was packaged in Debian as a prerequisite for
pacman-package-manager, which hasn't yet been uploaded (it doesn't seem to be
in the NEW queue either).

However, Pacman now uses (a later version of?) the original libfetch, making
libdownload unnecessary. Since libdownload's upstream developers were the
Pacman developers, it now lacks an upstream; nothing in Debian depends on it
and it has a low popcon (17 installations and no votes), so I think it should
go.

The proposed-removal bug hasn't had any response for a month, but in case
it was overlooked, I've cc'd the maintainer and the sponsor of the upload to
Debian.

Regards,
Simon


signature.asc
Description: Digital signature


Processed: Re: Bug#583939: invalid use of strcpy causes breakage on Intel x86-64 CPUs

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 583939 + patch
Bug #583939 [tremulous] libc6 2.11.1-1 in sid breaks tremulous
Added tag(s) patch.
> retitle 583939 invalid use of strcpy causes breakage on Intel x86-64 CPUs
Bug #583939 [tremulous] libc6 2.11.1-1 in sid breaks tremulous
Changed Bug title to 'invalid use of strcpy causes breakage on Intel x86-64 
CPUs' from 'libc6 2.11.1-1 in sid breaks tremulous'
> thanks
Stopping processing here.

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


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



Bug#583939: invalid use of strcpy causes breakage on Intel x86-64 CPUs

2010-07-08 Thread Simon McVittie
tags 583939 + patch
retitle 583939 invalid use of strcpy causes breakage on Intel x86-64 CPUs
thanks

On Sat, 05 Jun 2010 at 10:59:29 +0100, Sheridan Hutchinson wrote:
> You may find this thread useful.
> 
> http://www.quakelive.com/forum/showthread.php?t=38447&page=3

Thanks, that thread leads to ,
which has a patch from Andreas Bierfert (andreas.bierfert at lowlatency.de)
via Fedora's Hans de Goede, which was applied in upstream ioquake3.
I've attached it.

It also passes on the useful information that this bug is only likely to be
reproducible on Intel x86-64 CPUs (Core 2, Centrino 2, etc.), and not on
the AMD equivalents.

However, tremulous has a number of other open bugs (many of which have been
fixed either in Tremulous svn or in ioquake3) and hasn't been touched by the
Debian maintainer since 2007.

As an open-source engine (albeit with non-free art), these bugs can be fixed,
but to do so requires somewhat active maintenance. Is the current maintainer
still available? If not, would the Games Team would be interested in picking
it up?

(As well as cherry-picking fixes from upstream svn, some of the portability
patches from Debian's OpenArena package would probably also be applicable.)

I've cc'd the Games Team and the sponsor of the last couple of maintainer
uploads.

Regards,
Simon
Author: Andreas Bierfert (andreas.bierfert at lowlatency.de)
Reviewed-by: Ludwig Nussel
Description: fix abuse of strcpy (overlapping source and dest)
Bug: http://bugzilla.icculus.org/show_bug.cgi?id=4331
Bug-Fedora: http://bugzilla.redhat.com/show_bug.cgi?id=526338 

diff --git a/src/botlib/l_precomp.c b/src/botlib/l_precomp.c
index 5a0acac..1bd1e0d 100644
--- a/src/botlib/l_precomp.c
+++ b/src/botlib/l_precomp.c
@@ -952,7 +952,7 @@ void PC_ConvertPath(char *path)
 		if ((*ptr == '\\' || *ptr == '/') &&
 (*(ptr+1) == '\\' || *(ptr+1) == '/'))
 		{
-			strcpy(ptr, ptr+1);
+			memmove(ptr, ptr+1, strlen(ptr));
 		} //end if
 		else
 		{
diff --git a/src/botlib/l_script.c b/src/botlib/l_script.c
index 485254f..7b2e2ad 100644
--- a/src/botlib/l_script.c
+++ b/src/botlib/l_script.c
@@ -1119,7 +1119,7 @@ void StripDoubleQuotes(char *string)
 {
 	if (*string == '\"')
 	{
-		strcpy(string, string+1);
+		memmove(string, string+1, strlen(string));
 	} //end if
 	if (string[strlen(string)-1] == '\"')
 	{
@@ -1136,7 +1136,7 @@ void StripSingleQuotes(char *string)
 {
 	if (*string == '\'')
 	{
-		strcpy(string, string+1);
+		memmove(string, string+1, strlen(string));
 	} //end if
 	if (string[strlen(string)-1] == '\'')
 	{


signature.asc
Description: Digital signature


Bug#586840: marked as done (mgltools-mglutil: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 19:48:06 +
with message-id 
and subject line Bug#586840: fixed in mgltools-mglutil 1.5.4.cvs.20090603-1.1
has caused the Debian Bug report #586840,
regarding mgltools-mglutil: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-mglutil
Source-Version: 1.5.4.cvs.20090603-1.1

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

mgltools-mglutil_1.5.4.cvs.20090603-1.1.diff.gz
  to non-free/m/mgltools-mglutil/mgltools-mglutil_1.5.4.cvs.20090603-1.1.diff.gz
mgltools-mglutil_1.5.4.cvs.20090603-1.1.dsc
  to non-free/m/mgltools-mglutil/mgltools-mglutil_1.5.4.cvs.20090603-1.1.dsc
mgltools-mglutil_1.5.4.cvs.20090603-1.1_all.deb
  to non-free/m/mgltools-mglutil/mgltools-mglutil_1.5.4.cvs.20090603-1.1_all.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-mglutil 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 20:35:25 +0200
Source: mgltools-mglutil
Binary: mgltools-mglutil
Architecture: source all
Version: 1.5.4.cvs.20090603-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-mglutil - Molecular Graphics Laboratory utility collection
Closes: 586840
Changes: 
 mgltools-mglutil (1.5.4.cvs.20090603-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Add fix_shebangs.patch to drop hardcoded pythoh2.5 dependency
   * Add fix_assertion.patch to fix compatibility with Python 2.6
   * Allow byte-compilation for Python >= 2.5
 (closes: 586840)
Checksums-Sha1: 
 8545e3f7d01a8601775d64c31b1f494f1b21270b 1589 
mgltools-mglutil_1.5.4.cvs.20090603-1.1.dsc
 846b2bab50e21ded0d03b11aa68eabe0dab32494 5619 
mgltools-mglutil_1.5.4.cvs.20090603-1.1.diff.gz
 2fcae984900923e00c91abf467347fcce86e3e7c 1749142 
mgltools-mglutil_1.5.4.cvs.20090603-1.1_all.deb
Checksums-Sha256: 
 25c830e21b4b6115d5d5ce207cccbba38374b59954270e3d4c8bc5b0acabfaa2 1589 
mgltools-mglutil_1.5.4.cvs.20090603-1.1.dsc
 0dcb5e3a2784f3938f0b740800edc3456675b0df8cc81762127cae0cfa263c84 5619 
mgltools-mglutil_1.5.4.cvs.20090603-1.1.diff.gz
 98a33890395eba7f2c0c655f017b1d8076648a78b156295c8e1cf8adda0190ad 1749142 
mgltools-mglutil_1.5.4.cvs.20090603-1.1_all.deb
Files: 
 22308e491216e6733209ad4700fed5a7 1589 non-free/science optional 
mgltools-mglutil_1.5.4.cvs.20090603-1.1.dsc
 ccd3654013c1119b2442dc17f1081de2 5619 non-free/science optional 
mgltools-mglutil_1.5.4.cvs.20090603-1.1.diff.gz
 6c430c979a30cb04b55ecfb6d4dc612c 1749142 non-free/science optional 
mgltools-mglutil_1.5.4.cvs.20090603-1.1_all.deb

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

iEYEARECAAYFAkws6VAACgkQB01zfu119ZnECgCgvwffudHFs4fklY7XSd3t6Ib9
vjoAoIQS2puhYNicfPAfX6tMD+SBEFHk
=6MkJ
-END PGP SIGNATURE-


--- End Message ---


Bug#586839: marked as done (mgltools-gle: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 19:32:06 +
with message-id 
and subject line Bug#586839: fixed in mgltools-gle 1.5.4.cvs.20090603-1.2
has caused the Debian Bug report #586839,
regarding mgltools-gle: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-gle
Source-Version: 1.5.4.cvs.20090603-1.2

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

mgltools-gle_1.5.4.cvs.20090603-1.2.diff.gz
  to non-free/m/mgltools-gle/mgltools-gle_1.5.4.cvs.20090603-1.2.diff.gz
mgltools-gle_1.5.4.cvs.20090603-1.2.dsc
  to non-free/m/mgltools-gle/mgltools-gle_1.5.4.cvs.20090603-1.2.dsc
mgltools-gle_1.5.4.cvs.20090603-1.2_amd64.deb
  to non-free/m/mgltools-gle/mgltools-gle_1.5.4.cvs.20090603-1.2_amd64.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-gle package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 21:50:08 +0200
Source: mgltools-gle
Binary: mgltools-gle
Architecture: source amd64
Version: 1.5.4.cvs.20090603-1.2
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-gle - GLE library Python extension
Closes: 586839
Changes: 
 mgltools-gle (1.5.4.cvs.20090603-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Build extension for all supported Python versions (closes: #586839)
Checksums-Sha1: 
 7b909b70f43a6691a7e20424144968b653753be3 1611 
mgltools-gle_1.5.4.cvs.20090603-1.2.dsc
 a4d6721eef792df21655344249cd1beabfa9706f 5277 
mgltools-gle_1.5.4.cvs.20090603-1.2.diff.gz
 f9358d3c79b42678e8fd0136f111f466c3efa6cd 147118 
mgltools-gle_1.5.4.cvs.20090603-1.2_amd64.deb
Checksums-Sha256: 
 2558f78b159bd8d137ee435554626e3f5b6e2d754af3261da837ae4d4eefaf81 1611 
mgltools-gle_1.5.4.cvs.20090603-1.2.dsc
 bf5de8bf6096950479378d713463210684b703794a15ead5604de638f09f9916 5277 
mgltools-gle_1.5.4.cvs.20090603-1.2.diff.gz
 071e4eaae501d3124c1fb8cb491861fcb64a0ed42ad9fbdaf7f868849fc66683 147118 
mgltools-gle_1.5.4.cvs.20090603-1.2_amd64.deb
Files: 
 0c20f131d510cff148e09022c29837a3 1611 non-free/libs optional 
mgltools-gle_1.5.4.cvs.20090603-1.2.dsc
 1bbb290f870dce847590acaad4161c87 5277 non-free/libs optional 
mgltools-gle_1.5.4.cvs.20090603-1.2.diff.gz
 0ae1d6aefc1dce01312cc8f34b61d518 147118 non-free/libs optional 
mgltools-gle_1.5.4.cvs.20090603-1.2_amd64.deb

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

iEYEARECAAYFAkws5cwACgkQB01zfu119ZnF7ACgnkTS7cDziAeAx8jPZj/aHz9t
eeQAn23A1P7DJM5bofivWkvOkDeEVdjd
=HqFG
-END PGP SIGNATURE-


--- End Message ---


Bug#586837: marked as done (mgltools-dejavu: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 19:17:08 +
with message-id 
and subject line Bug#586837: fixed in mgltools-dejavu 1.5.4.cvs.20090603-1.1
has caused the Debian Bug report #586837,
regarding mgltools-dejavu: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-dejavu
Source-Version: 1.5.4.cvs.20090603-1.1

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

mgltools-dejavu_1.5.4.cvs.20090603-1.1.diff.gz
  to non-free/m/mgltools-dejavu/mgltools-dejavu_1.5.4.cvs.20090603-1.1.diff.gz
mgltools-dejavu_1.5.4.cvs.20090603-1.1.dsc
  to non-free/m/mgltools-dejavu/mgltools-dejavu_1.5.4.cvs.20090603-1.1.dsc
mgltools-dejavu_1.5.4.cvs.20090603-1.1_all.deb
  to non-free/m/mgltools-dejavu/mgltools-dejavu_1.5.4.cvs.20090603-1.1_all.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-dejavu package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 22:23:39 +0200
Source: mgltools-dejavu
Binary: mgltools-dejavu
Architecture: source all
Version: 1.5.4.cvs.20090603-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-dejavu - visualization of 3D geometry using the OpenGL with Python
Closes: 586837
Changes: 
 mgltools-dejavu (1.5.4.cvs.20090603-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Allow byte-compilation for Python >= 2.5 (closes: #586837)
Checksums-Sha1: 
 c63055a86c19209ea5ee51d59c027dfddebb42d8 1634 
mgltools-dejavu_1.5.4.cvs.20090603-1.1.dsc
 5962422c2f70a2c122bb6d0786ffda66b80fafae 4316 
mgltools-dejavu_1.5.4.cvs.20090603-1.1.diff.gz
 6cfd4e5097811ba68413665cd450cc1ba99e9290 488052 
mgltools-dejavu_1.5.4.cvs.20090603-1.1_all.deb
Checksums-Sha256: 
 8a814a61fe0820715aa72e73ceaef0ecac617f80840fe19e0a35e446d5fb0ff4 1634 
mgltools-dejavu_1.5.4.cvs.20090603-1.1.dsc
 75fdac01d52a181d9f9174003ac824bf9fbe5105ed0c0de0581c72a2c21867f5 4316 
mgltools-dejavu_1.5.4.cvs.20090603-1.1.diff.gz
 b21022c95a574e7590f528ac0b302adaf4db47781f352112f0b5eff15966544e 488052 
mgltools-dejavu_1.5.4.cvs.20090603-1.1_all.deb
Files: 
 8c5bd53f23bb63513d59ca33b6d6f0f8 1634 non-free/science optional 
mgltools-dejavu_1.5.4.cvs.20090603-1.1.dsc
 72b31175d864b80a8b481aff77424c9e 4316 non-free/science optional 
mgltools-dejavu_1.5.4.cvs.20090603-1.1.diff.gz
 a98cc5affb950681031295fce98ca584 488052 non-free/science optional 
mgltools-dejavu_1.5.4.cvs.20090603-1.1_all.deb

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

iEYEARECAAYFAkws4cEACgkQB01zfu119ZmJEACeJdJuTqlGmYvE//RAxzHqKkko
oLsAn0R9Aj3aTt8CCAK968j3QqRxgIH3
=XtAG
-END PGP SIGNATURE-


--- End Message ---


Bug#585892: marked as done (shorewall-init: FTBFS: architecture misdeclared as any rather than all)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 8 Jul 2010 15:17:38 -0400
with message-id <20100708191738.ga8...@connexer.com>
and subject line Closing
has caused the Debian Bug report #585892,
regarding shorewall-init: FTBFS: architecture misdeclared as any rather than all
to be marked as done.

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

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


-- 
585892: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=585892
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: shorewall-init
Version: 4.4.10-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

AFAICT, shorewall-init's architecture should be "all," as it contains
no obviously architecture-dependent files; its debian/rules is
structured accordingly, with an empty build-arch target, but its
debian/control specifies Architecture: any, causing binary-only builds
(which invoke that target rather than binary or binary-indep) to fail:

[...]
rm -f 
/build/buildd-shorewall-init_4.4.10-1-amd64-yjN6rc/shorewall-init-4.4.10/debian/shorewall-init/etc/rcS.d/S38shorewall-init
dpkg-genchanges -B
dpkg-genchanges: arch-specific upload - not including arch-independent packages
dpkg-genchanges: error: cannot read files list file: No such file or directory
dpkg-buildpackage: error: dpkg-genchanges gave error exit status 2
[...]

Could you please correct debian/control (or, if the package really
should be architecture-dependent, debian/rules) accordingly?

Thanks!

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-xen-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


--- End Message ---
--- Begin Message ---
Version: 4.4.10-2

This bug was closed, but I forgot to note it in the changelog.

-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com

--- End Message ---


Bug#586852: marked as done (mgltools-volume: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 19:02:16 +
with message-id 
and subject line Bug#586852: fixed in mgltools-bhtree 1.5.4.cvs.20090603-1.1
has caused the Debian Bug report #586852,
regarding mgltools-volume: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-bhtree
Source-Version: 1.5.4.cvs.20090603-1.1

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

mgltools-bhtree_1.5.4.cvs.20090603-1.1.diff.gz
  to non-free/m/mgltools-bhtree/mgltools-bhtree_1.5.4.cvs.20090603-1.1.diff.gz
mgltools-bhtree_1.5.4.cvs.20090603-1.1.dsc
  to non-free/m/mgltools-bhtree/mgltools-bhtree_1.5.4.cvs.20090603-1.1.dsc
mgltools-bhtree_1.5.4.cvs.20090603-1.1_amd64.deb
  to non-free/m/mgltools-bhtree/mgltools-bhtree_1.5.4.cvs.20090603-1.1_amd64.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-bhtree package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 21:05:47 +0200
Source: mgltools-bhtree
Binary: mgltools-bhtree
Architecture: source amd64
Version: 1.5.4.cvs.20090603-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-bhtree - Bhtree library extension module
Closes: 586852
Changes: 
 mgltools-bhtree (1.5.4.cvs.20090603-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Allow byte-compilation for Python >= 2.5 (closes: #586852)
Checksums-Sha1: 
 023d5ea1349400705afb61fa952b897264c0ab4e 1606 
mgltools-bhtree_1.5.4.cvs.20090603-1.1.dsc
 e3018c6c363485f27ea6d532e50e728cbd692c65 3989 
mgltools-bhtree_1.5.4.cvs.20090603-1.1.diff.gz
 fff64a3e06bb592cc4c77611844b3973a23b69f5 109270 
mgltools-bhtree_1.5.4.cvs.20090603-1.1_amd64.deb
Checksums-Sha256: 
 07bfddc65516942b6c8ca29c8f34ffe569563fd1b6f313cc4aab9feb5718220c 1606 
mgltools-bhtree_1.5.4.cvs.20090603-1.1.dsc
 2dd235ede7277680efe0d8f14b22807f07c8c028955282c965af17ff4153611d 3989 
mgltools-bhtree_1.5.4.cvs.20090603-1.1.diff.gz
 08417609c4dc2c21198b0b6343db87be31dfbacdda76fc7964cb1c6a3ea86e44 109270 
mgltools-bhtree_1.5.4.cvs.20090603-1.1_amd64.deb
Files: 
 45e76b69b96eaee082bf9c0344f81313 1606 non-free/science optional 
mgltools-bhtree_1.5.4.cvs.20090603-1.1.dsc
 1ee7992173163d6648383915959fad56 3989 non-free/science optional 
mgltools-bhtree_1.5.4.cvs.20090603-1.1.diff.gz
 48d853071302d4e49db0209d1ee72854 109270 non-free/science optional 
mgltools-bhtree_1.5.4.cvs.20090603-1.1_amd64.deb

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

iEYEARECAAYFAkws3toACgkQB01zfu119Zk3WACdE4IJBCJsaj/KeF8Qu2hiwXPI
z58AoI3gyvJOchF5wvQacLrT2+bjtLv1
=DZup
-END PGP SIGNATURE-


--- End Message ---


Bug#587575: marked as done (mock broken due to its sub components exit with python exception)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 18:32:29 +
with message-id 
and subject line Bug#587575: fixed in urlgrabber 3.9.1-4
has caused the Debian Bug report #587575,
regarding mock broken due to its sub components exit with python exception
to be marked as done.

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

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


-- 
587575: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587575
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mock
Version: 1.0.8-1
Severity: grave
Justification: renders package unusable

tried:
mock -r fedora-13-x86_64 --init > /tmp/log 2>&1
on my amd64 sid box. this seems to work in squeeze.

SID gives:
State Changed: cleaning yum metadata
INFO: enabled ccache
State Changed: running yum
ERROR: Command failed:
 # /usr/bin/yum --installroot /var/lib/mock/fedora-13-x86_64/root/  
groupinstall buildsys-build
Traceback (most recent call last):
  File "/usr/lib/pymodules/python2.6/urlgrabber/grabber.py", line 1522, in 
_progress_update
if self._over_max_size(cur=self._amount_read-self._reget_length):
  File "/usr/lib/pymodules/python2.6/urlgrabber/grabber.py", line 1539, in 
_over_max_size
if cur > max_size + max_size*.10:
TypeError: can't multiply sequence by non-int of type 'float'
Traceback (most recent call last):
  File "/usr/lib/pymodules/python2.6/urlgrabber/grabber.py", line 1522, in 
_progress_update
if self._over_max_size(cur=self._amount_read-self._reget_length):
  File "/usr/lib/pymodules/python2.6/urlgrabber/grabber.py", line 1539, in 
_over_max_size
if cur > max_size + max_size*.10:
TypeError: can't multiply sequence by non-int of type 'float'
Traceback (most recent call last):
  File "/usr/lib/pymodules/python2.6/urlgrabber/grabber.py", line 1522, in 
_progress_update
if self._over_max_size(cur=self._amount_read-self._reget_length):
  File "/usr/lib/pymodules/python2.6/urlgrabber/grabber.py", line 1539, in 
_over_max_size
if cur > max_size + max_size*.10:
TypeError: can't multiply sequence by non-int of type 'float'
http://ftp.uni-bayreuth.de/linux/fedora/linux/releases/13/Everything/x86_64/os/repodata/c9f35fdd3fa196a5ed5d9257fccfe8832ade88eb35d3e0e7d6006b473b260794-primary.sqlite.bz2:
 [Errno 14] PYCURL ERROR 7 - ""
Versuche anderen Spiegel-Server.

and so on until it reaches 'no more mirror' state.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages mock depends on:
ii  adduser   3.112  add and remove users and groups
ii  python2.6.5-5An interactive high-level object-o
ii  python-decoratortools 1.7-3  version-agnostic decorators suppor
ii  python-support1.0.8  automated rebuilding support for P
ii  rpm   4.8.1-5package manager for RPM
ii  usermode  1.105-0.1  Graphical tools for certain user a
ii  yum   3.2.25-1   Advanced front-end for rpm

mock recommends no packages.

mock suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: urlgrabber
Source-Version: 3.9.1-4

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

python-urlgrabber_3.9.1-4_all.deb
  to main/u/urlgrabber/python-urlgrabber_3.9.1-4_all.deb
urlgrabber_3.9.1-4.debian.tar.gz
  to main/u/urlgrabber/urlgrabber_3.9.1-4.debian.tar.gz
urlgrabber_3.9.1-4.dsc
  to main/u/urlgrabber/urlgrabber_3.9.1-4.dsc



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

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

Debian distribution maintenance software
pp.
Kevin Coyner  (supplier of updated urlgrabber package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 08 Jul 2010 17:40:08 +
Source: urlgrabber
Binary: python-urlgrabber
Architecture: source all
Version: 3.9.1-4
Distribution: unstable
Urgency: low
Maintainer: Kevin Coyner 
Changed-By: Kevin Coyner 
Description: 
 python-urlgrabber - A high-

Bug#586845: marked as done (mgltools-pybabel: depends on python (<< 2.6))

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 18:32:20 +
with message-id 
and subject line Bug#586845: fixed in mgltools-pybabel 1.5.4.cvs.20090603-1.2
has caused the Debian Bug report #586845,
regarding mgltools-pybabel: depends on python (<< 2.6)
to be marked as done.

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

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


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

Package: mgltools-bhtree
Version: 1.5.4.cvs.20090603-1
Severity: serious
User: debian-pyt...@lists.debian.org
Usertag: python2.6

Hello,

Most of the mgltools-* packages depend on python (<< 2.6) and are 
therefore currently uninstallable in sid.


--
Jakub Wilk


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mgltools-pybabel
Source-Version: 1.5.4.cvs.20090603-1.2

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

mgltools-pybabel_1.5.4.cvs.20090603-1.2.diff.gz
  to non-free/m/mgltools-pybabel/mgltools-pybabel_1.5.4.cvs.20090603-1.2.diff.gz
mgltools-pybabel_1.5.4.cvs.20090603-1.2.dsc
  to non-free/m/mgltools-pybabel/mgltools-pybabel_1.5.4.cvs.20090603-1.2.dsc
mgltools-pybabel_1.5.4.cvs.20090603-1.2_all.deb
  to non-free/m/mgltools-pybabel/mgltools-pybabel_1.5.4.cvs.20090603-1.2_all.deb



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

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

Debian distribution maintenance software
pp.
Piotr Ożarowski  (supplier of updated mgltools-pybabel 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jun 2010 22:17:42 +0200
Source: mgltools-pybabel
Binary: mgltools-pybabel
Architecture: source all
Version: 1.5.4.cvs.20090603-1.2
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 

Changed-By: Piotr Ożarowski 
Description: 
 mgltools-pybabel - molecular structure file access and interpretation
Closes: 586845
Changes: 
 mgltools-pybabel (1.5.4.cvs.20090603-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Allow byte-compilation for Python >= 2.5 (closes: #586845)
Checksums-Sha1: 
 550a7a47404fd81b095ef2194d74f4b849edaa3f 1576 
mgltools-pybabel_1.5.4.cvs.20090603-1.2.dsc
 4e2735b206db11602188487d80957a2fc69713dc 3968 
mgltools-pybabel_1.5.4.cvs.20090603-1.2.diff.gz
 554b93f0ec2c21778aaff6ab12919d4ac94d46f6 40400 
mgltools-pybabel_1.5.4.cvs.20090603-1.2_all.deb
Checksums-Sha256: 
 d7b5b504e34fc4ea91f568b349eec25a54065f1fc4da83d9349778f14e4d38d0 1576 
mgltools-pybabel_1.5.4.cvs.20090603-1.2.dsc
 422b01a39562c23437a7e6baca054cccaa98137a23a27d6474f7d7e25597c1dc 3968 
mgltools-pybabel_1.5.4.cvs.20090603-1.2.diff.gz
 84a739b688ee42dc14929d9442c28f0b26b619fbd850e5a561d521e16bb443f4 40400 
mgltools-pybabel_1.5.4.cvs.20090603-1.2_all.deb
Files: 
 8ee20b77aaae83db24dcbaf438a4779d 1576 non-free/science optional 
mgltools-pybabel_1.5.4.cvs.20090603-1.2.dsc
 5cb949aa743e694cd6b38040b0d1dc9a 3968 non-free/science optional 
mgltools-pybabel_1.5.4.cvs.20090603-1.2.diff.gz
 1d70bfb72aa9cb21c02ddb407475cc69 40400 non-free/science optional 
mgltools-pybabel_1.5.4.cvs.20090603-1.2_all.deb

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

iEYEARECAAYFAkws2PYACgkQB01zfu119ZnlvwCfRTW/7woptQMDTQcFsBk/Ztto
RlwAoM3IE7sIS16fTywg3laMqGwvf8Yf
=8IIb
-END PGP SIGNATURE-


--- End Message ---


Processed: fixing severity; details

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 588414 minor
Bug #588414 [src:choqok] choqok: FTBFS: Could NOT find QCA2
Severity set to 'minor' from 'serious'

> retitle 588414 Useless build-time check for libqca
Bug #588414 [src:choqok] choqok: FTBFS: Could NOT find QCA2
Changed Bug title to 'Useless build-time check for libqca' from 'choqok: FTBFS: 
Could NOT find QCA2'
> thanks
Stopping processing here.

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


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



Processed: Bug in fixed in revision 60167

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 587830 + pending
Bug #587830 {Done: gregor herrmann } 
[libnet-sftp-foreign-perl] libnet-sftp-foreign-perl: causes script to fail 
silently with exit code 0
Added tag(s) pending.
> thanks
Stopping processing here.

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


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



Bug#587830: Bug in fixed in revision 60167

2010-07-08 Thread pkg-perl-maintainers
tag 587830 + pending
thanks

Some bugs are closed in revision 60167
by Salvatore Bonaccorso (carnil-guest)

Commit message:

Add Recommends on libio-pty-perl and libexpect-perl (Closes: #587830). 



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



Bug#584337: marked as done (xdotool: FTBFS: build hangs)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 13:35:53 -0400
with message-id <4c360c79.4030...@fifthhorseman.net>
and subject line #584337 seems to be resolved by xdotool 1:2.20100701.2961-2
has caused the Debian Bug report #584337,
regarding xdotool: FTBFS: build hangs
to be marked as done.

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

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


-- 
584337: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=584337
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: xdotool
Version: 1:1.20100318.2737-1
Severity: serious
Tags: squeeze sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100602 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
> make[3]: Entering directory 
> `/build/user-xdotool_1.20100318.2737-1-amd64-O1p0dQ/xdotool-1.20100318.2737/t'
> ./run.sh
> Setting up keymap on new server as us
> Loaded suite alltests
> Started
> .Skipping _NET_ACTIVE_WINDOW features (current wm does not support it)
> Skipping _NET_NUMBER_OF_DESKTOPS features (current wm does not support it)
> Skipping _NET_WM_DESKTOP features (current wm does not support it)
> Skipping _NET_CURRENT_DESKTOP features (current wm does not support it)
> Defaulting to search window title, class, and name
> xterm Xt error: Can't open display: :5
> make: *** wait: No child processes.  Stop.
> make: *** Waiting for unfinished jobs
> make: *** wait: No child processes.  Stop.
> make[2]: *** [test-xvfb] Terminated
> make[1]: *** [test] Terminated
> make[3]: *** [test] Terminated
> E: Caught signal 'Terminated': terminating immediately
> ...EBuild killed with signal TERM after 60 minutes of inactivity
> 
> Build finished at 20100602-2315

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2010/06/02/xdotool_1:1.20100318.2737-1_lsid64.buildlog

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

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

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Debian bug #584337 seems to be resolved by xdotool 1:2.20100701.2961-2.
 the test suites are no longer hanging on the buildds, according to
https://buildd.debian.org/pkg.cgi?pkg=xdotool

--dkg



signature.asc
Description: OpenPGP digital signature
--- End Message ---


Bug#577501: marked as done (irssi-plugin-silc: plugin fails to load with irssi 0.8.15)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 17:35:53 +
with message-id 
and subject line Bug#577501: fixed in silc-client 1.1.7-2
has caused the Debian Bug report #577501,
regarding irssi-plugin-silc: plugin fails to load with irssi 0.8.15
to be marked as done.

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

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


-- 
577501: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577501
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: irssi-plugin-silc
Version: 1.1.7-1
Severity: important

  Ever since upgrading irssi to 0.8.15, the SILC plugin has not worked.
The error appears like this:

0. Have irssi-plugin-silc installed
1. In any irssi window, say "/load silc"
2. Witness the following error
11:07 -!- Irssi: Error loading module silc/core: 
  /usr/lib/irssi/modules/libsilc_core.so: undefined symbol: 
  server_setup_find_port
11:07 -!- Irssi: Loaded module silc/fe


  Rebuilding the plugin against irssi 0.8.15 sources doesn't seem to
help. At a quick glance, I can't see any changelog entries in either
irssi or silc-plugin that could have caused this.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=fi...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages irssi-plugin-silc depends on:
ii  irssi 0.8.15-1   terminal based IRC client
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libsilc-1.1-2 1.1.10-2   SILC generic library
ii  libsilcclient-1.1-3   1.1.10-2   SILC client library
ii  perl  5.10.1-11  Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]5.10.1-11  minimal Perl system

irssi-plugin-silc recommends no packages.

Versions of packages irssi-plugin-silc suggests:
pn  libfile-mmagic-perl(no description available)
pn  libio-stringy-perl (no description available)
pn  libmime-tools-perl (no description available)
ii  perl-modules [libfile-temp-pe 5.10.1-11  Core Perl modules

-- no debconf information

-- 
 Mika Boström   Individualisti, eksistentialisti,
 www.iki.fi/bostik  rationalisti ja mulkvisti
 GPG: 0x2AED22CC; 6FC9 8375 31B7 3BA2 B5DC  484E F19F 8AD6 2AED 22CC


--- End Message ---
--- Begin Message ---
Source: silc-client
Source-Version: 1.1.7-2

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

irssi-plugin-silc-dbg_1.1.7-2_i386.deb
  to main/s/silc-client/irssi-plugin-silc-dbg_1.1.7-2_i386.deb
irssi-plugin-silc_1.1.7-2_i386.deb
  to main/s/silc-client/irssi-plugin-silc_1.1.7-2_i386.deb
silc-client_1.1.7-2.diff.gz
  to main/s/silc-client/silc-client_1.1.7-2.diff.gz
silc-client_1.1.7-2.dsc
  to main/s/silc-client/silc-client_1.1.7-2.dsc
silc_1.1.7-2_all.deb
  to main/s/silc-client/silc_1.1.7-2_all.deb



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

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

Debian distribution maintenance software
pp.
Jérémy Bobbio  (supplier of updated silc-client package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 08 Jul 2010 19:11:46 +0200
Source: silc-client
Binary: irssi-plugin-silc irssi-plugin-silc-dbg silc
Architecture: source i386 all
Version: 1.1.7-2
Distribution: unstable
Urgency: medium
Maintainer: Debian SILC Team 
Changed-By: Jérémy Bobbio 
Description: 
 irssi-plugin-silc - SILC plugin for irssi
 irssi-plugin-silc-dbg - debug symbols for the SILC plugin for irssi
 silc   - transitional package for the SILC client
Closes: 577501
Changes: 
 silc-client (1.1.7-2) unstable; urgency=medium
 .
   * Fix compatibility with irssi 0.8.15.  Patch written by Stefan Vetsch,
 many thanks to him. (Closes: #577501)
   * Upload at medium urgency, as this upload fixes a RC bug.
   * Also add ${misc:Depends} to silc and irssi-plugin-silc-dbg.
   * Bump Standards-Version to 3.9.0, no changes required.
Checksums-Sha1: 
 9adc702f4e0cef43d94b94fd2cd596d496ac75a4 1986 silc-client_1.1

Bug#584759: zine: does not work with newer SQLAlchemy

2010-07-08 Thread Jakub Wilk

Thanks for the patch,

* Marian Sigler , 2010-06-24, 20:35:

-Recommends: python (>= 2.5) | python-pysqlite2 | python-pysqlite1.1, 
python-flup
+Recommends: python (>= 2.6) | python-pysqlite2 | python-pysqlite1.1, 
python-flup


Could you explain what this hunk is supposed to change? It's not 
documented in the changelog and it looks bogus.


--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#587967: gnash: unbuildable in sid, depends on removed boost1.40

2010-07-08 Thread Jakub Wilk

* Hideki Yamane , 2010-07-04, 22:35:
+ ibboost-date-time1.42-dev | libboost-date-time1.40-dev | libboost-date-time1.39-dev | 


I see a typo here.

BTW, those alternative build-dependencies are insane, we should get rid 
of them, rather than add new ones.


--
Jakub Wilk


signature.asc
Description: Digital signature


Processed: tagging 510417

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 510417 + pending
Bug #510417 [links2] links2: silently accepts bad SSL certificates
Added tag(s) pending.
> thanks
Stopping processing here.

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


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



Processed: [bts-link] source package mono

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #
> # bts-link upstream status pull for source package mono
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user bts-link-upstr...@lists.alioth.debian.org
Setting user to bts-link-upstr...@lists.alioth.debian.org (was 
bts-link-de...@lists.alioth.debian.org).
> # remote status report for #537039 (http://bugs.debian.org/537039)
> #  * https://bugzilla.novell.com/show_bug.cgi?id=555464
> #  * remote status changed: NEW -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 537039 + fixed-upstream
Bug #537039 [mono] nemerle: FTBFS: assertion error during compilation
Added tag(s) fixed-upstream.
> usertags 537039 - status-NEW
Bug#537039: nemerle: FTBFS: assertion error during compilation
Usertags were: status-NEW.
Usertags are now: .
> usertags 537039 + status-RESOLVED resolution-FIXED
Bug#537039: nemerle: FTBFS: assertion error during compilation
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> thanks
Stopping processing here.

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


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



Bug#562945: runinit-run, releaseability thereof

2010-07-08 Thread Ian Jackson
The package runinit-run, if successfully installed, generally breaks
the system by breaking booting.  The administrator is supposed to fix
up the boot arrangements by converting startup scripts etc. after
installing runinit-run.

The administrator's attention is drawn to this by a debconf question:

  Template: runit-run/install
  Type: boolean
  Default: false
  _Description: Really replace the init scheme?
   This package diverts sysvinit's /sbin/init program, and so replaces
   the default sysv init scheme.  After the first installation of the
   runit-run package, migrate essential services from sysvinit to runit,
   so that these will get started after reboot.  Then, use
# /sbin/init.sysv 6
   to reboot the system with runit as process no 1.
   .
   Please read the documentation before proceeding
http://smarden.org/runit/

If the question is answered "no", the installation is aborted.


This was discussed in #562945.  The Technical Committee was asked to
rule on this bug, in particular about the fact that it makes the
package impossible to install noninteractively.  Our decision was[1]:

 * We declined to override the runit-run maintainer about the fact that
   the package cannot be installed noninteractively.  This use of
   debconf is discouraged but /not/ forbidden.

 * We advised the Policy maintainers to proceed with the existing proposed
   language regarding high-priority prompts (they've now done so).

 * In our (non-binding) opinion it is a bug that the package, when
   installed without further action, breaks the system's bootup.

 * We decided to refer to the Release Team the question as to
   whether the package is releaseable in its current state.

So, we would appreciate it if you would take a look at this situation
and decide.  When you've decided you should probably set the severity
of #562945 so that it's release-critical iff you think runinit-run is
not releaseable in its current state.  For now I have set the bug to
"serious".

Thanks for your attention.

Ian.

[1] I have paraphrased somewhat, to make it clearer out of context.



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



Processed: severity of 569299 is serious

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 569299 serious
Bug #569299 [strongswan] Please update configure check to use new nm-glib 
pkgconfig file names
Severity set to 'serious' from 'wishlist'

> thanks
Stopping processing here.

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


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



Bug#583984: marked as done (xmp: FTBFS against audacious 2.3)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 16:02:26 +
with message-id 
and subject line Bug#583984: fixed in xmp 3.2.0-0.1
has caused the Debian Bug report #583984,
regarding xmp: FTBFS against audacious 2.3
to be marked as done.

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

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


-- 
583984: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583984
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xmp
Version: FTBFS with audacious 2.3
Severity: serious
Justification: fails to build from source

xmp fails to build with audacious 2.3. The build dependency needs to be updated 
from audacious-plugins-dev to audacious-dev. Additional changes are required to 
work with audacious 2.3. You either might take them from Ubuntu's 
3.0.0+20090923-1ubuntu2 or package the upstream release. Corresponding Ubuntu 
bug: https://bugs.launchpad.net/ubuntu/+source/xmp/+bug/564092


--- End Message ---
--- Begin Message ---
Source: xmp
Source-Version: 3.2.0-0.1

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

xmp-audacious_3.2.0-0.1_i386.deb
  to main/x/xmp/xmp-audacious_3.2.0-0.1_i386.deb
xmp-common_3.2.0-0.1_all.deb
  to main/x/xmp/xmp-common_3.2.0-0.1_all.deb
xmp_3.2.0-0.1.diff.gz
  to main/x/xmp/xmp_3.2.0-0.1.diff.gz
xmp_3.2.0-0.1.dsc
  to main/x/xmp/xmp_3.2.0-0.1.dsc
xmp_3.2.0-0.1_i386.deb
  to main/x/xmp/xmp_3.2.0-0.1_i386.deb
xmp_3.2.0.orig.tar.gz
  to main/x/xmp/xmp_3.2.0.orig.tar.gz



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

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

Debian distribution maintenance software
pp.
Hideki Yamane  (supplier of updated xmp package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 29 Jun 2010 00:06:50 +0900
Source: xmp
Binary: xmp-common xmp xmp-audacious
Architecture: source all i386
Version: 3.2.0-0.1
Distribution: unstable
Urgency: low
Maintainer: Gürkan Sengün 
Changed-By: Hideki Yamane 
Description: 
 xmp- A module player supporting AWE32, GUS, and software-mixing
 xmp-audacious - An XMP plugin for Audacious
 xmp-common - Common files for xmp and the xmp Audacious plugin
Closes: 583984 586565
Changes: 
 xmp (3.2.0-0.1) unstable; urgency=low
 .
   * NMU
   * New upstream release (Closes: #586565)
   * debian/control
 - set "Standards-Version: 3.8.4"
 - Update Build-Depends from "audacious-plugins-dev" to "audacious-dev"
  (Closes: #583984)
 - add "Depends: ${misc:Depends}" to each package
Checksums-Sha1: 
 3aee1979c7e85088406131758eac590105b2f9dd 1927 xmp_3.2.0-0.1.dsc
 c11c99e21d0fd6ace436f578de85fad369c3a41f 835651 xmp_3.2.0.orig.tar.gz
 3b0723e128be79cef421ab181dc0156d0b0dbea6 10722 xmp_3.2.0-0.1.diff.gz
 da7f611bd60eace1425791f156b0b502ac56c2fd 42136 xmp-common_3.2.0-0.1_all.deb
 be1428ec040e7fa0f64a869af4198e394a386ba4 266684 xmp_3.2.0-0.1_i386.deb
 536a985396bfaaa7b1fb10056fa7e3e38090dd22 280430 
xmp-audacious_3.2.0-0.1_i386.deb
Checksums-Sha256: 
 57c98c8c34bbbe640b7db5987528eaf6cd6ffafcd38fb84b23e115af6eb7acb8 1927 
xmp_3.2.0-0.1.dsc
 b9a9a0a9aa1755187b6de60661087319ca1f2d1ae9d2bb7e674cc69158fc128f 835651 
xmp_3.2.0.orig.tar.gz
 901f966bccd5076396b9381d0c0277dd5b35098bcafc28960d5df2a8458e99a0 10722 
xmp_3.2.0-0.1.diff.gz
 24b9e7823b0be11e1ff8d4814b2e60573df258f166251a11bb0333a9a34132bf 42136 
xmp-common_3.2.0-0.1_all.deb
 5b870c5cb9bbe412b5a351280ace1f026b59851770f4e11d328d786d04bd13de 266684 
xmp_3.2.0-0.1_i386.deb
 1ccc50388ba1949bf2b2e4685bc5d784de8cb506f18508df342e778587cdcc43 280430 
xmp-audacious_3.2.0-0.1_i386.deb
Files: 
 3b45dc1ab29fd1efe074970bb0822443 1927 sound optional xmp_3.2.0-0.1.dsc
 c3f888fb407a85be9832ceda4b109b4a 835651 sound optional xmp_3.2.0.orig.tar.gz
 c8b7d41f41bcdceea36cf5e5e742d6fe 10722 sound optional xmp_3.2.0-0.1.diff.gz
 443dd96333df1bdd6074e896c3e7b679 42136 sound optional 
xmp-common_3.2.0-0.1_all.deb
 3725bcc7c9d95d364e7ff5031e507858 266684 sound optional xmp_3.2.0-0.1_i386.deb
 9f88df1120ee1241875fa83a375165ea 280430 sound optional 
xmp-audacious_3.2.0-0.1_i386.deb

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

iQIcBAEBCgAGBQJMKL6nAAoJEF0yjQgqqrFAfd4QAI+Nmv91UZ3AYA2b0/JRZlIx
+NbeKBcJAYoCZ6Hg7x16T5trHgodmN59yi/J5vy1UBM0+dEn9eIP/s

Bug#562945: ping

2010-07-08 Thread Ian Jackson
severity 562945 serious
reassign 562945 runinit-run
thanks

Holger Levsen writes ("Bug#562945: ping"):
> AFAICT the case was quite clear, so whats left to do here?

I think there's nothing more for the TC to do.  The runinit-run
maintainer can have the bug back.  I'm going to mark it severity
serious for now, and email the release team in a moment.

Ian.



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



Bug#588414: choqok: FTBFS: Could NOT find QCA2

2010-07-08 Thread Noah Meyerhans
On Thu, Jul 08, 2010 at 05:50:49PM +0200, Cyril Brulebois wrote:
> AFAICT, if you're going to use something, you must B-D on it,
> period. Relying on something else's pulling it can only lead to random
> (depending on when dependencies are going to be added or removed)
> FTBFSes, which can cause headaches to the release or security teams.
> 
> IIRC that's what's being the first “4. Autobuilding” item in [1],
> though you may want to check with the release team.
> 
>  1. http://release.debian.org/squeeze/rc_policy.txt

If there is a bug in choqok it is that it explicitly checks for the
presence of qca at build time.  It doesn't use it directly at all except
through libqoauth.

noah



signature.asc
Description: Digital signature


Processed: tagging 587541

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 587541 + patch
Bug #587541 [src:haskell-hxt] FTBFS: At least the following dependencies are 
missing: tagsoup ==0.8.*
Added tag(s) patch.
> thanks
Stopping processing here.

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


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



Processed: limit source to wsjt, tagging 586814

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #wsjt (5.9.7.r383-1.5) unstable; urgency=low
> #
> #  * debian/{control, rules}
> #- added python-support, to correctly handle python extensions; thanks to
> #  Jakub Wilk for the report and patch; Closes: #586814
> #
> limit source wsjt
Limiting to bugs with field 'source' containing at least one of 'wsjt'
Limit currently set to 'source':'wsjt'

> tags 586814 + pending
Bug #586814 [wsjt] wsjt: needs a tight dependency on python
Ignoring request to alter tags of bug #586814 to the same tags previously set
> thanks
Stopping processing here.

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


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



Processed: your mail

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 588330 -moreinfo
Bug #588330 [libapache2-mod-bw] Critical bug
Removed tag(s) moreinfo.
> tag 588330 +pending
Bug #588330 [libapache2-mod-bw] Critical bug
Added tag(s) pending.
> thanks
Stopping processing here.

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


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



Bug#588414: choqok: FTBFS: Could NOT find QCA2

2010-07-08 Thread Cyril Brulebois
Source: choqok
Version: 0.9.55+git20100629-1
Severity: serious
Justification: FTBFS

Hi,

your package FTBFS everywhere:
| -- Found QJson: /usr/lib/libqjson.so
| CMake Error at 
/usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:70 (MESSAGE):
|   Could NOT find QCA2 (missing: QCA2_LIBRARIES QCA2_INCLUDE_DIR)
| Call Stack (most recent call first):
|   /usr/share/kde4/apps/cmake/modules/FindQCA2.cmake:44 
(find_package_handle_standard_args)
|   CMakeLists.txt:12 (find_package)
| 
| 
| -- Configuring incomplete, errors occurred!
| make: *** [obj-x86_64-kfreebsd-gnu/CMakeCache.txt] Error 1

Missing B-D?

Full build logs:
  https://buildd.debian.org/status/package.php?p=choqok

Mraw,
KiBi.



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



Bug#588414: choqok: FTBFS: Could NOT find QCA2

2010-07-08 Thread Cyril Brulebois
Hi Noah,

Noah Meyerhans  (08/07/2010):
> The QCA2 package should be pulled in as a dependency of
> libqoauth-dev.  This has been fixed in 1.0-2, which was uploaded
> yesterday.

AFAICT, if you're going to use something, you must B-D on it,
period. Relying on something else's pulling it can only lead to random
(depending on when dependencies are going to be added or removed)
FTBFSes, which can cause headaches to the release or security teams.

IIRC that's what's being the first “4. Autobuilding” item in [1],
though you may want to check with the release team.

 1. http://release.debian.org/squeeze/rc_policy.txt

Mraw,
KiBi.


signature.asc
Description: Digital signature


Processed: Re: Bug#587743: gnucash: segfault on open

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 587743 important
Bug #587743 [gnucash] gnucash: segfault on open
Severity set to 'important' from 'grave'

> thanks
Stopping processing here.

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


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



Bug#537018: marked as done (lhs2tex: FTBFS: Ambiguous type variable `e')

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 12:29:34 +0200
with message-id <1278584974.2483.69.ca...@kirk>
and subject line Fixed already
has caused the Debian Bug report #537018,
regarding lhs2tex: FTBFS: Ambiguous type variable `e'
to be marked as done.

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

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


-- 
537018: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=537018
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: lhs2tex
Version: 1.13-4
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20090713 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
> make[1]: Entering directory 
> `/build/user-lhs2tex_1.13-4-amd64-HkVA2c/lhs2tex-1.13'
> /usr/bin/ghc -O --make -o lhs2TeX Main.lhs
> [ 1 of 19] Compiling Document ( Document.lhs, Document.o )
> [ 2 of 19] Compiling Auxiliaries  ( Auxiliaries.lhs, Auxiliaries.o )
> [ 3 of 19] Compiling StateT   ( StateT.lhs, StateT.o )
> [ 4 of 19] Compiling HsLexer  ( HsLexer.lhs, HsLexer.o )
> [ 5 of 19] Compiling Verbatim ( Verbatim.lhs, Verbatim.o )
> [ 6 of 19] Compiling Value( Value.lhs, Value.o )
> [ 7 of 19] Compiling FiniteMap( FiniteMap.lhs, FiniteMap.o )
> [ 8 of 19] Compiling TeXCommands  ( TeXCommands.lhs, TeXCommands.o )
> [ 9 of 19] Compiling TeXParser( TeXParser.lhs, TeXParser.o )
> [10 of 19] Compiling Parser   ( Parser.lhs, Parser.o )
> [11 of 19] Compiling Directives   ( Directives.lhs, Directives.o )
> [12 of 19] Compiling Typewriter   ( Typewriter.lhs, Typewriter.o )
> [13 of 19] Compiling MathCommon   ( MathCommon.lhs, MathCommon.o )
> [14 of 19] Compiling MathPoly ( MathPoly.lhs, MathPoly.o )
> [15 of 19] Compiling NewCode  ( NewCode.lhs, NewCode.o )
> [16 of 19] Compiling Math ( Math.lhs, Math.o )
> [17 of 19] Compiling FileNameUtils( FileNameUtils.lhs, FileNameUtils.o )
> 
> FileNameUtils.lhs:81:35:
> Ambiguous type variable `b' in the constraint:
>   `GHC.Exception.Exception b'
> arising from a use of `catch' at FileNameUtils.lhs:(81,35)-(89,60)
> Probable fix: add a type signature that fixes these type variable(s)
> 
> FileNameUtils.lhs:98:44:
> Ambiguous type variable `e2' in the constraint:
>   `GHC.Exception.Exception e2'
> arising from a use of `try' at FileNameUtils.lhs:98:44-57
> Probable fix: add a type signature that fixes these type variable(s)
> 
> FileNameUtils.lhs:118:35:
> Ambiguous type variable `e1' in the constraint:
>   `GHC.Exception.Exception e1'
> arising from a use of `catch'
>  at FileNameUtils.lhs:(118,35)-(119,104)
> Probable fix: add a type signature that fixes these type variable(s)
> 
> FileNameUtils.lhs:122:35:
> Ambiguous type variable `e' in the constraint:
>   `GHC.Exception.Exception e'
> arising from a use of `catch' at FileNameUtils.lhs:122:35-54
> Probable fix: add a type signature that fixes these type variable(s)
> make[1]: *** [lhs2TeX] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/07/13/lhs2tex_1.13-4_lsid64.buildlog

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

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

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Version: 1.15-1

This bug was fixed in a recent upload.

Greetings,
Joachim


-- 
Joachim "nomeata" Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: This is a digitally signed message part
--- End Message ---


Bug#588409: perf (linux-tools-2.6.32) fails to build on many architectures

2010-07-08 Thread Ben Hutchings
Package: linux-2.6
Version: 2.6.32-16
Severity: serious
Justification: fails to build from source

perf fails to build for several reasons.

1. Its default CFLAGS include -fstack-protector which isn't available
on all architectures.

2. It has a configuration test which relies on linking with an output
file of /dev/null, which doesn't work on HP-PA.

3. The perf events feature requires architecture-specific code in the
kernel which hasn't been done for all architectures; thus some don't
even have a system call number assigned yet.

The first two problems are fairly easy to fix.  The third will be
addressed by restricting the architectures for which perf is built.

Ben.

-- System Information:
Debian Release: squeeze/sid
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'unstable'), (500, 'stable'), 
(1, 'experimental')
Architecture: i386 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Processed: Re: POM file depends on junit:junit:jar:debian artifact, which is not available in Debian

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 588420 important
Bug #588420 [javacc] POM file depends on junit:junit:jar:debian artifact, which 
is not available in Debian
Severity set to 'important' from 'grave'

> tags 588420 patch
Bug #588420 [javacc] POM file depends on junit:junit:jar:debian artifact, which 
is not available in Debian
Added tag(s) patch.
> block 585601 by 588420
Bug #585601 [wnpp] ITP: apache-mime4j -- MIME and RFC822 parser for Java
Was blocked by: 576260
Added blocking bug(s) of 585601: 588420
> thanks
Stopping processing here.

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


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



Bug#586466: pcp-gui build bug 586466

2010-07-08 Thread Petr Salinger

reassign 586466 pcp
--

Hi.


It seems my latest upload has somehow triggered this build
issue but this section of configuration hasn't changed and
builds on all other platforms, so I'm a bit stumped.  I'd
love to see whats in config.log, is that still accessible
after a buildd build?

The configure check that failing does a simple AC_CHECK_LIB
on a library thats clearly been installed OK during setup
for the build, so its all a bit wierd.


It looks like pcp package is built in a wrong way.
It cannot be installed on kfreebsd (sorry for czech messages):

Nastavuji balík pcp (3.3.1) ...
pcp.env: Fatal Error: "/etc/pcp.conf" not found
invoke-rc.d: initscript pcp, action "start" failed.
dpkg: chyba při zpracovávání pcp (--configure):
 podproces instalovaný post-installation skript vrátil chybový status 1
Při zpracování nastaly chyby:
 pcp
E: Sub-process /usr/bin/dpkg returned an error code (1)


It looks like wrong depends.
Why libpcp3-dev depends on pcp ?
Shouldn't libpcp3-dev depend on libpcp3 ?
And shouldn't pcp depend on libpcp3 ?

With current depends, the build of pcp-gui later fails 
with:


configure:4623: checking for pmNewContext in -lpcp
configure:4648: gcc -o conftest -g -O2   conftest.c -lpcp   >&5
/usr/lib/gcc/i486-kfreebsd-gnu/4.4.4/../../../libpcp.a(util.o): In 
function `vpmprintf':
(.text+0x711): warning: the use of `tempnam' is dangerous, better use 
`mkstemp'
/usr/lib/gcc/i486-kfreebsd-gnu/4.4.4/../../../libpcp.a(connectlocal.o): In 
function `__pmLocalPMDA':

(.text+0x788): undefined reference to `dlclose'
/usr/lib/gcc/i486-kfreebsd-gnu/4.4.4/../../../libpcp.a(connectlocal.o): In 
function `__pmLocalPMDA':

(.text+0x8ee): undefined reference to `dlclose'
/usr/lib/gcc/i486-kfreebsd-gnu/4.4.4/../../../libpcp.a(connectlocal.o): In 
function `__pmConnectLocal':

(.text+0x1010): undefined reference to `dlopen'
/usr/lib/gcc/i486-kfreebsd-gnu/4.4.4/../../../libpcp.a(connectlocal.o): In 
function `__pmConnectLocal':

(.text+0x103e): undefined reference to `dlsym'
/usr/lib/gcc/i486-kfreebsd-gnu/4.4.4/../../../libpcp.a(connectlocal.o): In 
function `__pmConnectLocal':

(.text+0x10e0): undefined reference to `dlclose'
/usr/lib/gcc/i486-kfreebsd-gnu/4.4.4/../../../libpcp.a(connectlocal.o): In 
function `__pmConnectLocal':

(.text+0x1131): undefined reference to `dlclose'
/usr/lib/gcc/i486-kfreebsd-gnu/4.4.4/../../../libpcp.a(connectlocal.o): In 
function `__pmConnectLocal':

(.text+0x1310): undefined reference to `dlerror'
collect2: ld returned 1 exit status



But when also libpcp3 is installed, the build ends fine.
The libpcp3 + libpcp3-dev is sufficient, it builds even without
pcp installed.

With pcp altered as shown bellow, the pcp depends on libpcp3,
similarly as on linux.

--- src/include/buildrules~ 2010-06-16 03:54:45.0 +0200
+++ src/include/buildrules  2010-07-08 10:05:09.0 +0200
@@ -49,7 +49,7 @@
 _SHAREDOPTS= -qmkshrobj
 endif
 ifeq ($(TARGET_OS), freebsd)
-_SHAREDOPTS= -shared -Wl'-soname $(LIBTARGET)'
+_SHAREDOPTS= -shared -Wl,-soname,$(LIBTARGET)
 endif
 $(LIBTARGET) : $(SUBDIRS) $(OBJECTS)
$(CC) $(LDFLAGS) $(_SHAREDOPTS) -o $(LIBTARGET) $(OBJECTS) $(LDLIBS) 
$(LIB_FOR_DLOPEN) $(LIB_FOR_BASENAME)


Petr

---
apt-cache show pcp libpcp3 libpcp3-dev

Package: pcp
Architecture: kfreebsd-i386
Version: 3.3.1
Depends: libc0.1 (>= 2.7), libreadline6 (>= 6.0), gawk, procps, sysv-rc-conf, 
cpp

Package: libpcp3
Architecture: kfreebsd-i386
Source: pcp
Version: 3.3.1
Depends: libc0.1 (>= 2.7)

Package: libpcp3-dev
Architecture: kfreebsd-i386
Source: pcp
Version: 3.3.1
Depends: pcp (= 3.3.1), libc6-dev | libc-dev


Processed: wsjt: diff for NMU version 5.9.7.r383-1.5

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 586814 + pending
Bug #586814 [wsjt] wsjt: needs a tight dependency on python
Added tag(s) pending.
> thanks
Stopping processing here.

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


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



Bug#588420: POM file depends on junit:junit:jar:debian artifact, which is not available in Debian

2010-07-08 Thread David Paleino
severity 588420 important
tags 588420 patch
block 585601 by 588420
thanks

On Thu, 8 Jul 2010 09:38:01 +0200, David Paleino wrote:

> Package: javacc
> Version: 5.0-3
> Severity: grave

Sorry, I meant it to be "important".

Also, I'm attaching a patch, which explicitely substitutes the 3.8.* version in
the POM with a "3.x" -- which is in the "junit" package indeed.

Kindly,
David

-- 
 . ''`.   Debian developer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://deb.li/dapal
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174
Index: debian/maven.rules
===
--- debian/maven.rules	(revisione 0)
+++ debian/maven.rules	(revisione 0)
@@ -0,0 +1 @@
+junit * * s/3\..*/3.x/
Index: debian/changelog
===
--- debian/changelog	(revisione 12740)
+++ debian/changelog	(copia locale)
@@ -1,8 +1,12 @@
 javacc (5.0-4) unstable; urgency=low
 
+  [ Torsten Werner ]
   UNRELEASED
   * Remove Paul from Uploaders list.
 
+  [ David Paleino ]
+  * debian/maven.rules added, fixes dependency on junit in the POM file
+
  -- Torsten Werner   Sat, 01 May 2010 00:48:42 +0200
 
 javacc (5.0-3) unstable; urgency=low


signature.asc
Description: PGP signature


Processed: tagging 588072, tagging 588072, tagging 588205, tagging 588072

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # doesn't apply to stable
> tags 588072 + squeeze sid
Bug #588072 [src:giftui] giftui: should this package be removed?
Added tag(s) sid and squeeze.
> tags 588072 + squeeze sid
Bug #588072 [src:giftui] giftui: should this package be removed?
Ignoring request to alter tags of bug #588072 to the same tags previously set
> tags 588205 + squeeze sid
Bug #588205 [libnotify1] client throws exception with libnotify 0.5.0
Bug #588276 [libnotify1] libnotify doesn't support notification specs 1.0, 
breaks some notification daemons
Added tag(s) sid and squeeze.
Added tag(s) sid and squeeze.
> tags 588072 + squeeze sid
Bug #588072 [src:giftui] giftui: should this package be removed?
Ignoring request to alter tags of bug #588072 to the same tags previously set
>
End of message, stopping processing here.

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


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



Processed: tagging 588409

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Automatically generated email from bts, devscripts version 2.10.35lenny7
> tags 588409 + pending
Bug #588409 [linux-2.6] perf (linux-tools-2.6.32) fails to build on many 
architectures
Added tag(s) pending.
>
End of message, stopping processing here.

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


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



Bug#588420: POM file depends on junit:junit:jar:debian artifact, which is not available in Debian

2010-07-08 Thread David Paleino
Package: javacc
Version: 5.0-3
Severity: grave

Hello,
the POM file for javacc, located
at /usr/share/maven-repo/net/java/dev/javacc/javacc/debian/javacc-debian.pom ,
lists the artifact junit:junit:jar:debian as a dependency. This causes FTBFS on
packages depending on javacc.



junit
junit
debian
compile



AFAICT, that "debian" should be substituted with "3.x".

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

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

Versions of packages javacc depends on:
ii  default-jre-headless [java2-r 1.6-38 Standard Java or Java compatible R
ii  gcj-4.4-jre-headless [java2-r 4.4.4-6Java runtime environment using GIJ
ii  gcj-jre-headless [java2-runti 4:4.4.4-2  Java runtime environment using GIJ
ii  gij-4.3 [java2-runtime-headle 4.3.4-4The GNU Java bytecode interpreter
ii  openjdk-6-jre-headless [java2 6b18-1.8-3 OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre [java2-runtime- 6.20-dlj-4 Sun Java(TM) Runtime Environment (

javacc recommends no packages.

Versions of packages javacc suggests:
pn  javacc-doc (no description available)

-- no debconf information



-- 
 . ''`.   Debian developer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://deb.li/dapal
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Bug#588370: bug grub2

2010-07-08 Thread Pier
I got the same error.
I tried to reinstall grub, without success.
I tried to start with a debian live cd and chroot in the /.
Reconfigured grub, i always get grub_xputs.
My system is a amd64 (sorry cannot mail from my system, is unusable).

Pier








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



Bug#562945: ping

2010-07-08 Thread Holger Levsen
AFAICT the case was quite clear, so whats left to do here?


signature.asc
Description: This is a digitally signed message part.


Bug#582342: Godel and inconsistency; never will know...; system with RAID and CRYPTO

2010-07-08 Thread cropper

> 
> Can this bug report be closed then?
> 


Technically, the bug was not "fixed".  I just rearranged some **seemingly 
unrelated** hardware and the bug disappeared.

Overall, I don't think I can answer your question.  You must understand, I am 
"just" a user of the software... not a developer.  ;-)

The expert developers of grub will have to decide whether to close the bug.


Thanks for your work,

C. Cropper



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



Bug#588409: perf (linux-tools-2.6.32) fails to build on many architectures

2010-07-08 Thread Michael Cree

Regarding the perf tools:

Commit 5d7bdab75cd56d2bdc0986ae5546be3b09fea70a upstream should give the 
-fstack-protector-all test.


Regarding the Alpha architecture the following commits that are in 
v2.6.33 of the kernel upstream provide the performance event interface:


Commit fcd14b3203b538dca04a2b065c774c0b57863eec upstream adds the Alpha 
specific part for perf tools.


Commit a582e6f01b90211933e70edcec9bc0bbb1157402 upstream provides 
minimal support for performance events in the kernel for Alpha.  However 
it probably won't apply cleanly to 2.6.32 without commit 
21797c599c710d3851d241c4b50690f2482bf618 which wires up quite a number 
of missing syscalls, which in turn depends on 
6e17e8b9fb74b9fb9f6ea331f7f4a049c5b4c4b8 which wires up the syscall for 
recvmmsg that is new in 2.6.33.  Thus a modified 21797c599 is required 
for 2.6.32 to do all this;  I think I might still have the patch 
somewhere, but in any case I could regenerate it should you wish to have it.


Cheers
Michael



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



Bug#586814: wsjt: diff for NMU version 5.9.7.r383-1.5

2010-07-08 Thread Sandro Tosi
tags 586814 + pending
thanks

Dear maintainer,

I've prepared an NMU for wsjt (versioned as 5.9.7.r383-1.5) and
uploaded it to DELAYED/2.

Regards.
diff -u wsjt-5.9.7.r383/debian/rules wsjt-5.9.7.r383/debian/rules
--- wsjt-5.9.7.r383/debian/rules
+++ wsjt-5.9.7.r383/debian/rules
@@ -54,6 +54,7 @@
 	dh_desktop -a
 	dh_compress -a -X.WAV -X.pdf usr/share/wsjt/CALL3.TXT usr/share/wsjt/TSKY.DAT
 	dh_fixperms -a
+	dh_pysupport -a
 	dh_installdeb -a
 	dh_shlibdeps -a
 	dh_gencontrol -a
diff -u wsjt-5.9.7.r383/debian/control wsjt-5.9.7.r383/debian/control
--- wsjt-5.9.7.r383/debian/control
+++ wsjt-5.9.7.r383/debian/control
@@ -4,11 +4,11 @@
 Maintainer: Debian Hams group 
 Uploaders: Hamish Moffatt 
 Standards-Version: 3.7.3
-Build-Depends: debhelper (>= 4), gfortran, autoconf, dpatch, python-numpy, libsamplerate0-dev, python-dev, portaudio19-dev, sharutils
+Build-Depends: debhelper (>= 4), gfortran, autoconf, dpatch, python-numpy, libsamplerate0-dev, python-dev, portaudio19-dev, sharutils, python-support
 
 Package: wsjt
 Architecture: any
-Depends: ${shlibs:Depends}, python-imaging, python-imaging-tk, python-tk, python-numpy, xterm | x-terminal-emulator
+Depends: ${shlibs:Depends}, ${python:Depends}, python-imaging, python-imaging-tk, python-tk, python-numpy, xterm | x-terminal-emulator
 Description: weak-signal amateur radio communications
  WSJT is designed to facilitate Amateur Radio communication under extreme 
  weak-signal conditions.  Three very different coding and modulation 
diff -u wsjt-5.9.7.r383/debian/changelog wsjt-5.9.7.r383/debian/changelog
--- wsjt-5.9.7.r383/debian/changelog
+++ wsjt-5.9.7.r383/debian/changelog
@@ -1,3 +1,12 @@
+wsjt (5.9.7.r383-1.5) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/{control, rules}
+- added python-support, to correctly handle python extensions; thanks to
+  Jakub Wilk for the report and patch; Closes: #586814
+
+ -- Sandro Tosi   Thu, 08 Jul 2010 08:34:09 +0200
+
 wsjt (5.9.7.r383-1.4) unstable; urgency=low
 
   * Retiring - remove myself from the uploaders list.


Bug#584759: does not work with newer SQLAlchemy

2010-07-08 Thread chaica
Hi Armin,

What's the status about this bug? What do you think about the patch
offered by Marian? Debian will freeze at the end of August, it would be
great if this bug could be fixed for it.

Bye,
Carl



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



Processed: Re: pcp-gui build bug 586466

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 586466 pcp
Bug #586466 [src:pcp-gui] pcp-gui: FTBFS on kfreebsd-*: FATAL ERROR: could not 
find a PCP library (libpcp).
Bug reassigned from package 'src:pcp-gui' to 'pcp'.
Bug No longer marked as found in versions pcp-gui/1.4.7.
> --
Stopping processing here.

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


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



Processed: tagging 510417, user bugsqu...@qa.debian.org, usertagging 510417

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 510417 + patch
Bug #510417 [links2] links2: silently accepts bad SSL certificates
Added tag(s) patch.
> user bugsqu...@qa.debian.org
Setting user to bugsqu...@qa.debian.org (was a...@debian.org).
> usertags 510417 + a...@debian.org
Bug#510417: links2: silently accepts bad SSL certificates
There were no usertags set.
Usertags are now: a...@debian.org.
> thanks
Stopping processing here.

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


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



Bug#587683: marked as done (libmotif3: library soname changed without changing package name)

2010-07-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Jul 2010 12:17:41 +
with message-id 
and subject line Bug#587683: fixed in openmotif 2.3.3-2
has caused the Debian Bug report #587683,
regarding libmotif3: library soname changed without changing package name
to be marked as done.

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

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


-- 
587683: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587683
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libmotif3
Version: 2.3.0-1
Severity: grave

The new version of the package contains library with soname
libmotif.so.4, previous ones had libmotif.so.3. This makes all programs
that were using motif unusable. This is also policy violation (8.1), so
severity grave.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.35-rc3+ (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=uk_UA.UTF-8, LC_CTYPE=uk_UA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libmotif3 depends on:
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libice6   2:1.0.6-1  X11 Inter-Client Exchange library
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxext6  2:1.1.1-3  X11 miscellaneous extension librar
ii  libxft2   2.1.14-2   FreeType-based font drawing librar
ii  libxmu6   2:1.0.5-1  X11 miscellaneous utility library
ii  libxp61:1.0.0.xsf1-2 X Printing Extension (Xprint) clie
ii  libxt61:1.0.7-1  X11 toolkit intrinsics library
ii  x11-common1:7.5+6X Window System (X.Org) infrastruc

libmotif3 recommends no packages.

libmotif3 suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: openmotif
Source-Version: 2.3.3-2

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

libmotif-dev_2.3.3-2_i386.deb
  to non-free/o/openmotif/libmotif-dev_2.3.3-2_i386.deb
libmotif4_2.3.3-2_i386.deb
  to non-free/o/openmotif/libmotif4_2.3.3-2_i386.deb
motif-clients_2.3.3-2_i386.deb
  to non-free/o/openmotif/motif-clients_2.3.3-2_i386.deb
openmotif_2.3.3-2.diff.gz
  to non-free/o/openmotif/openmotif_2.3.3-2.diff.gz
openmotif_2.3.3-2.dsc
  to non-free/o/openmotif/openmotif_2.3.3-2.dsc



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

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

Debian distribution maintenance software
pp.
Stefan Bauer  (supplier of updated openmotif package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Jul 2010 11:43:34 +0200
Source: openmotif
Binary: libmotif4 libmotif-dev motif-clients
Architecture: source i386
Version: 2.3.3-2
Distribution: unstable
Urgency: low
Maintainer: Stefan Bauer 
Changed-By: Stefan Bauer 
Description: 
 libmotif-dev - Open Motif - development files
 libmotif4  - Open Motif - shared libraries
 motif-clients - Open Motif - X11 clients (mwm, xmbind)
Closes: 587683
Changes: 
 openmotif (2.3.3-2) unstable; urgency=low
 .
   * changed libmotif packagename to libmotif4 to not conflict with
 binaries compiled with .3-soname (Closes: #587683)
   * bump standards to 3.9.0
Checksums-Sha1: 
 e8e59b865b2f2975bfd4ce7f98312d55b92d325a 1186 openmotif_2.3.3-2.dsc
 f9472f11d741694dbfe73fa63f9c700c7731b887 15185 openmotif_2.3.3-2.diff.gz
 3fdeb2334618e1c246d585af20f95d460bfe33d0 182 libmotif4_2.3.3-2_i386.deb
 c43973cfed1c88728c080cb1a27102528eb0ff24 2938112 libmotif-dev_2.3.3-2_i386.deb
 c0b1273c20609540042c311de53bc581b596e757 168284 motif-clients_2.3.3-2_i386.deb
Checksums-Sha256: 
 ddded14f91dcef9f70602901b55a85e9a6c9fc69e5e8c9d9092ca1147938d405 1186 
openmotif_2.3.3-2.dsc
 52edd3c61126bffed3133cf2cc3479486a2452a8bc87e5ff645897832a5dd5b1 15185 
openmotif_2.3.3-2.diff.gz
 25196023df0326b0913f1ed82a0360540413ac3da37eca357d4b6b5c28e318bb 182 
libmotif4_2.3.3-2_i386.deb
 d832ecf60616ecd23e7d9c98e7f52261d091902058ed132c911aed6fc3a3 2938112 
libmotif-de

Bug#588443: Fails to start

2010-07-08 Thread Vincent Fourmond
Package: model-builder
Version: 0.4.1-4
Severity: grave

  Hello,

  When trying to run PyMB, I get the following problem:

14:47 fourm...@zorglub ~ PyMB
Traceback (most recent call last):
  File "/usr/bin/PyMB", line 8, in 
load_entry_point('Model-Builder==0.4.1', 'gui_scripts', 'PyMB')()
  File "/usr/lib/python2.6/dist-packages/pkg_resources.py", line 299,
in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
  File "/usr/lib/python2.6/dist-packages/pkg_resources.py", line 2229,
in load_entry_point
return ep.load()
  File "/usr/lib/python2.6/dist-packages/pkg_resources.py", line 1948, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
  File "/usr/lib/python2.6/dist-packages/model_builder/PyMB.py", line
30, in 
wxversion.select('2.6')
  File "/usr/lib/python2.6/dist-packages/wxversion.py", line 152, in select
raise VersionError("Requested version of wxPython not found")
wxversion.VersionError: Requested version of wxPython not found

  Unless I'm very confused, there must be a serious problem in the
dependencies around here...

  Cheers,

Vincent, who does not think he'll manage to solve his non-linear
differential equations today...


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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages model-builder depends on:
ii  python  2.6.5-5  An interactive high-level object-o
ii  python-central  0.6.16   register and build utility for Pyt
ii  python-matplotlib   0.99.3-1 Python based plotting system in a
ii  python-numpy1:1.3.0-3+b2 Numerical Python adds a fast array
ii  python-pkg-resources0.6.10-4 Package Discovery and Resource Acc
ii  python-scipy0.7.2-2  scientific tools for Python
ii  python-wxtools  2.8.10.1-3   wxWidgets Cross-platform C++ GUI t
ii  python-wxversion2.8.10.1-3   wxWidgets Cross-platform C++ GUI t

model-builder recommends no packages.

model-builder suggests no packages.

-- no debconf information



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



Bug#588414: choqok: FTBFS: Could NOT find QCA2

2010-07-08 Thread Noah Meyerhans
On Thu, Jul 08, 2010 at 08:40:13AM +0200, Cyril Brulebois wrote:
> your package FTBFS everywhere:
> | -- Found QJson: /usr/lib/libqjson.so
> | CMake Error at 
> /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:70 (MESSAGE):
> |   Could NOT find QCA2 (missing: QCA2_LIBRARIES QCA2_INCLUDE_DIR)
> | Call Stack (most recent call first):
> |   /usr/share/kde4/apps/cmake/modules/FindQCA2.cmake:44 
> (find_package_handle_standard_args)
> |   CMakeLists.txt:12 (find_package)
> | 
> | 
> | -- Configuring incomplete, errors occurred!
> | make: *** [obj-x86_64-kfreebsd-gnu/CMakeCache.txt] Error 1
> 
> Missing B-D?
> 
> Full build logs:
>   https://buildd.debian.org/status/package.php?p=choqok

The QCA2 package should be pulled in as a dependency of libqoauth-dev.
This has been fixed in 1.0-2, which was uploaded yesterday.

noah



signature.asc
Description: Digital signature


Bug#588330: Fwd: Bug#588330: Critical bug

2010-07-08 Thread Sergey B Kirpichev
Please, test v0.91 package from mentors.debian.net, to see if this one
fixes the problem for you.

On Wed, Jul 7, 2010 at 6:08 PM, Bastien ROUCARIES
 wrote:
> I was hitting the  "invisible" memory leak  downloading huge video
> file on my site, and it really lok like the invisible bugs...
>
>
>
>



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



Bug#588412: gnome-applets: FTBFS on kfreebsd-amd64: apm_bios.h:8:3: error: #error This header is not available for amd64

2010-07-08 Thread Cyril Brulebois
Source: gnome-applets
Version: 2.30.0-3
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-amd64:
| gcc -DHAVE_CONFIG_H -I. -I.. -DORBIT2=1 -pthread -I/usr/include/panel-2.0 
-I/usr/include/gconf/2 -I/usr/include/gtk-2.0 -I/usr/include/libbonoboui-2.0 
-I/usr/include/orbit-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/gio-unix-2.0/ -I/usr/include/pixman-1 -I/usr/include/freetype2 
-I/usr/include/libpng12 -I/usr/include/libxml2 -I/usr/include/libbonobo-2.0 
-I/usr/include/libgnomecanvas-2.0 -I/usr/include/libgnome-2.0 
-I/usr/include/bonobo-activation-2.0 -I/usr/include/gail-1.0 
-I/usr/include/libart-2.0 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include-pthread -I/usr/include/gtk-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/dbus-1.0 
-I/usr/lib/dbus-1.0/include -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/inclu
 de/gio-unix-2.0/ -I/usr/include/pixman-1 -I/usr/include/freetype2 
-I/usr/include/libpng12-pthread -I/usr/include/libupower-glib 
-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include-I/usr/src/sys 
-DG_LOG_DOMAIN=\"battstat_applet\"  -I/usr/src/sys  -g -O2 -g -Wall -O2 -c 
battstat_applet.c
| battstat_applet.c: In function 'check_for_updates':
| battstat_applet.c:1066: warning: implicit declaration of function 
'gnome_triggers_do'
| battstat_applet.c: In function 'about_cb':
| battstat_applet.c:1234: warning: implicit declaration of function 
'power_management_using_upower'
| gcc -DHAVE_CONFIG_H -I. -I.. -DORBIT2=1 -pthread -I/usr/include/panel-2.0 
-I/usr/include/gconf/2 -I/usr/include/gtk-2.0 -I/usr/include/libbonoboui-2.0 
-I/usr/include/orbit-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/gio-unix-2.0/ -I/usr/include/pixman-1 -I/usr/include/freetype2 
-I/usr/include/libpng12 -I/usr/include/libxml2 -I/usr/include/libbonobo-2.0 
-I/usr/include/libgnomecanvas-2.0 -I/usr/include/libgnome-2.0 
-I/usr/include/bonobo-activation-2.0 -I/usr/include/gail-1.0 
-I/usr/include/libart-2.0 -I/usr/include/gnome-vfs-2.0 
-I/usr/lib/gnome-vfs-2.0/include-pthread -I/usr/include/gtk-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/dbus-1.0 
-I/usr/lib/dbus-1.0/include -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/inclu
 de/gio-unix-2.0/ -I/usr/include/pixman-1 -I/usr/include/freetype2 
-I/usr/include/libpng12-pthread -I/usr/include/libupower-glib 
-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include-I/usr/src/sys 
-DG_LOG_DOMAIN=\"battstat_applet\"  -I/usr/src/sys  -g -O2 -g -Wall -O2 -c 
power-management.c
| In file included from power-management.c:182:
| /usr/include/machine/apm_bios.h:8:3: error: #error This header is not 
available for amd64
| In file included from power-management.c:183:
| acpi-freebsd.h:40: warning: 'struct apm_info' declared inside parameter list
| acpi-freebsd.h:40: warning: its scope is only this definition or declaration, 
which is probably not what you want
| power-management.c: In function 'apm_readinfo':
| power-management.c:203: warning: passing argument 1 of 'acpi_freebsd_read' 
from incompatible pointer type
| acpi-freebsd.h:40: note: expected 'struct apm_info *' but argument is of type 
'struct apm_info *'
| power-management.c:219: error: 'APMIO_GETINFO' undeclared (first use in this 
function)
| power-management.c:219: error: (Each undeclared identifier is reported only 
once
| power-management.c:219: error: for each function it appears in.)
| power-management.c:224: error: invalid use of undefined type 'struct apm_info'
| power-management.c:229: error: invalid use of undefined type 'struct apm_info'
| power-management.c:230: error: invalid use of undefined type 'struct apm_info'
| power-management.c:231: error: invalid use of undefined type 'struct apm_info'
| power-management.c:233: error: invalid use of undefined type 'struct apm_info'
| power-management.c:235: error: invalid use of undefined type 'struct apm_info'
| make[4]: *** [power-management.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=gnome-applets

Mraw,
KiBi.



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



Processed: found 586672 in 4:4.4.3-1

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 586672 4:4.4.3-1
Bug #586672 [libqt4-ruby1.8] [libqt4-ruby1.8] smoke marshallisation broken
Bug Marked as found in versions kdebindings/4:4.4.3-1.
> thanks
Stopping processing here.

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


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



Bug#588370: bug grub2

2010-07-08 Thread Colin Watson
On Thu, Jul 08, 2010 at 01:10:40AM -0700, Pier wrote:
> I got the same error.

Please file a separate bug, Severity: normal, attaching the output of
'debconf-show grub-pc' and 'fdisk -l' from this system.

(I'm getting too old to attempt to debug multiple people's problems in
the same bug report, even if they have similar symptoms.)

-- 
Colin Watson   [cjwat...@debian.org]



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



Bug#588435: FTBFS: wrong build dependency

2010-07-08 Thread ISHIKAWA Mutsumi
Package: flim
Version: 1:1.14.9+0.20100313-2
Severity: serious

 flim's debian/control said that:

Build-Depends-Indep: emacs

 But there are no emacs package (or no package provide emacs),
so we can not resolve build-dependency. Perhaps, it is `emacsen'
insted of `emacs', right?

Build-Depends-Indep: emacsen

-- 
ISHIKAWA Mutsumi
 , , 



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



Bug#588410: vlc: FTBFS on kfreebsd-*: checking for DC1394... no

2010-07-08 Thread Cyril Brulebois
Source: vlc
Version: 1.1.0-2
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-* because (at least by
default) DC1394 support seems mandatory:
| checking for main in -lliveMedia_pic... yes
| checking for DC1394... no
| configure: error: Library libraw1394 >= 2.0.1 libdc1394-2 >= 2.1.0 needed for 
dc1394 was not found
| make: *** [build-stamp] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=vlc

Mraw,
KiBi.



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



Bug#588435: FTBFS: wrong build dependency

2010-07-08 Thread Tatsuya Kinoshita
On July 8, 2010 at 7:46PM +0900,
ishikawa (at hanzubon.jp) wrote:

> Build-Depends-Indep: emacs
>
>  But there are no emacs package (or no package provide emacs),
> so we can not resolve build-dependency. Perhaps, it is `emacsen'
> insted of `emacs', right?

The emacs package exists.  It depends on the default GNU Emacs
package.  For lenny/sid, it is generated from the emacs23 source
package.  See .

BTW, what's your real problem?  Could you please show me your
FTBFS log?

Thanks,
--
Tatsuya Kinoshita


pgpa2fi2DYDH9.pgp
Description: PGP signature


Processed: tagging as pending bugs that are closed by packages in NEW

2010-07-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Thu Jul  8 08:03:59 UTC 2010
> # Tagging as pending bugs that are closed by packages in NEW
> # http://ftp-master.debian.org/new.html
> #
> # Source package in NEW: avahi
> tags 557931 + pending
Bug #557931 [avahi-daemon] avahi-daemon: "too many objects" error and failure 
to find services on big lans
Added tag(s) pending.
> # Source package in NEW: avahi
> tags 549445 + pending
Bug #549445 [avahi-daemon] unclear sentence in avahi-daemon.conf(5)
Added tag(s) pending.
> # Source package in NEW: avahi
> tags 389336 + pending
Bug #389336 [avahi-daemon] avahi-daemon: Please modify the ssh.service example
Added tag(s) pending.
> # Source package in NEW: avahi
> tags 567067 + pending
Bug #567067 [libavahi-core6] libavahi-core6: avahi incorrectly ignores mDNS 
response records containing link-local addresses
Added tag(s) pending.
> # Source package in NEW: openmotif
> tags 587683 + pending
Bug #587683 [libmotif3] libmotif3: library soname changed without changing 
package name
Added tag(s) pending.
>
End of message, stopping processing here.

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


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



Bug#588370: symbol not found: 'grub_xputs'

2010-07-08 Thread Colin Watson
On Wed, Jul 07, 2010 at 09:27:25PM +0200, Martin Bagge / brother wrote:
> I am not sure but I do think I did a dist-upgrade in sid and installd
> grub2 to replace the old solution. I haven't used the computer for
> some days now but it can not boot anymore.
>
> Right after "Welcome to grub!" it drops to the grub rescue prompt.
> I can list my drives with ls.
> I can set root to hd0,1 and list the file system for / as far as I can  
> tell.
> When doing insmod /boot/grub/linux.mod I get the grub_xputs error above.

This means that your GRUB core image, as installed by grub-install, and
your GRUB modules in /boot/grub are out of sync.  This happens when you
grub-install to a location other than that from which your computer
actually boots.

Please show the output of:

  debconf-show grub-pc
  fdisk -l

-- 
Colin Watson   [cjwat...@debian.org]



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



Bug#587541: FTBFS: At least the following dependencies are missing: tagsoup ==0.8.*

2010-07-08 Thread Joachim Breitner
Hi,

Am Dienstag, den 29.06.2010, 10:37 -0600 schrieb dann frazier:
> Source: haskell-hxt
> Version: 8.5.2-1
> Severity: serious
> 
> haskell-hxt fails to build from source on latest sid, presumably due
> to a "too-new" haskell-tagsoup package (0.10).

a patch fixing this can be found on
http://www.freebsd.org/cgi/cvsweb.cgi/ports/textproc/hs-hxt/files/

Takaki, are you still working actively on your Haskell packages? Or
should we move them to the DHG’s repository and completely take over
maintainership?

Greetings,
Joachim
-- 
Joachim "nomeata" Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: This is a digitally signed message part


Bug#587743: gnucash: segfault on open

2010-07-08 Thread Gerfried Fuchs
severity 587743 important
thanks

Hi!

* Roland Koebler  [2010-07-01 12:21:09 CEST]:
> Package: gnucash
> Version: 2.2.6-2
> Severity: grave
> Justification: renders package unusable
> 
> Gnucash segfaults when opening an account-page:
> - start gnucash
> - open a gnucash-file or create a new one
> - try to open an account
>   (e.g. click on "Expenses", then double-click on "Adjustment")
> => Segmentation fault

 Given that this is related to a library pulled in from backports.org
I'd like to lower the severity of the bugreport to important. This does
only appear in the combination with the library pulled in from
backports, in a system consisting only of lenny packages this doesn't
appear.

 Thanks for understanding,
Rhonda
-- 
"Lediglich 11 Prozent der Arbeitgeber sind der Meinung, dass jeder
Mensch auch ein Privatleben haben sollte."
-- http://www.karriere.at/artikel/884/



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



Bug#587526: cdebootstrap: hangs on downloading release with package rebuilt from source

2010-07-08 Thread Vagrant Cascadian
Package: cdebootstrap
Followup-For: Bug #587526
Version: 0.5.5

i was able to reproduce the problem reported by Carl Fürstenberg.

i first tried using cdebootstrap 0.5.5 from squeeze and it worked fine in a
clean sid chroot.

after rebuilding from source, in the same environment, cdebootstrap would hang
while attempting to download the release file:

  cdebootstrap --debug --verbose squeeze $(mktemp -d) 
http://127.0.0.1:/debian
  D: Init suite squeeze
  D: Using keyring /usr/share/keyrings/debian-archive-keyring.gpg
  P: Retrieving Release
  D: Execute "wget -q -O 
/tmp/tmp.yoF4W8nPwR/var/cache/bootstrap/_dists_._Release 
http://127.0.0.1:/debian/dists/squeeze/Release";
  ^CE: Got signal: Interrupt, cleaning up
  E: Got signal: Interrupt, cleaning up

live well,
  vagrant



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