Bug#890022: slt: unnecessary dependency on dpkg-dev

2018-02-10 Thread Simon Richter
Package: slt Version: 0.0.git20140301-3+b1 Severity: normal Hi, it appears that dpkg-dev is not necessary for the operation of this service, and since it is likely to be used on VM hosts with minimal installations, pulling in dpkg-dev and all of its dependencies like perl introduces significant

Bug#860937: GCC major version doubled in gnatlink call

2017-04-22 Thread Simon Richter
Package: gnat-6-powerpc64-linux-gnu Version: 6.3.0-12cross1 Severity: normal Hi, while cross-compiling the Ada portion of libspe2: powerpc64-linux-gnu-gnatmake -g testsingle.adb powerpc64-linux-gnu-gnatbind-6 -x testsingle.ali powerpc64-linux-gnu-gnatlink-6 testsingle.ali -g

Bug#859244: rsync: skipping parts of compressed batched update gives decompression errors

2017-03-31 Thread Simon Richter
Package: rsync Version: 3.1.2-1 Severity: normal Hi, I've created a batch of updates using --only-write-batch and -z, then started applying them, which I had to interrupt and subsequently tried to restart. This should be fine, as rsync can detect that batched updates are already applied, and

Bug#858289: lvm2: adding mirror while LV is open in block mode causes corruption

2017-03-20 Thread Simon Richter
Package: lvm2 Version: 2.02.168-1 Severity: normal Hi, Initial setup, working: - Two PVs, one on a hardware (Areca ARC-1231ML) RAID6, one on a passthrough SSD on the same hardware controller. - Both PVs assigned to the same VG - Discards are enabled in config - LV created on the SSD,

Bug#855420: wammu: Assertion failure in feedback

2017-02-17 Thread Simon Richter
Package: wammu Version: 0.43-1 Severity: minor Hi, when I select the "Choose Features" button in the feedback dialog, I get an exception PyAssertionError: C++ assertion "Assert failure" failed at ../src/common/sizer.cpp(1401) in DoInsert(): too many items (4 > 1*3) in grid sizer (maybe you

Bug#854949: [pkg-gnupg-maint] Bug#854949: gnupg-agent: "agent refused operation" with smartcard

2017-02-13 Thread Simon Richter
Hi, On 13.02.2017 00:23, Daniel Kahn Gillmor wrote: > Are you trying to use your smartcard for ssh access? or for gpg access? Either has the same behaviour. It seems to be related to passphrase entry, as the problem can be fixed with updatestartuptty, but that wasn't necessary before. > is

Bug#854949: gnupg-agent: "agent refused operation" with smartcard

2017-02-12 Thread Simon Richter
Package: gnupg-agent Version: 2.1.18-3 Severity: important Hi, since the last update (2.1.17-2 -> 2.1.18-3) I cannot use my smartcard anymore. Getting the card status works fine, but any operations that require a PIN get refused by the agent. Simon -- System Information: Debian Release: 9.0

Bug#853735: installation-guide-amd64: EFI Bootloader problems on some laptop (mainly Toshiba)

2017-01-31 Thread Simon Richter
Package: installation-guide-amd64 Severity: wishlist Hi, there are some problems installing on laptops with broken EFI that can be worked around by installing the EFI boot loader into a special area. The installer has support for this in advanced or rescue mode, and I think this should be

Bug#851051: bison: using YYERROR in empty rule leads to segmentation fault

2017-01-11 Thread Simon Richter
Package: bison Version: 2:3.0.4.dfsg-1 Severity: normal Tags: upstream Hi, if an empty rule matches, but calls YYERROR, the parser catches a segmentation fault in the line yyerror_range[1].location = yystack_[yylen - 1].location; inside the error handling, because yylen is 0, (yylen-1)

Bug#850793: docker.io: missing build dependency on golang-github-docker-go-events-dev

2017-01-10 Thread Simon Richter
Package: docker.io Version: 1.11.2~ds1 Severity: normal Hi, During build, I get .gopath/src/github.com/docker/libnetwork/agent.go:13:2: cannot find package "github.com/docker/go-events" in any of: /usr/lib/go-1.7/src/github.com/docker/go-events (from $GOROOT)

Bug#850687: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 3577: ordinal not in range(128)

2017-01-09 Thread Simon Richter
Package: reportbug Version: 7.1.2 Severity: important Hi, "reportbug binutils" terminates with (59-68/68) Is the bug you found listed above [y|N|b|m|r|q|s|f|e|?]? n Maintainer for binutils is 'Matthias Klose '. Looking up dependencies of binutils... Traceback (most recent call

Bug#849549: gammu: cannot parse VALUE=DATE-TIME tag in VEVENT

2016-12-28 Thread Simon Richter
Package: gammu Version: 1.38.0-1 Severity: normal Hi, I'm trying to import an iCal file that has DTSTART/DTEND lines of the form DTSTART;TZID=Europe/Berlin;VALUE=DATE-TIME:20161229T113000 The parser chokes on the VALUE=DATE-TIME bit and pretends to not have seen the line, leading to a

Bug#849550: gammu: please build in parallel

2016-12-28 Thread Simon Richter
Package: gammu Version: 1.38.0-1 Severity: wishlist Hi, this package could probably be built with multiple CPUs, as cmake generally gets dependencies mostly right. This should be achievable simply by passing "--parallel" to debhelper. Simon -- System Information: Debian Release: stretch/sid

Bug#848253: piglit: does not check value type in clGet*Info calls

2016-12-15 Thread Simon Richter
Package: piglit Version: 0~git20150829-59d7066-1.1 Severity: important Tags: upstream Hi, this is a bit of a showstopper here: the CL tests do not actually verify that the size of the data returned matches the expectation, but rather they just cast a pointer to the result buffer to a pointer to

Bug#848182: clinfo: CL_DEVICE_PRINTF_BUFFER_SIZE is size_t, not cl_ulong

2016-12-14 Thread Simon Richter
Package: clinfo Version: 2.1.16.01.12-1 Severity: normal Hi, this is wrong in the other direction: the printf buffer lives on the host side, so the host's idea of buffer sizes is relevant. The size isn't verified in clinfo at all, leading to: printf() buffer size

Bug#848177: clinfo: off-by-one error in strbuf_mem

2016-12-14 Thread Simon Richter
Package: clinfo Version: 2.1.16.01.12-1 Severity: normal Hi, the current memory suffix number is incremented as long as it is smaller than the number of available suffixes -- which means that it can become equal, at which point it is one past the end. Simon -- System Information: Debian

Bug#848172: clinfo: device_info_mem() uses PRIu64 macro to print size_t

2016-12-14 Thread Simon Richter
Package: clinfo Version: 2.1.16.01.12-1 Severity: normal Hi, another printf bug: size_t is only 32 bit on 32 bit architectures. Simon -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux

Bug#848171: clinfo: CL_DEVICE_GLOBAL_MEM_CACHE_SIZE is cl_ulong, not size_t

2016-12-14 Thread Simon Richter
Package: clinfo Version: 2.1.16.01.12-1 Severity: normal Hi, when running a CL driver on a 32 bit arch, size_t is 32 bit as well, so this property no longer fits. Simon -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (500, 'testing') Architecture:

Bug#848169: clinfo: assumes that buffer size returned from get*Info is valid even on error

2016-12-14 Thread Simon Richter
Package: clinfo Version: 2.1.16.01.12-1 Severity: normal Hi, I have weird crashes on PowerPC, because a required info element is not there in my platform. The clGetDeviceInfo() function correctly returns an error code to indicate that the item is not understood, however clinfo still assumes that

Bug#845682: closed by Vincent Danjean <vdanj...@debian.org> (Bug#845682: fixed in ocl-icd 2.2.10-1)

2016-12-03 Thread Simon Richter
Hi, > + clGetPlatformInfo is now taken is priority from the dispatch table >(Closes: #845682) clGetPlatformInfo from the dispatch table is safe only after clGetPlatformInfo has returned that the ICD supports the cl_khr_icd extension. Simon signature.asc Description: OpenPGP

Bug#846407: piglit: creates files in /tmp during build

2016-11-30 Thread Simon Richter
Package: piglit Version: 0~git20150829-59d7066-1 Severity: normal Hi, after building the piglit package, I found a directory in /tmp that was named after my user, prefixed with "piglit-". This seems to have been created during the package build. The name of this directory is predictable, which

Bug#846405: dpkg-shlibdeps: scales badly for many binaries

2016-11-30 Thread Simon Richter
Package: dpkg Version: 1.18.15 Severity: minor Hi, when building the piglit package, the dpkg-shlibdeps invocations take upwards of 30 minutes (on an i7, building inside a tmpfs). Most of the time seems to be spent spawning several thousand instances of dpkg-query. Is there a way to speed this

Bug#846403: piglit: please build in parallel

2016-11-30 Thread Simon Richter
Package: piglit Version: 0~git20150829-59d7066-1 Severity: wishlist Tags: patch Hi, building in parallel speeds up the compilation process significantly. Unless there are incorrect dependencies in the build process, this should not have adverse effects. Simon -- System Information: Debian

Bug#845549: piglit: OpenCL tests do not work

2016-11-30 Thread Simon Richter
Package: piglit Version: 0~git20150829-59d7066-1 Followup-For: Bug #845549 Hi, this patch adds OpenCL support. Simon -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (990, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386, armhf

Bug#846264: vim: yacc/bison highlighting interprets semicolon in quotes as end of rule

2016-11-29 Thread Simon Richter
Package: vim Version: 2:8.0.0049-1 Severity: minor Hi, with the Bison input %token SEMICOLON ";" iteration_statement: "do" statement "while" "(" expression_in ")" ";" | "while" "(" expression_in ")" statement | ... the semicolon terminal referenced by the rule through

Bug#845979: regression: no longer connects

2016-11-27 Thread Simon Richter
Package: libqmi-utils Version: 1.16.2-1 Severity: important Hi, since the upgrade to 1.16.2, I can no longer connect to the Internet: [/dev/cdc-wdm0] PIN verified successfully Loading profile at /etc/qmi-network.conf... APN: internet.telekom APN user: unset APN password: unset

Bug#845682: ocl-icd-libopencl1: queries clGetPlatformInfo() through clGetExtensionFunctionAddress

2016-11-25 Thread Simon Richter
Package: ocl-icd-libopencl1 Version: 2.2.9-2 Severity: minor Hi, the ICD loader verifies that the clGetPlatformInfo symbol is exported (as required by the spec), but then also requests the symbol through clGetExtensionFunctionAddress(). If this function returns a non-NULL pointer, it is used

Bug#845549: piglit: OpenCL tests do not work

2016-11-24 Thread Simon Richter
Package: piglit Version: 0~git20150829-59d7066-1 Severity: normal Hi, please build the OpenCL tests as well: $ piglit run cl cl.results Warning: A python exception that should have been handled was not. This is bug and should be reported. BUG: [Errno 2] No such file or directory:

Bug#844643: ITP: flatcam -- 2D Computer-Aided PCB Manufacturing on a CNC router

2016-11-19 Thread Simon Richter
Hi, On 17.11.2016 19:33, Carsten Schoenert wrote: > * Package name: flatcam > I'd like to place this package into the pkg-electronics team as other PCB > related package are workend on there. I will need a sponsor. In case there are no other sponsors, I could do it, but please treat this

Bug#844730: gcc-6-source: gdc source is actually gzip compressed despite .xz suffix

2016-11-18 Thread Simon Richter
Package: gcc-6-source Version: 6.2.0-13 Severity: minor Hi, The gdc source archive has a .xz suffix, but is actually gzip compressed. $ file /usr/src/gcc-6/gdc-20160822.tar.xz /usr/src/gcc-6/gdc-20160822.tar.xz: gzip compressed data, last modified: Mon Aug 22 12:11:49 2016, from Unix

Bug#799226: linux-image-4.1.0-2-amd64: Not able to mount LVM RAID1 file system at boot

2016-10-24 Thread Simon Richter
Source: linux Version: 3.16.36-1+deb8u2 Followup-For: Bug #799226 Hi, this bug is also in the stable kernel, and the one currently in testing. It is caused by the kernel not writing the bitmap information to the meta LV. I can reproduce this here with an Areca RAID controller, but not with

Bug#841952: linux-image-4.7.0-1-amd64: lots of kernel messages about missed HPET interrupts

2016-10-24 Thread Simon Richter
Package: src:linux Version: 4.7.8-1 Severity: normal Hi, I've just updated my kernel, and get a lot of kernel messages about lost HPET RTC interrupts. The 3.16.0 kernel from stable didn't do this. I have no idea where to start debugging this, so if you need more info, please ask. Simon --

Bug#840323: debhelper: cmake build system: cross compilation

2016-10-10 Thread Simon Richter
Package: debhelper Version: 9.20160814 Severity: wishlist Hi, right now, if I want to crosscompile a package that uses CMake, I need to override dh_auto_configure: override_dh_auto_configure: dh_auto_configure -- \ -DCMAKE_TOOLCHAIN_FILE=/etc/dpkg-cross/cmake/CMakeCross.txt \

Bug#840308: dpkg: extraction of additional orig archives into nested subdirectory

2016-10-10 Thread Simon Richter
Package: dpkg Version: 1.18.10 Severity: wishlist Hi, I have several packages that use additional .orig archives for program modules, but these are almost always expected in a nested subdirectory for the package build, e.g. "modules/foo". It would be nice if there was a way to ship this as a

Bug#829188: SEGVs too frequently (~every other day)

2016-07-11 Thread Simon Richter
Package: icedove Version: 1:45.1.0-1~deb8u1 Followup-For: Bug #829188 Hi, I can confirm this happens often. I use IMAPS for mail access and the only extensions I have are the IceOwl included in Debian, Enigmail and tb-personal-level-indicator. Simon -- System Information: Debian Release:

Bug#830479: [pkg-gnupg-maint] Bug#830479: gnupg2: new trust level "poisoned"

2016-07-08 Thread Simon Richter
Hi, On 08.07.2016 14:54, Werner Koch wrote: >> with someone injecting the evil32 keys into the keyserver network it will >> only be a matter of time until someone signs one of these by accident. > If you believe that someone does not check the fingerprint of a key > before they sign it, you

Bug#830479: gnupg2: new trust level "poisoned"

2016-07-08 Thread Simon Richter
Package: gnupg2 Version: 2.0.26-6 Severity: wishlist Tags: upstream Hi, with someone injecting the evil32 keys into the keyserver network it will only be a matter of time until someone signs one of these by accident. In case that is someone I have assigned a trust value to, I'd like to know and

Bug#829284: git: determine mainline in cherry-pick by reachability

2016-07-01 Thread Simon Richter
Package: git Version: 1:2.1.4-2.1+deb8u2 Severity: wishlist Tags: upstream Hi, I'm trying to cherry-pick merges in a script, and the manual page says that in order to do that, I need to pass the number of the "mainline" ancestor in the list of parents. This is rather annoying to use from a

Bug#829281: firefox-esr: full screen video breaks event processing

2016-07-01 Thread Simon Richter
Package: firefox-esr Version: 45.2.0esr-1~deb8u1 Severity: important Hi, switching to full screen video completely breaks event processing for me. Tested with MOZILLA_DISABLE_EXTENSIONS=1 and -safe-mode. Video file showing the problem is at http://psi5.com/~geier/firefox.ogv I go to

Bug#828908: apt: destroys "auto" marks when /var is full

2016-06-28 Thread Simon Richter
Package: apt Version: 1.0.9.8.3 Severity: normal Hi, when /var runs full during installation, apt still tries to write the list of automatically installed packages, but does so in an unsafe way that clears the list instead. As a result, all packages are then marked as manually installed. I'm

Bug#827050: aptitude: limiting view to manually installed (~m) does not work

2016-06-11 Thread Simon Richter
close 827050 thanks On 11.06.2016 18:06, Simon Richter wrote: > I'm looking for a package that I know I installed manually, but whose name > I've forgotten, so I tried limiting the listing to manually installed > packages (~m), but I'm shown all packages still. Limiting to auto

Bug#827050: aptitude: limiting view to manually installed (~m) does not work

2016-06-11 Thread Simon Richter
Package: aptitude Version: 0.6.11-1+b1 Severity: normal -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'm looking for a package that I know I installed manually, but whose name I've forgotten, so I tried limiting the listing to manually installed packages (~m), but I'm shown all packages

Bug#820261: Patches to build the Github plugin without OpenSSL

2016-05-05 Thread Simon Richter
rom 5a501660e6cc84cbdf19118816efeda9b66d4c1d Mon Sep 17 00:00:00 2001 From: Simon Richter <simon.rich...@hogyros.de> Date: Mon, 21 Dec 2015 15:30:33 -0500 Subject: [PATCH 1/4] Replace the avhttp library used by the github plugin with libcurl. MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="2.1.4&quo

Bug#819331: libvirt0: fails to start KVM instance using readonly ISO image

2016-03-26 Thread Simon Richter
Package: libvirt0 Version: 1.2.9-9+deb8u1 Severity: normal Hi, I'm trying to start a KVM instance, booting from a CD-ROM ISO image that is stored on a network server, and readonly for the VM host machine. Using the definition I'd expect to be able

Bug#819163: procps: [watch] option to discard remaining output rather than closing pipe

2016-03-24 Thread Simon Richter
Package: procps Version: 2:3.3.9-9 Severity: wishlist Tags: upstream Hi, I often use "watch 'make 2>&1'" to look at compiler errors during development, but as the watch command completely closes the pipe, the compilation process is killed by SIGPIPE as soon as the page is full, which takes the

Bug#811377: [Pkg-sysvinit-devel] Adopting Sysvinit

2016-03-06 Thread Simon Richter
Hi, On 06.03.2016 11:30, Petter Reinholdtsen wrote: > I can approve members to the alioth project. Okay, I think it makes the most sense to use the Alioth project then, I've just applied to become a member of the project. Should we schedule a "bug fixing weekend" at some point to get the

Bug#811377: Adopting Sysvinit

2016-03-03 Thread Simon Richter
Hi, On 01.03.2016 16:20, Ben Hutchings wrote: >> Could you please grant me the upload permission? I am in the Debian >> maintainer database with key 8E192076 and fingerprint: >> C3A5 0484 0B67 8260 DA12 766A D25D 611C 8E19 2076 > I'm not a maintainer for sysvinit, so I leave the decision

Bug#811377: sysvinit maintenance

2016-01-31 Thread Simon Richter
Hi, I'm somewhat interested. I don't have the capacity to maintain the package full-time, but I'd be open to do reviews and small errands. Simon signature.asc Description: OpenPGP digital signature

Bug#813311: humble repositories shoud be humble

2016-01-31 Thread Simon Richter
Hi, On 31.01.2016 14:48, Geert Stappers wrote: > Want I wish is an apt sources.list line like > deb http://nicelookingproject.com/debian version main pl:foo > will only install package foo from the nice looking project repository That might be better expressed as an attribute, similar to the

Bug#807082: kicad: fails to build without network (pbuilder)

2015-12-04 Thread Simon Richter
Source: kicad Version: 4.0.0~rc1-a Severity: important Hi, while compiling the documentation, xsltproc tries to connect to the network, and fails to compile if the network is unavailable, such as when compiling with pbuilder. To reproduce, use "unshare -n make -C doc" Simon -- System

Bug#806967: kicad: missing build-dependencies

2015-12-04 Thread Simon Richter
Source: kicad Version: 4.0.0~rc1-a Followup-For: Bug #806967 Hi, I'm building on jessie (for jessie-backports), adding * lmodern * libxml2-utils * libunicode-linebreak-perl This appears to be sufficient here, but it only works reliably with non-parallel builds, because the documentation

Bug#806967: kicad: missing build-dependencies

2015-12-04 Thread Simon Richter
Hi, On 05.12.2015 04:00, Simon Richter wrote: > * lmodern > * libxml2-utils > * libunicode-linebreak-perl In order to build under pbuilder (i.e. without network), I also need docbook-xsl. Simon signature.asc Description: OpenPGP digital signature

Bug#802898: openscad: negative twist in linear_extrude leads to "Object isn't a valid 2-manifold" during STL export

2015-10-24 Thread Simon Richter
Package: openscad Version: 2014.03+dfsg-1 Severity: normal Tags: upstream -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, the attached file cannot be exported to STL after rendering; changing the sign on the "twist" parameter of the first "linear_extrude" makes the problem go away (but

Bug#802872: graphicsmagick: SVG to PNG conversion omits circles

2015-10-24 Thread Simon Richter
Package: graphicsmagick Version: 1.3.20-3+deb8u1 Severity: normal -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. the attached SVG is exported from KiCad, and shows the mask for the copper areas of a PCB. In the middle is a connector with circular pads, which renders correctly in Inkscape,

Bug#802726: RM: foundry -- ROM; name conflict, lack of users

2015-10-22 Thread Simon Richter
Package: ftp.debian.org Severity: normal -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I think "foundry" can be removed. There is a name conflict with another project (that is not packaged), which may lead to confusion. While the package is still generally useful, it has problems building

Bug#802660: RFP: Libreoffice (calc) -- libreoffice, calc

2015-10-22 Thread Simon Richter
reassign 802660 libreoffice-calc found 802660 1:5.0.3~rc1-2 cheers Hi, I've reassigned that to the appropriate package. It is likely that they will need more details though. Simon signature.asc Description: OpenPGP digital signature

Bug#802543: linux-image-3.16.0-4-amd64: kernel error message after activating Bluetooth mouse

2015-10-20 Thread Simon Richter
Package: src:linux Version: 3.16.7-ckt11-1+deb8u4 Severity: normal Hi, I keep getting kernel error messages for my Bluetooth mouse; when these messages appear, the mouse is non-functional. This appears shortly after booting, when the mouse first attempts to connect (as I press a button to

Bug#794483: wget: German translation: format string written to console

2015-08-03 Thread Simon Richter
Package: wget Version: 1.16-1 Severity: minor Hi, after fetching a file from FTP with the -c option, I was shown the message Die Datei »%s« ist geholt worden. This appears to be an error in the translation, apparently fixed up to avoid dereferencing an invalid pointer. Simon -- System

Bug#794484: wget: does not reuse FTP connection when given URLs from stdin

2015-08-03 Thread Simon Richter
Package: wget Version: 1.16-1 Severity: minor Hi, I've fed a list of ftp:// URLs to wget on stdin, expecting that the same connection would be used for all transfers, as all used the same host name. Transferring many small files this way has a massive overhead, so it would be nice if connection

Bug#790637: recordmydesktop: record key presses/mouse clicks

2015-06-30 Thread Simon Richter
Package: recordmydesktop Version: 0.3.8.1+svn602-1+b1 Severity: wishlist Tags: upstream Hi, when making presentations, I would like to include information on where to click and what keys were pressed. It would be nice if there was an option to include that as part of the recording (e.g. by

Bug#790673: uim-gtk3: warnings about missing handlers when closing gtk window

2015-06-30 Thread Simon Richter
Package: uim-gtk3 Version: 1:1.8.6-8 Severity: minor Hi, when closing a window in a GTK based app, a number of warnings appear on the console: GLib-GObject-WARNING **: /tmp/buildd/glib2.0-2.42.1/./gobject/gsignal.c:2579: instance '0xad7820' has no handler with id '2133' Backtracing this in

Bug#790674: uim-gtk3: valgrind uninitialized variable reports at application startup

2015-06-30 Thread Simon Richter
Package: uim-gtk3 Version: 1:1.8.6-8 Severity: minor Hi, valgrind reports several uninitialized accesses during application startup: ==10542== Conditional jump or move depends on uninitialised value(s) ==10542==at 0x1667996B: within_heapp (storage-gc.c:636) ==10542==by 0x16679ADA:

Bug#789567: wicd: needs systemd integration

2015-06-22 Thread Simon Richter
Source: wicd Version: 1.7.2.4-4.1 Severity: normal Hi, in the combination systemd+wicd+nfs, the shutdown procedure hangs, as the sequence is 1. stop all programs that might be using the network mounts 2. unmount network filesystems 3. deconfigure network Unfortunately, wicd is killed during

Bug#782609: systemd-sysv,plymouth: user experience: plymouth animation hangs

2015-04-21 Thread Simon Richter
Hi, Am 17.04.2015 um 16:34 schrieb Holger Levsen: From a user experience point of view, this is clearly suboptimal: the animation presented during boot suddenly hangs for several seconds, and then suddenly the login screen is shown. I cannot reproduce this on a freshly installed jessie

Bug#782609: systemd-sysv,plymouth: user experience: plymouth animation hangs

2015-04-16 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On 15.04.2015 17:01, Michael Biebl wrote: Please also mention the version of plymouth and gdm3 you are using, which theme you selected etc. Everything is from jessie, so that would be plymouth 0.9.0-9, and gdm3 3.14.1-7. Plymouth theme is

Bug#766922: Backport possible for jessie?

2015-04-16 Thread Simon Richter
Hi, would it be possible to get a backport for the fix into a jessie point release? Simon signature.asc Description: OpenPGP digital signature

Bug#782611: linux-image-3.16.0-4-amd64: backlight on, white screen during text mode powersave on Acer Aspire One 725

2015-04-16 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On 15.04.2015 09:46, Jonas Smedegaard wrote: I've recently installed an Acer Aspire One 725 with Debian jessie, and found that the text mode console goes into powersave mode correctly the first time, but shows a white screen with full

Bug#782610: linux-image-3.16.0-4-amd64, xserver-xorg-video-radeon: Acer Aspire One 725: black screen in X after resume

2015-04-16 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On 15.04.2015 15:59, Alex Deucher wrote: When you say sleep, do you mean suspend/resume or dpms? Depending on the hw involved, this patch might help:

Bug#782609: systemd-sysv,plymouth: user experience: plymouth animation hangs

2015-04-16 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Holger, On 15.04.2015 12:37, Holger Levsen wrote: Good idea: it's a stock Debian jessie installation with gnome, so the display manager is gdm. so you choose to install a default desktop system and got this? (or did you first install a

Bug#782610: linux-image-3.16.0-4-amd64, xserver-xorg-video-radeon: Acer Aspire One 725: black screen in X after resume

2015-04-14 Thread Simon Richter
Package: linux-image-3.16.0-4-amd64,xserver-xorg-video-radeon Severity: normal Hi, I've recently installed an Acer Aspire One 725 with Debian jessie, and found that after resuming from sleep, the display remains black (but backlight is on) with X. Text mode consoles work fine with and without

Bug#782611: linux-image-3.16.0-4-amd64: backlight on, white screen during text mode powersave on Acer Aspire One 725

2015-04-14 Thread Simon Richter
Package: src:linux Version: 3.16.7-ckt7-1 Severity: minor Hi, I've recently installed an Acer Aspire One 725 with Debian jessie, and found that the text mode console goes into powersave mode correctly the first time, but shows a white screen with full backlight power the second and subsequent

Bug#782609: systemd-sysv,plymouth: user experience: plymouth animation hangs

2015-04-14 Thread Simon Richter
Package: systemd-sysv,plymouth Severity: normal Hi, I've recently installed jessie on a netbook (Acer Aspire One 725), with systemd as init and plymouth to hide the startup process from the user. The boot process is about as quick as can be expected on this system, and plymouth is stopped

Bug#782609: systemd-sysv,plymouth: user experience: plymouth animation hangs

2015-04-14 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On 14.04.2015 21:55, Michael Biebl wrote: Dropping systemd from the list of affected packages. You should probably also mention the display manager you are using Good idea: it's a stock Debian jessie installation with gnome, so the display

Bug#782609: systemd-sysv,plymouth: user experience: plymouth animation hangs

2015-04-14 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On 14.04.2015 21:03, Michael Biebl wrote: From a technical point of view, of course all packages behave exactly as intended, however the combination gives a bad result. Can you elaborate why you filed this bug against systemd-sysv?

Bug#782609: systemd-sysv,plymouth: user experience: plymouth animation hangs

2015-04-14 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On 14.04.2015 21:34, Michael Biebl wrote: I don't see systemd involved here. The interaction is between the display manager/X and plymouth. systemd needs to get involved in the solution, I think, as this is an effect of starting services on

Bug#782464: general: access violation 7e9bc87f in module gdi32 dill read of address 00aiffo2

2015-04-12 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 retitle 782646 [regression] segmentation fault running voaprop.exe reassign 782646 wine severity 782646 normal tags 782646 +upstream +moreinfo thanks Hi, This appears to be a wine bug, so I've reassigned it to the wine maintainers. I'm fairly sure

Bug#781287: systemd: dirty pages are no longer flushed

2015-03-30 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 reassign 781287 pm-utils thanks Hi, indeed pm-utils is the culprit here. There is no obvious way to turn this feature off and have it remain off through upgrades. Simon -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org

Bug#390135: RFP: wxformbuilder -- Open Source GUI Builder Tool For wxWidgets

2015-03-14 Thread Simon Richter
Hi, On Wed, Jun 10, 2009 at 07:56:44PM +0200, Sandro Tosi wrote: I'd like to see this packaged. there is some effort from ubuntu[1] Not much has happened so far. :/ I've hacked together something that works from the current release (3.5.0 beta), but haven't taken the time to make it lintian

Bug#780203: general: Cannot have more than 2 desktops

2015-03-10 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Reassign 780203 gnome thanks Hi, Package: general This bug report is indeed a bit nonspecific. Under advanced settings I tried to press the + beside the number of desktops, it would not go higher than 2. I tried entering a number like 8 and

Bug#780067: xserver-xorg-video-radeon: slowdown/artifacts in KiCad rendering with EXAPixmaps on

2015-03-08 Thread Simon Richter
Source: xserver-xorg-video-radeon Version: 1:7.5.0-1 0 Severity: normal Tags: upstream Hi, reported by KiCad users at https://bugs.launchpad.net/kicad/+bug/1003859 it appears that there are some issues with 2D acceleration in this case (KiCad heavily uses XOR rendering, for example). As this

Bug#775767: pyvisa: There is a new version of pyvisa

2015-03-08 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Ruben, On 07.03.2015 12:30, Ruben Undheim wrote: Since I've got the impression that you don't have time just now to package pyvisa, I've prepared an NMU for experimental with the newest version of pyvisa (1.6.3). I'm not a DD and thus an

Bug#779442: locales: terminology language code ... not defined

2015-02-28 Thread Simon Richter
Package: locales Version: 2.19-15 Severity: normal Hi, I'm upgrading to jessie, and keep getting errors like LC_ADDRESS: terminology language code `quz' not defined LC_ADDRESS: language abbreviation `quz' not defined during locale generation. Simon -- System Information: Debian Release:

Bug#779442: locales: terminology language code ... not defined

2015-02-28 Thread Simon Richter
Hi, LC_ADDRESS: terminology language code `quz' not defined LC_ADDRESS: language abbreviation `quz' not defined Complete localegen output attached. Simon Generating locales (this might take a while)... aa_DJ.UTF-8... done aa_DJ.ISO-8859-1... done aa_ER.UTF-8... done

Bug#778908: p7zip-full: strange behaviour for 7za with ISOs

2015-02-21 Thread Simon Richter
Package: p7zip-full Version: 9.20.1~dfsg.1-4 Severity: normal Hi, while extracting the Windows SDK ISO: geier@kiwi:~$ 7za x GRMSDK_EN_DVD.iso 7-Zip (A) [64] 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18 p7zip Version 9.20 (locale=de_DE.UTF-8,Utf16=on,HugeFiles=on,4 CPUs) Processing

Bug#778330: ITP: nim -- The Nim programming language - compiler

2015-02-13 Thread Simon Richter
Hi Federico, Nim is a statically typed, imperative programming language that generates native code via compilation to C. It provides non-tracing GC, high level datatypes and local type inference, a non-tracing GC and bindings to a lot of C libraries. You mention the garbage collector twice

Bug#776751: iproute2: ip a d deletes too many IP addresses

2015-02-01 Thread Simon Richter
Package: iproute2 Version: 3.16.0-2 Severity: normal -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, perhaps also a kernel issue. The following conversation with my computer just happened: Script started on So 01 Feb 2015 11:12:06 CET root@coffee:~# ip mon [1] 2825 root@coffee:~# ip a a

Bug#776766: ratpoison: needs handling for monitor hotplug

2015-02-01 Thread Simon Richter
Package: ratpoison Version: 1.4.8-1 Severity: wishlist Hi, when I dock my laptop, I get an additional monitor, which extends my desktop to double size. The new size is detected immediately, but I need to restart ratpoison to get a configuration where each monitor is a separate frame. It would be

Bug#775293: icedove: system-wide option to store local IMAP cache below ~/.cache

2015-01-13 Thread Simon Richter
Package: icedove Version: 31.3.0-1 Severity: wishlist Tags: upstream Hi, in order to speed up backups, I think it would be nice if there was an easy way to move the local cache of IMAP messages out from the profile directory into ~/.cache. Simon -- System Information: Debian Release: 8.0

Bug#773588: libav-tools: spectrum visualisation does not respect window manager

2014-12-20 Thread Simon Richter
Package: libav-tools Version: 6:11-2 Severity: minor Tags: upstream Hi, I use a tiling window manager (ratpoison), and when using avplay, the visualisation is not scaled to the window size until the window is hidden and shown again. This is typical behaviour for programs that do not handle the

Bug#771810: rtorrent: hangs during DNS queries

2014-12-02 Thread Simon Richter
Package: rtorrent Version: 0.9.2-1 Severity: normal Hi, one of the trackers for a file I'm hosting appears to be in a domain with a broken DNS server, making the query time out in the local recursive resolver. It appears as if rtorrent hangs the entire time the DNS request is outstanding.

Bug#771811: rtorrent: blacklist for discontinued trackers

2014-12-02 Thread Simon Richter
Package: rtorrent Version: 0.9.2-1 Severity: wishlist Tags: upstream Hi, it would be nice if there were a feature to drop trackers that are obviously discontinued, such as when their DNS name starts resolving to 127.0.0.1. Simon -- System Information: Debian Release: 7.7 APT prefers

Bug#771559: authbind: checks /etc/authbind/byport/!80 instead of /etc/authbind/byport/80

2014-11-30 Thread Simon Richter
Package: authbind Version: 2.1.1 Severity: normal Hi, for some very obscure reason, authbind stopped working for me, and looking at it using strace showed that it checked the permissions of files with a prefixed exclamation mark. Simon -- System Information: Debian Release: 7.7 APT

Bug#771371: unblock: icecast2/2.4.0-1.1

2014-11-28 Thread Simon Richter
Package: release.debian.org Severity: normal User: release.debian@packages.debian.org Usertags: unblock Please unblock package icecast2 Security fix CVE-2014-9018, last remaining RC bug. unblock icecast2/2.4.0-1.1 -- System Information: Debian Release: jessie/sid APT prefers testing

Bug#616689: Missing volume groups during boot with SCSI and MD

2014-11-23 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, During the BSP I've taken a look at this, and my current theory is that the following sequence of events happens: 1. udev event for the new device is generated (this applies to both SCSI and MD device nodes) 2. the program responsible for

Bug#770352: Patch uploaded to DELAYED-3

2014-11-23 Thread Simon Richter
no +longer supports -a without argument. (Closes: #770352) + + -- Simon Richter s...@debian.org Sun, 23 Nov 2014 18:58:06 +0100 + gcc-3.3 (1:3.3.6ds1-27.1) unstable; urgency=medium * Non-maintainer upload. diff -u gcc-3.3-3.3.6ds1/debian/rules.defs gcc-3.3-3.3.6ds1/debian/rules.defs - --- gcc

Bug#770222: NMU uploaded to DELAYED-3

2014-11-23 Thread Simon Richter
+ + * Non-maintainer upload. + * Include patchset 19313 (close file handles for external scripts). +(Closes: #770222) + + -- Simon Richter s...@debian.org Sun, 23 Nov 2014 20:02:58 +0100 + icecast2 (2.4.0-1) unstable; urgency=medium * Imported Upstream version 2.4.0 diff -Nru icecast2-2.4.0

Bug#768886: unblock: beignet/0.9.3~dfsg-1

2014-11-09 Thread Simon Richter
Package: release.debian.org Severity: normal User: release.debian@packages.debian.org Usertags: unblock Please unblock package beignet The package is, as any LLVM based compiler, fairly tightly coupled with the LLVM version. The version currently in jessie no longer compiles with the default

Bug#768370: systemd: segmentation fault on old kernel

2014-11-06 Thread Simon Richter
Source: systemd Version: 44-11+deb7u4 Severity: normal Hi, I'm aware that older kernels are unsupported in systemd and I have to forward-port my kernel before I can hope to boot using systemd. I'm booting an ARM system with a 2.6.38 kernel, which works fine using sysvinit, with a newly built

Bug#768197: libboost-python1.55-dev: shared library not linked against libpython

2014-11-05 Thread Simon Richter
Package: libboost-python1.55-dev Version: 1.55.0+dfsg-3 Severity: normal Hi, the libboost_python shared library packages should be linked against the corresponding libpython version in order to pull in the required packages and avoid undefined symbols when linking. Simon -- System

Bug#756806: linux-image-3.14-2-amd64: Strange connection resets

2014-08-01 Thread Simon Richter
Package: src:linux Version: 3.14.13-2 Severity: normal Hi, since upgrading to a kernel from the 3.14-2 ABI series, I'm experiencing fairly reliable TCP connection resets on some connections, most notably ssh and outgoing SMTP on port 587. This appears to be somewhat dependent on the program

<    1   2   3   4   5   6   >