Bug#849542: PIE specs ignored even with DEB_BUILD_MAINT_OPTIONS hardening

2016-12-28 Thread James Clarke
Package: gcc-6 Version: 6.2.1-7 Severity: important The check introduced to ignore dpkg's PIE specs when PIE is not enabled by default is wrong, and ends up ignoring them even when hardening=+all or hardening=+pie is present in DEB_BUILD_MAINT_OPTIONS. The current check is: > if (ignore_pi

Re: Bug#852215: FTBFS on non-release architectures

2017-02-10 Thread James Clarke
On 3 Feb 2017, at 15:28, Cyril Brulebois wrote: > James Clarke (2017-01-22): >> As you know, debian-installer does not build on non-release >> architectures, since it tries to build for stretch. Some architectures >> also have some of the needed udebs in the unreleased su

Re: Bug#833829: libgcc-6-dev: Missing crtfastmath.o on kfreebsd-*

2017-05-15 Thread James Clarke
On Tue, Sep 06, 2016 at 03:17:52PM +0200, Andreas Beckmann wrote: > Control: retitle -1 libgcc-6-dev: Missing crtfastmath.o on kfreebsd-* > Control: affects -1 + src:vlc > > On Tue, 9 Aug 2016 11:39:54 +0200 Matthias Klose wrote: > > > I'm unable to build a package because crtfastmath.o is missing

[PATCH 2/7] df: Use statvfs instead of non-standard statfs

2017-10-07 Thread James Clarke
Platforms differ on what their implementations of statfs include. Importantly, FreeBSD's does not include a f_frsize member inside struct statfs. However, statvfs is specified by POSIX and includes everything we need, so we can just use that instead. Signed-off-by: James Clarke --- core

[PATCH 3/7] networking: Fall back on IPPROTO_RAW when SOL_RAW is not defined

2017-10-07 Thread James Clarke
Signed-off-by: James Clarke --- networking/ping.c | 8 networking/traceroute.c | 8 2 files changed, 16 insertions(+) diff --git a/networking/ping.c b/networking/ping.c index 774f8f3e0..d1d59d545 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -135,6 +135,14

[PATCH 6/7] grep: Skip grepping symlinks to directories

2017-10-07 Thread James Clarke
this recursive_action behaviour is required for the correct functioning of other applets, such as tar, grep should handle this special case and skip any such symlinks. Signed-off-by: James Clarke --- findutils/grep.c | 22 -- 1 file changed, 20 insertions(+), 2 deletions(-)

[PATCH 5/7] {udp_io,traceroute}: Standardise IPv6 PKTINFO handling to be portable

2017-10-07 Thread James Clarke
-by: James Clarke --- libbb/udp_io.c | 8 ++-- networking/traceroute.c | 8 +++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/libbb/udp_io.c b/libbb/udp_io.c index 6e3ef484e..68355e6c4 100644 --- a/libbb/udp_io.c +++ b/libbb/udp_io.c @@ -8,6 +8,10

[PATCH 4/7] xfuncs: Handle missing non-POSIX termios constants

2017-10-07 Thread James Clarke
Signed-off-by: James Clarke --- libbb/xfuncs.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 9cbfb2836..95dac656a 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -22,6 +22,16 @@ */ #include "libbb.h" +#ifndef IMAXBEL

[PATCH 0/7] Hurd and GNU/kFreeBSD portability fixes

2017-10-07 Thread James Clarke
grep.testdir/foo/file:1 grep.testdir/symfoo:0 Regards, James James Clarke (7): blkdiscard: Only build on Linux df: Use statvfs instead of non-standard statfs networking: Fall back on IPPROTO_RAW when SOL_RAW is not defined xfuncs: Handle missing non-POSIX termios constants

[PATCH 1/7] blkdiscard: Only build on Linux

2017-10-07 Thread James Clarke
Signed-off-by: James Clarke --- util-linux/blkdiscard.c | 1 + 1 file changed, 1 insertion(+) diff --git a/util-linux/blkdiscard.c b/util-linux/blkdiscard.c index 5863f0aab..e4902e5b5 100644 --- a/util-linux/blkdiscard.c +++ b/util-linux/blkdiscard.c @@ -8,6 +8,7 @@ //config:config BLKDISCARD

[PATCH 7/7] libbb.h: Handle missing HOST_NAME_MAX; ensure MAXFOOLEN agrees with FOO_MAX

2017-10-07 Thread James Clarke
Signed-off-by: James Clarke --- include/libbb.h | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/include/libbb.h b/include/libbb.h index daccf154a..56f4f4cb3 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -181,7 +181,24 @@ extern char **environ

Re: [PATCH 4/7] xfuncs: Handle missing non-POSIX termios constants

2017-10-08 Thread James Clarke
On 8 Oct 2017, at 02:34, Kang-Che Sung wrote: > On Sun, Oct 8, 2017 at 1:53 AM, James Clarke wrote: >> diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c >> index 9cbfb2836..95dac656a 100644 >> --- a/libbb/xfuncs.c >> +++ b/libbb/xfuncs.c >> @@ -22,6 +22,

Re: [PATCH 7/7] libbb.h: Handle missing HOST_NAME_MAX; ensure MAXFOOLEN agrees with FOO_MAX

2017-10-08 Thread James Clarke
On 8 Oct 2017, at 02:40, Kang-Che Sung wrote: > On Sun, Oct 8, 2017 at 1:53 AM, James Clarke wrote: >> Signed-off-by: James Clarke >> --- >> include/libbb.h | 19 ++- >> 1 file changed, 18 insertions(+), 1 deletion(-) >> >> diff --git a/inc

Re: [PATCH 4/7] xfuncs: Handle missing non-POSIX termios constants

2017-10-08 Thread James Clarke
[Dropping debian-h...@lists.debian.org as the Hurd defines all of them] On 8 Oct 2017, at 12:18, Kang-Che Sung wrote: > 2017年10月8日 18:50,"James Clarke" 寫道: >> On 8 Oct 2017, at 02:34, Kang-Che Sung wrote: >> > On Sun, Oct 8, 2017 at 1:53 AM, James Clarke wro

Re: Bug#850717: procps: [kfreebsd] pkill fails, number_of_signals changed

2017-10-13 Thread James Clarke
Control: forwarded -1 https://gitlab.com/procps-ng/procps/merge_requests/52 Control: affects -1 src:cmake On Tue, Jan 10, 2017 at 12:16:20PM +, Steven Chamberlain wrote: > Hi, > > I was wrong that this bug breaks functionality of pkill. It still > works, despite printing the warning. > > So t

Re: Bug#878878: default-dbus-session-bus: Not installable on non-Linux

2017-10-17 Thread James Clarke
On 17 Oct 2017, at 15:12, Simon McVittie wrote: > > Control: tags -1 confirmed pending > Control: severity -1 wishlist > > On Tue, 17 Oct 2017 at 13:41:31 +0100, James Clarke wrote: >> Please modify dbus, either with more complicated Provides > > This requires

Re: Bug#878878: default-dbus-session-bus: Not installable on non-Linux

2017-10-17 Thread James Clarke
On 17 Oct 2017, at 22:39, Samuel Thibault wrote: > > Hello, > > It seems I missed the whole thread, so found the same issue > independently :) > > Simon McVittie, on mar. 17 oct. 2017 16:21:06 +0100, wrote: >> Thanks. Hmm, so the error is: >> >>sbuild-build-depends-opencv-dummy : Depends:

Re: isc-dhcpd vs udhcpd

2017-10-23 Thread James Clarke
On 23 Oct 2017, at 08:36, Ondřej Surý wrote: > > Hi, > > while revising bind9 udebs, KiBi suggested that non-Linux architectures > might be using isc-dhcpd instead of udhcpd due some problems and it > might be a good idea to revise the decision now that we have a busybox > maintainer? That's no

Re: Future of kFreeBSD in Debian unstable

2018-03-02 Thread James Clarke
32K > L2 cache: 256K > L3 cache: 8192K > > I'll provide a VM with the size you ask for, and will install the > required packages/admit any of you normally doing such stuff. > > The download speed is 10 Mbit/sec but upload speed is only 1 Mbit/sec > due

Re: Bug#897168: proftp: FTBFS on kfreebsd

2018-04-30 Thread James Clarke
On 29 Apr 2018, at 22:06, Hilmar Preuße wrote: > > On 29.04.2018 14:01, Hilmar Preuße wrote: > > Hi debian-bsd people, > > I just noticed that our package fails to build on kfreebsd: > > https://buildd.debian.org/status/fetch.php?pkg=proftpd-dfsg&arch=kfreebsd-amd64&ver=1.3.6-2&stamp=152499694

Re: Bug#897168: proftp: FTBFS on kfreebsd

2018-04-30 Thread James Clarke
On 30 Apr 2018, at 19:22, Hilmar Preuße wrote: > On 30.04.2018 13:17, James Clarke wrote: >> On 29 Apr 2018, at 22:06, Hilmar Preuße wrote: >>> On 29.04.2018 14:01, Hilmar Preuße wrote: > > Hi James, > >>> I just noticed that our package fails

Re: no more daily-images?

2018-05-01 Thread James Clarke
On 1 May 2018, at 17:30, igo...@free.fr wrote: > > hi > > kfreebsd.eu is down > > looking for kfreebsd iso from https://d-i.debian.org/daily-images/ > > kfreebsd directories are empty > > something happened around january 11 > > anyone aware of what's going on? The d-i daily images are built

Re: Future of kFreeBSD in Debian unstable

2018-05-02 Thread James Clarke
On 2 May 2018, at 10:52, Svante Signell wrote: > On Mon, 2018-04-02 at 20:16 +0100, James Clarke wrote: >> On 2 Apr 2018, at 20:04, Svante Signell wrote: >>> On Mon, 2018-04-02 at 19:33 +0200, Svante Signell wrote: >>>> On Sat, 2018-03-31 at 10:51 +0100, James Clark

Re: Bug#897416: mpfr4: FTBFS on kfreebsd-amd64

2018-05-02 Thread James Clarke
Control: reassign -1 gcc-7 Control: retitle -1 gcc: Decimal float support is not enabled on kfreebsd-amd64 On 2 May 2018, at 10:38, Svante Signell wrote: > > Source: mpfr4 > Version: 4.0.1-1 > Severity: important > Tags: patch > User: debian-bsd@lists.debian.org > Usertags: kfreebsd > > Hi, >

Re: Bug#897416: mpfr4: FTBFS on kfreebsd-amd64

2018-05-03 Thread James Clarke
On 3 May 2018, at 09:21, Svante Signell wrote: > On Wed, 2018-05-02 at 12:51 +0100, James Clarke wrote: >> Control: reassign -1 gcc-7 >> Control: retitle -1 gcc: Decimal float support is not enabled on kfreebsd- >> amd64 >> >> On 2 May 2018, at 10:38, Svant

Re: kamp down

2018-05-11 Thread James Clarke
On 11 May 2018, at 21:58, Svante Signell wrote: > > I'm CC:ing this to debian-kbsd too! > > On Sun, 2018-05-06 at 19:31 +0200, Svante Signell wrote: >> On Sat, 2018-05-05 at 01:45 +0100, James Clarke wrote: > > Pasted from irc, this is becoming a bad story. Do yo

Re: kamp down

2018-05-11 Thread James Clarke
On 11 May 2018, at 23:29, Svante Signell wrote: > On Fri, 2018-05-11 at 22:11 +0100, James Clarke wrote: >> On 11 May 2018, at 21:58, Svante Signell >> wrote: > > Well, if I build packages and want them installed in the chroot .tar.gz > used for building those packages,

Re: kamp down

2018-05-12 Thread James Clarke
On 12 May 2018, at 09:15, Svante Signell wrote: > On Fri, 2018-05-11 at 23:45 +0100, James Clarke wrote: >> On 11 May 2018, at 23:29, Svante Signell >> wrote: >>> On Fri, 2018-05-11 at 22:11 +0100, James Clarke wrote: >>>> On 11 May 2018, at 21:58, Svante Sign

Re: Request for kFreeBSD (and Hurd) porters

2018-07-30 Thread James Clarke
Hi Steven, Glad to see you back on the mailing list! On Mon, Jul 30, 2018 at 10:19 AM, Svante Signell wrote: > On Mon, 2018-07-30 at 09:17 +0100, Steven Chamberlain wrote: >> Hi, >> >> Svante Signell wrote: >> > The Debian GNU/kFreeBSD port recently obtained a buildd building >> > packages for th

Re: Bug#912521: perl: 5.28 FTBFS on kfreebsd: test failures

2018-11-19 Thread James Clarke
> On 31 Oct 2018, at 22:38, Niko Tyni wrote: > > Source: perl > Version: 5.28.0-3 > Severity: important > X-Debbugs-Cc: debian-bsd@lists.debian.org > Tags: ftbfs > > This package failed to build on kfreebsd-amd64. > > > https://buildd.debian.org/status/fetch.php?pkg=perl&arch=kfreebsd-amd64&v

Re: Please binNMU/RM a handfull packages on kfreebsd-* and hurd

2018-12-19 Thread James Clarke
On 19 Dec 2018, at 22:28, Sebastian Andrzej Siewior wrote: > > Hi, > > looking at the cruft-report for curl there is this: > > |* source package curl version 7.62.0-1 no longer builds > | binary package(s): libcurl3 > | - broken Depends: > [...] > > I didn't check all packages but some the

New GNU/kFreeBSD Porterbox

2019-02-22 Thread James Clarke
Hi, We have set up a new GNU/kFreeBSD porterbox, lemon.debian.net[0], kindly hosted by Gurkan Myczko, available to all DDs. The machine is set up to closely mirror many aspects of the standard Debian porterboxes, so you can use the usual dd-schroot-cmd workflow as described on the DSA website[1].

Bug#923197: protobuf: Enable and fix for !linux

2019-02-24 Thread James Clarke
Source: protobuf Version: 3.6.1-3 X-Debbugs-Cc: debian-bsd@lists.debian.org, debian-h...@lists.debian.org Hi, For some reason, the "solution" for #837310 was to restrict protobuf to build only on Linux architectures. That doesn't solve anything other than remove the red on the buildd.d.o pages. Lo

Re: Bug#924390: kfreebsd mount missing libbsd.so.0 -> it is not installed.

2019-03-12 Thread James Clarke
Control: tags -1 moreinfo On Tue, Mar 12, 2019 at 01:23:53PM +0100, Thomas Schweikle wrote: > Package: kfreeBSD-kernel This package doesn't exist. If you insist on not using reportbug, please do ensure that you file against a valid package. However, in this case, I don't actually know where in t

Re: Hurd-i386 and kfreebsd-{i386,amd64} removal

2019-04-14 Thread James Clarke
On 14 Apr 2019, at 14:14, Samuel Thibault wrote: > Svante Signell, le dim. 14 avril 2019 14:29:48 +0200, a ecrit: >> On Sun, 2019-04-14 at 11:33 +0200, Samuel Thibault wrote: >>> Svante Signell, le dim. 14 avril 2019 10:52:19 +0200, a ecrit: I cannot follow your reasoning here, e.g. at

Re: FTBFS on kfreebsd-* due to test-suite failures

2019-07-02 Thread James Clarke
Control: reopen -1 > On 2 Jul 2019, at 19:53, Michael Biebl wrote: > > On Tue, 12 May 2015 13:38:12 +0200 Michael Biebl wrote: >> Source: rsyslog >> Version: 8.9.0-3 >> Severity: important >> User: debian-bsd@lists.debian.org >> Usertags: kfreebsd >> >> As can be seen at [1] or [2], rsyslog fa

Re: FTBFS on kfreebsd-* due to test-suite failures

2019-07-02 Thread James Clarke
On 2 Jul 2019, at 20:15, Michael Biebl wrote: > > Hi James > > Am 02.07.19 um 20:55 schrieb James Clarke: >> Control: reopen -1 >> >>> On 2 Jul 2019, at 19:53, Michael Biebl wrote: >>> >>> On Tue, 12 May 2015 13:38:12 +0200 Michael Biebl

Re: Bug#932258: console-setup-freebsd: missing dependency

2019-07-17 Thread James Clarke
On 17 Jul 2019, at 10:55, Holger Wansing wrote: > > Hi, > > Cyril Brulebois wrote: >> Héctor Orón Martínez (2019-07-17): >>> Package: console-setup-freebsd >>> Version: 1.191 >>> Severity: grave >>> >>> >>> Dear Maintainer, >>> >>> console-setup-freebsd has a dependency on vidcontrol, whic