Bug#862998: coreutils: cpio -H crc verification fails with checksum error / checksum exceeds 32 bit

2017-05-19 Thread Andreas Fenkart
Package: coreutils
Version: 8.26-3
Severity: normal
Tags: patch

dd if=/dev/urandom of=bitbag count=33 bs=$((1024*1024))
echo bitbag | cpio -o -H crc  > test.cpio
$(cd tmpdir; cpio -i < ../test.cpio)
cpio: bitbag: checksum error (0x106ed91f7, should be 0x6ed91f7)

The checksums are similar, but the left checksum has a leading '1', hence
exceeds a 32bit value

the bug has a fix upstream, but is not yet included in 2.11
http://lists.gnu.org/archive/html/bug-cpio/2012-02/msg4.html
http://lists.gnu.org/archive/html/bug-cpio/2005-10/msg00013.html



-- System Information:
Debian Release: 9.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64
 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.7.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages coreutils depends on:
ii  libacl1  2.2.52-3+b1
ii  libattr1 1:2.4.47-2+b2
ii  libc62.24-10
ii  libselinux1  2.6-3+b1

coreutils recommends no packages.

coreutils suggests no packages.

-- no debconf information



Bug#712080: bash: substring expansion fails with Bad substitution

2013-06-12 Thread Andreas Fenkart
Package: bash
Version: 4.2+dfsg-1
Severity: normal

test.sh program:
BAR=foo
BAZ=${BAR:1:1}

fails with:
test.sh: 3: test.sh: Bad substitution


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



Bug#696700: Regression: write error on wget -c for already fully retrieved file

2012-12-25 Thread Andreas Fenkart
Package: wget
Version: 1.14-1
Severity: important
Tags: upstream

Seems to be addressed by the maintainers, but not shipped with a
release. Hence pasting again here.

copypaste from here:
http://lists.gnu.org/archive/html/bug-wget/2012-11/msg00026.html

The Yocto Project's sanity checks for connectivity fail on Debian unstable,
as the current wget -c reports a write error for an already fully retrieved
file. (Yocto is an OpenEmbedded-based system builder suite.)

This issue might depend on server behaviour, so please test with the URL
provided below.

Steps to reproduce:

1. Download file from yocto server
$ wget 'https://eula-downloads.yoctoproject.org/index.php'
...
2012-11-13 19:23:37 (146 KB/s) - ‘index.php’ saved [105711]

2. Download same file from yocto server with -c
$ wget -c 'https://eula-downloads.yoctoproject.org/index.php'
...
Cannot write to ‘index.php’ (Resource temporarily unavailable).
$ echo $?
3



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

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

Versions of packages wget depends on:
ii  dpkg   1.16.9
ii  install-info   4.13a.dfsg.1-10
ii  libc6  2.13-36
ii  libgcrypt111.5.0-3
ii  libgnutls262.12.20-1
ii  libgpg-error0  1.10-3.1
ii  libidn11   1.25-2
ii  libuuid1   2.20.1-5.2
ii  zlib1g 1:1.2.7.dfsg-13

wget recommends no packages.

wget suggests no packages.

-- no debconf information
Index: wget-1.14/src/retr.c
===
--- wget-1.14.orig/src/retr.c	2012-12-26 02:39:24.276426633 +0100
+++ wget-1.14/src/retr.c	2012-12-26 02:39:56.072427448 +0100
@@ -376,7 +376,7 @@
 {
   sum_read += ret;
   int write_res = write_data (out, out2, dlbuf, ret, skip, sum_written);
-  if (write_res != 0)
+  if (write_res  0)
 {
   ret = (write_res == -3) ? -3 : -2;
   goto out;


Bug#692892: libgstreamer0.10-0: misplaced gstreamer0.10/gstreamer-0.10/gst-plugin-scanner

2012-11-10 Thread Andreas Fenkart

Package: libgstreamer0.10-0
Version: 0.10.36-1
Severity: minor

single file in /usr/lib/x86_64-linux-gnu/gstreamer0.10/gstreamer-0.10

shouldn't it be rather in /usr/lib/x86_64-linux-gnu/gstreamer-0.10' as
all plugin files? 


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

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

Versions of packages libgstreamer0.10-0 depends on:
ii  libc6  2.13-36
ii  libglib2.0-0   2.33.12+really2.32.4-3
ii  libxml22.8.0+dfsg1-6
ii  multiarch-support  2.13-36

libgstreamer0.10-0 recommends no packages.

Versions of packages libgstreamer0.10-0 suggests:
ii  gstreamer0.10-plugins-base  0.10.36-1
ii  gstreamer0.10-tools 0.10.36-1

-- no debconf information


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



Bug#653437: xpdf: type1 fonts not rendered

2011-12-28 Thread Andreas Fenkart
Package: xpdf
Version: 3.03-7
Severity: important
Tags: upstream

Opening this file with xpdf only shows the images no text. Opening with evince
works fine.

http://www.google.ch/#sclient=psy-
abhl=desite=source=hpq=netidmgr.pdf+pbx=1oq=netidmgr.pdf+aq=faqi=aql=gs_sm=egs_upl=527l527l0l1047l1l1l0l0l0l0l216l216l2-1l1l0bav=on.2,or.r_gc.r_pw.,cf.osbfp=84508821f3f5a6abiw=1409bih=637


Removing the folder /usr/share/fonts/type1 and the lines 'fontFile xx
/usr/share/fonts/type1/gsfonts/xx.pfb'  from the /etc/xpdf/xpdfrc makes the
document render ok.

Any hints what to try next? Is X misconfigured? I use the closed source nvidia
X server.


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

Kernel: Linux 3.1.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xpdf depends on:
ii  lesstif2  1:0.95.2-1
ii  libc6 2.13-23
ii  libgcc1   1:4.6.2-9
ii  libpoppler13  0.16.7-2+b1
ii  libstdc++64.6.2-9
ii  libx11-6  2:1.4.4-4
ii  libxt61:1.1.1-2

Versions of packages xpdf recommends:
ii  gsfonts-x110.22
ii  poppler-data   0.4.5-2
ii  poppler-utils  0.16.7-2+b1

xpdf suggests no packages.

-- no debconf information



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



Bug#606027: gcompris crashes with SIGILL when playing 'mouse-clicked' sound.

2010-12-05 Thread Andreas Fenkart

Package: liborc-0.4-0
Version: 1:0.4.11-1
Severity: normal

Problem goes away when upgrading to experimental/0.4.11-1

Program received signal SIGILL, Illegal instruction.
[Switching to Thread 0x496ff440 (LWP 2552)]
0x49720010 in ?? ()
(gdb) bt
#0  0x49720010 in ?? ()
#1  0x0de0008c in orc_audio_convert_unpack_u8 (d1=0x48e58948,
s1=0x10a69bc0 
fefeeedcddcbb``mym_]etwpf^^]]_`^]]][\\^cjlflwm\\Z[[Z]juutusqz\210\204xtrqpomnqsopx~\202\203\201\204\210\207\204\203\204\204\203\201~|zz|\177\177|yvsqspnoqt|\206\213\215\221\222\221\221\224\222\215\211\206\202\200\201\202\202~zxtomlgbdfiq}\204\210\220\227\231\232\235\234\225\220\215\211\205\204\203\201}zzwspmgabefjry}\207\222\230\233\236\235\227\223\222\217\213\206\203\177|{~\177{...,
 p1=24, n=1312) at tmp-orc.c:217
#2  0x0520 in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
(gdb) c
Continuing.
[Thread 0x496ff440 (LWP 2552) exited]

$ cat /proc/cpuinfo
processor   : 0
cpu : 740/750
temperature : 35-37 C (uncalibrated)
clock   : 400.00MHz
revision: 131.0 (pvr 0008 8300)
bogomips: 49.93
timebase: 24966218
platform: PowerMac
model   : PowerBook3,1
machine : PowerBook3,1
motherboard : PowerBook3,1 MacRISC2 MacRISC Power Macintosh
detected as : 70 (PowerBook Pismo)
pmac flags  : 001f
L2 cache: 1024K unified
pmac-generation : NewWorld
Memory  : 320 MB


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

Kernel: Linux 2.6.32-5-powerpc
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages liborc-0.4-0 depends on:
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib

liborc-0.4-0 recommends no packages.

liborc-0.4-0 suggests no packages.


-- no debconf information




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