Bug#1078371: Type missmatch, does not work on all architectures

2024-08-10 Thread Bastian Blank
Hi

I just looked at this bug and I wonder if nslint works correctly at all.
There are type mismatches in this exact mentioned spot.

qsort is called with "struct item **", so cmpaddr always gets "struct
item *".

| struct item **itemlist;
| qsort(itemlist, n, sizeof(itemlist[0]), cmpaddr);

But it interprets them as "const struct network *", not even as "const
struct addr *" as the name might imply.

| n1 = (const struct network *)arg1;
| n2 = (const struct network *)arg2;

I would assume this only works because on little endian the lower bytes
of the pointer to the hostname re-interpreted as family will change
between single allocations, but on big endian it will read the upper
bytes that do not change.

| if (n1->family != n2->family)
|   return ((n1->family == AF_INET) ? -1 : 1);

Bastian

-- 
We have found all life forms in the galaxy are capable of superior
development.
-- Kirk, "The Gamesters of Triskelion", stardate 3211.7



Bug#1078371: Type missmatch, does not work on all architectures

2024-08-11 Thread Bastian Blank
Hi

On Sun, Aug 11, 2024 at 08:43:23AM +0200, Petter Reinholdtsen wrote:
> but alas, did not really solve much.

This is unsurprising, as the tests in 3.2-3 are just broken.  At least
both the bind and bind-broken directory are identical and the
"validate-bind-zones" test fails.

| ~/nslint-3.2/debian/tests$ ./validate-bind-zones 
| success: no error in zone detected
| error: no error in supposed incorrect zone detected.
| ~/nslint-3.2/debian/tests$ diff -urN bind bind-broken/ && echo none || echo 
diff
| none

So first step is to get working tests.  Second is to actually test what
you are trying to see.

Bastian

-- 
Change is the essential process of all existence.
-- Spock, "Let That Be Your Last Battlefield", stardate 5730.2



Bug#1078371: Type missmatch, does not work on all architectures

2024-08-11 Thread Bastian Blank
On Sun, Aug 11, 2024 at 09:32:10PM +0200, Bastian Blank wrote:
> On Sun, Aug 11, 2024 at 08:43:23AM +0200, Petter Reinholdtsen wrote:
> > but alas, did not really solve much.
> 
> This is unsurprising, as the tests in 3.2-3 are just broken.

Also gcc shows buffer overflows:

| ./nslint.c: In function ‘checkwks’: 
| ./nslint.c:567:39: warning: ‘%s’ directive writing up to 1023 bytes into a 
region of size 512 [-Wformat-overflow=]  
|   567 | (void)sprintf(psbuf, "%s/%s", serv, proto); 
|   |   ^~
| ./nslint.c:567:23: note: ‘sprintf’ output 2 or more bytes (assuming 1025) 
into a destination of size 512
|   567 | (void)sprintf(psbuf, "%s/%s", serv, proto); 
|   |   ^~~~  
| ./nslint.c:577:42: warning: ‘%s’ directive writing up to 511 bytes into a 
region of size 132 [-Wformat-overflow=]   
|   577 | sprintf(errstr, "%s unknown", psbuf); 
  
|   |  ^~   ~   
  
| ./nslint.c:577:25: note: ‘sprintf’ output between 9 and 520 bytes into a 
destination of size 132
|   577 | sprintf(errstr, "%s unknown", psbuf); 
  
|   | ^~~~ 

And an instrumented cmpaddr function shows the condition that reaches
abort():

| $ nslint -d -c named.conf 
| got family: 2, 2
| got family: 2, 2
| got family: -520095920, -517846240
| got family: 0, 2
| got family: 2, 2
| nslint: 19/131072 items used, 0 errors

Fixing the first error, aka replace with cmpitemaddr does not work
either, because the qsort calls it with "struct item **", not "struct
item *".  The cmpitemaddr function is unused otherwise.

Now I have to ask you, if you really are capable to maintain a package
in this state?

Bastian

-- 
Vulcans worship peace above all.
-- McCoy, "Return to Tomorrow", stardate 4768.3



Bug#1078371: Type missmatch, does not work on all architectures

2024-08-14 Thread Bastian Blank
On Mon, Aug 12, 2024 at 07:31:23AM +0200, Petter Reinholdtsen wrote:
> > Now I have to ask you, if you really are capable to maintain a package
> > in this state?
> I absolutely do not plan to stand in the way of anyone willing to adapt
> this package.

Maybe you just should convert this into a removal bug then?

It is clearly broken in multiple ways, unmaintained both upstream and
within Debian.

Bastian

-- 
Fascinating, a totally parochial attitude.
-- Spock, "Metamorphosis", stardate 3219.8



Bug#596548: tpm-tools - tpm_unsealdata changes file contents

2010-09-12 Thread Bastian Blank
Package: tpm-tools
Version: 1.3.3-2
Severity: important
File: /usr/bin/tpm_unsealdata

tpm_unsealdata changes the data on output to stdout. For no particular
reason, it prepends and appends the string "\n\n" to the output.
This makes it impossible to use this output of possibly binary data
directly as input for another toool.

Bastian

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

Kernel: Linux 2.6.35-trunk-amd64 (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/dash

Versions of packages tpm-tools depends on:
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libssl0.9.8 0.9.8o-2 SSL shared libraries
ii  libtpm-unseal0  1.3.3-2  Management tools for the TPM hardw
ii  libtspi10.3.5-2  open-source TCG Software Stack (li
ii  opencryptoki2.2.8+dfsg-4 PKCS#11 implementation for Linux (
ii  trousers0.3.5-2  open-source TCG Software Stack (da

tpm-tools recommends no packages.

tpm-tools suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100912145231.5702.82742.report...@bushhammer.waldi.eu.org



Bug#603450: Is 603450 realy release critical?

2010-12-08 Thread Bastian Blank
On Wed, Dec 08, 2010 at 08:45:30AM +0100, Alexander Reichle-Schmehl wrote:
> #603450 is a bug (currently with severity grave, Justification: user
> security hole), as offlineimap does no ssl certificate checking.

Could you explain why it should be acceptable to announce secure
operation but ignore the very basic principles of it? #564690 is an old
example of the same problem.

> There's patch floating arround, which has a major regression: It doesn't
> work for users of self signed certificates.

>From what I've seen in the bug, even you should be able to fix that.

Bastian

-- 
... bacteriological warfare ... hard to believe we were once foolish
enough to play around with that.
-- McCoy, "The Omega Glory", stardate unknown



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101208093723.ga30...@wavehammer.waldi.eu.org



Bug#692470: ncpfs - ncpmount fiddles with /etc/mtab

2012-11-06 Thread Bastian Blank
Package: ncpfs
Version: 2.2.6-8
Severity: serious

ncpmount tries to fiddle with /etc/mtab and gives weird warnings about
it. /etc/mtab is a symlink since some time.

| Can't get /etc/mtab~ lock file

Bastian

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121106152342.700.90172.report...@rockhammer.waldi.eu.org



Bug#692472: ncpfs - Fails with Cannot convert kernel release "3.6-trunk-amd64" to number

2012-11-06 Thread Bastian Blank
Package: ncpfs
Version: 2.2.6-8
Severity: grave

ncpmount fails on current Debian kernels with:
| Cannot convert kernel release "3.6-trunk-amd64" to number

It expects three digits, but this is not longer the case.

Bastian

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121106152524.795.34193.report...@rockhammer.waldi.eu.org



Bug#692471: ncpfs - Fails to build to times

2012-11-06 Thread Bastian Blank
Package: ncpfs
Version: 2.2.6-8
Severity: serious

ncpfs fails to build again:

| dpkg-source: info: using options from ncpfs-2.2.6/debian/source/options: 
--compression=bzip2 --compression-level=9
| dpkg-source: info: using source format `3.0 (quilt)'
| dpkg-source: info: building ncpfs using existing ./ncpfs_2.2.6.orig.tar.gz
| dpkg-source: warning: ignoring deletion of file config.sub
| dpkg-source: warning: ignoring deletion of file config.guess
| dpkg-source: warning: ignoring deletion of file po/de.gmo
| dpkg-source: warning: ignoring deletion of file po/remove-potcdate.sed
| dpkg-source: info: local changes detected, the modified files are:
|  ncpfs-2.2.6/include/private/libncp-atomic.h
| dpkg-source: error: aborting due to unexpected upstream changes, see 
/tmp/ncpfs_2.2.6-8.1.diff.BkkHwN

Bastian

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121106152411.770.54213.report...@rockhammer.waldi.eu.org



Bug#692929: ncpfs - ncpmount is suid root

2012-11-10 Thread Bastian Blank
Package: ncpfs
Severity: serious

ncpmount is suid root. A quick check through last patches for security
problems and the code itself don't make me believe this is save.

The code uses weird checks including calls to clone(2). As ncp is
mostly dead this is unlikely to change.

I think it is best to remove the suid flag for now and if noone wants to
do anything about it drop the package.

Bastian

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121110232235.6623.38367.report...@rockhammer.waldi.eu.org



Bug#692472: ncpfs - Fails with Cannot convert kernel release "3.6-trunk-amd64" to number

2012-11-10 Thread Bastian Blank
On Sat, Nov 10, 2012 at 10:33:56PM +0100, Arthur de Jong wrote:
> Attached is a patch, suitable for being dropped in debian/patches that
> short-circuits the test altogether. I haven't tested it because I
> haven't used IPX in a few years.

I'm preparing a fixed package.

Bastian

-- 
Ahead warp factor one, Mr. Sulu.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121110232350.ga22...@waldi.eu.org



Bug#130891: util-linux_2.11n-3 (unstable): fails to build

2002-01-26 Thread Bastian Blank
Package: util-linux
Version: 2.11n-3
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of util-linux_2.11n-3 on ipmsun1 by sbuild/m68k 1.159
> Build started at 20020126-0336
> **
[...]
> touch build
>  /usr/bin/fakeroot debian/rules binary-arch
> test -f fdisk/fdisk.c -a -f debian/rules
> test root = "`whoami`"
> rm -rf debian/tmp*
> install -d 
> debian/tmp/{DEBIAN,bin,sbin,etc/init.d,usr/{share/locale/{cs,da,de,es,fr,it,ja,nl,pt_BR,sv,tr}/LC_MESSAGES,lib/mime/packages,sbin,bin,share/man/{man1,man8},share/info,lib,share/util-linux,share/doc/util-linux/examples,share/lintian/overrides}}
> install -s sys-utils/{arch,dmesg} text-utils/more  debian/tmp/bin
> install -s disk-utils/{mkswap,blockdev} login-utils/agetty disk-utils/raw 
> hwclock/hwclock mount/pivot_root disk-utils/{fsck.minix,mkfs,mkfs.minix} 
> debian/tmp/sbin
> install: cannot stat `mount/pivot_root': No such file or directory
> make: *** [binary-arch] Error 1
> **
> Build finished at 20020126-0406
> FAILED [dpkg-buildpackage died]

bastian

-- 
You can't evaluate a man by logic alone.
-- McCoy, "I, Mudd", stardate 4513.3



Bug#130891: util-linux RC bug

2002-01-26 Thread Bastian Blank
util-linux_2.11n-2_m68k log:
| You have  and openpty()
| You have wide character support
| You have __NR_pivot_root
| You have a tm_gmtoff field in struct tm
| Your rpcgen seems to work

util-linux_2.11n-3_m68k log:
| You have  and openpty()
| You have wide character support
| You don't have __NR_pivot_root
| You have a tm_gmtoff field in struct tm
| Your rpcgen seems to work

the check looks like this:
| #include 
| int main(void)
| {
| return __NR_pivot_root;
| }

i don't know if this is a kernel error or a broken check.

bastian

-- 
The sight of death frightens them [Earthers].
-- Kras the Klingon, "Friday's Child", stardate 3497.2



Bug#268675: snacc_1.3bbn-5 (testing): fails to build

2004-08-28 Thread Bastian Blank
Package: snacc
Version: 1.3bbn-5
Severity: serious
Tags: sarge

There was an error while trying to build your package on sarge:

> Automatic build of snacc_1.3bbn-5 on pipi2 by sbuild/i386 1.169
[...]
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper (>> 3.0.0), bison, flex, docbook-xsl (>= 1.56.1-2), 
> xsltproc, autoconf (>= 2.54), automake1.7, autotools-dev, libtool (>= 1.4.3)
> Checking for already installed source dependencies...
> debhelper: missing
> bison: missing
> flex: missing
> docbook-xsl: missing
> xsltproc: missing
> autoconf: missing
> automake1.7: missing
> autotools-dev: missing
> libtool: missing
[...]
> Checking correctness of source dependencies...
> --
> dpkg-source: extracting snacc in snacc-1.3bbn
> dpkg-buildpackage: source package is snacc
> dpkg-buildpackage: source version is 1.3bbn-5
> dpkg-buildpackage: source maintainer is W. Borgert <[EMAIL PROTECTED]>
> dpkg-buildpackage: host architecture is i386
[...]
> g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../../c++-lib/inc -DMETA=0 -g -O2 -MT 
> tcl-if.lo -MD -MP -MF .deps/tcl-if.Tpo -c tcl-if.C  -fPIC -DPIC -o 
> .libs/tcl-if.lo
> tcl-if.C:31:23: strstream.h: No such file or directory
> In file included from /usr/include/c++/3.3/backward/fstream.h:31,
>  from tcl-if.C:32:
> /usr/include/c++/3.3/backward/backward_warning.h:32:2: warning: #warning This 
> file includes at least one deprecated or antiquated header. Please consider 
> using one of the 32 headers found in section 17.4.1.2 of the C++ standard. 
> Examples include substituting the  header for the  header for C++ 
> includes, or  instead of the deprecated header . To 
> disable this warning use -Wno-deprecated.
[...]

g++ 3.3 is not longer able to build such pre-ANSI-C++ sources.




Bug#469895: muine - FTBFS: cp: cannot stat `debian/tmp/etc/gconf/schemas/muine.schemas': No such file or directory

2008-03-07 Thread Bastian Blank
Package: muine
Version: 0.8.8-1
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of muine_0.8.8-1 on lxdebian.bfinv.de by sbuild/s390 98
[...]
>  /usr/bin/fakeroot debian/rules binary-arch
> dh_testdir
> dh_testroot
> dh_install -a --list-missing
> cp: cannot stat `debian/tmp/etc/gconf/schemas/muine.schemas': No such file or 
> directory
> dh_install: command returned error code 256
> make: *** [binary-arch] Error 1
> dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch gave 
> error exit status 2
> **
> Build finished at 20080225-2256
> FAILED [dpkg-buildpackage died]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#472323: libxml++ - FTBFS: make[1]: doxygen: Command not found

2008-03-23 Thread Bastian Blank
Package: libxml++
Version: 1.0.4-2
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of libxml++_1.0.4-2 on lxdebian.bfinv.de by sbuild/s390 98
[...]
> dh_testdir
> /usr/bin/make -C docs/reference
> make[1]: Entering directory `/build/buildd/libxml++-1.0.4/docs/reference'
> rm 1.0/html/*.html
> rm: cannot remove `1.0/html/*.html': No such file or directory
> make[1]: [clean-local] Error 1 (ignored)
> rm -f libxml++-reference-html.tar.gz
> doxygen Doxyfile
> make[1]: doxygen: Command not found
> make[1]: *** [1.0/html/index.html] Error 127
> make[1]: Leaving directory `/build/buildd/libxml++-1.0.4/docs/reference'
> make: *** [build-indep-stamp] Error 2
> dpkg-buildpackage: failure: debian/rules build gave error exit status 2
> **
> Build finished at 20080318-0436
> FAILED [dpkg-buildpackage died]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#415367: tex-guy - writes outside of the build directory

2007-03-18 Thread Bastian Blank
Package: tex-guy
Version: 1.2.4-7
Severity: serious

The tex-guy build writes outside of the build directory.

| $ grep ln configure.in | head -n 1
| (cd .. && ln -s tex-guy-1.2.4 tex-guy)

Bastian

-- 
A father doesn't destroy his children.
-- Lt. Carolyn Palamas, "Who Mourns for Adonais?",
   stardate 3468.1.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#415669: wmsysmon - FTBFS: cc1: error: unrecognized command line option "-m486"

2007-03-20 Thread Bastian Blank
Package: wmsysmon
Version: 0.7.7-5
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of wmsysmon_0.7.7-5 on lxdebian.bfinv.de by sbuild/s390 98
[...]
> gcc -Wall -O3 -m486 -fomit-frame-pointer -I/usr/X11R6/include-c -o 
> src/wmgeneral.o src/wmgeneral.c
> cc1: error: unrecognized command line option "-m486"
> make[1]: *** [src/wmgeneral.o] Error 1
> make[1]: Leaving directory `/build/buildd/wmsysmon-0.7.7'
> make: *** [install] Error 2
> **
> Build finished at 20070320-2305
> FAILED [dpkg-buildpackage died]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#431199: kwave - FTBFS: error: cannot allocate an object of abstract type 'FlacDecoder'

2007-06-30 Thread Bastian Blank
Package: kwave
Version: 0.7.7-2+b1
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of kwave_0.7.7-2+b1 on debian-31.osdl.marist.edu by 
> sbuild/s390 98
[...]
> plugin "codec_flac": compiling 'FlacCodecPlugin.cpp'
> FlacCodecPlugin.cpp: In member function 'virtual void 
> FlacCodecPlugin::load(QStringList&)':
> FlacCodecPlugin.cpp:46: error: cannot allocate an object of abstract type 
> 'FlacEncoder'
> FlacEncoder.h:35: note:   because the following virtual functions are pure 
> within 'FlacEncoder':
> /usr/include/FLAC++/encoder.h:184: note:  virtual 
> FLAC__StreamEncoderWriteStatus FLAC::Encoder::Stream::write_callback(const 
> FLAC__byte*, size_t, unsigned int, unsigned int)
> FlacCodecPlugin.cpp:50: error: cannot allocate an object of abstract type 
> 'FlacDecoder'
> FlacDecoder.h:41: note:   because the following virtual functions are pure 
> within 'FlacDecoder':
> /usr/include/FLAC++/decoder.h:159: note:  virtual 
> FLAC__StreamDecoderReadStatus 
> FLAC::Decoder::Stream::read_callback(FLAC__byte*, size_t*)
> make[4]: *** [FlacCodecPlugin.o] Error 1
> make[4]: Leaving directory `/build/buildd/kwave-0.7.7/plugins/codec_flac'
> make[3]: *** [all] Error 1
> make[3]: Leaving directory `/build/buildd/kwave-0.7.7/plugins'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/build/buildd/kwave-0.7.7'
> make[1]: *** [all] Error 2
> make[1]: Leaving directory `/build/buildd/kwave-0.7.7'
> make: *** [build-stamp] Error 2
> **
> Build finished at 20070626-1534
> FAILED [dpkg-buildpackage died]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#454964: adplug - FTBFS: undefined reference to `binostream::writeFloat(__float128, binio::FType)'

2007-12-08 Thread Bastian Blank
Package: adplug
Version: 2.0.1-6
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of adplug_2.0.1-6 on debian-31.osdl.marist.edu by sbuild/s390 
> 98
[...]
> /bin/sh ../libtool --tag=CXX --mode=link g++  -g -O2 
> ../src/.libs/libadplug.la -lbinio -o adplugdb  adplugdb.o  -lstdc++ 
> mkdir .libs
> g++ -g -O2 -o .libs/adplugdb adplugdb.o  ../src/.libs/libadplug.so 
> /usr/lib/libbinio.so -lstdc++
> ../src/.libs/libadplug.so: undefined reference to 
> `binostream::writeFloat(__float128, binio::FType)'
> collect2: ld returned 1 exit status
> make[2]: *** [adplugdb] Error 1
> make[2]: Leaving directory `/build/buildd/adplug-2.0.1/adplugdb'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/build/buildd/adplug-2.0.1'
> make: *** [build-stamp] Error 2
> dpkg-buildpackage: failure: debian/rules build gave error exit status 2
> **
> Build finished at 20071205-1038
> FAILED [dpkg-buildpackage died]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352026: nco - FTBFS: Build depends against not available package netcdfg3

2006-02-09 Thread Bastian Blank
Package: nco
Version: 2.9.9-1+b1
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of nco_2.9.9-1+b1 on debian-31 by sbuild/s390 85
[...]
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper (>> 4.0.0), netcdfg3, netcdfg-dev, texinfo
[...]
> Package netcdfg3 is not available, but is referred to by another package.
> This may mean that the package is missing, has been obsoleted, or
> is only available from another source
> However the following packages replace it:
>   libnetcdf3 libnetcdf++3
> E: Package netcdfg3 has no installation candidate

Bastian

-- 
Killing is stupid; useless!
-- McCoy, "A Private Little War", stardate 4211.8


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#393973: phat - FTBFS: cp: cannot stat `docs/html/': No such file or directory

2006-10-18 Thread Bastian Blank
Package: phat
Version: 0.3.1-2
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of phat_0.3.1-2 on debian-31 by sbuild/s390 85
[...]
> -- Nothing to install
> make[3]: Leaving directory `/build/buildd/phat-0.3.1/docs'
> make[2]: Leaving directory `/build/buildd/phat-0.3.1/docs'
> make[2]: Entering directory `/build/buildd/phat-0.3.1'
> make[3]: Entering directory `/build/buildd/phat-0.3.1'
> make[3]: Nothing to be done for `install-exec-am'.
> test -z "/usr/lib/pkgconfig" || mkdir -p -- 
> "/build/buildd/phat-0.3.1/debian/tmp/usr/lib/pkgconfig"
>  /usr/bin/install -c -m 644 'phat.pc' 
> '/build/buildd/phat-0.3.1/debian/tmp/usr/lib/pkgconfig/phat.pc'
> make[3]: Leaving directory `/build/buildd/phat-0.3.1'
> make[2]: Leaving directory `/build/buildd/phat-0.3.1'
> make[1]: Leaving directory `/build/buildd/phat-0.3.1'
> dh_testdir
> dh_testroot
> dh_installchangelogs ChangeLog
> dh_installdocs
> cp: cannot stat `docs/html/': No such file or directory
> dh_installdocs: command returned error code 256
> make: *** [binary-arch] Error 1
> **
> Build finished at 20061016-0512
> FAILED [dpkg-buildpackage died]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#911239: RM: grub-choose-default -- RoQA; outdated, orphaned

2018-10-17 Thread Bastian Blank
Package: ftp.debian.org
Control: affects -1 src:grub-choose-default

Please remove package grub-choose-default from unstable.

It was last uploaded ten years ago.  It was orphaned three years ago.
It is the last dependency of grub-legacy.

Regards,
Bastian

-- 
The joys of love made her human and the agonies of love destroyed her.
-- Spock, "Requiem for Methuselah", stardate 5842.8



Bug#993762: dh-exec - Uses racy debian/tmp

2021-09-06 Thread Bastian Blank
Package: dh-exec
Version: 0.23.4
Severity: important

dh-exec and dh_prep are racy together in it's usage of the global source
directory "debian/tmp".

dh-exec-install-rename uses "debian/tmp" to create it's files.  But at
the same time dh_prep also removes this global directory.  So every
concurrent use of dh-exec leads to race conditions.

This leads to errors like this[1]:
| Error in tempdir() using debian/tmp/dh-exec.: Parent directory 
(debian/tmp) does not exist at /usr/share/dh-exec/dh-exec-install-rename line 
18.
| BEGIN failed--compilation aborted at
| /usr/share/dh-exec/dh-exec-install-rename line 25.

Bastian

[1]: 
https://buildd.debian.org/status/fetch.php?pkg=linux&arch=ppc64el&ver=5.14-1%7Eexp2&stamp=1630872170&raw=1
-- 
The sight of death frightens them [Earthers].
-- Kras the Klingon, "Friday's Child", stardate 3497.2