Bug#483677: still outdated

2023-09-02 Thread cacatoes

Hi,

It seems the current man page (the one provided upstream along with the 
code source) still is outdated.

i.e: `peer_exchange` isn't valid and has been replaced by protocol.pex

I haven't checked thoroughly, but the community has written this:
https://rtorrent-docs.readthedocs.io/en/latest/
and the Github wiki pages also contain some documentation.

So I guess the man page is doomed.



Bug#1050839: providing systemd unit files and a config sample

2023-08-29 Thread cacatoes

Package: gammastep
Version: 2.0.9-1
Severity: wishlist

Hello,

It seems upstream now contains systemd units[1], apparmor files and a 
config sample[2] in the source tree, which are absent from the debian 
package.


[1]: https://gitlab.com/chinstrap/gammastep/-/tree/master/data/systemd
[2]: 
https://gitlab.com/chinstrap/gammastep/-/blob/master/gammastep.conf.sample


I have tried the systemd unit, and had to replace @bindir@ with the 
actual path of the bin. The unit is enabled but doesn't run after the 
graphical session is started (I'm running i3 with nodm, my guess is it 
doesn't provide the graphical-session[3] target which is needed for this 
unit to start, as demonstrated here with sway?[4]).


[3]: 
https://www.freedesktop.org/software/systemd/man/systemd.special.html#graphical-session.target

[4]: https://github.com/swaywm/sway/wiki/Systemd-integration

For reference, see also this attempt to make systemd units work with 
redshift: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=827098


Have a good day,



Bug#922662: xboxdrv: some systemd unit

2023-08-12 Thread cacatoes

Hello,

I myself tried to put some glue, it works but I realized it could have 
been better to do it another way.


Method 1 : several instances of xboxdrv started with udev+systemd 
(that's what I did)
Method 2 : xboxdrv as a daemon managed by systemd (maybe a better 
option)


Method 1:

At first I got inspired by this: 
https://github.com/phantom-voltage/xboxdrv-udev-rules
But prefered not to use a shell script and directly manage xboxdrv 
through systemd.


Attached are the files doing the job for me.

Steps to use:
1) Write udev rules with identifiers for your devices
2) Write a .xboxdrv file for each unique controller
3) Copy all files (a template systemd unit, a udev rules file, xboxdrv 
configs) in their dirs.

4) # systemctl daemon-reload
   # systemctl reload udev
5) It's ready.

Pros/cons:
+ simple to implement
- write udev rules manually (xboxdrv could manage this itself)
- not so generic, and have to edit files in various parts for each new 
controller


Method 2:

Check arch package, I hadn't the opportunity to dig into it, but maybe 
running xboxdrv as a daemon makes it easier to handle more usecases.

https://aur.archlinux.org/packages/xboxdrv# Microsoft Xbox Series USB

[xboxdrv]
evdev=/dev/input/by-id/usb-Microsoft_Controller_#-event-joystick

mimic-xpad=true

#detach-kernel-driver=true
#evdev-grab=true
#dpad-as-button=true
#silent=true
#evdev-debug=true

[evdev-absmap]
ABS_X   = x1
ABS_Y   = y1
ABS_RX  = y2
ABS_RY  = x2
ABS_Z   = lt
ABS_RZ  = rt
ABS_HAT0X = dpad_x
ABS_HAT0Y = dpad_y

[axismap]
-Y1=Y1

[evdev-keymap]
BTN_A=a
BTN_B=b
BTN_X=x
BTN_Y=y
BTN_TL=lb
BTN_TR=rb
BTN_SELECT=Back
BTN_START=Start

# EOF #
### Udev rules for gamepads ###

# Add the two rules (plugged/unplugged) for each gametype model you own. 
# You don't need to add new rules if you own several gamepads of the same model.
#
# Each unique gamepad is handled by its own instance of the xboxdrv systemd 
unit.
#
# We try to identify each unique gamepad with this combination of attributes:
# $attr{idVendor}-$attr{idProduct}-$attr{serial}
#
# For this to work, you need to provide a xboxdrv config for each unique 
gamepad you own.

## Gamepads ##

# Microsoft Xbox Series Controller S|X

KERNEL=="event*", SUBSYSTEM=="input", ATTRS{idVendor}=="045e", 
ATTRS{idProduct}=="0b12", 
SYMLINK+="input/$attr{idVendor}-$attr{idProduct}-$attr{serial}", ACTION=="add", 
RUN+="/usr/bin/systemctl start 
xboxdrv@$attr{idVendor}-$attr{idProduct}-$attr{serial}"
KERNEL=="event*", SUBSYSTEM=="input", ATTRS{idVendor}=="045e", 
ATTRS{idProduct}=="0b12", ACTION=="remove", RUN+="/usr/bin/systemctl stop 
xboxdrv@$attr{idVendor}-$attr{idProduct}-$attr{serial}" 

# Logitec Rumblepad 2

KERNEL=="event*", SUBSYSTEM=="input", ATTRS{idVendor}=="046d", 
ATTRS{idProduct}=="c218", 
SYMLINK+="input/$attr{idVendor}-$attr{idProduct}-$attr{serial}", ACTION=="add", 
RUN+="/usr/bin/systemctl start 
xboxdrv@$attr{idVendor}-$attr{idProduct}-$attr{serial}"
KERNEL=="event*", SUBSYSTEM=="input", ATTRS{idVendor}=="046d", 
ATTRS{idProduct}=="c218", ACTION=="remove", RUN+="/usr/bin/systemctl stop 
xboxdrv@$attr{idVendor}-$attr{idProduct}-$attr{serial}"
[Unit]
Description=A Xbox/Xbox360 userspace gamepad driver

[Service]
Type=simple
User=root
ExecStart=/usr/bin/xboxdrv -c /etc/xboxdrv/%i.xboxdrv

# Or use a PID?
ExecStop=pkill --signal 1 -f "/usr/bin/xboxdrv -c /etc/xboxdrv/%i.xboxdrv"

[Install]
WantedBy=multi-user.target


Bug#1042941: xboxdrv: 1 minute delay before passing through events

2023-08-02 Thread cacatoes

Package: xboxdrv
Version: 0.8.8-3
Severity: normal
X-Debbugs-Cc: cacat...@tuxfamily.org

Dear Maintainers,

I encounter a problem which has been described in a github issue[1], 
with a given patch[2] which hasn't been applied upstream since the 
project isn't very active.


[1]: https://github.com/xboxdrv/xboxdrv/issues/144
[2]: 
https://github.com/xboxdrv/xboxdrv/pull/214/files/7326421eeaadbc2aeb3828628c2e65bb7be323a9


With my device (Logitech rumblepad 2), I have to wait one minute after 
running xboxdrv before being able to use my gamepad.


I'm using this command to run it:

# xboxdrv --evdev 
/dev/input/by-id/usb-Logitech_Logitech_RumblePad_2_USB-event-joystick 
--evdev-absmap 
ABS_X=x1,ABS_Y=y1,ABS_HAT0X=dpad_x,ABS_HAT0Y=dpad_y,ABS_Z=y2,ABS_RZ=x2 
--evdev-keymap 
BTN_THUMB=a,BTN_THUMB2=b,BTN_TRIGGER=y,BTN_TOP=x,BTN_TOP2=lb,BTN_PINKIE=rb,BTN_BASE=lt,BTN_BASE2=rt,BTN_BASE3=Back,BTN_BASE4=Start 
--axismap -Y1=Y1,-Y2=Y2 --mimic-xpad


I confirm applying the small patch helps making my controller work right 
after running xboxdrv, and not having to wait.


I have no github account, but that could be nice to tell upstream this 
patch fixes it here.


Have a good day,

-- System Information:
Debian Release: 12.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 
'stable')

Architecture: amd64 (x86_64)

Kernel: Linux 6.1.0-10-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_WARN, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE 
not set

Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages xboxdrv depends on:
ii  libc6 2.36-9+deb12u1
ii  libdbus-1-3   1.14.8-2~deb12u1
ii  libdbus-glib-1-2  0.112-3
ii  libgcc-s1 12.2.0-14
ii  libglib2.0-0  2.74.6-2
ii  libstdc++612.2.0-14
ii  libudev1  252.12-1~deb12u1
ii  libusb-1.0-0  2:1.0.26-1
ii  libx11-6  2:1.8.4-2+deb12u1

Versions of packages xboxdrv recommends:
ii  python3   3.11.2-1+b1
ii  python3-dbus  1.3.2-4+b1

xboxdrv suggests no packages.

-- no debconf information

Bus 001 Device 004: ID 046d:c218 Logitech, Inc. F510 Gamepad [DirectInput Mode]
Device Descriptor:
  bLength18
  bDescriptorType 1
  bcdUSB   1.10
  bDeviceClass0 
  bDeviceSubClass 0 
  bDeviceProtocol 0 
  bMaxPacketSize0 8
  idVendor   0x046d Logitech, Inc.
  idProduct  0xc218 F510 Gamepad [DirectInput Mode]
  bcdDevice1.00
  iManufacturer   1 Logitech
  iProduct2 Logitech RumblePad 2 USB
  iSerial 0 
  bNumConfigurations  1
  Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength   0x0029
bNumInterfaces  1
bConfigurationValue 1
iConfiguration  0 
bmAttributes 0x80
  (Bus Powered)
MaxPower  500mA
Interface Descriptor:
  bLength 9
  bDescriptorType 4
  bInterfaceNumber0
  bAlternateSetting   0
  bNumEndpoints   2
  bInterfaceClass 3 Human Interface Device
  bInterfaceSubClass  0 
  bInterfaceProtocol  0 
  iInterface  0 
HID Device Descriptor:
  bLength 9
  bDescriptorType33
  bcdHID   1.10
  bCountryCode0 Not supported
  bNumDescriptors 1
  bDescriptorType34 Report
  wDescriptorLength 119
 Report Descriptors: 
   ** UNAVAILABLE **
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81  EP 1 IN
bmAttributes3
  Transfer TypeInterrupt
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0008  1x 8 bytes
bInterval  10
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x01  EP 1 OUT
bmAttributes3
  Transfer TypeInterrupt
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0008  1x 8 bytes
bInterval  10


Bug#1036988: crashes with TypeError: _ScrolledWindowBase.SetScrollbars(): argument 3 has unexpected type 'float'

2023-05-31 Thread cacatoes

Package: cycle
Version: 0.3.2-2

Hello,

steps to reproduce:
- run the program
- fill infos (name and password)
- validate

The program crashes with this output on a terminal:

~
$ cycle
/usr/bin/cycle:35: DeprecationWarning: Use setlocale(), getencoding() 
and getlocale() instead

  dl = locale.getdefaultlocale()

(cycle:108832): dbind-WARNING **: 08:53:27.113: AT-SPI: Error retrieving 
accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: 
The name org.a11y.Bus was not provided by any .service files

Traceback (most recent call last):
  File "/usr/bin/cycle", line 212, in OnInit
self.frame_init()
  File "/usr/bin/cycle", line 216, in frame_init
frame = MyFrame(None, -1, "")
^
  File "/usr/bin/cycle", line 81, in __init__
self.cal = Cal_Year(self)
   ^^
  File "/usr/share/cycle/cal_year.py", line 168, in __init__
self.Init_Year()
  File "/usr/share/cycle/cal_year.py", line 209, in Init_Year
self.SetScrollbars(20, 20, w/20, h/20)
TypeError: _ScrolledWindowBase.SetScrollbars(): argument 3 has 
unexpected type 'float'

OnInit returned false, exiting...
~

Have a good day,


-- System Information:
Debian Release: 12.0
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'unstable'), (500, 
'testing-security'), (500, 'testing-debug')

Architecture: amd64 (x86_64)

Kernel: Linux 6.1.0-9-amd64 (SMP w/4 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE 
not set

Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages cycle depends on:
ii  python3   3.11.2-1+b1
ii  python3-wxgtk4.0  4.2.0+dfsg-3

cycle recommends no packages.

cycle suggests no packages.

-- no debconf information



Bug#797363: doesn't occur with current version

2022-07-18 Thread cacatoes
This bug doesn't occur with currently packaged vcmi versions, buying a 
spell book works fine.
Tested on vcmi 0.99+dfsg+git20190113.f06c8a87-2 (bullseye) and on 
bookworm.

So I think this bug can be closed.

---

As a side note, I wasn't able to load the save game attached to this bug 
report.


Establishing connection...
Found endpoints:
0:127.0.0.1:3030
Trying connection to 127.0.0.1:3030(0)
Established connection with VCMI 0.99 GITDIR-NOTFOUND (server). UUID: 
6766579e-beca-4b08-a8db-6713f6356198
vcmiserver: /usr/include/boost/optional/optional.hpp:1212: 
boost::optional::reference_type boost::optional::get() [with T = 
boost::filesystem::path; boost::optional::reference_type = 
boost::filesystem::path&]: Assertion `this->is_initialized()' failed.

Aborted
Lost connection to server, ending listening thread!
read: End of file
Error: server failed to close correctly or crashed!
Check /home/fab/.cache/vcmi/server_log.txt for more info

(not exactly more info in server_log.txt)



Bug#991460: fix still not applied?

2022-06-22 Thread cacatoes

are you offering to do play-tests or can you also help compiling vcmi?


Mostly play-testing ;) I'm not into software dev, but I'm okay with some 
basic debug.


I packaged the current state of vcmi git and it fails to compile with 
these

errors:

https://salsa.debian.org/games-team/vcmi/-/jobs/2908349


I'm not familiar at all with CI, the error produced is not very 
explicit, it seems vcmiclient was built, but the Makefile fails and I'm 
not familiar enough to know how to dig that.


Thanks for your quick answer!



Bug#991460: fix still not applied?

2022-06-22 Thread cacatoes

Hello!
Is there any chance to see this fix applied anytime soon? (this bug 
prevents from playing a big part of the game).
Upstream also has fixes for various (but less critical) things according 
to commit logs.

I'll try to be around for doing tests if a new package comes.
Have a good day, and thanks!



Bug#764981: closed by Julien Puydt (Is the problem still there?)

2021-12-03 Thread cacatoes
Hello,

Unfortunately, this problem is still there.

I still can't input a 7 from the server tab. I suppose it's keyboard
layout or env related. I 

When running minetest from console and hitting the 7 key, the output is:

   Could not find EKEY_CODE, using orig. X11 keycode instead: 16

Thanks,

Le vendredi 03 décembre 2021 à 10:42:03, Debian Bug Tracking System a écrit :
> This is an automatic notification regarding your Bug report
> which was filed against the irrlicht package:
> 
> #764981: minetest: can't input a '7' from main menu
> 
> It has been closed by Julien Puydt .
> 
> 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 Julien Puydt 
>  by
> replying to this email.
> 
> 
> -- 
> 764981: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=764981
> Debian Bug Tracking System
> Contact ow...@bugs.debian.org with problems

> Date: Fri, 03 Dec 2021 11:40:07 +0100
> From: Julien Puydt 
> To: 764981-d...@bugs.debian.org
> Subject: Is the problem still there?
> User-Agent: Evolution 3.42.1-1 
> 
> Hi,
> 
> I took over the maintenance of irrlicht in Debian, so I'm going through
> the old bug reports to see if there's something I can do.
> 
> I can easily type digits in minetest main page (for the server port),
> so I think the problem has been fixed long ago.
> 
> Please don't hesitate to report again if you find something strange ;
> hopefully you'll get a faster answer!
> 
> Thanks for your input,
> 
> J.Puydt

> Date: Sun, 12 Oct 2014 21:00:29 +0200
> From: cacatoès 
> To: sub...@bugs.debian.org
> Subject: minetest: can't input a '7' from main menu
> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101
>  Icedove/31.0
> 
> Package: minetest
> Version: 0.4.10+repack-1
> Severity: normal
> 
> Dear Maintainers,
> 
> The problem is very simple... I can't input a '7' from the main menu.
> So, for instance, if I want to join a custom server, I can't if it has this
> digit in the IP address.
> I was told on the IRC it is a known problem with irrlicht, and several
> people are experiencing something similar with non-english keyboard layouts.
> 
> I was given this partial fix on #minetest :
> 
> In irlicht 1.8.1 change in
> irrlicht-1.8.1/source/Irrlicht/CIrrDeviceLinux.cpp line "event.xkey.state =
> 0;" for "event.xkey.state &= ~(ControlMask|ShiftMask);" without quotes and
> recompile your irrlicht
> 
> Hope a fix can be brought in soon,
> 
> Regards,
> 
> 
> -- System Information:
> Debian Release: jessie/sid
>   APT prefers testing
>   APT policy: (500, 'testing')
> Architecture: amd64 (x86_64)
> Foreign Architectures: i386
> 
> Kernel: Linux 3.16-2-amd64 (SMP w/2 CPU cores)
> Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> 
> Versions of packages minetest depends on:
> ii  libc62.19-11
> ii  libcurl3-gnutls  7.38.0-2
> ii  libfreetype6 2.5.2-2
> ii  libgcc1  1:4.9.1-16
> ii  libirrlicht1.8   1.8.1+dfsg1-1
> ii  libjsoncpp0  0.6.0~rc2-3
> ii  libleveldb1  1.17-1
> ii  libluajit-5.1-2  2.0.3+dfsg-3
> ii  libogg0  1.3.2-1
> ii  libopenal1   1:1.15.1-5
> ii  libsqlite3-0 3.8.6-1
> ii  libstdc++6   4.9.1-16
> ii  libvorbis0a  1.3.2-1.4
> ii  libvorbisfile3   1.3.2-1.4
> ii  minetest-data0.4.10+repack-1
> ii  zlib1g   1:1.2.8.dfsg-2
> 
> minetest recommends no packages.
> 
> Versions of packages minetest suggests:
> pn  minetest-mod-moreblocks  
> pn  minetest-mod-moreores
> pn  minetest-mod-pipeworks   
> pn  minetest-server  
> 
> -- no debconf information



Bug#1000316: crashes when binary called with an argument

2021-11-21 Thread cacatoes
Package: numptyphysics
Version: 0.2+svn157-0.5
Severity: normal

Hello,

numptyphysics crashes when starting from the command line with an argument, 
i.e.:

numptyphysics --help # or anything

backtrace attached.

Bye,

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

Kernel: Linux 5.14.0-2-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages numptyphysics depends on:
ii  fonts-femkeklaver  1.0-3
ii  libc6  2.32-4
ii  libfontconfig1 2.13.1-4.2
ii  libgcc-s1  11.2.0-10
ii  libsdl-image1.21.2.12-12
ii  libsdl-ttf2.0-02.0.11-6
ii  libsdl1.2debian1.2.15+dfsg2-6
ii  libstdc++6 11.2.0-10
ii  libx11-6   2:1.7.2-2+b1
ii  zlib1g 1:1.2.11.dfsg-2

numptyphysics recommends no packages.

numptyphysics suggests no packages.

-- no debconf information
(gdb) run
Starting program: /usr/games/numptyphysics afezf
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7628a640 (LWP 278047)]
STATS:  time=17100ms
strokes=0 (0 paused, 0 undone)
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::substr: __pos (which is 18446744073709551615) > 
this->size() (which is 3)

Thread 1 "numptyphysics" received signal SIGABRT, Aborted.
0x7784ce71 in raise () from /lib/x86_64-linux-gnu/libc.so.6
(gdb) bt
#0  0x7784ce71 in raise () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x77836536 in abort () from /lib/x86_64-linux-gnu/libc.so.6
#2  0x77bfd87a in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#3  0x77c0905a in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#4  0x77c090c5 in std::terminate() () from 
/lib/x86_64-linux-gnu/libstdc++.so.6
#5  0x77c09359 in __cxa_throw () from 
/lib/x86_64-linux-gnu/libstdc++.so.6
#6  0x77c0028c in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#7  0x55569817 in std::__cxx11::basic_string, std::allocator >::_M_check (
__s=0x5559b193 "basic_string::substr", __pos=, 
this=0x7fffe580) at /usr/include/c++/10/bits/basic_string.h:313
#8  std::__cxx11::basic_string, 
std::allocator >::substr (__n=18446744073709551615, __pos=, 
this=0x7fffe580) at /usr/include/c++/10/bits/basic_string.h:2835
#9  Levels::demoName[abi:cxx11](int) (this=0x55607830, l=0) at 
Levels.cpp:309
#10 0x55571b24 in Game::saveDemo (this=0x5560c810) at Game.cpp:178
#11 Game::onTick (this=0x5560c810, tick=17100) at Game.cpp:334
#12 0x555766bd in Container::onTick (this=0x7fffe790, tick=17100) 
at Ui.cpp:767
#13 0x555749dc in App::mainLoop (this=0x7fffe790) at App.cpp:307
#14 0x55573886 in npmain (argc=argc@entry=2, 
argv=argv@entry=0x7fffe968) at App.cpp:372
#15 0x55562bfb in main (argc=2, argv=0x7fffe968) at 
OsFreeDesktop.cpp:133


Bug#999913: crashes on specific mouse&keyboard interaction

2021-11-18 Thread cacatoes
Package: numptyphysics
Version: 0.2+svn157-0.5

Hello,

I kinda manage to make numptyphysics crash at will.

Steps to reproduce:

* Draw a line on any level, keep left mouse button clicked.
* Use keyboard "up" arrow to reset the level, eventually several times
  while still holding mouse button.
* Release mouse button.

Please find attached a backtrace and a full backtrace, obtained with
debuginfod, I hope I proceeded right.

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

Kernel: Linux 5.14.0-2-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages numptyphysics depends on:
ii  fonts-femkeklaver  1.0-3
ii  libc6  2.32-4
ii  libfontconfig1 2.13.1-4.2
ii  libgcc-s1  11.2.0-10
ii  libsdl-image1.21.2.12-12
ii  libsdl-ttf2.0-02.0.11-6
ii  libsdl1.2debian1.2.15+dfsg2-6
ii  libstdc++6 11.2.0-10
ii  libx11-6   2:1.7.2-2+b1
ii  zlib1g 1:1.2.11.dfsg-2

numptyphysics recommends no packages.

numptyphysics suggests no packages.

-- no debconf information
Thread 1 "numptyphysics" received signal SIGSEGV, Segmentation fault.
Path::simplify (this=this@entry=0x556f5c30, threshold=threshold@entry=1) at 
Path.cpp:111
Download failed: Argument invalide.  Continuing without source file ./Path.cpp.
111 Path.cpp: Aucun fichier ou dossier de ce type.
(gdb) bt
#0  Path::simplify (this=this@entry=0x556f5c30, 
threshold=threshold@entry=1) at Path.cpp:111
#1  0x5556e187 in Stroke::process (this=0x556f5c30) at Scene.cpp:451
#2  Stroke::createBodies (this=this@entry=0x556f5c30, world=...) at 
Scene.cpp:237
#3  0x5556af6c in Scene::activate (s=0x556f5c30, 
this=0x5560be80) at Scene.cpp:639
#4  Scene::activate (s=0x556f5c30, this=this@entry=0x5560be80) at 
Scene.cpp:636
#5  Scene::activateStroke (this=this@entry=0x5560be80, s=0x556f5c30) at 
Scene.cpp:617
#6  0x55570fef in Game::onEvent (this=0x5560bdf0, ev=...) at 
Game.cpp:513
#7  0x555786a9 in Widget::dispatchEvent (ev=..., this=0x5560be30) 
at Ui.cpp:84
#8  Widget::processEvent (ev=..., this=) at Ui.cpp:76
#9  Container::processEvent (this=, ev=...) at Ui.cpp:810
#10 0x55571625 in non-virtual thunk to Game::processEvent(SDL_Event&) 
() at Game.cpp:393
#11 0x55578649 in Container::processEvent 
(this=this@entry=0x7fffe7a0, ev=...) at Ui.cpp:795
#12 0x55574b43 in App::processEvent (ev=..., this=0x7fffe7a0) at 
App.cpp:276
#13 App::mainLoop (this=0x7fffe7a0) at App.cpp:311
#14 0x55573886 in npmain (argc=argc@entry=1, 
argv=argv@entry=0x7fffe978) at App.cpp:372
#15 0x55562bfb in main (argc=1, argv=0x7fffe978) at 
OsFreeDesktop.cpp:133
(gdb) bt full
#0  Path::simplify (this=this@entry=0x556f5c30, 
threshold=threshold@entry=1) at Path.cpp:111
keepflags = 
k = 
#1  0x5556e187 in Stroke::process (this=0x556f5c30) at Scene.cpp:451
thresh = 1
thresh = 
#2  Stroke::createBodies (this=this@entry=0x556f5c30, world=...) at 
Scene.cpp:237
n = 
#3  0x5556af6c in Scene::activate (s=0x556f5c30, 
this=0x5560be80) at Scene.cpp:639
No locals.
#4  Scene::activate (s=0x556f5c30, this=this@entry=0x5560be80) at 
Scene.cpp:636
No locals.
#5  Scene::activateStroke (this=this@entry=0x5560be80, s=0x556f5c30) at 
Scene.cpp:617
No locals.
#6  0x55570fef in Game::onEvent (this=0x5560bdf0, ev=...) at 
Game.cpp:513
used = true
#7  0x555786a9 in Widget::dispatchEvent (ev=..., this=0x5560be30) 
at Ui.cpp:84
No locals.
#8  Widget::processEvent (ev=..., this=) at Ui.cpp:76
e = {code = Event::DRAWEND, x = 624, y = 264, c = 0 '\000', mods = 0 
'\000', static g_mods = 0 '\000'}
#9  Container::processEvent (this=, ev=...) at Ui.cpp:810
No locals.
#10 0x55571625 in non-virtual thunk to Game::processEvent(SDL_Event&) 
() at Game.cpp:393
No symbol table info available.
#11 0x55578649 in Container::processEvent 
(this=this@entry=0x7fffe7a0, ev=...) at Ui.cpp:795
c = 
i = 
#12 0x55574b43 in App::processEvent (ev=..., this=0x7fffe7a0) at 
App.cpp:276
No locals.
#13 App::mainLoop (this=0x7fffe7a0) at App.cpp:311
ev = {type = 6 '\006', active = {type = 6 '\006', gain = 0 '\000', 
state = 1 '\001'}, key = {type = 6 '\006', which = 0 '\000', state = 1 '\001', 
keysym = {scancode = 112 'p', sym = SDLK_UNKNOWN, mod = KMOD_NONE, 
unicode = 0}}, motion = {type = 6 '\006', which = 0 '\000', state = 1 '\001', 
x = 624, y = 264, xrel = 0, yrel = 0}, button = {type = 6 '\006', 
w

Bug#986682: Debian installer alpha 3 on Targa circa 2009

2021-04-09 Thread cacatoes
Package: installation-reports

Boot method: USB Stick
Image version: 
https://cdimage.debian.org/cdimage/bullseye_di_alpha3/i386/iso-cd/debian-bullseye-DI-alpha3-i386-netinst.iso
Date: 2021-04-07

Hi,

I wasn't able to install from Debian Installer Bullseye Alpha 3 because
it fails to detect the hard drive, so I reverted to Debian Stable
installer.

Machine: Targa, from ~2008-2009

Processor: Intel(R) Atom(TM) CPU N270   @ 1.60GHz (32bits)

Memory: $ free -h
   total   utilisé  libre partagé tamp/cache   
disponible
Mem:   988Mi   338Mi   218Mi64Mi   431Mi   558Mi
Partition d'échange:  1,0Gi   1,0Mi   1,0Gi

$ df -Tl
Sys. de fichiers   Type blocs de 1K Utilisé Disponible Uti% Monté sur
udev   devtmpfs  492068   0 492068   0% /dev
tmpfs  tmpfs 101204 800 100404   1% /run
/dev/mapper/z--vg-root ext428703652 1971168   25251372   8% /
tmpfs  tmpfs 506020   11216 494804   3% /dev/shm
tmpfs  tmpfs   5120   4   5116   1% /run/lock
/dev/sda1  ext2  240972   76730 151801  34% /boot
/dev/mapper/z--vg-home ext4   123192904  162436  116729592   1% /home
tmpfs  tmpfs 1012042492  98712   3% 
/run/user/1000

$ lspci -knn
00:00.0 Host bridge [0600]: Intel Corporation Mobile 945GSE Express Memory 
Controller Hub [8086:27ac] (rev 03)
Subsystem: Micro-Star International Co., Ltd. [MSI] Mobile 945GSE 
Express Memory Controller Hub [1462:0110]
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GSE 
Express Integrated Graphics Controller [8086:27ae] (rev 03)
Subsystem: Micro-Star International Co., Ltd. [MSI] Mobile 945GSE 
Express Integrated Graphics Controller [1462:0110]
Kernel driver in use: i915
Kernel modules: i915
00:02.1 Display controller [0380]: Intel Corporation Mobile 945GM/GMS/GME, 
943/940GML Express Integrated Graphics Controller [8086:27a6] (rev 03)
Subsystem: Micro-Star International Co., Ltd. [MSI] Mobile 
945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller [1462:0110]
00:1b.0 Audio device [0403]: Intel Corporation NM10/ICH7 Family High Definition 
Audio Controller [8086:27d8] (rev 02)
Subsystem: Micro-Star International Co., Ltd. [MSI] NM10/ICH7 Family 
High Definition Audio Controller [1462:0110]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
00:1c.0 PCI bridge [0604]: Intel Corporation NM10/ICH7 Family PCI Express Port 
1 [8086:27d0] (rev 02)
Kernel driver in use: pcieport
00:1c.2 PCI bridge [0604]: Intel Corporation NM10/ICH7 Family PCI Express Port 
3 [8086:27d4] (rev 02)
Kernel driver in use: pcieport
00:1d.0 USB controller [0c03]: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #1 [8086:27c8] (rev 02)
Subsystem: Micro-Star International Co., Ltd. [MSI] NM10/ICH7 Family 
USB UHCI Controller [1462:0110]
Kernel driver in use: uhci_hcd
Kernel modules: uhci_hcd
00:1d.1 USB controller [0c03]: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #2 [8086:27c9] (rev 02)
Subsystem: Micro-Star International Co., Ltd. [MSI] NM10/ICH7 Family 
USB UHCI Controller [1462:0110]
Kernel driver in use: uhci_hcd
Kernel modules: uhci_hcd
00:1d.2 USB controller [0c03]: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #3 [8086:27ca] (rev 02)
Subsystem: Micro-Star International Co., Ltd. [MSI] NM10/ICH7 Family 
USB UHCI Controller [1462:0110]
Kernel driver in use: uhci_hcd
Kernel modules: uhci_hcd
00:1d.3 USB controller [0c03]: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #4 [8086:27cb] (rev 02)
Subsystem: Micro-Star International Co., Ltd. [MSI] NM10/ICH7 Family 
USB UHCI Controller [1462:0110]
Kernel driver in use: uhci_hcd
Kernel modules: uhci_hcd
00:1d.7 USB controller [0c03]: Intel Corporation NM10/ICH7 Family USB2 EHCI 
Controller [8086:27cc] (rev 02)
Subsystem: Micro-Star International Co., Ltd. [MSI] NM10/ICH7 Family 
USB2 EHCI Controller [1462:0110]
Kernel driver in use: ehci-pci
Kernel modules: ehci_pci
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge 
[8086:2448] (rev e2)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801GBM (ICH7-M) LPC Interface 
Bridge [8086:27b9] (rev 02)
Subsystem: Micro-Star International Co., Ltd. [MSI] 82801GBM (ICH7-M) 
LPC Interface Bridge [1462:0110]
Kernel driver in use: lpc_ich
Kernel modules: intel_rng, lpc_ich, leds_ss4200
00:1f.2 SATA controller [0106]: Intel Corporation 82801GBM/GHM (ICH7-M Family) 
SATA Controller [AHCI mode] [8086:27c5] (rev 02)
Subsystem: Micro-Star International Co., Ltd. [MSI] 82801GBM/GHM 
(ICH7-M Family) SATA Controller [AHCI mode] [1462:0110]
Kernel driver in use: a

Bug#980119: libgnutls30: "An unexpected TLS packet was received" when connecting to FTPS (FTP/TLS) servers

2021-01-15 Thread cacatoes
No success on my side, it times out, or doesn't seem to send/process the
USER/PASS if I input them, maybe I was late this time.
The server has IP blacklisting so it doesn't help...

~~~
$ gnutls-cli --starttls-proto=ftp myftphost -V
Processed 126 CA certificate(s).
Resolving 'myftphost:ftp'...
Connecting to 'ip.ip.ip.ip:21'...
Negotiating FTP STARTTLS
starttls: sending: FEAT

starttls: waiting for: "211 "
starttls: received: 220 Some Welcome Message

starttls: received: 521 Not logged in - Secure authentication required

USER myuser
PASS error receiving '211 ': Timeout
~~~

With the same host but with Filezilla it was able to receive the
certificate before trying to Login.

With some other host (the one used by OP) I receive the certificate and
go into simple client mode, so it could have worked.

Le vendredi 15 janvier 2021 à 07:02:35, Andreas Metzler a écrit :
> On 2021-01-14 "Boyd Stephen Smith Jr."  wrote:
> > Package: libgnutls30
> > Version: 3.7.0-5
> > Severity: normal
> 
> > Dear Maintainer,
> 
> > Trying to upload some files to a game hosting provider that only allows FTPS
> > (not SFTP) access.  Provider is akliz.net.
> 
> > Each customer gets a private virtual (vsftp?) instance.  I'm connecting to
> > bos-sr-2-36.akliz.net
> 
> > In both FileZilla 3.51.0-1 and lftp 4.8.4-2+b1 I get an error _after_ a
> > successful login when trying to list the contents of the current directory.
> [...]
> 
> Is this reproducible with gnutls-cli?
> 
> -
> gnutls-cli  --starttls-proto=ftp bos-sr-2-36.akliz.net
> ...
> USER _loginhere_
> PASS _passwordhere_
> PWD
> -
> 
> cu Andreas
> -- 
> `What a good friend you are to him, Dr. Maturin. His other friends are
> so grateful to you.'
> `I sew his ears on from time to time, sure'



Bug#980119: same issue here

2021-01-14 Thread cacatoes
Package: libgnutls30
Version: 3.7.0-5

Same issue here, I rarely need FTP so it's a chance to see this bug
report here since I wasn't sure of the track..

My problem happens while trying to connect on a FTP server running
Cerberus FTP (Windows).
It doesn't seem to happen on the other FTP servers I have in my list.

Also tried with lftp and gftp, same error messages than OP.

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

Kernel: Linux 5.10.0-1-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libgnutls30 depends on:
ii  libc6  2.31-9
ii  libgmp10   2:6.2.1+dfsg-1
ii  libhogweed63.6-2
ii  libidn2-0  2.3.0-4
ii  libnettle8 3.6-2
ii  libp11-kit00.23.22-1
ii  libtasn1-6 4.16.0-2
ii  libunistring2  0.9.10-4

libgnutls30 recommends no packages.

Versions of packages libgnutls30 suggests:
pn  gnutls-bin  

-- debconf-show failed



Bug#973566: Same with psi & psi-plus

2020-11-16 Thread cacatoes
Hi,

I have experienced a similar issue when testing Psi/Psi-plus :

There was an error communicating with the server.
Details: Authentication error: No appropriate mechanism available for
given security settings (e.g. SASL library too weak, or plaintext
authentication not enabled)
Offered mechanisms: PLAIN
Offered mechanisms: PLAIN

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

Kernel: Linux 5.9.0-1-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages psi-plus depends on:
ii  libc6 2.31-4
ii  libgcc-s1 10.2.0-16
ii  libhunspell-1.7-0 1.7.0-3
ii  libidn11  1.33-2.4
ii  libminizip1   1.1-8+b1
ii  libqca-qt5-2  2.3.1-1
ii  libqca-qt5-2-plugins  2.3.1-1
ii  libqt5concurrent5 5.15.1+dfsg-2
ii  libqt5core5a  5.15.1+dfsg-2
ii  libqt5dbus5   5.15.1+dfsg-2
ii  libqt5gui55.15.1+dfsg-2
ii  libqt5keychain1   0.10.0-1
ii  libqt5network55.15.1+dfsg-2
ii  libqt5sql55.15.1+dfsg-2
ii  libqt5sql5-sqlite 5.15.1+dfsg-2
ii  libqt5svg55.15.1-2
ii  libqt5widgets55.15.1+dfsg-2
ii  libqt5x11extras5  5.15.1-2
ii  libqt5xml55.15.1+dfsg-2
ii  libstdc++610.2.0-16
ii  libx11-6  2:1.6.12-1
ii  psi-plus-common   1.4.554-4
ii  zlib1g1:1.2.11.dfsg-2

Versions of packages psi-plus recommends:
pn  psi-plus-l10n 
ii  psi-plus-plugins  1.4.554-4
pn  psi-plus-sounds   
ii  sox   14.4.2+git20190427-2

Versions of packages psi-plus suggests:
pn  libgnome-keyring0  
ii  xdg-utils  1.1.3-2

-- no debconf information



Bug#974205: [Pkg-xmpp-devel] Bug#974205: Disconnects when sending specific character sequences on private chat

2020-11-11 Thread cacatoes
Okay, so it's linked to urxvt and it's treatment of ALT key, which
affects the shortcut. I don't know exactly what it sends but profanity
doesn't like it.
I tried with xterm and couldn't switch between windows either, but it
doesn't send any character sequences so no crash.
Running i3.

Just checked, also happens with good old VTs. Switch to console, run
profanity, and try some escape sequence such as hitting CTRL+V twice,
then enter. Disconnects from the server again.

Le mercredi 11 novembre 2020 à 10:58:04, Martin a écrit :
> Control: tag -1 + moreinfo
> 
> On 2020-11-11 10:22, cacat...@tuxfamily.org wrote:
> > I can reproduce it every time by inputting ALT+F1, ALT+Fn keys in a
> > private message window, and sending it.
> ...
> > ALT+Fn keys are meant to switch window but don't seem to work on my
> > setup (I can switch with the other regular ways).
> 
> Maybe this is some speciality of your desktop environment or window manager?
> Which one is it and is it configured in some special way?
> In mine (xfce4), nothing happens, when I press ALT+Fn.
> 
> Cheers



Bug#974205: Disconnects when sending specific character sequences on private chat

2020-11-11 Thread cacatoes
Package: profanity-light
Version: 0.9.5-2
Severity: normal

Hello !

I noticed Profanity disconnects from the XMPP server when sending
specific sequences in chat.

I can reproduce it every time by inputting ALT+F1, ALT+Fn keys in a
private message window, and sending it.

09:53:15 - me: 
^[[11~^[[12~^[[13~^[[12~^[[11~^[[13~^[[14~^[[13~^[[12/home/fab^[[14~
09:53:15 - Lost connection.
09:53:58 - Connection re-established.

ALT+Fn keys are meant to switch window but don't seem to work on my
setup (I can switch with the other regular ways).

All I get in profanity.log is:

11/11/2020 09:53:15: prof: INF: Closing connection

I may provide more infos if needed.

Have a good day,

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

Kernel: Linux 5.9.0-1-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages profanity-light depends on:
ii  libc6  2.31-4
ii  libcurl3-gnutls7.72.0-1
ii  libgcrypt201.8.7-2
ii  libglib2.0-0   2.66.2-1
ii  libgpgme11 1.14.0-1+b1
ii  libncursesw6   6.2+20200918-1
ii  libotr54.1.1-4
ii  libreadline8   8.0-4
ii  libsignal-protocol-c2.3.2  2.3.3-1
ii  libsqlite3-0   3.33.0-1
ii  libstrophe00.9.3-2
ii  libtinfo6  6.2+20200918-1

profanity-light recommends no packages.

profanity-light suggests no packages.

-- no debconf information



Bug#966804: Also happens with wine apps

2020-08-10 Thread cacatoes
Not so surprisingly, same problem when running a wine game.

Sorry for the noise here, I'm unsure how to move this bug to its right
place.



Bug#966804: Some window manager signals (i3/Xorg) turn the whole game/window unresponsive

2020-08-02 Thread cacatoes
Package: endless-sky
Version: 0.9.8-1+b1

Hello,

The whole window freezes when the window manager sends certain signals,
I suppose it's related to SDL, but I experience this playing
endless-sky, so to be sure.

Freezes happen when switching to another workspace - I usually play in
fullscreen. I think playing in windowed mode from the start doesn't
exhibit this problem.
It also happened when popping up a terminal on a side of the screen,
I wanted to change the windows layout (to "tabbed") and realized the
game froze.
It doesn't happen everytime so I can't exactly reproduce at will. But it
happens almost every time after I played the game for a little while.
No idea how to debug this, I `killall -9 endless-sky` to unfreeze the
workspace and start the game again.

My current .xsession-errors shows the same line 5 times :
###!!! [Child][RunMessage] Error: Channel closing: too late to
send/recv, messages will be lost
But absolutely not sure it's related to this problem.

Thanks for your attention,

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

Kernel: Linux 5.7.0-1-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages endless-sky depends on:
ii  endless-sky-data 0.9.8-1
ii  libc62.31-2
ii  libgcc-s1 [libgcc1]  10.1.0-6
ii  libgl1   1.3.1-1
ii  libglew2.1   2.1.0-4+b1
ii  libjpeg62-turbo  1:1.5.2-2+b1
ii  libmad0  0.15.1b-10
ii  libopenal1   1:1.19.1-1+b1
ii  libpng16-16  1.6.37-2
ii  libsdl2-2.0-02.0.12+dfsg1-1
ii  libstdc++6   10.1.0-6

endless-sky recommends no packages.

endless-sky suggests no packages.

-- no debconf information



Bug#966575: grub-pc: error: symbol `grub_calloc' not found.

2020-08-01 Thread cacatoes
Hello,

My case was indeed a disk switch from USB to internal.

I probably had invoked directly grub-install (dunno if it'd make sense
to warn about the mismatch with debconf there?), now I know I should
rather use dpkg-reconfigure instead.

# debconf-get-selections |grep 'grub-pc/install_devices'
grub-pc grub-pc/install_devices_disks_changed   multiselect
/dev/disk/by-id/usb-KINGSTON_SA400S37240G_AB12362D-0:0
grub-pc grub-pc/install_devices_failed_upgrade  boolean true
grub-pc grub-pc/install_devices_failed  boolean false
grub-pc grub-pc/install_devices_empty   boolean false
grub-pc grub-pc/install_devices multiselect
/dev/disk/by-id/usb-KINGSTON_SA400S37240G_AB12362D-0:0

# ls /dev/disk/by-id/usb-KINGSTON_SA400S37240G_AB12362D-0:0
ls: impossible d'accéder à
'/dev/disk/by-id/usb-KINGSTON_SA400S37240G_AB12362D-0:0': Aucun
fichier ou dossier de ce type

# ls /dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7683315755 
/dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7683315755@

# dpkg-reconfigure grub-pc

# debconf-get-selections |grep 'grub-pc/install_devices'
grub-pc grub-pc/install_devices_failed  boolean false
grub-pc grub-pc/install_devices multiselect
/dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7683315755
grub-pc grub-pc/install_devices_disks_changed   multiselect
/dev/disk/by-id/ata-KINGSTON_SA400S37240G_50026B7683315755
grub-pc grub-pc/install_devices_empty   boolean false
grub-pc grub-pc/install_devices_failed_upgrade  boolean true

Thanks for the explanations!



Bug#966575: same error message here

2020-07-31 Thread cacatoes
Package: grub-pc
Version: 2.02+dfsg1-20+deb10u2

Dear Maintainers,

Don't know if it's useful but contributing infos I collected on this,
since I ran into the same error message on a Lenovo Thinkpad T510
running Debian Stable.

Some specifics are :
- I use unattended-upgrades, so it might be I missed something
- Install was made with no root password set, but I set one recently.
- It has a LUKS partition but it's secondary and not a system mount
  point.
- It runs a kernel from the backports.

What happened :

Start-Date: 2020-07-30  09:09:13
Commandline: /usr/bin/unattended-upgrade
Upgrade: grub-common:amd64 (2.02+dfsg1-20, 2.02+dfsg1-20+deb10u1),
grub2-common:amd64 (2.02+dfsg1-20, 2.02+dfsg1-20+deb10u1), grub-pc:amd64
(2.02+dfsg1-20, 2.02+dfsg1-20+deb10u1), grub-pc-bin:amd64
(2.02+dfsg1-20, 2.02+dfsg1-20+deb10u1)
End-Date: 2020-07-30  09:09:25

Start-Date: 2020-07-30  09:09:27
Commandline: /usr/bin/unattended-upgrade
Upgrade: firefox-esr-l10n-fr:amd64 (68.10.0esr-1~deb10u1,
68.11.0esr-1~deb10u1), firefox-esr:amd64 (68.10.0esr-1~deb10u1,
68.11.0esr-1~deb10u1)
End-Date: 2020-07-30  09:09:38

Start-Date: 2020-07-31  10:41:26
Commandline: /usr/bin/unattended-upgrade
Upgrade: grub-common:amd64 (2.02+dfsg1-20+deb10u1,
2.02+dfsg1-20+deb10u2), grub2-common:amd64 (2.02+dfsg1-20+deb10u1,
2.02+dfsg1-20+deb10u2), grub-pc:amd64 (2.02+dfsg1-20+deb10u1,
2.02+dfsg1-20+deb10u2), grub-pc-bin:amd64 (2.02+dfsg1-20+deb10u1,
2.02+dfsg1-20+deb10u2)
End-Date: 2020-07-31  10:41:36

Reboot on 2020-07-31 @ 22:00:00, then same error message than OP.

Fixed situation by rebooting on a USB key with Debian installer, rescue
mode, reinstalling grub on /dev/sda.

More system infos in attachment.
-- Package-specific info:

*** BEGIN /proc/mounts
/dev/sda1 / ext4 rw,relatime,errors=remount-ro 0 0
/dev/sda8 /mnt/debiantesting ext4 rw,relatime 0 0
/dev/sda6 /home ext4 rw,relatime 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
  fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
insmod all_video
  else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 
--hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  
ad4ff815-580a-4bad-965f-c66dbd806733
else
  search --no-floppy --fs-uuid --set=root ad4ff815-580a-4bad-965f-c66dbd806733
fi
font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=1
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
set timeout=1
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 
--hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  
ad4ff815-580a-4bad-965f-c66dbd806733
else
  search --no-floppy --fs-uuid --set=root ad4ff815-580a-4bad-965f-c66dbd806733
fi
insmod png
if background_image 
/usr/share/desktop-base/futureprototype-theme/grub/grub-4x3.png; then
  set color_normal=white/black
  set color_highlight=black/white
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu 
--class os $menuentry_id_option 
'gnulinux-simple-ad4ff815-580a-4bad-965f-c66dbd806733' {
load_video
insmod

Bug#932410: grrshot

2020-07-27 Thread cacatoes
Forgot it.


Bug#932410: still occurs

2020-07-27 Thread cacatoes
Followup-For: Bug #932410
Package: nautilus
Version: 3.30.5-2

Dear Maintainers,

I experience the same symptoms on a fresh install (Gnome 3 + Wayland),
that is: ~20-30s delayed drag & drop when moving files from within
nautilus, producing various error message popups (attached screenshot
for the most relevant one, others are usually triggered when attemting
to move the same file several times).

It doesn't happen when using keyboard or right-click menu to move the
files.

It happens quite frequently (my first try after a reboot triggered it).

Here are syslog extracts :

Jul 27 17:18:21 iDebian nautilus[1073]: 
../../../../../gdk/wayland/gdkselection-wayland.c:261: error reading selection 
buffer: L’opération a été annulée
Jul 27 17:18:21 iDebian nautilus[1073]: 
../../../../../gdk/wayland/gdkselection-wayland.c:261: error reading selection 
buffer: L’opération a été annulée
Jul 27 17:18:21 iDebian nautilus[1073]: 
../../../../../gdk/wayland/gdkselection-wayland.c:261: error reading selection 
buffer: L’opération a été annulée
Jul 27 17:18:27 iDebian gnome-shell[684]: clutter_actor_add_child: assertion 
'child->priv->parent == NULL' failed
Jul 27 17:18:30 iDebian gnome-shell[684]: clutter_actor_add_child: assertion 
'child->priv->parent == NULL' failed
Jul 27 17:18:40 iDebian nautilus[1073]: g_object_ref: assertion 'G_IS_OBJECT 
(object)' failed
Jul 27 17:19:25 iDebian nautilus[1073]: g_file_get_path: assertion 'G_IS_FILE 
(file)' failed
Jul 27 17:19:25 iDebian nautilus[1073]: g_file_get_path: assertion 'G_IS_FILE 
(file)' failed

Similar reports elsewhere:

- https://bugzilla.redhat.com/show_bug.cgi?id=1808900
- https://gitlab.gnome.org/GNOME/gtk/-/issues/211

According to this last link, there is supposedly a fix:
https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/1057
I haven't tested it.

Thanks a lot for any progress on this.

-- System Information:
Debian Release: 10.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.6.0-0.bpo.2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages nautilus depends on:
ii  bubblewrap 0.3.1-4
ii  desktop-file-utils 0.23-4
ii  gsettings-desktop-schemas  3.28.1-1
ii  gvfs   1.38.1-5
ii  libatk1.0-02.30.0-2
ii  libc6  2.28-10
ii  libcairo-gobject2  1.16.0-4
ii  libcairo2  1.16.0-4
ii  libgdk-pixbuf2.0-0 2.38.1+dfsg-1
ii  libgexiv2-20.10.9-1
ii  libglib2.0-0   2.58.3-2+deb10u2
ii  libglib2.0-data2.58.3-2+deb10u2
ii  libgnome-autoar-0-00.2.3-2
ii  libgtk-3-0 3.24.5-1
ii  libnautilus-extension1a3.30.5-2
ii  libpango-1.0-0 1.42.4-8~deb10u1
ii  libpangocairo-1.0-01.42.4-8~deb10u1
ii  libseccomp22.3.3-4
ii  libselinux12.8-1+b1
ii  libtracker-sparql-2.0-02.1.8-2
ii  nautilus-data  3.30.5-2
ii  shared-mime-info   1.10-1
ii  tracker2.1.8-2

Versions of packages nautilus recommends:
ii  gnome-sushi  3.30.0-2
ii  gvfs-backends1.38.1-5
ii  librsvg2-common  2.44.10-2.1

Versions of packages nautilus suggests:
ii  eog 3.28.4-2+b1
ii  evince [pdf-viewer] 3.30.2-3+deb10u1
pn  nautilus-extension-brasero  
pn  nautilus-sendto 
ii  vlc [mp3-decoder]   3.0.11-0+deb10u1
ii  xdg-user-dirs   0.17-2

-- no debconf information



Bug#939748: reaches testing

2020-04-12 Thread cacatoes
Hi,

Being hit by this issue since today in testing (i3 and dunst user too).
I can't say discarding bitmap is the right/wrong move, but not being
informed about it made me hope it won't hit stable the same way,
pangolins are delicate subjects.
Providing font conversions could be nice.

Regards,



Bug#952972: cinnamon: windows (desklets?) at the back capturing clicks from front windows

2020-03-02 Thread cacatoes
Package: cinnamon
Version: 3.8.8-1

Hello Dear Maintainers,

Several users seem to experience weirdness with mouse clicks with
Cinnamon, this problem may have been around for years[1]. I'm still
unsure of the origin, I suspect the culprit may be related to the
«Desklets» feature. I kinda manage to reproduce it.

It happens both on Debian Stable, and Debian Testing.

So, here is the setup:

- Have the «Notes» (@schlorri) Desklet running on the Desktop. Customize
  it to use some text editor like gedit. Put this desklet to the center
  of the screen.
- Run gnome-terminal. Put this terminal to the center of the screen in
  front of the desklet.
- Run nemo file-manager, windowed not fullscreen, in front of the 2
  other windows.
- Now, minimize Nemo to taskbar, and quickly click (eventually
  double-click, this might exhibit the behaviour more often) on
  the center of the screen (that is, on the terminal) during the
  minimize animation.

What will happen:
- gedit will popup, although the desklet was not on the
front. Or, 
- the Note desklet will be in "move window" mode, even though mouse
  button has been released.

You might have to repeat step 4 a few times to manage to get this
improper behaviour.

Regards,

[1]: https://forums.linuxmint.com/viewtopic.php?f=208&t=237811



Bug#950960: photocollage: GUI field too small for border width

2020-02-08 Thread cacatoes
Subject: photocollage: GUI field too small for border width
Package: photocollage
Version: 1.4.3-2.1

Hello dear Maintainers,

As you can see on the screenshot, in photocollage settings, the width field for
border size is a bit small, and not all digits are displayed. It would be nice
to make it larger for accessibility.
It seems to have been fixed upstream:
https://github.com/adrienverge/PhotoCollage/commit/5ed917a87a392db0fcd65346b5603f3bad20dacf

Thanks a lot!

PS: I am running cinnamon and using vivix as a GTK3 theme.

-- System Information:
Debian Release: 10.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-6-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages photocollage depends on:
pn  gir1.2-gtk-3.0
ii  python3   3.7.3-1
pn  python3-cairo 
pn  python3-gi-cairo  
pn  python3-pil   
ii  python3-six   1.12.0-1

photocollage recommends no packages.

photocollage suggests no packages.


Bug#950961: photocollage: model input field provides no feedback after choice

2020-02-08 Thread cacatoes
Package: photocollage
Version: 1.4.3-2.1

Hello again dear Maintainers,

In photocollage's settings, we can choose the model of the image size
(A4 and so on). When selecting and validating between the formats, our
choice is applied and the size changes accordingly. However, the model
input field remains blank, so it doesn't give a very good visual
feedback to confirm our choice.

Hope this helps, thanks for the app.



Bug#942444: probably already fixed upstream

2019-11-07 Thread cacatoes
Probably the same bug, fixed upstream:
https://tickets.metabrainz.org/browse/PICARD-1642



Bug#942444: Removing icons from action toolbar corrupts picard's config file

2019-10-16 Thread cacatoes
Package: picard
Version: 2.2.2-1

Hello,

First an unrelated issue : updating to Picard 2.2.2-1 broke it, I had to
reset my Picard user settings. I experienced a similar issue during a
previous update, it's a little frustrating having to reset and start
over configurint it, I believe other users will experience similar
issues.

Back to the problem, I tried to pinpoint what makes my Picard crash, I
can provoke it by removing buttons from the toolbar, in Options > User
Interface > Customize Actions, remove some or all the actions from the
toolbar. Close picard, then restart it, it will crash with:

W: 15:55:17,486 /usr/lib/picard/picard/ui/playertoolbar.__init__:98: Internal 
player: unavailable, cannot import name 'QtMultimedia' from 'PyQt5' 
(/usr/lib/python3/dist-packages/PyQt5/__init__.py)
Traceback (most recent call last):
  File "/usr/lib/picard/picard/tagger.py", line 388, in event
event.run()
  File "/usr/lib/picard/picard/util/thread.py", line 39, in run
self.func(*self.args, **self.kwargs)
  File "/usr/lib/picard/picard/ui/mainwindow.py", line 571, in 
_update_cd_lookup_actions
self.update_cd_lookup_drives(result)
  File "/usr/lib/picard/picard/ui/mainwindow.py", line 587, in 
update_cd_lookup_drives
self._update_cd_lookup_button()
  File "/usr/lib/picard/picard/ui/mainwindow.py", line 592, in 
_update_cd_lookup_button
button.setPopupMode(QtWidgets.QToolButton.MenuButtonPopup)
AttributeError: 'NoneType' object has no attribute 'setPopupMode'

A partial diff between the two picard.ini files give:

< toolbar_layout=@Invalid()
---
> toolbar_layout=add_directory_action, add_files_action, separator,
> cluster_action, separator, autotag_action, analyze_action,
> browser_lookup_action, separator, save_action, view_info_action,
> remove_action, separator, cd_lookup_action, separator,
> submit_acoustid_action

Hope this helps,

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

Kernel: Linux 5.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages picard depends on:
ii  libc6 2.29-2
ii  libchromaprint-tools  1.4.3-3
ii  python3   3.7.5-1
ii  python3-libdiscid 1.0-5
ii  python3-mutagen   1.40.0-2
ii  python3-pyqt5 5.12.3+dfsg-2

Versions of packages picard recommends:
pn  libqt5multimedia5-plugins   
pn  python3-pyqt5.qtmultimedia  

Versions of packages picard suggests:
ii  hicolor-icon-theme  0.17-2

-- no debconf information



Bug#934509: ModError: Failed to load and run script from /usr/share/games/minetest/mods/pycraft/init.lua

2019-08-11 Thread cacatoes
Package: minetest-mod-pycraft
Version: 0.22-1

Hello,

I am getting this error after enabling the mod for a world:

2019-08-11 21:03:50: ERROR[Main]: ModError: Failed to load and run script from 
/usr/share/games/minetest/mods/pycraft/init.lua:
2019-08-11 21:03:50: ERROR[Main]: 
/usr/share/games/minetest/mods/pycraft/init.lua:15: attempt to index global 
'ie' (a nil value)
2019-08-11 21:03:50: ERROR[Main]: stack traceback:
2019-08-11 21:03:50: ERROR[Main]:   
/usr/share/games/minetest/mods/pycraft/init.lua:15: in main chunk
2019-08-11 21:03:50: ERROR[Main]: Voir debug.txt pour plus d'informations.

~/.minetest/debug.txt doesn't show more infos.

Thanks.

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

Kernel: Linux 4.19.0-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages minetest-mod-pycraft depends on:
ii  lua-bitop1.0.2-5
ii  lua-socket   3.0~rc1+git+ac3201d-4
ii  minetest 5.0.1+repack-2
ii  python3-minecraftpi  0.22-1

minetest-mod-pycraft recommends no packages.

minetest-mod-pycraft suggests no packages.

-- no debconf information



Bug#930614: cubeb_alsa.c :1045 : alsa_stream_destroy: l'assertion « stm && (stm->state == INACTIVE || stm->state == ERROR || stm->state == DRAINING) » a échoué.

2019-06-16 Thread cacatoes
Package: firefox-esr
Version: 60.7.0esr-1

Hello,

Firefox often crashes when closing a tab which has audio currently
playing.

Running firefox from a terminal, this error message comes:
cubeb_alsa.c :1045 : alsa_stream_destroy:  l'assertion « stm && (stm->state == 
INACTIVE || stm->state == ERROR || stm->state == DRAINING) » a échoué.

Might have been fixed upstream for firefox 61, according to these
reports for a similar issue:
https://forums.gentoo.org/viewtopic-t-1081634.html

Hope this helps,

-- System Information:
Debian Release: 10.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages firefox-esr depends on:
ii  debianutils   4.8.6.1
ii  fontconfig2.13.1-2
ii  libasound21.1.8-1
ii  libatk1.0-0   2.30.0-2
ii  libc6 2.28-10
ii  libcairo-gobject2 1.16.0-4
ii  libcairo2 1.16.0-4
ii  libdbus-1-3   1.12.16-1
ii  libdbus-glib-1-2  0.110-4
ii  libevent-2.1-62.1.8-stable-4
ii  libffi6   3.2.1-9
ii  libfontconfig12.13.1-2
ii  libfreetype6  2.9.1-3
ii  libgcc1   1:8.3.0-6
ii  libgdk-pixbuf2.0-02.38.1+dfsg-1
ii  libglib2.0-0  2.58.3-2
ii  libgtk-3-03.24.5-1
ii  libhunspell-1.7-0 1.7.0-2
ii  libjsoncpp1   1.7.4-3
ii  libnspr4  2:4.20-1
ii  libnss3   2:3.42.1-1
ii  libpango-1.0-01.42.4-6
ii  libsqlite3-0  3.27.2-3
ii  libstartup-notification0  0.12-6
ii  libstdc++68.3.0-6
ii  libvpx5   1.7.0-3
ii  libx11-6  2:1.6.7-1
ii  libx11-xcb1   2:1.6.7-1
ii  libxcb-shm0   1.13.1-2
ii  libxcb1   1.13.1-2
ii  libxcomposite11:0.4.4-2
ii  libxdamage1   1:1.1.4-3+b3
ii  libxext6  2:1.3.3-1+b2
ii  libxfixes31:5.0.3-1
ii  libxrender1   1:0.9.10-1
ii  libxt61:1.1.5-1+b3
ii  procps2:3.3.15-2
ii  zlib1g1:1.2.11.dfsg-1

Versions of packages firefox-esr recommends:
ii  libavcodec58  7:4.1.3-1

Versions of packages firefox-esr suggests:
ii  fonts-lmodern  2.004.5-6
pn  fonts-stix | otf-stix  
pn  libcanberra0   
ii  libgssapi-krb5-2   1.17-2
ii  libgtk2.0-02.24.32-3
pn  pulseaudio 



Bug#918946: picard: Crashes when adding action to toolbar in options

2019-01-10 Thread cacatoes
Package: picard
Version: 2.1.0-1

Hello,

In options, user interface. When I click "add action to toolbar" picard
crashes displaying this message in terminal:

Traceback (most recent call last):
  File "/usr/lib/picard/picard/ui/options/interface.py", line 252, in 
add_to_toolbar
selected_action, ok = AddActionDialog.get_selected_action(display_list, 
self)
  File "/usr/lib/picard/picard/ui/options/interface.py", line 315, in 
get_selected_action
dialog = AddActionDialog(action_list, parent)
  File "/usr/lib/picard/picard/ui/options/interface.py", line 296, in __init__
temp_list.append([_(babel_415_workaround), action])
NameError: name 'temp_list' is not defined
fish: Tâche -1077301452, 'picard' terminée par le signal SIGABRT (Abandon)

Regards,

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing'), (200, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 4.19.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages picard depends on:
ii  libc6 2.28-2
ii  libchromaprint-tools  1.4.3-3
ii  python3   3.7.1-3
ii  python3-libdiscid 1.0-3+b1
ii  python3-mutagen   1.40.0-2
ii  python3-pyqt5 5.11.3+dfsg-1+b3

picard recommends no packages.

Versions of packages picard suggests:
ii  hicolor-icon-theme  0.17-2

-- no debconf information



Bug#845223: 0ad: Crashes on startup with cache.cpp(43): Assertion failed: "cache.Validate()"

2019-01-04 Thread cacatoes
Hi Ludovic,

This problem doesn't occur after a few tests (I think it has been fixed
ages ago already). I posted back on their Trac.

During my tests I experienced another similar issue but not the same
error message. I believe it's a separate issue so I'll create another
one if I can pinpoint it a bit more.

This debian bug can also be closed, thanks!

Le vendredi 04 janvier 2019 à 12:45:37, Ludovic Rousseau a écrit :
> Hello Cacatoes,
> 
> I just uploaded 0ad version 0.0.23.1 to unstable.
> Can you check your problem is still present in this version?
> 
> if the problem is still present I suggest you to add a comment on your
> upstream bug http://trac.wildfiregames.com/ticket/4360 to let them know the
> problem is not yet fixed.
> 
> Bye
> 
> 
> Dr. Ludovic Rousseau
> 



Bug#914528: game-data-packager: kyrandia1: Add support for new GOG installer

2018-11-24 Thread cacatoes
Package: game-data-packager
Version: 61

Hello,

Here is a simple patch for Kyrandia 1 adding support for a GOG
installer.

Mew,
>From 514f3e7ee4f1ee0fa8e823766e6a605368e34664 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?cacato=C3=A8s?= 
Date: Sat, 24 Nov 2018 15:20:50 +0100
Subject: [PATCH] kyrandia1: Add support for new GOG installer

---
 data/kyrandia1.yaml | 9 +
 1 file changed, 9 insertions(+)

diff --git a/data/kyrandia1.yaml b/data/kyrandia1.yaml
index 730560b5..41095dee 100644
--- a/data/kyrandia1.yaml
+++ b/data/kyrandia1.yaml
@@ -56,6 +56,14 @@ files:
 - assets english
 - manual.pdf
 
+  setup_legend_of_kyrandia_2.0.0.11.exe:
+unpack:
+  format: innoextract
+provides:
+- assets common
+- assets english
+- manual.pdf
+
   setup_legend_of_kyrandia_1.1_(20270).exe:
 unpack:
   format: innoextract
@@ -99,6 +107,7 @@ files:
 groups:
  archives: |
   53747640  562a149d31069f70c3ab92f05aca96e0 setup_legend_of_kyrandia_2.1.0.14.exe
+  55844432  0001370b8bb598b9a9289a2c3d29 setup_legend_of_kyrandia_2.0.0.11.exe
   54434128  03b283612879edeb4eecfd111662d0ee setup_legend_of_kyrandia_1.1_(20270).exe
   53761456  087261e9ec6de9b395fee90b028f6e8b setup_legend_of_kyrandia_german_2.1.0.14.exe
   54438336  49d9bd9f8cc0476e6477dc69253fd2f4 setup_legend_of_kyrandia_1.1_(german)_(20270).exe
-- 
2.19.1



Bug#905851: closed by Philip Rinn (Re: Bug#905851: add gstreamer audio backend as dependency)

2018-11-16 Thread cacatoes
Yes, this is fine, although a little bit frustrating, but i had found no
in-between.
Regards,

Le vendredi 16 novembre 2018 à 01:18:07, Debian Bug Tracking System a écrit :
> This is an automatic notification regarding your Bug report
> which was filed against the subtitleeditor package:
> 
> #905851: add gstreamer audio backend as dependency
> 
> It has been closed by Philip Rinn .
> 
> 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 Philip Rinn 
>  by
> replying to this email.
> 
> 
> -- 
> 905851: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=905851
> Debian Bug Tracking System
> Contact ow...@bugs.debian.org with problems

> Date: Fri, 16 Nov 2018 14:14:42 +0100
> From: Philip Rinn 
> To: 905851-d...@bugs.debian.org
> Subject: Re: Bug#905851: add gstreamer audio backend as dependency
> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101
>  Thunderbird/60.3.0
> 
> Hi,
> 
> as already pointed out, I don't think there is something to change. The 
> reporter
> didn't object so I'll close the bug now.
> 
> Best,
> Philip
> 




> Date: Fri, 10 Aug 2018 17:45:19 +0200
> From: cacat...@tuxfamily.org
> To: sub...@bugs.debian.org
> Subject: add gstreamer audio backend as dependency
> User-Agent: NeoMutt/20170113 (1.7.2)
> 
> Package: subtitleeditor
> Version: 0.54.0-3
> 
> Hello,
> 
> In order to get sound to work, I had to manualy install
> gstreamer-1.0-alsa package.
> 
> Would it make sense to add a dependency to "some" audio backend ?
> 
> Had this warning when playing a video:
> 
> ** (subtitleeditor:2542): WARNING **: 17:28:55.362: Impossible de créer
> un GStreamer de sortie audio (alsasink). Veuillez vérifier votre
> installation de GStreamer. [vp/gstplayer.cc(423): gen_audio_element ():
> /gtkmm__GstPlayBin:pipeline]
> 
> Regards,
> 
> -- System Information:
> Debian Release: buster/sid
>   APT prefers testing
>   APT policy: (500, 'testing')
> Architecture: i386 (i686)
> 
> Kernel: Linux 4.17.0-1-686-pae (SMP w/2 CPU cores)
> Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
> LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> Init: systemd (via /run/systemd/system)
> 
> Versions of packages subtitleeditor depends on:
> ii  gstreamer1.0-plugins-base   1.14.2-1
> ii  gstreamer1.0-plugins-good   1.14.2-1
> ii  gstreamer1.0-x  1.14.2-1
> ii  libatkmm-1.6-1v52.24.2-3
> ii  libc6   2.27-5
> ii  libcairomm-1.0-1v5  1.12.2-3
> ii  libgcc1 1:8.2.0-3
> ii  libglib2.0-02.56.1-2
> ii  libglibmm-2.4-1v5   2.56.0-2
> ii  libgstreamer-plugins-base1.0-0  1.14.2-1
> ii  libgstreamer1.0-0   1.14.2-2
> ii  libgstreamermm-1.0-11.10.0+dfsg-2
> ii  libgtk-3-0  3.22.30-2
> ii  libgtkmm-3.0-1v53.22.2-2
> ii  libpangomm-1.4-1v5  2.40.1-4
> ii  libsigc++-2.0-0v5   2.10.0-2
> ii  libstdc++6  8.2.0-3
> ii  libsubtitleeditor0  0.54.0-3
> 
> subtitleeditor recommends no packages.
> 
> Versions of packages subtitleeditor suggests:
> pn  gstreamer1.0-libav  
> 
> -- no debconf information



Bug#911533: gandi-cli: missing dependencies for python3 setuptools and ipy

2018-10-21 Thread cacatoes

Package: gandi-cli
Version: 1.2-1

Dear Maintainer,

It seems this package is missing a few dependencies, AFAIC these are the 
ones I had to add in order to make the CLI program work:


- python3-setuptools
- python3-ipy

... there might be others (I have not tried to actually use the program 
yet, will report if I find any).


Bye!


-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.14.0-3-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)

Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages gandi-cli depends on:
ii  python33.6.6-1
ii  python3-pkg-resources  40.2.0-1

gandi-cli recommends no packages.

gandi-cli suggests no packages.

-- no debconf information



Bug#908924: same bug here

2018-10-02 Thread cacatoes
I'm running into this same bug with kernel 4.18 currently in testing.

[19865.977105] ehci-pci :00:04.1: dma_direct_map_sg: overflow
0x00010c723000+4096 of device mask 
[19865.977113] ehci-pci :00:04.1: dma_direct_map_sg: overflow
0x00010c723000+4096 of device mask 
[19865.977120] ehci-pci :00:04.1: dma_direct_map_sg: overflow
0x00010c723000+4096 of device mask 
[19865.977127] ehci-pci :00:04.1: dma_direct_map_sg: overflow
0x00010c723000+4096 of device mask 
[...]

* Can't read the USB key (or the sdcard).
* No problem with kernel 4.17.
* These messages are flooding logs eventually making disk full.

Hardware infos:

$ lsusb
Bus 001 Device 003: ID 13d3:5130 IMC Networks Integrated Webcam
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

$ lspci -nn
00:00.0 Host bridge [0600]: NVIDIA Corporation MCP79 Host Bridge
[10de:0a86] (rev b1)
00:00.1 RAM memory [0500]: NVIDIA Corporation MCP79 Memory Controller
[10de:0a88] (rev b1)
00:03.0 ISA bridge [0601]: NVIDIA Corporation MCP79 LPC Bridge
[10de:0aae] (rev b2)
00:03.1 RAM memory [0500]: NVIDIA Corporation MCP79 Memory Controller
[10de:0aa4] (rev b1)
00:03.2 SMBus [0c05]: NVIDIA Corporation MCP79 SMBus [10de:0aa2] (rev
b1)
00:03.3 RAM memory [0500]: NVIDIA Corporation MCP79 Memory Controller
[10de:0a89] (rev b1)
00:03.5 Co-processor [0b40]: NVIDIA Corporation MCP79 Co-processor
[10de:0aa3] (rev b1)
00:04.0 USB controller [0c03]: NVIDIA Corporation MCP79 OHCI USB 1.1
Controller [10de:0aa5] (rev b1)
00:04.1 USB controller [0c03]: NVIDIA Corporation MCP79 EHCI USB 2.0
Controller [10de:0aa6] (rev b1)
00:08.0 Audio device [0403]: NVIDIA Corporation MCP79 High Definition
Audio [10de:0ac0] (rev b1)
00:09.0 PCI bridge [0604]: NVIDIA Corporation MCP79 PCI Bridge
[10de:0aab] (rev b1)
00:0b.0 SATA controller [0106]: NVIDIA Corporation MCP79 AHCI Controller
[10de:0ab9] (rev b1)
00:0c.0 PCI bridge [0604]: NVIDIA Corporation MCP79 PCI Express Bridge
[10de:0ac4] (rev b1)
00:15.0 PCI bridge [0604]: NVIDIA Corporation MCP79 PCI Express Bridge
[10de:0ac6] (rev b1)
00:16.0 PCI bridge [0604]: NVIDIA Corporation MCP79 PCI Express Bridge
[10de:0ac7] (rev b1)
00:17.0 PCI bridge [0604]: NVIDIA Corporation MCP79 PCI Express Bridge
[10de:0ac7] (rev b1)
00:18.0 PCI bridge [0604]: NVIDIA Corporation MCP79 PCI Express Bridge
[10de:0ac7] (rev b1)
02:00.0 VGA compatible controller [0300]: NVIDIA Corporation GT216M
[GeForce GT 320M] [10de:0a2d] (rev a2)
02:00.1 Audio device [0403]: NVIDIA Corporation GT216 HDMI Audio
Controller [10de:0be2] (rev a1)
03:00.0 Ethernet controller [0200]: Qualcomm Atheros
AR8121/AR8113/AR8114 Gigabit or Fast Ethernet [1969:1026] (rev b0)
04:00.0 Network controller [0280]: Qualcomm Atheros AR9285 Wireless
Network Adapter (PCI-Express) [168c:002b] (rev 01)



Bug#907678: ninix-aya: crashes at startup with Uncaught exception (ArgumentError)

2018-08-31 Thread cacatoes
Package: ninix-aya
Version: 5.0.4-1

Hi,

The program simply crashes when starting it.

Uncaught exception (ArgumentError)
/usr/lib/ruby/vendor_ruby/gobject-introspection/loader.rb:317:in
`invoke'
/usr/lib/ruby/vendor_ruby/gobject-introspection/loader.rb:317:in `block
(2 levels) in load_constructor_infos'
/usr/lib/ruby/vendor_ruby/gobject-introspection/loader.rb:328:in `block
in load_constructor_infos'
/usr/lib/games/ninix-aya/ninix/prefs.rb:333:in `new'
/usr/lib/games/ninix-aya/ninix/prefs.rb:333:in
`make_page_surface_n_balloon'
/usr/lib/games/ninix-aya/ninix/prefs.rb:135:in `initialize'
/usr/lib/games/ninix-aya/ninix_main.rb:343:in `new'
/usr/lib/games/ninix-aya/ninix_main.rb:343:in `initialize'
/usr/lib/games/ninix-aya/ninix_main.rb:127:in `new'
/usr/lib/games/ninix-aya/ninix_main.rb:127:in `main'
/usr/lib/games/ninix-aya/ninix_main.rb:1705:in `

I can try to provide more informations if you tell me what you need and
what to do.

Regards,

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.17.0-3-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages ninix-aya depends on:
ii  ruby1:2.5.1
ii  ruby-gettext3.2.9-1
ii  ruby-gio2   3.2.9-1
ii  ruby-gstreamer  3.2.9-1
ii  ruby-gtk3   3.2.9-1
ii  ruby-narray 0.6.1.2-2+b1
ii  ruby-zip1.2.1-1.1

Versions of packages ninix-aya recommends:
ii  ruby-charlock-holmes  0.7.5-1+b2

Versions of packages ninix-aya suggests:
ii  kawari8  8.2.8-8+b2

-- no debconf information



Bug#907271: dosbox: doesn't capture mouse in windowed mode

2018-08-25 Thread cacatoes
Package: dosbox
Version: 0.74-4.3

Hello,

When in windowed mode, dosbox can't capture the mouse, so it is
unusable.

Hitting CTRL+F10 is meant to force capture, but it doesn't do, and I
can't move the mouse at all.

However, mouse works when in fullscreen mode.

Other commands (CPU speed adjustment, switching to full/windowed
mode...) do work. 

PS: I have tried with i3 (my current window manager) and Openbox. Both
exhibit the problem.

Regards,

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.17.0-3-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages dosbox depends on:
ii  libasound2   1.1.6-1
ii  libc62.27-5
ii  libgcc1  1:8.2.0-4
ii  libgl1   1.1.0-1
ii  libpng16-16  1.6.34-2
ii  libsdl-net1.21.2.8-5
ii  libsdl-sound1.2  1.0.3-8
ii  libsdl1.2debian  1.2.15+dfsg2-1
ii  libstdc++6   8.2.0-4
ii  libx11-6 2:1.6.5-1
ii  zlib1g   1:1.2.11.dfsg-1

dosbox recommends no packages.

dosbox suggests no packages.

-- no debconf information



Bug#905915: subtitleeditor: sometimes gets stuck when hitting key to play video

2018-08-11 Thread cacatoes
Package: subtitleeditor
Version: 0.54.0-3

Hi,

This bug may not be obvious to reproduce, but after using the app for
some time (10-30 mins), it happens the GUI gets frozen right after some
'play' command is issued. I use a shortcut for play current selection.
The video is not played, and most parts of the apps turn unresponsive,
including the menu options which are greyed out. We can't save the work
so it's lost.

In the terminal, it produces and repeats these messages, which may not
be related:

[...]
(subtitleeditor:22468): GLib-WARNING **: 17:11:58.103: corrupted
double-linked list detected

(subtitleeditor:22468): GLib-WARNING **: 17:12:36.575: corrupted
double-linked list detected
[...]

I might be able to provide more informations if there is a way to debug
this.

Regards,

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.17.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages subtitleeditor depends on:
ii  gstreamer1.0-plugins-base   1.14.2-1
ii  gstreamer1.0-plugins-good   1.14.2-1
ii  gstreamer1.0-x  1.14.2-1
ii  libatkmm-1.6-1v52.24.2-3
ii  libc6   2.27-5
ii  libcairomm-1.0-1v5  1.12.2-3
ii  libgcc1 1:8.2.0-3
ii  libglib2.0-02.56.1-2
ii  libglibmm-2.4-1v5   2.56.0-2
ii  libgstreamer-plugins-base1.0-0  1.14.2-1
ii  libgstreamer1.0-0   1.14.2-2
ii  libgstreamermm-1.0-11.10.0+dfsg-2
ii  libgtk-3-0  3.22.30-2
ii  libgtkmm-3.0-1v53.22.2-2
ii  libpangomm-1.4-1v5  2.40.1-4
ii  libsigc++-2.0-0v5   2.10.0-2
ii  libstdc++6  8.2.0-3
ii  libsubtitleeditor0  0.54.0-3

subtitleeditor recommends no packages.

Versions of packages subtitleeditor suggests:
pn  gstreamer1.0-libav  

-- no debconf information



Bug#905851: add gstreamer audio backend as dependency

2018-08-10 Thread cacatoes
Package: subtitleeditor
Version: 0.54.0-3

Hello,

In order to get sound to work, I had to manualy install
gstreamer-1.0-alsa package.

Would it make sense to add a dependency to "some" audio backend ?

Had this warning when playing a video:

** (subtitleeditor:2542): WARNING **: 17:28:55.362: Impossible de créer
un GStreamer de sortie audio (alsasink). Veuillez vérifier votre
installation de GStreamer. [vp/gstplayer.cc(423): gen_audio_element ():
/gtkmm__GstPlayBin:pipeline]

Regards,

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.17.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages subtitleeditor depends on:
ii  gstreamer1.0-plugins-base   1.14.2-1
ii  gstreamer1.0-plugins-good   1.14.2-1
ii  gstreamer1.0-x  1.14.2-1
ii  libatkmm-1.6-1v52.24.2-3
ii  libc6   2.27-5
ii  libcairomm-1.0-1v5  1.12.2-3
ii  libgcc1 1:8.2.0-3
ii  libglib2.0-02.56.1-2
ii  libglibmm-2.4-1v5   2.56.0-2
ii  libgstreamer-plugins-base1.0-0  1.14.2-1
ii  libgstreamer1.0-0   1.14.2-2
ii  libgstreamermm-1.0-11.10.0+dfsg-2
ii  libgtk-3-0  3.22.30-2
ii  libgtkmm-3.0-1v53.22.2-2
ii  libpangomm-1.4-1v5  2.40.1-4
ii  libsigc++-2.0-0v5   2.10.0-2
ii  libstdc++6  8.2.0-3
ii  libsubtitleeditor0  0.54.0-3

subtitleeditor recommends no packages.

Versions of packages subtitleeditor suggests:
pn  gstreamer1.0-libav  

-- no debconf information



Bug#905781: update fdm to fix crash (fixed upstream)

2018-08-09 Thread cacatoes
Package: fdm
Version: 1.7+cvs20140912-1+b3

fdm crashes while fetching some (usually spam) messages.

Fixed upstream by this commit:
https://github.com/nicm/fdm/commit/b952bf6a143724978132ae5c3003977db7837d65

I've used a patch version for these last years but I suppose it could
benefit to everyone ;-)

Thanks.

-- System Information:
Debian Release: 9.4
APT prefers stable-updates
APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.13.16-1-pve (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8),
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages fdm depends on:
ii  adduser3.115
ii  libc6  2.24-11+deb9u3
ii  libpcre3   2:8.39-3
ii  libssl1.1  1.1.0f-3+deb9u2
ii  libtdb11.3.11-2
ii  zlib1g 1:1.2.8.dfsg-5

fdm recommends no packages.

fdm suggests no packages.

-- no debconf information



Bug#905780: regression 4.13 -> 4.14+, black screen when some apps go fullcreen

2018-08-09 Thread cacatoes
Package: src:linux
Version: 4.17.8-1

Hi,

Since kernel version 4.14, some applications (typically games, like
OpenArena) display a black screen when switching to fullscreen.
The game answers to mouse/keyboard inputs, but all is black.

$ uname -a
Linux jaifaim 4.14.0-3-686-pae #1 SMP Debian 4.14.17-1 (2018-02-14) i686
GNU/Linux

I have tested with kernel 4.13 from snapshot.debian.org, which doesn't
have this problem.
$ apt show linux-image.4.13
[...]
Package: linux-image-4.13.0-1-686-dbg
Version: 4.13.4-2
[...]

Problem still occurs with current kernel (4.17).

Some other windowed games (like 0.A.D) are working fine.

I am running Nouveau drivers.

$ lspci -nn | grep VGA
02:00.0 VGA compatible controller [0300]: NVIDIA Corporation GT216M
[GeForce GT 320M] [10de:0a2d] (rev a2)

Hope this helps,

-- Package-specific info:
** Version:
Linux version 4.17.0-1-686-pae (debian-ker...@lists.debian.org) (gcc version 
7.3.0 (Debian 7.3.0-26)) #1 SMP Debian 4.17.8-1 (2018-07-20)

** Command line:
BOOT_IMAGE=/vmlinuz-4.17.0-1-686-pae root=/dev/mapper/cacacomp--vg-root ro quiet

** Tainted: C (1024)
 * Module from drivers/staging has been loaded.

** Kernel log:
Unable to read kernel log; any relevant messages should be attached

** Model information

** Loaded modules:
ctr
ccm
appletalk
ax25
ipx(C)
p8023
p8022
psnap
llc
cpufreq_powersave
snd_hda_codec_realtek
snd_hda_codec_generic
snd_hda_codec_hdmi
wmi_bmof
arc4
ath9k
ath9k_common
ath9k_hw
ath
coretemp
uvcvideo
nouveau
mac80211
videobuf2_vmalloc
videobuf2_memops
videobuf2_v4l2
joydev
videobuf2_common
evdev
videodev
mxm_wmi
serio_raw
ttm
cfg80211
media
drm_kms_helper
drm
i2c_algo_bit
snd_hda_intel
shpchp
asus_laptop
sparse_keymap
rfkill
input_polldev
snd_hda_codec
ac
snd_hda_core
wmi
video
battery
snd_hwdep
snd_pcm
snd_timer
button
snd
soundcore
nv_tco
acpi_cpufreq
sg
sunrpc
ip_tables
x_tables
autofs4
ext4
crc16
mbcache
jbd2
crc32c_generic
fscrypto
ecb
crypto_simd
cryptd
aes_i586
uas
usb_storage
dm_mod
sr_mod
cdrom
sd_mod
ohci_pci
psmouse
atl1e
ahci
libahci
libata
ehci_pci
scsi_mod
ohci_hcd
ehci_hcd
usbcore
usb_common
i2c_nforce2
thermal

** Network interface configuration:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug enp3so
iface enp3s0 inet dhcp
# This is an autoconfigured IPv6 interface
iface enp3s0 inet6 auto

** Network status:
*** IP interfaces and addresses:
1: lo:  mtu 65536 qdisc noqueue state UNKNOWN group 
default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
   valid_lft forever preferred_lft forever
inet6 ::1/128 scope host 
   valid_lft forever preferred_lft forever
2: enp3s0:  mtu 1500 qdisc pfifo_fast state 
DOWN group default qlen 1000
link/ether e0:cb:4e:ff:c5:27 brd ff:ff:ff:ff:ff:ff
3: wlp4s0:  mtu 1500 qdisc noqueue state UP 
group default qlen 1000
link/ether 1c:4b:d6:7c:f9:84 brd ff:ff:ff:ff:ff:ff
inet 192.168.0.200/24 brd 192.168.0.255 scope global wlp4s0
   valid_lft forever preferred_lft forever
inet6 2a01:e34:ef88:f8a0:1e4b:d6ff:fe7c:f984/64 scope global dynamic 
mngtmpaddr 
   valid_lft 86050sec preferred_lft 86050sec
inet6 fe80::1e4b:d6ff:fe7c:f984/64 scope link 
   valid_lft forever preferred_lft forever

*** Device statistics:
Inter-|   Receive|  Transmit
 face |bytespackets errs drop fifo frame compressed multicast|bytes
packets errs drop fifo colls carrier compressed
wlp4s0: 59646524   87135000 0  0 0 12549501   
73822000 0   0  0
lo: 18447077  335156000 0  0 0 18447077  
335156000 0   0  0
enp3s0:   0   0000 0  0 00  
 0000 0   2  0

*** Protocol statistics:
Ip:
Forwarding: 2
390247 total packets received
2 with invalid addresses
0 forwarded
0 incoming packets discarded
386030 incoming packets delivered
385745 requests sent out
24 dropped because of missing route
Icmp:
368 ICMP messages received
18 input ICMP message failed
ICMP input histogram:
destination unreachable: 365
timeout in transit: 3
525 ICMP messages sent
0 ICMP messages failed
ICMP output histogram:
destination unreachable: 525
IcmpMsg:
InType3: 365
InType11: 3
OutType3: 525
Tcp:
2143 active connection openings
294 passive connection openings
84 failed connection attempts
106 connection resets received
13 connections established
372289 segments received
372737 segments sent out
2124 segments retransmitted
15 bad segments received
4707 re

Bug#905652: vcmi: crashes with 'Unknown map format' when starting a new campain

2018-08-07 Thread cacatoes
Package: vcmi
Version: 0.99+dfsg-4+b1

Hello,

I installed HOMM3 complete edition 4.0 from GOG.
Installation is all fine. 

Starting the game.

What does not work:
Trying a new campaign crashes the game after the introduction video.

What does work:
Starting a new single scenario.

Please see attached log.

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.9.0-7-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages vcmi depends on:
ii  libavcodec587:4.0.2-1
ii  libavformat58   7:4.0.2-1
ii  libavutil56 7:4.0.2-1
ii  libboost-atomic1.62.0   1.62.0+dfsg-8
ii  libboost-chrono1.62.0   1.62.0+dfsg-8
ii  libboost-date-time1.62.01.62.0+dfsg-8
ii  libboost-filesystem1.62.0   1.62.0+dfsg-8
ii  libboost-locale1.62.0   1.62.0+dfsg-8
ii  libboost-program-options1.62.0  1.62.0+dfsg-8
ii  libboost-system1.62.0   1.62.0+dfsg-8
ii  libboost-test1.62.0 1.62.0+dfsg-8
ii  libboost-thread1.62.0   1.62.0+dfsg-8
ii  libc6   2.27-5
ii  libfuzzylite5.1v5   5.1+dfsg-5
ii  libgcc1 1:8.2.0-1
ii  libminizip1 1.1-8+b1
ii  libqt5core5a5.10.1+dfsg-7
ii  libqt5gui5  5.10.1+dfsg-7
ii  libqt5network5  5.10.1+dfsg-7
ii  libqt5widgets5  5.10.1+dfsg-7
ii  libsdl2-2.0-0   2.0.8+dfsg1-1
ii  libsdl2-image-2.0-0 2.0.3+dfsg1-1
ii  libsdl2-mixer-2.0-0 2.0.2+dfsg1-2
ii  libsdl2-ttf-2.0-0   2.0.14+dfsg1-2
ii  libstdc++6  8.2.0-1
ii  libswscale5 7:4.0.2-1
ii  zlib1g  1:1.2.11.dfsg-1

Versions of packages vcmi recommends:
ii  ffmpeg   7:4.0.2-1
ii  innoextract  1.7-1
pn  unshield 
ii  unzip6.0-21

Versions of packages vcmi suggests:
pn  homm3-demo-data | homm3-data  

-- no debconf information



Bug#903054: mediainfo: stack smashing detected with ffmpeg+webm+vp9+opus produced file

2018-07-05 Thread cacatoes
Package: mediainfo
Version: 18.03.1-1

Hello,

I am unsure if the issue comes from a malformed video, or from
mediainfo.

$ mediainfo myfile.webm
*** stack smashing detected ***:  terminated
fish: Tâche -1080237468, 'mediainfo novena.webm' terminée par le signal SIGABRT 
(Abandon)

myfile.webm being freshly produced by ffmpeg, with default webm output
settings, or with custom ones:

$ ffmpeg myfile.mp4 myfile.webm
or
$ ffmpeg myfile.vob -c:v libvpx-vp9 -crf 33 -b:v 0 -c:a libopus output.webm

Sample file: http://cacatoes.ml/novena.webm
(encoding was interrupted before the end but also happens with full
versions)

$ ffmpeg
ffmpeg version 3.4.2-2+b2 Copyright (c) 2000-2018 the FFmpeg developers
  built with gcc 7 (Debian 7.3.0-21)
  configuration: --prefix=/usr --extra-version=2+b2 --toolchain=hardened 
--libdir=/usr/lib/i386-linux-gnu --incdir=/usr/include/i386-linux-gnu 
--enable-gpl --disable-stripping --enable-avresample --enable-avisynth 
--enable-gnutls --enable-ladspa --enable-libass --enable-libbluray 
--enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite 
--enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme 
--enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg 
--enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband 
--enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr 
--enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame 
--enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp 
--enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq 
--enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 
--enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint 
--enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
  libavutil  55. 78.100 / 55. 78.100
  libavcodec 57.107.100 / 57.107.100
  libavformat57. 83.100 / 57. 83.100
  libavdevice57. 10.100 / 57. 10.100
  libavfilter 6.107.100 /  6.107.100
  libavresample   3.  7.  0 /  3.  7.  0
  libswscale  4.  8.100 /  4.  8.100
  libswresample   2.  9.100 /  2.  9.100
  libpostproc54.  7.100 / 54.  7.100


-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing'), (200, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 4.16.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages mediainfo depends on:
ii  libc62.27-3
ii  libgcc1  1:8.1.0-9
ii  libmediainfo0v5  18.03.1-1
ii  libstdc++6   8.1.0-9
ii  libzen0v50.4.37-1

mediainfo recommends no packages.

Versions of packages mediainfo suggests:
pn  mediainfo-gui  

-- no debconf information



Bug#902430: sonata is very slow when mouse scrolling within a big library

2018-06-26 Thread cacatoes
Package: sonata
Version: 1.7~b1-2

Hello again,

Since the port to GTK3 / version 1.7, I have trouble navigating the
music library with mouse scroll.

Library view mode is filesystem directories, and I am not even sure
"album" view does work because of it being too big (thousands albums).

The interesting part is, I have no trouble when using keys to spell the
first letters, so I can jump from one part of the list to another.

However as far as I scroll a little with mouse, the GUI becomes
unresponsive.

Also, it seems I can scroll smoothly with mouse the "current" playlist
tab, probably because I don't have it too big.  And I can also scroll
within sections of the music libraries which aren't too big.

Thanks for keeping alive the project,


-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing'), (200, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 4.16.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages sonata depends on:
ii  gir1.2-gdkpixbuf-2.0  2.36.11-2
ii  gir1.2-glib-2.0   1.56.1-1
ii  gir1.2-gtk-3.03.22.29-3
ii  gir1.2-pango-1.0  1.42.0-1
ii  python3   3.6.5-3
ii  python3-dbus  1.2.8-2
ii  python3-gi3.28.2-1
ii  python3-mpd   1.0.0-2

Versions of packages sonata recommends:
pn  python3-tagpy  

sonata suggests no packages.

-- no debconf information



Bug#902428: sonata freezes if started while it's already running

2018-06-26 Thread cacatoes
Package: sonata
Version: 1.7~b1-2

Hello,

I have mpd running on another computer, local network.

I start sonata, it runs fine.
$ sonata
See sonata_start_1.log.

Opening a new terminal.
Starting sonata while the other instance is already running.
See sonata_start_2.log.
The already running instance becomes unresponsive.
The second attempt does nothing and returns to shell.

Only option is to kill the first instance of sonata, then restart it.


-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing'), (200, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 4.16.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages sonata depends on:
ii  gir1.2-gdkpixbuf-2.0  2.36.11-2
ii  gir1.2-glib-2.0   1.56.1-1
ii  gir1.2-gtk-3.03.22.29-3
ii  gir1.2-pango-1.0  1.42.0-1
ii  python3   3.6.5-3
ii  python3-dbus  1.2.8-2
ii  python3-gi3.28.2-1
ii  python3-mpd   1.0.0-2

Versions of packages sonata recommends:
pn  python3-tagpy  

sonata suggests no packages.

-- no debconf information

(sonata:19690): dbind-WARNING **: 16:10:02.214: Error retrieving accessibility 
bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus 
was not provided by any .service files

(sonata:19690): Gtk-WARNING **: 16:10:02.758: Theme parsing error: 
sonata.css:7:17: Not using units is deprecated. Assuming 'px'.

(sonata:19690): Gtk-WARNING **: 16:10:02.758: Theme parsing error: 
sonata.css:11:17: Not using units is deprecated. Assuming 'px'.

(sonata:13990): dbind-WARNING **: 16:10:41.831: Error retrieving accessibility 
bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus 
was not provided by any .service files
/usr/lib/python3/dist-packages/sonata/launcher.py:159: PyGIWarning: Gtk was 
imported without specifying a version first. Use gi.require_version('Gtk', 
'3.0') before import to ensure that the right version gets loaded.
  from gi.repository import Gtk, Gdk


Bug#902426: i2p service doesn't start due to missing AppArmor profile

2018-06-26 Thread cacatoes
Package: i2p
Version: 0.9.34-2

Hello,

Following problem occurs during installation of i2p:

* i2p.service - load-balanced unspoofable packet switching network
   Loaded: loaded (/lib/systemd/system/i2p.service; disabled; vendor preset: 
enabled)
   Active: failed (Result: exit-code) since Tue 2018-06-26 15:30:44 CEST; 13ms 
ago
  Process: 24752 ExecStopPost=/bin/rm -rf /run/i2p (code=exited, 
status=0/SUCCESS)
  Process: 24751 ExecStart=/usr/sbin/wrapper $I2P_ARGS (code=exited, 
status=231/APPARMOR)
  Process: 24750 ExecStartPre=/bin/chmod 750 /var/log/i2p (code=exited, 
status=0/SUCCESS)
  Process: 24749 ExecStartPre=/bin/chown -R ${I2PUSER}:${I2PUSER} /var/log/i2p 
/run/i2p /tmp/i2p-daemon (code=exited, status=0/SUCCESS)
  Process: 24748 ExecStartPre=/bin/mkdir -p /tmp/i2p-daemon (code=exited, 
status=0/SUCCESS)

juin 26 15:30:44 jaifaim systemd[1]: Starting load-balanced unspoofable packet 
switching network...
juin 26 15:30:44 jaifaim systemd[24751]: i2p.service: Failed to prepare 
AppArmor profile change to system_i2p: No such file or directory
juin 26 15:30:44 jaifaim systemd[24751]: i2p.service: Failed at step APPARMOR 
spawning /usr/sbin/wrapper: No such file or directory
juin 26 15:30:44 jaifaim systemd[1]: i2p.service: Control process exited, 
code=exited status=231
juin 26 15:30:44 jaifaim systemd[1]: i2p.service: Failed with result 
'exit-code'.
juin 26 15:30:44 jaifaim systemd[1]: Failed to start load-balanced unspoofable 
packet switching network.
dpkg: erreur de traitement du paquet i2p (--configure) :
 installed i2p package post-installation script subprocess returned error exit 
status 1

AppArmor is not installed on my system.

Running on my notebook directly from Debian, and not within 
virtualization/container.

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing'), (200, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 4.16.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages i2p depends on:
ii  adduser3.117
ii  debconf [debconf-2.0]  1.5.67
ii  i2p-router 0.9.34-2
ii  libjbigi-jni   0.9.34-2
ii  lsb-base   9.20170808
ii  service-wrapper3.5.30-1

i2p recommends no packages.

i2p suggests no packages.

-- debconf information:
  i2p/aa: true
  i2p/user: i2psvc
  i2p/memory: 128
  i2p/daemon: false



Bug#884803: linux-image-4.13.0-1-686-pae: kernel traces output when using wifi (ath9k)

2017-12-19 Thread cacatoes
Package: src:linux
Version: 4.13.13-1

Dear Maintainer,

This problem isn't exactly new (several months, with various kernels), but I 
mostly use ethernet so am usually not annoyed by it.
After connecting to wifi networks, and usually when there is network activity, 
my terminals/consoles are filled with kernel debug traces, which you will find 
in the given attachments.
The network itself goes on working, it doesn't seem to interrupt/disconnect, so 
the annoyance is limited.

Good luck with bug sorting, hope this report makes sense.

-- Package-specific info:
** Version:
Linux version 4.13.0-1-686-pae (debian-ker...@lists.debian.org) (gcc version 
6.4.0 20171112 (Debian 6.4.0-10)) #1 SMP Debian 4.13.13-1 (2017-11-16)

** Command line:
BOOT_IMAGE=/vmlinuz-4.13.0-1-686-pae root=/dev/mapper/cacacomp--vg-root ro quiet

** Tainted: W (512)
 * Taint on warning.

** Kernel log:
Unable to read kernel log; any relevant messages should be attached

** Model information

** Loaded modules:
ctr
ccm
appletalk
ax25
ipx
p8023
p8022
psnap
llc
fuse
snd_hda_codec_realtek
snd_hda_codec_generic
snd_hda_codec_hdmi
wmi_bmof
arc4
nouveau
ath9k
ath9k_common
ath9k_hw
uvcvideo
ath
mxm_wmi
videobuf2_vmalloc
ttm
mac80211
videobuf2_memops
drm_kms_helper
videobuf2_v4l2
videobuf2_core
videodev
snd_hda_intel
coretemp
cfg80211
media
snd_hda_codec
drm
snd_hda_core
snd_hwdep
i2c_algo_bit
joydev
snd_pcm
snd_timer
snd
evdev
soundcore
serio_raw
sg
shpchp
asus_laptop
sparse_keymap
rfkill
battery
input_polldev
wmi
ac
video
nv_tco
button
acpi_cpufreq
sunrpc
ip_tables
x_tables
autofs4
hid_generic
usbhid
hid
ext4
crc16
mbcache
jbd2
crc32c_generic
fscrypto
ecb
crypto_simd
cryptd
aes_i586
dm_mod
sr_mod
cdrom
sd_mod
psmouse
ahci
libahci
libata
atl1e
scsi_mod
ohci_pci
ehci_pci
ohci_hcd
ehci_hcd
usbcore
usb_common
i2c_nforce2
thermal

** Network interface configuration:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug enp3so
iface enp3s0 inet dhcp
# This is an autoconfigured IPv6 interface
iface enp3s0 inet6 auto

** Network status:
*** IP interfaces and addresses:
1: lo:  mtu 65536 qdisc noqueue state UNKNOWN group 
default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
   valid_lft forever preferred_lft forever
inet6 ::1/128 scope host 
   valid_lft forever preferred_lft forever
2: enp3s0:  mtu 1500 qdisc pfifo_fast state 
DOWN group default qlen 1000
link/ether e0:cb:4e:ff:c5:27 brd ff:ff:ff:ff:ff:ff
3: wlp4s0:  mtu 1500 qdisc noqueue state UP 
group default qlen 1000
link/ether 1c:4b:d6:7c:f9:84 brd ff:ff:ff:ff:ff:ff
inet 192.168.0.8/24 brd 192.168.0.255 scope global wlp4s0
   valid_lft forever preferred_lft forever
inet6 fe80::1e4b:d6ff:fe7c:f984/64 scope link 
   valid_lft forever preferred_lft forever

*** Device statistics:
Inter-|   Receive|  Transmit
 face |bytespackets errs drop fifo frame compressed multicast|bytes
packets errs drop fifo colls carrier compressed
wlp4s0: 224889522  177230000 0  0 0 11590038  
116391000 0   0  0
lo:   0   0000 0  0 00  
 0000 0   0  0
enp3s0:   0   0000 0  0 00  
 0000 0   3  0

*** Protocol statistics:
Ip:
Forwarding: 2
166849 total packets received
3 with invalid addresses
0 forwarded
0 incoming packets discarded
164197 incoming packets delivered
115643 requests sent out
128 dropped because of missing route
Icmp:
0 ICMP messages received
0 input ICMP message failed
ICMP input histogram:
0 ICMP messages sent
0 ICMP messages failed
ICMP output histogram:
Tcp:
884 active connection openings
0 passive connection openings
0 failed connection attempts
6 connection resets received
3 connections established
163688 segments received
115055 segments sent out
192 segments retransmitted
20 bad segments received
988 resets sent
Udp:
397 packets received
0 packets to unknown port received
0 packet receive errors
396 packets sent
0 receive buffer errors
0 send buffer errors
IgnoredMulti: 112
UdpLite:
TcpExt:
282 TCP sockets finished time wait in fast timer
1160 delayed acks sent
1 delayed acks further delayed because of locked socket
Quick ack mode was activated 233 times
10 packets directly queued to recvmsg prequeue
TCPDirectCopyFromPrequeue: 5
130093 packet headers predicted
4240 acknowledgments not containing data payload received
3224 predicted acknowledgments
 

Bug#867975: I second that

2017-07-31 Thread cacatoes
I second that, I was going to ask the same.

By the way, this bug appears on source package, I may very well be
wrong, and it probably doesn't matter, but I expected to see it applied to 
binary package.

Still having a game with this old Debian version right now, appreciated it so 
far.

I also added this game to JeuxLibres.net database (french news website about
FLOSS videogames).

Thanks!



Bug#868224: likely hitting same bug here

2017-07-23 Thread cacatoes
I'm likely hitting the same bug.
The environment is a Debian Stable virtual machine inside Proxmox.

Update with apt failed, so I tried to manually update initramfs.
Also gets stuck on that line:

/usr/share/initramfs-tools/scripts/local-top/ORDER ignored: not
executable
/usr/share/initramfs-tools/scripts/local-premount/ORDER ignored: not
executable
/usr/share/initramfs-tools/scripts/local-bottom/ORDER ignored: not
executable
/usr/share/initramfs-tools/scripts/local-block/ORDER ignored: not
executable
/usr/share/initramfs-tools/scripts/init-top/ORDER ignored: not
executable
/usr/share/initramfs-tools/scripts/init-premount/ORDER ignored: not
executable
/usr/share/initramfs-tools/scripts/init-bottom/ORDER ignored: not
executable
Building cpio /boot/initrd.img-4.9.0-3-amd64.new initramfs

... So I kill the process.

# uname -a
Linux mplserv 4.9.0-3-amd64 #1 SMP Debian 4.9.30-2 (2017-06-12) x86_64
GNU/Linux

I can give more infos if needed,

Bisou++



Bug#837186: Loading certain (SSL?) sites like google.com and facebook.com aborts

2017-02-18 Thread cacatoes
Package: firefox-esr
Version: 45.7.0esr-4
Followup-For: Bug #837186

Experiencing something alike here, I get blank page as soon as I try to visit 
some specific website : https://uzbl.org
No error message, no answer from webserver.
I can get the page well with simple wget or other web browsers.
Wireshark & openssl logs attached as a bonus.

-- Package-specific info:

-- Extensions information
Name: Firefox Hello Beta
Location: ${PROFILE_EXTENSIONS}/l...@mozilla.org.xpi
Status: enabled

Name: Français Language Pack locale
Location: 
/usr/lib/firefox-esr/browser/extensions/langpack...@firefox-esr.mozilla.org.xpi
Package: firefox-esr-l10n-fr
Status: enabled

Name: Thème par défaut theme
Location: 
/usr/lib/firefox-esr/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi
Package: firefox-esr
Status: enabled

Name: uBlock Origin
Location: 
/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/ublo...@raymondhill.net
Package: xul-ext-ublock-origin
Status: enabled

-- Plugins information
Name: Shockwave Flash (13.1.2.3)
Location: 
/usr/lib/browser-plugin-freshplayer-pepperflash/libfreshwrapper-flashplayer.so
Package: browser-plugin-freshplayer-pepperflash
Status: enabled


-- Addons package information
ii  browser-plugin 0.3.5-1+b1   i386 PPAPI-host NPAPI-plugin adapter f
ii  firefox-esr45.7.0esr-4  i386 Mozilla Firefox web browser - Ext
ii  firefox-esr-l1 45.7.0esr-4  all  French language package for Firef
ii  xul-ext-ublock 1.10.4+dfsg- all  general-purpose lightweight ads, 

-- System Information:
Debian Release: 9.0
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.9.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages firefox-esr depends on:
ii  debianutils   4.8.1
ii  fontconfig2.11.0-6.7
ii  libasound21.1.3-4
ii  libatk1.0-0   2.22.0-1
ii  libc6 2.24-9
ii  libcairo2 1.14.8-1
ii  libdbus-1-3   1.10.14-1
ii  libdbus-glib-1-2  0.108-2
ii  libevent-2.0-52.0.21-stable-2.1
ii  libffi6   3.2.1-6
ii  libfontconfig12.11.0-6.7
ii  libfreetype6  2.6.3-3+b1
ii  libgcc1   1:6.3.0-6
ii  libgdk-pixbuf2.0-02.36.4-1
ii  libglib2.0-0  2.50.2-2
ii  libgtk2.0-0   2.24.31-2
ii  libhunspell-1.4-0 1.4.1-2+b1
ii  libnspr4  2:4.12-6
ii  libnss3   2:3.26.2-1
ii  libpango-1.0-01.40.3-3
ii  libsqlite3-0  3.16.2-2
ii  libstartup-notification0  0.12-4
ii  libstdc++66.3.0-6
ii  libvpx4   1.6.1-2
ii  libx11-6  2:1.6.4-3
ii  libxcomposite11:0.4.4-2
ii  libxdamage1   1:1.1.4-2+b1
ii  libxext6  2:1.3.3-1
ii  libxfixes31:5.0.3-1
ii  libxrender1   1:0.9.10-1
ii  libxt61:1.1.5-1
ii  procps2:3.3.12-3
ii  zlib1g1:1.2.8.dfsg-5

Versions of packages firefox-esr recommends:
pn  gstreamer1.0-libav 
pn  gstreamer1.0-plugins-good  

Versions of packages firefox-esr suggests:
pn  fonts-lmodern  
pn  fonts-stix | otf-stix  
pn  libcanberra0   
pn  libgnomeui-0   
ii  libgssapi-krb5-2   1.15-1
pn  mozplugger 

-- no debconf information

CONNECTED(0003)
Server did acknowledge servername extension.
---
Certificate chain
 0 s:/CN=uzbl.org
   i:/C=US/O=Let's Encrypt/CN=Let's Encrypt Authority X3
 1 s:/C=US/O=Let's Encrypt/CN=Let's Encrypt Authority X3
   i:/O=Digital Signature Trust Co./CN=DST Root CA X3
---
Server certificate
-BEGIN CERTIFICATE-
MIIGAjCCBOqgAwIBAgISA0RABV3HaA4QfX75bih8oQMiMA0GCSqGSIb3DQEBCwUA
MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQD
ExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMzAeFw0xNjEyMzAwMjMzMDBaFw0x
NzAzMzAwMjMzMDBaMBMxETAPBgNVBAMTCHV6Ymwub3JnMIICIjANBgkqhkiG9w0B
AQEFAAOCAg8AMIICCgKCAgEAzj0qN7ZsZolchPPk3UL/apG7itbkgIxzA+31pfFN
EKAphaHY56OqEMwt+7qUzPBYB8hXim1l7D1gXRswdVPh0uBuq6xA1VIMUA5DC0LJ
gc1wwV//Xjfb7woONUdmtEO7GswFYhKe0dTjQ8ootSDrGSoNXv7X5qXcrcLg0mjW
asgzC2IwZsYtDhiuUjWpeNLJC2oxcmUfpePMcnHPnH7i1DfnjumZmLu2kcRlWcmD
TsdZNjAzx8PxBZMakV04p4eWIXCAIbgUs5I1NDLOcfstmEgsXiTevDLWrwBYdzX1
umpu2gg/4DsSpAXl4SUkpBJ7Pkt2EShm2hlbtgeFVJX5Q3DyiCi1szq6EpWgOFSq
UZpz2X7ryFljQquEYQWzMRmKJ+ZFCqr4ALk6u07v7JW67DF8XqnCsSPpXRBcPAPR
u9oPymquxMNezUe2EQELHSFF9VUt/efXYWyXxGav0CkLt8EzN1HjCqOabYHmcGkJ
G6lIv6sj/Z6+KGGwRrNZoA11D5TRsU77+n1LZ+sXR1UCKoiPOD0X6TzuwLplwmfq
6G/JgOqjImaEOUAG5cmeBG/PDLMTt9E4RL+nb7O//lVke2tSqPvqxrxdKzskM2pS
ZH+jgy0U2yPQY8KM9uoiaMDD+unGaWzhxvu0X194bGTZA5TZwZNoVZ93aiiVphZc
QI0CAwEAAaOCAhcwggITMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEF
BQcDAQYIKwYBBQUHA

Bug#845223: 0ad: Crashes on startup with cache.cpp(43): Assertion failed: "cache.Validate()"

2016-12-01 Thread cacatoes
Posted there (a week ago):
http://trac.wildfiregames.com/ticket/4360

Waiting for their feedback.

Le lundi 21 novembre 2016 à 10:34:14, Vincent Cheng a écrit :
> Control: tag -1 + moreinfo unreproducible
> 
> Hi,
> 
> On Mon, Nov 21, 2016 at 8:35 AM,   wrote:
> > Package: 0ad
> > Version: 0.0.21-2
> >
> > Hiya,
> >
> > I just installed 0ad on my system.
> > It crashes as soon as I start the game.
> > See attachment for crash log. If I say "go on", it manages to play the
> > music.
> >
> > note: I thought there was a -dbg package, but not in my repos.
> 
> 0ad has now migrated to using auto-generated dbgsym packages (like
> many other packages in Debian sid). You'll have to add an additional
> line to your sources.list to pick up the dbgsym repository [1].
> 
> Please file a bug report upstream after obtaining a backtrace at [2].
> 
> Regards,
> Vincent
> 
> [1] https://lists.debian.org/debian-devel/2015/12/msg00262.html
> [2] http://trac.wildfiregames.com/newticket



Bug#845223: 0ad: Crashes on startup with cache.cpp(43): Assertion failed: "cache.Validate()"

2016-11-21 Thread cacatoes

Package: 0ad
Version: 0.0.21-2

Hiya,

I just installed 0ad on my system.
It crashes as soon as I start the game.
See attachment for crash log. If I say "go on", it manages to play the 
music.


note: I thought there was a -dbg package, but not in my repos.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.8.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages 0ad depends on:
ii  0ad-data   0.0.21-1
ii  0ad-data-common0.0.21-1
ii  dpkg   1.18.15
ii  libboost-filesystem1.62.0  1.62.0+dfsg-4
ii  libc6  2.24-5
ii  libcurl3-gnutls7.50.1-1
ii  libenet7   1.3.12+ds-2
ii  libgcc11:6.2.0-13
ii  libgl1-mesa-glx [libgl1]   12.0.4-2
ii  libgloox15 1.0.18-1
ii  libicu57   57.1-4
ii  libminiupnpc10 1.9.20140610-2.1
ii  libnspr4   2:4.12-6
ii  libnvtt2   2.0.8-1+dfsg-8.1
ii  libopenal1 1:1.17.2-4
ii  libpng16-161.6.26-2
ii  libsdl2-2.0-0  2.0.5+dfsg1-1
ii  libstdc++6 6.2.0-13
ii  libvorbisfile3 1.3.5-3
ii  libwxbase3.0-0v5   3.0.2+dfsg-2
ii  libwxgtk3.0-0v53.0.2+dfsg-2
ii  libx11-6   2:1.6.3-1
ii  libxcursor11:1.1.14-1+b1
ii  libxml22.9.4+dfsg1-2.1
ii  zlib1g 1:1.2.8.dfsg-2+b3

0ad recommends no packages.

0ad suggests no packages.

-- debconf-show failedCache: 200 (total: 2010) MiB
TIMER| InitVfs: 10.3903 ms
TIMER| CONFIG_Init: 17.8944 ms
Sound: AlcInit success, using OpenAL Soft
TIMER| shutdown ConfigDB: 3.562 us
TIMER| resource modules: 28.9497 ms
TIMER TOTALS (9 clients)
-
  tc_png_decode: 0 c (0x)
  tc_pool_alloc: 90.83 kc (2x)
  tc_dds_transform: 0 c (0x)
  tc_transform: 0 c (0x)
  tc_plain_transform: 0 c (0x)
  tc_ShaderValidation: 0 c (0x)
  tc_ShaderGLSLLink: 0 c (0x)
  tc_ShaderGLSLCompile: 0 c (0x)
  xml_validation: 0 c (0x)
-
TIMER| shutdown misc: 711.608 us
Cache: 200 (total: 2010) MiB
TIMER| InitVfs: 897.632 ms
TIMER| CONFIG_Init: 13.5486 ms
Sound: AlcInit success, using OpenAL Soft
topology.cpp(105): Assertion failed: "logicalPerPackage % maxCoresPerPackage == 
0"
Assertion failed: "logicalPerPackage % maxCoresPerPackage == 0"
Location: topology.cpp:105 (MaxLogicalPerCore)

Call stack:

(0x805274b5) /usr/games/pyrogenesis(+0x51a4b5) [0x805274b5]
(0x804d5e7d) /usr/games/pyrogenesis(+0x4c8e7d) [0x804d5e7d]
(0x804d734d) /usr/games/pyrogenesis(+0x4ca34d) [0x804d734d]
(0x8052315d) /usr/games/pyrogenesis(+0x51615d) [0x8052315d]
(0x804d76f9) /usr/games/pyrogenesis(+0x4ca6f9) [0x804d76f9]
(0x80523350) /usr/games/pyrogenesis(+0x516350) [0x80523350]
(0x80254307) /usr/games/pyrogenesis(+0x247307) [0x80254307]
(0x802398c2) /usr/games/pyrogenesis(+0x22c8c2) [0x802398c2]
(0x8003fdd2) /usr/games/pyrogenesis(+0x32dd2) [0x8003fdd2]
(0x80031b86) /usr/games/pyrogenesis(+0x24b86) [0x80031b86]
(0xb5fd3276) /lib/i386-linux-gnu/libc.so.6(__libc_start_main+0xf6) [0xb5fd3276]
(0x8003e9fc) /usr/games/pyrogenesis(+0x319fc) [0x8003e9fc]

errno = 0 (Error during IO)
OS error = ?