Re: Bug#685625: libgeom: may cause segfault of grub-probe

2012-12-29 Thread Jeff Epler
If it's a question of minimal impact to fix the specific crash that
grub-probe encounters, then there are two more minimal ways to fix this
specific problem that come to mind:

replace reallocf with realloc---but in the unlikely case that realloc
fails, it doesn't deallocate the argument (this is the point of
reallocf)

explicitly declare reallocf instead of using the bsd/ header:
void *reallocf(void *, size_t)

however, I don't think either of these is better than the approach I
originally proposed, to add a #include directive that matches the one in
the reallocf manpage that debian ships.

(dropping the -Werror= flag addition would of course make it a bit more
minimal; it might avoid an FTBFS in the future, but if it's an FTBFS
that would point right at another crashing bug, well, it might be a
bonus rather than a detriment to FTBFS)

Being unfamiliar with the culture and practices of Debian, I can't speak
to whether a more invasive ('overlay') approach is appropriate or not in
light of the present freeze, but it seems that Guillem Jover has
concerns about doing that at this moment.

The machine where I originally encountered the trouble isn't yet in
production, so if there's an alternate fix proposed soon I'll be happy
to test it out.  On the other hand, I think the presence or absence of
the implicit declaration warning is enough to indicate whether the bug
is present under any given fix...

Jeff


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121229154328.ga13...@unpythonic.net



Re: libgeom: may cause segfault of grub-probe

2012-12-29 Thread Guillem Jover
On Fri, 2012-12-28 at 19:44:41 -0800, Christoph Egger wrote:
   I see there's a patch in this bug report. Do you think this is a
 solution for wheezy? If so I'd volunteer to upload a new version of
 freebsd-libs

I've checked now the interaction of the libbsd-overlay and freebsd-glue,
and they do not play well. Consequently that would require way more
changes than the proposed patch, so even if I've not tested it, it would
seem to be the better solution for now given the freeze. Moving the
-Werror line one up would reduce the diff by 1, but that's pretty much
insignificant, so regardless of that:

Acked-by: Guillem Jover guil...@debian.org

I'll add missing stuff to libbsd, and for jessie I'll make freebsd-glue
play well with the overlay, once that's fixed the other packages can
be switched back to use the overlay.

Thanks,
Guillem


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121229154910.ga25...@gaara.hadrons.org



Re: libgeom: may cause segfault of grub-probe

2012-12-29 Thread Steven Chamberlain
Hi,

I agree that libbsd and freebsd-glue seem to conflict with each other,
but neither one of them by itself has everything needed for freebsd-libs.

So Jeff's patch is the least intrusive way to fix this, and that's what
we have to go with at this late stage.  It fixes a bug we're seeing now
and is unlikely to introduce more...

I can provide a similar patch for freebsd-utils which has the same
issues, but the only problem I could confirm yet was a segfault in
ifconfig bridge configuration (#696514) due to it.


I propose adding the -Werror part of the patch into Wheezy as well.  If
it does trigger a FTBFS, it's because we missed something, or something
wrong with the build environment that we need to know about.  We might
need to drop it someday for a new upstream release but hopefully not.

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50df1e95.3080...@pyro.eu.org



Re: Bug#695500: debian-installer-7.0-netboot-kfreebsd-amd64: does not boot from pxe

2012-12-29 Thread Steven Chamberlain
Hi Michael,

Michael Tsang mikl...@gmail.com (09/12/2012):
 I cannot boot the installer from pxe. GRUB says prefix is not set
 and dies. It seems to be a configuration bug.

I see now that the prefix is not set message appears very quickly,
before GRUB switches into graphical mode.  It seems harmless, because at
the GRUB command line the prefix is correctly set.

My guess is that the machine booting via PXE was unable to show the GRUB
menu properly.  For example, if some kind of console redirection was
being used.

This can be worked around by simply removing this file from the TFTP server:

debian-installer/kfreebsd-amd64/font.pf2

And GRUB should fall back to text mode.

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50df2348.8050...@pyro.eu.org



Re: Bug#696514: freebsd-net-tools: /sbin/ifconfig: segfaults getting bridge status

2012-12-29 Thread Steven Chamberlain
Control: tags -1 + patch
Control: unblock -1 by 685625

Hi,

On 22/12/12 02:32, Steven Chamberlain wrote:
 cc -Wall -g -pipe -fPIC -I. -D_GNU_SOURCE -D__va_list=__builtin_va_list 
 -isystem /usr/include/tirpc -D__FreeBSD_version=__FreeBSD_kernel_version -O2 
 -isystem /usr/include/freebsd 
 -I/build/buildd-freebsd-utils_9.0+ds1-8-kfreebsd-i386-vUpCIn/freebsd-utils-9.0+ds1/debian/local/include
  
 -I/build/buildd-freebsd-utils_9.0+ds1-8-kfreebsd-i386-vUpCIn/freebsd-utils-9.0+ds1/include
  -lbsd  -DINET6 -DINET -Wall -Wmissing-prototypes -Wcast-qual 
 -Wwrite-strings -Wnested-externs -Wall -g -pipe -fPIC -I. -D_GNU_SOURCE 
 -D__va_list=__builtin_va_list -isystem /usr/include/tirpc 
 -D__FreeBSD_version=__FreeBSD_kernel_version -O2 -std=gnu99 
 -fstack-protector -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign 
 -c ifbridge.c
 ifbridge.c: In function 'bridge_addresses':
 ifbridge.c:241:3: warning: implicit declaration of function 'ether_ntoa' 
 [-Wimplicit-function-declaration]

This can be fixed by including the appropriate header.

Curiously it doesn't seem related to libbsd or freebsd-glue:  it is not
one of the bsd/*.h headers that seems to be missing this time.

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org
Index: freebsd-utils-9.0+ds1/sbin/ifconfig/ifbridge.c
===
--- freebsd-utils-9.0+ds1.orig/sbin/ifconfig/ifbridge.c	2007-11-04 08:32:27.0 +
+++ freebsd-utils-9.0+ds1/sbin/ifconfig/ifbridge.c	2012-12-29 20:27:46.888636491 +
@@ -46,6 +46,8 @@
 #include stdlib.h
 #include unistd.h
 
+#include netinet/ether.h /* for ether_aton, etherntoa */
+
 #include net/ethernet.h
 #include net/if.h
 #include net/if_bridgevar.h


Processed: Re: Bug#696514: freebsd-net-tools: /sbin/ifconfig: segfaults getting bridge status

2012-12-29 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 + patch
Bug #696514 [freebsd-net-tools] freebsd-net-tools: /sbin/ifconfig: segfaults 
getting bridge status
Added tag(s) patch.
 unblock -1 by 685625
Bug #696514 [freebsd-net-tools] freebsd-net-tools: /sbin/ifconfig: segfaults 
getting bridge status
696514 was blocked by: 685625
696514 was not blocking any bugs.
Removed blocking bug(s) of 696514: 685625

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


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.b696514.135681319226383.transcr...@bugs.debian.org



Re: libgeom: may cause segfault of grub-probe

2012-12-29 Thread Steven Chamberlain
On 29/12/12 16:47, Steven Chamberlain wrote:
 I can provide a similar patch for freebsd-utils which has the same
 issues, but the only problem I could confirm yet was a segfault in
 ifconfig bridge configuration (#696514) due to it.

Attached is a similar patch for freebsd-utils, fixing implicit
declarations that are due to libbsd no longer being used.  Should we
apply it?

The warnings are potentially serious, but I don't know of any specific
bugs that this will fix.  (#696514 turned out not to be due to these).

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org
Index: freebsd-utils-9.0+ds1/usr.sbin/mountd/mountd.c
===
--- freebsd-utils-9.0+ds1.orig/usr.sbin/mountd/mountd.c	2012-12-29 19:56:58.0 +
+++ freebsd-utils-9.0+ds1/usr.sbin/mountd/mountd.c	2012-12-29 20:05:01.478673213 +
@@ -80,6 +80,8 @@
 #include stdlib.h
 #include string.h
 #include unistd.h
+#include bsd/stdio.h
+
 #include pathnames.h
 #include mntopts.h
 
Index: freebsd-utils-9.0+ds1/usr.sbin/vidcontrol/vidcontrol.c
===
--- freebsd-utils-9.0+ds1.orig/usr.sbin/vidcontrol/vidcontrol.c	2010-03-29 21:12:44.0 +0100
+++ freebsd-utils-9.0+ds1/usr.sbin/vidcontrol/vidcontrol.c	2012-12-29 20:05:04.610607859 +
@@ -48,6 +48,8 @@
 #include sys/errno.h
 #include sys/types.h
 #include sys/stat.h
+#include bsd/err.h
+
 #include path.h
 #include decode.h
 
Index: freebsd-utils-9.0+ds1/usr.sbin/ppp/defs.c
===
--- freebsd-utils-9.0+ds1.orig/usr.sbin/ppp/defs.c	2004-09-05 02:46:52.0 +0100
+++ freebsd-utils-9.0+ds1/usr.sbin/ppp/defs.c	2012-12-29 20:00:01.091748618 +
@@ -47,6 +47,7 @@
 #include time.h
 #endif
 #include unistd.h
+#include bsd/unistd.h
 
 #if defined(__FreeBSD__)  !defined(NOKLDLOAD)
 #include id.h
Index: freebsd-utils-9.0+ds1/usr.sbin/nfsd/nfsd.c
===
--- freebsd-utils-9.0+ds1.orig/usr.sbin/nfsd/nfsd.c	2012-12-29 19:56:58.0 +
+++ freebsd-utils-9.0+ds1/usr.sbin/nfsd/nfsd.c	2012-12-29 20:00:04.194641584 +
@@ -71,6 +71,7 @@
 #include stdlib.h
 #include string.h
 #include unistd.h
+#include bsd/unistd.h
 
 /* Global defs */
 #ifdef DEBUG
Index: freebsd-utils-9.0+ds1/usr.sbin/arp/arp.c
===
--- freebsd-utils-9.0+ds1.orig/usr.sbin/arp/arp.c	2012-12-29 19:56:58.0 +
+++ freebsd-utils-9.0+ds1/usr.sbin/arp/arp.c	2012-12-29 20:00:07.442606898 +
@@ -80,6 +80,7 @@
 #include string.h
 #include strings.h
 #include unistd.h
+#include bsd/stdlib.h
 
 typedef void (action_fn)(struct sockaddr_dl *sdl,
 	struct sockaddr_inarp *s_in, struct rt_msghdr *rtm);
Index: freebsd-utils-9.0+ds1/usr.sbin/rpc.lockd/kern.c
===
--- freebsd-utils-9.0+ds1.orig/usr.sbin/rpc.lockd/kern.c	2012-12-29 19:56:58.0 +
+++ freebsd-utils-9.0+ds1/usr.sbin/rpc.lockd/kern.c	2012-12-29 20:00:14.848822213 +
@@ -52,6 +52,7 @@
 #include unistd.h
 #include netdb.h
 #include signal.h
+#include bsd/unistd.h
 
 #include nlm_prot.h
 #include nfs/nfsproto.h
Index: freebsd-utils-9.0+ds1/usr.sbin/pppctl/pppctl.c
===
--- freebsd-utils-9.0+ds1.orig/usr.sbin/pppctl/pppctl.c	2004-12-13 14:50:13.0 +
+++ freebsd-utils-9.0+ds1/usr.sbin/pppctl/pppctl.c	2012-12-29 20:00:17.754640690 +
@@ -48,6 +48,7 @@
 #include string.h
 #include time.h
 #include unistd.h
+#include bsd/unistd.h
 
 #define LINELEN 2048
 
Index: freebsd-utils-9.0+ds1/usr.bin/kdump/kdump.c
===
--- freebsd-utils-9.0+ds1.orig/usr.bin/kdump/kdump.c	2012-12-29 19:56:58.0 +
+++ freebsd-utils-9.0+ds1/usr.bin/kdump/kdump.c	2012-12-29 20:05:19.540626059 +
@@ -83,6 +83,8 @@
 #include time.h
 #include unistd.h
 #include vis.h
+#include bsd/string.h
+
 #include ktrace.h
 #include kdump_subr.h
 
Index: freebsd-utils-9.0+ds1/sbin/geom/core/geom.c
===
--- freebsd-utils-9.0+ds1.orig/sbin/geom/core/geom.c	2011-03-24 19:11:05.0 +
+++ freebsd-utils-9.0+ds1/sbin/geom/core/geom.c	2012-12-29 20:06:16.428605677 +
@@ -46,6 +46,8 @@
 #include inttypes.h
 #include dlfcn.h
 #include assert.h
+#include bsd/err.h
+
 #include libgeom.h
 #include geom.h
 
Index: freebsd-utils-9.0+ds1/sbin/geom/class/eli/geom_eli.c
===
--- freebsd-utils-9.0+ds1.orig/sbin/geom/class/eli/geom_eli.c	2010-11-22 20:10:48.0 +
+++ freebsd-utils-9.0+ds1/sbin/geom/class/eli/geom_eli.c	2012-12-29 20:00:30.210625738 +
@@ -43,6 +43,7 @@
 #include paths.h
 #include errno.h
 #include assert.h
+#include bsd/stdlib.h
 
 #include 

Re: libgeom: may cause segfault of grub-probe

2012-12-29 Thread Christoph Egger
Hi all!

  I'd like to hear -release@'s opinion on that. Do you prefer the
smaller patch only fixing the implicit declarations/includes where we
know it has caused this segfaults or can I upload the full change below?

Regards

Christoph

Steven Chamberlain ste...@pyro.eu.org writes:
 This is a multi-part message in MIME format.
 --030202080401090604090105
 Content-Type: text/plain; charset=ISO-8859-1
 Content-Transfer-Encoding: 7bit

 On 29/12/12 16:47, Steven Chamberlain wrote:
 I can provide a similar patch for freebsd-utils which has the same
 issues, but the only problem I could confirm yet was a segfault in
 ifconfig bridge configuration (#696514) due to it.

 Attached is a similar patch for freebsd-utils, fixing implicit
 declarations that are due to libbsd no longer being used.  Should we
 apply it?

 The warnings are potentially serious, but I don't know of any specific
 bugs that this will fix.  (#696514 turned out not to be due to these).

 Regards,
 -- 
 Steven Chamberlain
 ste...@pyro.eu.org

 --030202080401090604090105
 Content-Type: text/x-patch;
  name=implicit-declaration.patch
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename=implicit-declaration.patch

 Index: freebsd-utils-9.0+ds1/usr.sbin/mountd/mountd.c
 ===
 --- freebsd-utils-9.0+ds1.orig/usr.sbin/mountd/mountd.c   2012-12-29 
 19:56:58.0 +
 +++ freebsd-utils-9.0+ds1/usr.sbin/mountd/mountd.c2012-12-29 
 20:05:01.478673213 +
 @@ -80,6 +80,8 @@
  #include stdlib.h
  #include string.h
  #include unistd.h
 +#include bsd/stdio.h
 +
  #include pathnames.h
  #include mntopts.h
  
 Index: freebsd-utils-9.0+ds1/usr.sbin/vidcontrol/vidcontrol.c
 ===
 --- freebsd-utils-9.0+ds1.orig/usr.sbin/vidcontrol/vidcontrol.c   
 2010-03-29 21:12:44.0 +0100
 +++ freebsd-utils-9.0+ds1/usr.sbin/vidcontrol/vidcontrol.c2012-12-29 
 20:05:04.610607859 +
 @@ -48,6 +48,8 @@
  #include sys/errno.h
  #include sys/types.h
  #include sys/stat.h
 +#include bsd/err.h
 +
  #include path.h
  #include decode.h
  
 Index: freebsd-utils-9.0+ds1/usr.sbin/ppp/defs.c
 ===
 --- freebsd-utils-9.0+ds1.orig/usr.sbin/ppp/defs.c2004-09-05 
 02:46:52.0 +0100
 +++ freebsd-utils-9.0+ds1/usr.sbin/ppp/defs.c 2012-12-29 20:00:01.091748618 
 +
 @@ -47,6 +47,7 @@
  #include time.h
  #endif
  #include unistd.h
 +#include bsd/unistd.h
  
  #if defined(__FreeBSD__)  !defined(NOKLDLOAD)
  #include id.h
 Index: freebsd-utils-9.0+ds1/usr.sbin/nfsd/nfsd.c
 ===
 --- freebsd-utils-9.0+ds1.orig/usr.sbin/nfsd/nfsd.c   2012-12-29 
 19:56:58.0 +
 +++ freebsd-utils-9.0+ds1/usr.sbin/nfsd/nfsd.c2012-12-29 
 20:00:04.194641584 +
 @@ -71,6 +71,7 @@
  #include stdlib.h
  #include string.h
  #include unistd.h
 +#include bsd/unistd.h
  
  /* Global defs */
  #ifdef DEBUG
 Index: freebsd-utils-9.0+ds1/usr.sbin/arp/arp.c
 ===
 --- freebsd-utils-9.0+ds1.orig/usr.sbin/arp/arp.c 2012-12-29 
 19:56:58.0 +
 +++ freebsd-utils-9.0+ds1/usr.sbin/arp/arp.c  2012-12-29 20:00:07.442606898 
 +
 @@ -80,6 +80,7 @@
  #include string.h
  #include strings.h
  #include unistd.h
 +#include bsd/stdlib.h
  
  typedef void (action_fn)(struct sockaddr_dl *sdl,
   struct sockaddr_inarp *s_in, struct rt_msghdr *rtm);
 Index: freebsd-utils-9.0+ds1/usr.sbin/rpc.lockd/kern.c
 ===
 --- freebsd-utils-9.0+ds1.orig/usr.sbin/rpc.lockd/kern.c  2012-12-29 
 19:56:58.0 +
 +++ freebsd-utils-9.0+ds1/usr.sbin/rpc.lockd/kern.c   2012-12-29 
 20:00:14.848822213 +
 @@ -52,6 +52,7 @@
  #include unistd.h
  #include netdb.h
  #include signal.h
 +#include bsd/unistd.h
  
  #include nlm_prot.h
  #include nfs/nfsproto.h
 Index: freebsd-utils-9.0+ds1/usr.sbin/pppctl/pppctl.c
 ===
 --- freebsd-utils-9.0+ds1.orig/usr.sbin/pppctl/pppctl.c   2004-12-13 
 14:50:13.0 +
 +++ freebsd-utils-9.0+ds1/usr.sbin/pppctl/pppctl.c2012-12-29 
 20:00:17.754640690 +
 @@ -48,6 +48,7 @@
  #include string.h
  #include time.h
  #include unistd.h
 +#include bsd/unistd.h
  
  #define LINELEN 2048
  
 Index: freebsd-utils-9.0+ds1/usr.bin/kdump/kdump.c
 ===
 --- freebsd-utils-9.0+ds1.orig/usr.bin/kdump/kdump.c  2012-12-29 
 19:56:58.0 +
 +++ freebsd-utils-9.0+ds1/usr.bin/kdump/kdump.c   2012-12-29 
 20:05:19.540626059 +
 @@ -83,6 +83,8 @@
  #include time.h
  #include unistd.h
  #include vis.h
 +#include bsd/string.h
 +
  #include ktrace.h
  #include kdump_subr.h
 

Bug#675845 closed by Christoph Egger christ...@debian.org (Bug#675845: fixed in adanaxisgpl 1.2.5.dfsg.1-5)

2012-12-29 Thread Debian Bug Tracking System
This is an automatic notification regarding your Bug report
which was filed against the src:adanaxisgpl package:

#675845: adanaxisgpl: FTBFS:

It has been closed by Christoph Egger christ...@debian.org.

Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Christoph Egger 
christ...@debian.org by
replying to this email.


-- 
675845: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=675845
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: adanaxisgpl
Source-Version: 1.2.5.dfsg.1-5

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

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 675...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christoph Egger christ...@debian.org (supplier of updated adanaxisgpl 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: Sat, 29 Dec 2012 14:20:57 -0800
Source: adanaxisgpl
Binary: adanaxisgpl adanaxisgpl-data
Architecture: source kfreebsd-amd64 all
Version: 1.2.5.dfsg.1-5
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Christoph Egger christ...@debian.org
Description: 
 adanaxisgpl - Action game in four spatial dimensions
 adanaxisgpl-data - Action game in four spatial dimensions
Closes: 675845
Changes: 
 adanaxisgpl (1.2.5.dfsg.1-5) unstable; urgency=low
 .
   * Team Upload
   * Fix FTBFS on kFreeBSD (Closes: #675845)
 Thanks to Steven Chamberlain for the patch
Checksums-Sha1: 
 f082f76bd1c423caea43f5c6c107073131800d6b 2273 adanaxisgpl_1.2.5.dfsg.1-5.dsc
 276b377988836eec440f8c94aafff4ff7c0acb49 16886 
adanaxisgpl_1.2.5.dfsg.1-5.debian.tar.gz
 a15f2d132abd73aed009237e69734bb190ce4622 1546362 
adanaxisgpl_1.2.5.dfsg.1-5_kfreebsd-amd64.deb
 e89caaefa7899c05aa15c399eb5652f0146de4ec 18349320 
adanaxisgpl-data_1.2.5.dfsg.1-5_all.deb
Checksums-Sha256: 
 6aeb7b9f5938053f3e5ffc61224857333a573aeca6f44c8ec9a2140d6bde7574 2273 
adanaxisgpl_1.2.5.dfsg.1-5.dsc
 13991bc9dbf55b466a373d191585d3e41eee7ddcd86b8f07aa95d77ab9c0c3c1 16886 
adanaxisgpl_1.2.5.dfsg.1-5.debian.tar.gz
 3a4be99ee1830e39b836c37a7d25f358dd41efca9605d9a2e3009541edff4234 1546362 
adanaxisgpl_1.2.5.dfsg.1-5_kfreebsd-amd64.deb
 395a4965bd46b7701d064f9d96a23d2f1ce36897fa9b039f616a594b2629f862 18349320 
adanaxisgpl-data_1.2.5.dfsg.1-5_all.deb
Files: 
 7106d4f26875a9db8384d02c81844ede 2273 games optional 
adanaxisgpl_1.2.5.dfsg.1-5.dsc
 4193fc49aed9ec554cf7f03b13953d91 16886 games optional 
adanaxisgpl_1.2.5.dfsg.1-5.debian.tar.gz
 61a2293b95eeb377e7589161cfcdefad 1546362 games optional 
adanaxisgpl_1.2.5.dfsg.1-5_kfreebsd-amd64.deb
 e412ac4eec60dd8f86bdf5c7076aa76d 18349320 games optional 
adanaxisgpl-data_1.2.5.dfsg.1-5_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/kFreeBSD)

iQIcBAEBCAAGBQJQ335OAAoJEKv/7bJACMb5WCsQALFjnKMOs3MuNbrwrMt2l1pF
/zIQzMdWUbKKAbkvkRG33R1DGMy4hjbPAUuBoSy7QDEb9up+H753y73KWf/F9DQL
yuHGlg5BHZZKSEepNbR95FIPObEny4pd/D4oB6z/33sQwnne3w+lCx/UmiJK/deo
tyXj2Lxsh3kTwhfllh85ncISYwEP6huwKTVQvZMijE4vF28LKMDobXqZSCrA3gNj
bkNZRUwsPo8Wu+b+FUPD/SzKZdwz50J5xWVKI3wRsHEOPAcGC72h3hD7eE1HDei/
WFP+42DCYOvEBjwD9/AzUrxw3wdRclCXximxUUjWSNZiXCBsiDINb/kY5di6js2i
KySJXT2IJlmLtArLe4qItQa34S9PzpkhHw1LlGDTgTYfsZ9YkNIBnROJ78wDbrzZ
x+Rh5Q8j/d9scdvvSPiYCWG0sd2PWPSW2CYBiNg+Y6it2EuEjU9K4umf7zdGbnsx
B4fubts691rNmgwGkkqhcyb1GJB47ylNLJXH1Z4MKOo10DR/ltVFfSBJuyG731NH
wJf+T7Ka7gRkHwKJQYr/Sca3+YYhGAAij5Ly81NwmufQJyHr6xuaL1fNP94ZY2QL
mSl2DJg0AG4GNU1edmli64pIvLZm7hi9UTwVNs9b0KZWfLV3fQFwfpcw0DWWYrCe
Hx07qRnaD0sbYLLAysrO
=bAZ2
-END PGP SIGNATUREEnd Message---
---BeginMessage---
Package: src:adanaxisgpl
Version: 1.2.5.dfsg.1-4.1
Severity: serious
Tags: sid wheezy
User: debian-bsd@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-bsd@lists.debian.org
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the kfreebsd-* buildds:

gcc -DHAVE_CONFIG_H -I. -I..   -DMUSH_DATA_DIR=\/usr/share/games\ 
-I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I. -I./API -DNDEBUG  
-I./Platform/X11  -DMUSH_DATA_DIR=\/usr/share/games\ -g -O2 -I. -I./API 
-DNDEBUG -c -o io.o `test -f 'MushRuby/io.c' || echo './'`MushRuby/io.c
In file included from /usr/include/sys/kern/param.h:67:0,
 from /usr/include/osreldate.h:1,
 from /usr/include/i386-kfreebsd-gnu/sys/param.h:39,
   

Re: libgeom: may cause segfault of grub-probe

2012-12-29 Thread Christoph Egger
Christoph Egger christ...@debian.org writes:
   I'd like to hear -release@'s opinion on that. Do you prefer the
 smaller patch only fixing the implicit declarations/includes where we
 know it has caused this segfaults or can I upload the full change below?

Oh sorry I should read more carefull. That's of course a diff for a
different package (-utils vs -libs). I'm still inclined to also upload
-utils with that diff. Steven, SVN has fixes for #694374 and #695679
already. do you intent these for wheezy? If so let's add #696514 and
potentially the implicit declarations and get it uploaded as well.

Regards

Christoph


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87licgo1iy@mitoraj.siccegge.de



Re: libgeom: may cause segfault of grub-probe

2012-12-29 Thread Steven Chamberlain
On 29/12/12 23:56, Christoph Egger wrote:
 Steven, SVN has fixes for #694374 and #695679
 already. do you intent these for wheezy?

Yes, please.

They are not RC severity but sufficiently important for release, and in
particular #695679 should be fixed for people doing squeeze-wheezy
upgrades of jail systems.

 If so let's add #696514 and
 potentially the implicit declarations and get it uploaded as well.

I think it is beneficial, yes.  And as minimal as it can be.

There are some remaining implicit declarations, but are more complex,
therefore I'm leaving those as they are and I haven't enabled the
-Werror flag for this package yet.

Thanks!
Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50df8559.1090...@pyro.eu.org



Bug#685625: marked as done ([kfreebsd] libgeom: may cause segfault of grub-probe)

2012-12-29 Thread Debian Bug Tracking System
Your message dated Sun, 30 Dec 2012 00:02:58 +
with message-id e1tp6mk-0004ua...@franck.debian.org
and subject line Bug#685625: fixed in freebsd-libs 9.0+ds1-4
has caused the Debian Bug report #685625,
regarding [kfreebsd] libgeom: may cause segfault of grub-probe
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.)


-- 
685625: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685625
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: kfreebsd-image-9.0-2-amd64
Version: 9.0-5
Severity: important

Dear Maintainer,

When using apt-get upgrade to get the latest version of
kfreebsd-image-9.0-2-amd64, the package segfaults in the configure
stage.

,
| # dpkg --configure kfreebsd-image-9.0-2-amd64
| Setting up kfreebsd-image-9.0-2-amd64 (9.0-5) ...
| run-parts: executing /etc/kernel/postinst.d/apt-dater-host_reboot 9.0-2-amd64 
/boot/kfreebsd-9.0-2-amd64.gz
| run-parts: executing /etc/kernel/postinst.d/zz-update-grub 9.0-2-amd64 
/boot/kfreebsd-9.0-2-amd64.gz
| Segmentation fault
| Segmentation fault
| Generating grub.cfg ...
| Found kernel of FreeBSD: /boot/kfreebsd-9.0-2-amd64.gz
| Found kernel module directory: /lib/modules/9.0-2-amd64
| Segmentation fault
| Segmentation fault
| Segmentation fault
| ls: cannot access /lib/modules/9.0-2-amd64/unknown.ko: No such file or 
directory
| run-parts: /etc/kernel/postinst.d/zz-update-grub exited with return code 2
| dpkg: error processing kfreebsd-image-9.0-2-amd64 (--configure):
|  subprocess installed post-installation script returned error exit status 1
| Errors were encountered while processing:
|  kfreebsd-image-9.0-2-amd64
`

Not sure if I dare reboot, but will assist with debugging if needed.

Thanks

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 9.0-1-amd64
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 kfreebsd-image-9.0-2-amd64 depends on:
ii  devd   9.0+ds1-7
ii  freebsd-utils  9.0+ds1-7
ii  kbdcontrol 9.0+ds1-7
ii  kldutils   9.0+ds1-7

kfreebsd-image-9.0-2-amd64 recommends no packages.

kfreebsd-image-9.0-2-amd64 suggests no packages.

-- no debconf information
---End Message---
---BeginMessage---
Source: freebsd-libs
Source-Version: 9.0+ds1-4

We believe that the bug you reported is fixed in the latest version of
freebsd-libs, which is due to be installed in the Debian FTP archive.

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 685...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christoph Egger christ...@debian.org (supplier of updated freebsd-libs 
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: Sat, 29 Dec 2012 15:49:19 -0800
Source: freebsd-libs
Binary: libsbuf6 libsbuf6-udeb libsbuf-dev libcam6 libcam-dev libgeom1 
libgeom-dev libgeom1-udeb libusbhid4debian libusbhid-common libusbhid-dev 
libusb2debian libusb2-dev libusb2debian-udeb libkvm0 libkvm-dev libdevstat7 
libdevstat-dev libmemstat3 libmemstat-dev libnetgraph4 libnetgraph-dev libipx2 
libipx-dev libipx2-udeb libkiconv4 libkiconv-dev libjail1 libjail-dev libalias7 
libalias-dev
Architecture: source kfreebsd-amd64 all
Version: 9.0+ds1-4
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-bsd@lists.debian.org
Changed-By: Christoph Egger christ...@debian.org
Description: 
 libalias-dev - Development files for libalias
 libalias7  - FreeBSD packet aliasing library
 libcam-dev - Development files for libcam
 libcam6- FreeBSD CAM (Common Access Method) library
 libdevstat-dev - Development files for libdevstat
 libdevstat7 - FreeBSD devstat (kernel interface) library
 libgeom-dev - Development files for libgeom
 libgeom1   - FreeBSD GEOM library
 libgeom1-udeb - FreeBSD GEOM library (udeb) (udeb)
 libipx-dev - Development files for libipx
 libipx2- FreeBSD IPX address conversion support library
 libipx2-udeb - FreeBSD IPX address conversion support library (udeb) (udeb)
 libjail-dev - Development files for libjail
 libjail1   - FreeBSD jail library
 libkiconv-dev - Development files for libkiconv
 libkiconv4 

Processing of freebsd-libs_9.0+ds1-4_kfreebsd-amd64.changes

2012-12-29 Thread Debian FTP Masters
freebsd-libs_9.0+ds1-4_kfreebsd-amd64.changes uploaded successfully to localhost
along with the files:
  freebsd-libs_9.0+ds1-4.dsc
  freebsd-libs_9.0+ds1-4.debian.tar.gz
  libsbuf6_9.0+ds1-4_kfreebsd-amd64.deb
  libsbuf6-udeb_9.0+ds1-4_kfreebsd-amd64.udeb
  libsbuf-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libcam6_9.0+ds1-4_kfreebsd-amd64.deb
  libcam-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libgeom1_9.0+ds1-4_kfreebsd-amd64.deb
  libgeom-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libgeom1-udeb_9.0+ds1-4_kfreebsd-amd64.udeb
  libusbhid4debian_9.0+ds1-4_kfreebsd-amd64.deb
  libusbhid-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libusb2debian_9.0+ds1-4_kfreebsd-amd64.deb
  libusb2-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libusb2debian-udeb_9.0+ds1-4_kfreebsd-amd64.udeb
  libkvm0_9.0+ds1-4_kfreebsd-amd64.deb
  libkvm-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libdevstat7_9.0+ds1-4_kfreebsd-amd64.deb
  libdevstat-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libmemstat3_9.0+ds1-4_kfreebsd-amd64.deb
  libmemstat-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libnetgraph4_9.0+ds1-4_kfreebsd-amd64.deb
  libnetgraph-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libipx2_9.0+ds1-4_kfreebsd-amd64.deb
  libipx-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libipx2-udeb_9.0+ds1-4_kfreebsd-amd64.udeb
  libkiconv4_9.0+ds1-4_kfreebsd-amd64.deb
  libkiconv-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libjail1_9.0+ds1-4_kfreebsd-amd64.deb
  libjail-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libalias7_9.0+ds1-4_kfreebsd-amd64.deb
  libalias-dev_9.0+ds1-4_kfreebsd-amd64.deb
  libusbhid-common_9.0+ds1-4_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1tp6fc-0002o2...@franck.debian.org



freebsd-libs_9.0+ds1-4_kfreebsd-amd64.changes ACCEPTED into unstable

2012-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 29 Dec 2012 15:49:19 -0800
Source: freebsd-libs
Binary: libsbuf6 libsbuf6-udeb libsbuf-dev libcam6 libcam-dev libgeom1 
libgeom-dev libgeom1-udeb libusbhid4debian libusbhid-common libusbhid-dev 
libusb2debian libusb2-dev libusb2debian-udeb libkvm0 libkvm-dev libdevstat7 
libdevstat-dev libmemstat3 libmemstat-dev libnetgraph4 libnetgraph-dev libipx2 
libipx-dev libipx2-udeb libkiconv4 libkiconv-dev libjail1 libjail-dev libalias7 
libalias-dev
Architecture: source kfreebsd-amd64 all
Version: 9.0+ds1-4
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-bsd@lists.debian.org
Changed-By: Christoph Egger christ...@debian.org
Description: 
 libalias-dev - Development files for libalias
 libalias7  - FreeBSD packet aliasing library
 libcam-dev - Development files for libcam
 libcam6- FreeBSD CAM (Common Access Method) library
 libdevstat-dev - Development files for libdevstat
 libdevstat7 - FreeBSD devstat (kernel interface) library
 libgeom-dev - Development files for libgeom
 libgeom1   - FreeBSD GEOM library
 libgeom1-udeb - FreeBSD GEOM library (udeb) (udeb)
 libipx-dev - Development files for libipx
 libipx2- FreeBSD IPX address conversion support library
 libipx2-udeb - FreeBSD IPX address conversion support library (udeb) (udeb)
 libjail-dev - Development files for libjail
 libjail1   - FreeBSD jail library
 libkiconv-dev - Development files for libkiconv
 libkiconv4 - FreeBSD kernel side iconv library (udeb)
 libkvm-dev - Development files for libkvm
 libkvm0- FreeBSD kvm (kernel memory interface) library
 libmemstat-dev - Development files for libmemstat
 libmemstat3 - FreeBSD memstat (kernel interface) library
 libnetgraph-dev - Development files for libnetgraph
 libnetgraph4 - FreeBSD netgraph (kernel interface) library
 libsbuf-dev - Development files for libsbuf
 libsbuf6   - FreeBSD string buffer library
 libsbuf6-udeb - FreeBSD string buffer library (udeb) (udeb)
 libusb2-dev - Development files for libusb2
 libusb2debian - FreeBSD userspace USB programming library
 libusb2debian-udeb - Development files for libusb2 (udeb) (udeb)
 libusbhid-common - Common files for the USB HID devices FreeBSD library
 libusbhid-dev - Development files for libusbhid
 libusbhid4debian - FreeBSD library to access USB HID devices
Closes: 685625
Changes: 
 freebsd-libs (9.0+ds1-4) unstable; urgency=low
 .
   [ Christoph Egger ]
   * Upload to unstable
 .
   [ Jeff Epler ]
   * Fix 'warning: implicit declaration of function 'reallocf'
 (and several other functions) (Closes: 685625)
   * Make that warning an error so that it does not pass silently
 in the future
Checksums-Sha1: 
 e8a4354a5d0d8eb2f8c5a55b742de9419ac126eb 3694 freebsd-libs_9.0+ds1-4.dsc
 cf14056890a2da795b4b376438c7ef94d0fc05b5 26320 
freebsd-libs_9.0+ds1-4.debian.tar.gz
 b18ca7ead7828a62bde8278d5a6f332c75516e76 14466 
libsbuf6_9.0+ds1-4_kfreebsd-amd64.deb
 a0ad4f425c4bae01f32e3e55470045d369819009 4502 
libsbuf6-udeb_9.0+ds1-4_kfreebsd-amd64.udeb
 19be427339dcad8e83782c37c864e2f530331e24 13934 
libsbuf-dev_9.0+ds1-4_kfreebsd-amd64.deb
 3af6e202bc1bfdac658bfbcabcbbd4363f76824f 61630 
libcam6_9.0+ds1-4_kfreebsd-amd64.deb
 55d70ecda13c111edfac57c6621926e217beedf7 78730 
libcam-dev_9.0+ds1-4_kfreebsd-amd64.deb
 95a312585fb45f4420dc124c5626e54d98256e49 20302 
libgeom1_9.0+ds1-4_kfreebsd-amd64.deb
 8f4e09fde673b8b9b90b0695ebc3e2d681b0e89d 25364 
libgeom-dev_9.0+ds1-4_kfreebsd-amd64.deb
 7ccebf08e720d3b8890aba7d8b2f8c889d2b3e6f 9196 
libgeom1-udeb_9.0+ds1-4_kfreebsd-amd64.udeb
 5179e1069208f73e70d6861438e10dbc4c03835a 17342 
libusbhid4debian_9.0+ds1-4_kfreebsd-amd64.deb
 e2333035d308b1bc8413601774a802b123809b44 21478 
libusbhid-dev_9.0+ds1-4_kfreebsd-amd64.deb
 3bac46ff3458a5f12e04e11b500b56876e9deaf0 43350 
libusb2debian_9.0+ds1-4_kfreebsd-amd64.deb
 4d136cd7b5105bd4def31bffd8b485ca7cd117c1 69650 
libusb2-dev_9.0+ds1-4_kfreebsd-amd64.deb
 75d1417cb6f8b34a853f00b7a5d40e326122b4b3 27014 
libusb2debian-udeb_9.0+ds1-4_kfreebsd-amd64.udeb
 65e497b33ae8635548094cf4bafdf92846d40c70 26572 
libkvm0_9.0+ds1-4_kfreebsd-amd64.deb
 5a1c2a8311b74cba493294e09139aab5ac21aa41 50424 
libkvm-dev_9.0+ds1-4_kfreebsd-amd64.deb
 b3ad4a206d1618b8e33a95224f3dcd70d7fe9c20 19916 
libdevstat7_9.0+ds1-4_kfreebsd-amd64.deb
 e16a70570a0a07b6484829947877edfd746aea55 26496 
libdevstat-dev_9.0+ds1-4_kfreebsd-amd64.deb
 b19e19e7f49d615dc1d9b5e4c3d4158a9620b96b 17912 
libmemstat3_9.0+ds1-4_kfreebsd-amd64.deb
 880033c8f2ea36fd07a24d99dd9a9cb93994b748 24604 
libmemstat-dev_9.0+ds1-4_kfreebsd-amd64.deb
 104b475eb70827c6981ec4341db756303bf654f2 18448 
libnetgraph4_9.0+ds1-4_kfreebsd-amd64.deb
 2294eda8954a902421b4e09bdb5ae6381f08e920 22860 
libnetgraph-dev_9.0+ds1-4_kfreebsd-amd64.deb
 69674045c244d8e9b0d3867086539de0f32ba03e 13520 
libipx2_9.0+ds1-4_kfreebsd-amd64.deb
 c32363cd8ce4ea0238a3c02d4abc5cafc3ac83d3 15258 
libipx-dev_9.0+ds1-4_kfreebsd-amd64.deb
 

Bug#695679: marked as done (freebsd-utils: Init script fails in jail, breaks dist-upgrade)

2012-12-29 Thread Debian Bug Tracking System
Your message dated Sun, 30 Dec 2012 00:33:22 +
with message-id e1tp6qa-0003o0...@franck.debian.org
and subject line Bug#695679: fixed in freebsd-utils 9.0+ds1-9
has caused the Debian Bug report #695679,
regarding freebsd-utils: Init script fails in jail, breaks dist-upgrade
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.)


-- 
695679: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695679
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: freebsd-utils
Version: 9.0+ds1-8
Severity: normal

Dear Maintainer,

I am running Debian GNU/kFreeBSD jailed on a native FreeBSD 9 machine.
Trying to dist-upgrade from squeeze to wheezy I get this:


Setting up freebsd-utils (9.0+ds1-8) ...
Installing new version of config file /etc/init.d/freebsd-utils ...
[] Loading devfs rules...devfs ruleset: ioctl DEVFSIO_SUSE:
Operation not permitted
invoke-rc.d: initscript freebsd-utils, action start failed.
dpkg: error processing freebsd-utils (--configure):
 subprocess installed post-installation script returned error exit
 status 1
 configured to not write apport reports
 Errors were encountered while processing:
 freebsd-utils
E: Sub-process /usr/bin/dpkg returned an error code (1)


It's easy enough to work around this issue (exit 0 in the init script
does the trick) but it's a little annoying and would be nice to have
fixed.

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 9.0-RELEASE-p3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages freebsd-utils depends on:
ii  libbsd0 0.4.2-1
ii  libc0.1 2.13-37
ii  libcam6 9.0+ds1-3
ii  libgeom19.0+ds1-3
ii  libjail19.0+ds1-3
ii  libkiconv4  9.0+ds1-3
ii  libkvm0 9.0+ds1-3
ii  libsbuf69.0+ds1-3
ii  libtirpc1   0.2.2-5
ii  lsb-base4.1+Debian8
ii  zlib1g  1:1.2.7.dfsg-13

freebsd-utils recommends no packages.

Versions of packages freebsd-utils suggests:
pn  freebsd-hackedutils  none
ii  kbdcontrol   9.0+ds1-8
pn  vidcontrol   none

-- no debconf information
---End Message---
---BeginMessage---
Source: freebsd-utils
Source-Version: 9.0+ds1-9

We believe that the bug you reported is fixed in the latest version of
freebsd-utils, which is due to be installed in the Debian FTP archive.

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 695...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Steven Chamberlain ste...@pyro.eu.org (supplier of updated freebsd-utils 
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: Tue, 11 Dec 2012 20:28:30 +
Source: freebsd-utils
Binary: freebsd-utils freebsd-utils-udeb kldutils kldutils-udeb kbdcontrol 
kbdcontrol-udeb vidcontrol freebsd-net-tools freebsd-net-tools-udeb 
freebsd-nfs-server freebsd-nfs-common geom freebsd-geom freebsd-ppp devd 
devd-udeb ktrace pf powerd mkuzip
Architecture: source kfreebsd-amd64
Version: 9.0+ds1-9
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-bsd@lists.debian.org
Changed-By: Steven Chamberlain ste...@pyro.eu.org
Description: 
 devd   - device state change monitoring daemon
 devd-udeb  - device state change monitoring daemon (udeb)
 freebsd-geom - modular disk I/O request transformation framework (meta-package)
 freebsd-net-tools - FreeBSD networking tools
 freebsd-net-tools-udeb - FreeBSD networking tools (udeb)
 freebsd-nfs-common - NFS support files common to client and server
 freebsd-nfs-server - FreeBSD server utilities needed for NFS on GNU/kFreeBSD
 freebsd-ppp - FreeBSD Point-to-Point Protocol (PPP) userland daemon
 freebsd-utils - FreeBSD utilities needed for GNU/kFreeBSD
 freebsd-utils-udeb - FreeBSD utilities needed for GNU/kFreeBSD (udeb)
 geom   - modular disk I/O request transformation framework
 kbdcontrol - command-line tool to change keyboard layout on GNU/kFreeBSD
 kbdcontrol-udeb - command-line tool to change keyboard layout on GNU/kFreeBSD 
(udeb)
 kldutils   - tools for managing kFreeBSD modules
 kldutils-udeb - tools for managing kFreeBSD modules (udeb)
 ktrace - A kernel call tracer
 

Bug#696514: marked as done (freebsd-net-tools: /sbin/ifconfig: segfaults getting bridge status)

2012-12-29 Thread Debian Bug Tracking System
Your message dated Sun, 30 Dec 2012 00:33:22 +
with message-id e1tp6qa-0003o5...@franck.debian.org
and subject line Bug#696514: fixed in freebsd-utils 9.0+ds1-9
has caused the Debian Bug report #696514,
regarding freebsd-net-tools: /sbin/ifconfig: segfaults getting bridge status
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.)


-- 
696514: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696514
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: freebsd-net-tools
Version: 9.0+ds1-8
Severity: important
File: /sbin/ifconfig
Control: block -1 by 685625
User: debian-bsd@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-bsd@lists.debian.org

Hi,

After an `ifconfig bridge0 create`, attempts to query the bridge status
from ifconfig will trigger a segfault related to printf(), as shown here
running under gdb:

 Starting program: /sbin/ifconfig bridge0
 bridge0: flags=8802BROADCAST,SIMPLEX,MULTICAST metric 0 mtu 1500
   ether f6:10:b5:1:8e:16
 
 Program received signal SIGSEGV, Segmentation fault.
 0x0008010bf21a in vfprintf () from /lib/x86_64-kfreebsd-gnu/libc.so.0.1

This was expected.  I noticed this issue thanks to the buildd log
scanner[1] :

 cc -Wall -g -pipe -fPIC -I. -D_GNU_SOURCE -D__va_list=__builtin_va_list 
 -isystem /usr/include/tirpc -D__FreeBSD_version=__FreeBSD_kernel_version -O2 
 -isystem /usr/include/freebsd 
 -I/build/buildd-freebsd-utils_9.0+ds1-8-kfreebsd-i386-vUpCIn/freebsd-utils-9.0+ds1/debian/local/include
  
 -I/build/buildd-freebsd-utils_9.0+ds1-8-kfreebsd-i386-vUpCIn/freebsd-utils-9.0+ds1/include
  -lbsd  -DINET6 -DINET -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings 
 -Wnested-externs -Wall -g -pipe -fPIC -I. -D_GNU_SOURCE 
 -D__va_list=__builtin_va_list -isystem /usr/include/tirpc 
 -D__FreeBSD_version=__FreeBSD_kernel_version -O2 -std=gnu99 -fstack-protector 
 -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c ifbridge.c
 ifbridge.c: In function 'bridge_addresses':
 ifbridge.c:241:3: warning: implicit declaration of function 'ether_ntoa' 
 [-Wimplicit-function-declaration]
 ifbridge.c:241:3: warning: nested extern declaration of 'ether_ntoa' 
 [-Wnested-externs]
 ifbridge.c:242:7: warning: format '%s' expects argument of type 'char *', but 
 argument 3 has type 'int' [-Wformat]
 ifbridge.c: In function 'bridge_status':
 ifbridge.c:278:25: warning: format '%s' expects argument of type 'char *', 
 but argument 2 has type 'int' [-Wformat]
 ifbridge.c:285:6: warning: format '%s' expects argument of type 'char *', but 
 argument 2 has type 'int' [-Wformat]
 ifbridge.c: In function 'setbridge_static':
 ifbridge.c:473:2: warning: implicit declaration of function 'ether_aton' 
 [-Wimplicit-function-declaration]
 ifbridge.c:473:2: warning: nested extern declaration of 'ether_aton' 
 [-Wnested-externs]
 ifbridge.c:473:5: warning: assignment makes pointer from integer without a 
 cast [enabled by default]
 ifbridge.c: In function 'setbridge_deladdr':
 ifbridge.c:493:5: warning: assignment makes pointer from integer without a 
 cast [enabled by default]

The missing prototypes issue is being discussed already in #685625.  In
this case it results in a truncated pointer being passed to printf.
This probably doesn't affect kfreebsd-i386 as the pointer would be only
32 bits anyway.

[1] https://buildd.debian.org/~brlink/packages/f/freebsd-utils.html

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 9.0-2-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages freebsd-net-tools depends on:
ii  libbsd0   0.4.2-1
ii  libc0.1   2.13-35
ii  libexpat1 2.1.0-1
ii  libipx2   9.0+ds1-3
ii  libkvm0   9.0+ds1-3
ii  libmemstat3   9.0+ds1-3
ii  libnetgraph4  9.0+ds1-3
ii  libsbuf6  9.0+ds1-3
ii  pf9.0+ds1-8

freebsd-net-tools recommends no packages.

freebsd-net-tools suggests no packages.

-- no debconf information
---End Message---
---BeginMessage---
Source: freebsd-utils
Source-Version: 9.0+ds1-9

We believe that the bug you reported is fixed in the latest version of
freebsd-utils, which is due to be installed in the Debian FTP archive.

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 696...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution 

Processing of freebsd-utils_9.0+ds1-9_kfreebsd-amd64.changes

2012-12-29 Thread Debian FTP Masters
freebsd-utils_9.0+ds1-9_kfreebsd-amd64.changes uploaded successfully to 
localhost
along with the files:
  freebsd-utils_9.0+ds1-9.dsc
  freebsd-utils_9.0+ds1-9.debian.tar.gz
  freebsd-utils_9.0+ds1-9_kfreebsd-amd64.deb
  freebsd-utils-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
  kldutils_9.0+ds1-9_kfreebsd-amd64.deb
  kldutils-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
  kbdcontrol_9.0+ds1-9_kfreebsd-amd64.deb
  kbdcontrol-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
  vidcontrol_9.0+ds1-9_kfreebsd-amd64.deb
  freebsd-net-tools_9.0+ds1-9_kfreebsd-amd64.deb
  freebsd-net-tools-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
  freebsd-nfs-server_9.0+ds1-9_kfreebsd-amd64.deb
  freebsd-nfs-common_9.0+ds1-9_kfreebsd-amd64.deb
  geom_9.0+ds1-9_kfreebsd-amd64.deb
  freebsd-geom_9.0+ds1-9_kfreebsd-amd64.deb
  freebsd-ppp_9.0+ds1-9_kfreebsd-amd64.deb
  devd_9.0+ds1-9_kfreebsd-amd64.deb
  devd-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
  ktrace_9.0+ds1-9_kfreebsd-amd64.deb
  pf_9.0+ds1-9_kfreebsd-amd64.deb
  powerd_9.0+ds1-9_kfreebsd-amd64.deb
  mkuzip_9.0+ds1-9_kfreebsd-amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1tp6dr-000114...@franck.debian.org



freebsd-utils_9.0+ds1-9_kfreebsd-amd64.changes ACCEPTED into unstable

2012-12-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 11 Dec 2012 20:28:30 +
Source: freebsd-utils
Binary: freebsd-utils freebsd-utils-udeb kldutils kldutils-udeb kbdcontrol 
kbdcontrol-udeb vidcontrol freebsd-net-tools freebsd-net-tools-udeb 
freebsd-nfs-server freebsd-nfs-common geom freebsd-geom freebsd-ppp devd 
devd-udeb ktrace pf powerd mkuzip
Architecture: source kfreebsd-amd64
Version: 9.0+ds1-9
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-bsd@lists.debian.org
Changed-By: Steven Chamberlain ste...@pyro.eu.org
Description: 
 devd   - device state change monitoring daemon
 devd-udeb  - device state change monitoring daemon (udeb)
 freebsd-geom - modular disk I/O request transformation framework (meta-package)
 freebsd-net-tools - FreeBSD networking tools
 freebsd-net-tools-udeb - FreeBSD networking tools (udeb)
 freebsd-nfs-common - NFS support files common to client and server
 freebsd-nfs-server - FreeBSD server utilities needed for NFS on GNU/kFreeBSD
 freebsd-ppp - FreeBSD Point-to-Point Protocol (PPP) userland daemon
 freebsd-utils - FreeBSD utilities needed for GNU/kFreeBSD
 freebsd-utils-udeb - FreeBSD utilities needed for GNU/kFreeBSD (udeb)
 geom   - modular disk I/O request transformation framework
 kbdcontrol - command-line tool to change keyboard layout on GNU/kFreeBSD
 kbdcontrol-udeb - command-line tool to change keyboard layout on GNU/kFreeBSD 
(udeb)
 kldutils   - tools for managing kFreeBSD modules
 kldutils-udeb - tools for managing kFreeBSD modules (udeb)
 ktrace - A kernel call tracer
 mkuzip - Disk image compression utility
 pf - The OpenBSD Packet Filter
 powerd - System utility for power control and energy saving
 vidcontrol - command-line tool to control the system console on GNU/kFreeBSD
Closes: 694374 695679 696514
Changes: 
 freebsd-utils (9.0+ds1-9) unstable; urgency=low
 .
   [ Steven Chamberlain ]
   * Fix geli initscript to support more than one geli_device as intended.
 (Closes: #694374)
   * If devfs is unavailable (for example in a jail environment) the
 freebsd-utils start action would exit with non-zero status, causing 
postinst
 to fail.  Instead, return zero exit status but print a warning.
 (Closes: #695679)
 .
   [ Christoph Egger ]
   * Import patch from Steven Chamberlain to fix segfault getting bridge
 status (Closes: #696514)
   * Import patch from Steven Chamberlain fixing implicit declarations
   * Upload to unstable
Checksums-Sha1: 
 cf9160bb407df648394555cdba7c4713536071d6 3398 freebsd-utils_9.0+ds1-9.dsc
 06b2718f5d4fe77120f524b6a895c5bd95235d8a 141380 
freebsd-utils_9.0+ds1-9.debian.tar.gz
 9981f76a3a4c962c588fc928c4f5194d360a54e3 264382 
freebsd-utils_9.0+ds1-9_kfreebsd-amd64.deb
 34a94c9d1c2725d131627ba59aaf77c6e181a9fb 12252 
freebsd-utils-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
 6262679eabe23f0597de209bcf07b71407acf04e 40284 
kldutils_9.0+ds1-9_kfreebsd-amd64.deb
 28fa9d354d683d31db64844276b2eeac269fe150 6062 
kldutils-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
 0cb781877e5e892640a88522541e071927d08551 122810 
kbdcontrol_9.0+ds1-9_kfreebsd-amd64.deb
 f0cc0ae6925bf7028d05d615b85317d256b7b75c 40360 
kbdcontrol-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
 b141ea0f8e48fb6a329964732c566803ca8215f3 129214 
vidcontrol_9.0+ds1-9_kfreebsd-amd64.deb
 51f0ad2ec93262f5c6abcf52cc03088e7dfe8051 226294 
freebsd-net-tools_9.0+ds1-9_kfreebsd-amd64.deb
 69739d06127b62c6e3a85ceedfe937e917447733 67932 
freebsd-net-tools-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
 22ec30c5c71243a02aaebcbeb50ecd1c9e7a655b 71058 
freebsd-nfs-server_9.0+ds1-9_kfreebsd-amd64.deb
 49d04e62440db924c0f4da449d261bf61e5e4c3d 79932 
freebsd-nfs-common_9.0+ds1-9_kfreebsd-amd64.deb
 67ec468488b544410e3d4dbbe0e1e65ae4bc9603 165034 
geom_9.0+ds1-9_kfreebsd-amd64.deb
 fa5c265dae565f47a69a20dc9033b728c4ae46a7 22688 
freebsd-geom_9.0+ds1-9_kfreebsd-amd64.deb
 69758053742fdae7a401c6d3bd5b335251a18e6b 278228 
freebsd-ppp_9.0+ds1-9_kfreebsd-amd64.deb
 c6acf1e25d7c4f0fcc4203b36df9717e5c5c5d21 108800 
devd_9.0+ds1-9_kfreebsd-amd64.deb
 99e7516c576fb0cfc0ca20fa597c50ebfe365e6e 62212 
devd-udeb_9.0+ds1-9_kfreebsd-amd64.udeb
 0d8b66208da6660e25dc41ca0b54a9e192c88901 57676 
ktrace_9.0+ds1-9_kfreebsd-amd64.deb
 24d1779012597b71fbfdc73c61c79aba61208c24 206576 pf_9.0+ds1-9_kfreebsd-amd64.deb
 45514d2fe71c5b463a6737cd092c464111688992 34120 
powerd_9.0+ds1-9_kfreebsd-amd64.deb
 b2450106e12884a771448f279a988bbc1778adf6 28444 
mkuzip_9.0+ds1-9_kfreebsd-amd64.deb
Checksums-Sha256: 
 a37df75e7408589f42bd60c208be56d253f50ff5bb9b0d8856e3f6728d3d1be0 3398 
freebsd-utils_9.0+ds1-9.dsc
 51e44de20b80cd1f49c24562b30977ea8ad9ce8a4e9d0423de805b4d8d89f54d 141380 
freebsd-utils_9.0+ds1-9.debian.tar.gz
 22ba61cd4df0e23e1c6e798a821e535f4dbf446d58cf8849b26e9ef7b8212fff 264382 
freebsd-utils_9.0+ds1-9_kfreebsd-amd64.deb
 634f3b0a6c40421ddfa5323ce9dc33943118f9690050b6b4a8433ca402464b44 12252 
freebsd-utils-udeb_9.0+ds1-9_kfreebsd-amd64.udeb