Bug#590692: kannel-sqlbox: Despite the sqlbox.conf has been configured to use PostgreSQL, it tries to connecto to MySQL

2012-11-07 Thread Antonio
Hi

This also happens if you try with sqlite3.

I configured it wiht mysql and everything fine.



/ WITH SQLITE3 **/
/ CONF
group = sqlbox
id = "sqlbox-db"
smsbox-id = sqlbox
bearerbox-host = localhost
bearerbox-port = 13001
smsbox-port = 13005
smsbox-port-ssl = false
sql-log-table = sent_sms
sql-insert-table = send_sms
log-file = "/var/log/kannel/sqlbox.log"
log-level = 4

group = sqlite3-connection
id = sqlbox-db
database = /opt/smsbox.db
lock-timeout = 5
max-connections = 1

/LOG
2012-11-07 13:40:35 [30413] [0] INFO: Added logfile
`/var/log/kannel/sqlbox.log' with level `0'.
2012-11-07 13:40:35 [30413] [0] PANIC: SQLBOX: MySQL: connection
settings for id 'sqlbox-db' are not specified!
2012-11-07 13:40:35 [30413] [0] PANIC: sqlbox(gw_panic+0x147) [0x42b437]
2012-11-07 13:40:35 [30413] [0] PANIC: sqlbox(sqlbox_init_mysql+0x110)
[0x40d060]
2012-11-07 13:40:35 [30413] [0] PANIC: sqlbox(sqlbox_init_sql+0x9)
[0x412149]
2012-11-07 13:40:35 [30413] [0] PANIC: sqlbox(main+0x30f) [0x40ccef]
2012-11-07 13:40:35 [30413] [0] PANIC: /lib/libc.so.6(__libc_start_main
+0xfd) [0x7f25af051c8d]
2012-11-07 13:40:35 [30413] [0] PANIC: sqlbox() [0x40bc09]




/ WITH MYSQL **/
/ CONF
group = sqlbox
id = "sqlbox-db"
smsbox-id = sqlbox
bearerbox-host = localhost
bearerbox-port = 13001
smsbox-port = 13005
smsbox-port-ssl = false
sql-log-table = sent_sms
sql-insert-table = send_sms
log-file = "/var/log/kannel/sqlbox.log"
log-level = 4

group = mysql-connection
id = sqlbox-db
host = localhost
username = root
password = internal
database = kannel


/LOG 
2012-11-07 13:39:33 [29274] [0] INFO: Added logfile
`/var/log/kannel/sqlbox.log' with level `0'.
2012-11-07 13:39:33 [29274] [0] INFO: MYSQL: Connected to server at
localhost.
2012-11-07 13:39:33 [29274] [0] INFO: MYSQL: server version 5.1.63-0
+squeeze1-log, client version 5.1.63.
2012-11-07 13:39:33 [29274] [0] DEBUG: Started thread 1
(sqlbox.c:sql_to_bearerbox)
2012-11-07 13:39:33 [29274] [1] DEBUG: Thread 1
(sqlbox.c:sql_to_bearerbox) maps to pid 29274.
2012-11-07 13:39:33 [29274] [1] INFO: Connected to bearerbox at
localhost port 13001.
2012-11-07 13:39:33 [29274] [1] DEBUG: Started thread 2
(sqlbox.c:bearerbox_to_sql)
2012-11-07 13:39:33 [29274] [2] DEBUG: Thread 2
(sqlbox.c:bearerbox_to_sql) maps to pid 29274


Best regards,

António


Bug#590692: kannel-sqlbox: Despite the sqlbox.conf has been configured to use PostgreSQL, it tries to connecto to MySQL

2012-11-07 Thread Antonio
Found the problem.

Its in the library that initializes the sql connection. 

Right now it only allows connection to mysql, since is the first that
the program will attempt to connect. 
The code in sqlbox_sql.c it should have a switch type, so the user can
set witch to use.

I attach a possible patch that make it possible to select between the
different types of db.
This patch adds the possibility to put in the configuration for the
sqlbox, the option "db-storage", witch can be one of the supported DB
engines.



 _

António Silva

E-mail:asi...@wirelessmundi.com
diff -rNu sqlbox-0.7.2-orig//gw/sqlbox-cfg.def sqlbox-0.7.2/gw/sqlbox-cfg.def
--- sqlbox-0.7.2-orig//gw/sqlbox-cfg.def	2008-11-03 20:33:15.0 +0100
+++ sqlbox-0.7.2/gw/sqlbox-cfg.def	2012-11-07 16:06:01.0 +0100
@@ -21,4 +21,5 @@
 OCTSTR(ssl-server-cert-file)
 OCTSTR(ssl-server-key-file)
 OCTSTR(ssl-trusted-ca-file)
+OCTSTR(db_storage)
 )
diff -rNu sqlbox-0.7.2-orig//gw/sqlbox_sql.c sqlbox-0.7.2/gw/sqlbox_sql.c
--- sqlbox-0.7.2-orig//gw/sqlbox_sql.c	2009-05-19 17:08:35.0 +0200
+++ sqlbox-0.7.2/gw/sqlbox_sql.c	2012-11-07 16:10:28.0 +0100
@@ -3,49 +3,74 @@
 
 struct server_type *sqlbox_init_sql(Cfg *cfg)
 {
+CfgGroup *grp;
+Octstr *db_storage;
+char *type;
 struct server_type *res = NULL;
 
+
+if (!(grp = cfg_get_single_group(cfg, octstr_imm("sqlbox"
+		panic(0, "SQLBOX: SQL INIT: group 'sqlbox' is not specified!");
+	/* fetch database type, default to mysql if not configured */
+	if (!(db_storage = cfg_get( grp, octstr_imm("db_storage"
+		db_storage = octstr_create("mysql");
+
+
+	if (octstr_compare(db_storage, octstr_imm("mssql")) == 0) {
 #ifdef HAVE_MSSQL
-res = (struct server_type *)sqlbox_init_mssql(cfg);
-if (res) {
-return res;
-}
-#endif
-#ifdef HAVE_MYSQL
-res = (struct server_type *)sqlbox_init_mysql(cfg);
-if (res) {
-return res;
-}
+		 res = (struct server_type *)sqlbox_init_mssql(cfg);
+		 if (res) {
+		 return res;
+		 }
 #endif
+	}
+	else if (octstr_compare(db_storage, octstr_imm("oracle")) == 0) {
 #ifdef HAVE_ORACLE
-res = (struct server_type *)sqlbox_init_oracle(cfg);
-if (res) {
-return res;
-}
+		 res = (struct server_type *)sqlbox_init_oracle(cfg);
+		 if (res) {
+		 return res;
+		 }
 #endif
+	}
+	else if (octstr_compare(db_storage, octstr_imm("pgsql")) == 0) {
 #ifdef HAVE_PGSQL
-res = (struct server_type *)sqlbox_init_pgsql(cfg);
-if (res) {
-return res;
-}
+		 res = (struct server_type *)sqlbox_init_pgsql(cfg);
+		 if (res) {
+		 return res;
+		 }
 #endif
+	}
+	else if (octstr_compare(db_storage, octstr_imm("sdb")) == 0) {
 #ifdef HAVE_SDB
-res = (struct server_type *)sqlbox_init_sdb(cfg);
-if (res) {
-return res;
-}
+		 res = (struct server_type *)sqlbox_init_sdb(cfg);
+		 if (res) {
+		 return res;
+		 }
 #endif
+	}
+	else if (octstr_compare(db_storage, octstr_imm("sqlite")) == 0) {
 #ifdef HAVE_SQLITE
-res = (struct server_type *)sqlbox_init_sqlite(cfg);
-if (res) {
-return res;
-}
+		 res = (struct server_type *)sqlbox_init_sqlite(cfg);
+		 if (res) {
+		 return res;
+		 }
 #endif
+	}
+	else if (octstr_compare(db_storage, octstr_imm("sqlite3")) == 0) {
 #ifdef HAVE_SQLITE3
-res = (struct server_type *)sqlbox_init_sqlite3(cfg);
-if (res) {
-return res;
-}
+		 res = (struct server_type *)sqlbox_init_sqlite3(cfg);
+		 if (res) {
+		 return res;
+		 }
+#endif
+	}
+	else {
+#ifdef HAVE_MYSQL
+		 res = (struct server_type *)sqlbox_init_mysql(cfg);
+		 if (res) {
+		 return res;
+		 }
 #endif
+	}
 return res;
 }


Bug#617288: software-center: doesn't install or deinstall any software

2011-03-07 Thread antonio
Package: software-center
Version: 2.0.7debian7
Severity: important

the software-center does not install or deinstall any softwareI've tried on
different sw



-- System Information:
Debian Release: 6.0
  APT prefers squeeze-updates
  APT policy: (500, 'squeeze-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages software-center depends on:
ii  app-install-data2010.11.17   Application Installer Data Files
ii  aptdaemon   0.31+bzr413-1.1  transaction based package manageme
ii  gnome-icon-theme2.30.3-2 GNOME Desktop icon theme
ii  gnome-menus 2.30.3-1 an implementation of the freedeskt
ii  lsb-release 3.2-23.2squeeze1 Linux Standard Base version report
ii  policykit-1 0.96-4   framework for managing administrat
ii  policykit-1-gnome   0.96-3   GNOME authentication agent for Pol
ii  python  2.6.6-3+squeeze5 interactive high-level object-orie
ii  python-apt  0.7.100.1Python interface to libapt-pkg
ii  python-aptdaemon0.31+bzr413-1.1  Python module for the server and c
ii  python-aptdaemon-gtk0.31+bzr413-1.1  Python GTK+ widgets to run an aptd
ii  python-central  0.6.16+nmu1  register and build utility for Pyt
ii  python-dbus 0.83.1-1 simple interprocess messaging syst
ii  python-gconf2.28.1-1 Python bindings for the GConf conf
ii  python-gtk2 2.17.0-4 Python bindings for the GTK+ widge
ii  python-webkit   1.1.7-1+b1   WebKit/Gtk Python bindings
ii  python-xapian   1.2.3-3  Xapian search engine interface for
ii  python-xdg  0.19-2   Python library to access freedeskt

Versions of packages software-center recommends:
ii  apt-xapian-index   0.41  maintenance and search tools for a
ii  software-properties-gtk0.60.debian-3 manage the repositories that you i
ii  update-notifier0.99.3debian8 Daemon which notifies about packag

software-center suggests no packages.

-- no debconf information



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



Bug#466600: Does not detect/mount cpqarray RAIDed volume

2008-02-21 Thread antonio
Hi,
we have the same problem here, with 2.6.22-3-686. The kernel from stable 
(2.6.18-6-686) just works fine. Seems like a bug introduced in a later 
version.

I attach the info requested:


* cat /proc/cmdline

root=/dev/ida/c0d0p2 ro

* cat /proc/modules

ide_generic 1216 0 [permanent], Live 0xf884d000
ide_cd 36416 0 - Live 0xf9901000
cdrom 32832 1 ide_cd, Live 0xf990c000
ata_generic 7556 0 - Live 0xf881600
libata 115984 1 ata_generic, Live 0xf88a5000
generic 4836 0 [permanent], Live 0xf884a000
aic7xxx 156856 - Live 0xf9934000
tg3 100260 0 - Live 0xf88e
serverworks 7528 0 [permanent], Live 0xf882
ide_core 113764 4 ide_generic,ide_cd,generic,serverworks, Live 0xf88c3000
e100 33644 0 - Live 0xf8851000
mii 5280 1 e100, Live 0xf8842000
floppy 54884 0 - Live 0xf889600
cpqarray 20004 0 - Live 0xf883c000
sym53c8xx 68116 0 - Live 0xf8884000
scsi_transport_spi 23072 2 aic7xxx,sym53c8xx, Live 0xf883500
scsi_mod 136620 4 libata,aic7xxx,sym53c8xx,scsi_transport_spi, Live 0xf8861000
thermal 13416 0 - Live 0xf883
processor 31176 1 thermal, Live 0xf8827000
fan 4836 0 - Live 0xf8819000

* ls -l /dev/ida

brw-rw  1 0 0   72, 0 Feb 20 22:45 c0d0

* cat /etc/fstab

# /etc/fstab: static file system information.
#
#
proc/proc   procdefaults0   0
/dev/ida/c0d0p2 /   ext3defaults,errors=remount-ro 0   1
/dev/ida/c0d0p1 /boot   ext3defaults0   2
/dev/ida/c0d0p5 /home   xfs defaults0   2
/dev/ida/c0d0p7 /tmpext3defaults0   2
/dev/ida/c0d0p6 /varxfs defaults0   2
/dev/ida/c0d0p3 noneswapsw  0   0
/dev/hda/media/cdrom0   iso9660 ro,user,noauto  0   0
/dev/fd0/media/floppy0  autorw,user,noauto  0   0

* dpkg -l grub

ii  grub   0.97-28GRand Unified Bootloader

* dpkg -l udev

ii  udev   0.114-2/dev/ and hotplug management daemon

* dpkg -l initramfs-tools

ii  initramfs-tool 0.90a  tools for generating an initramfs

* lspci -vv

00:00.0 Host bridge: Broadcom CNB20LE Host Bridge (rev 05)
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- 

Bug#445861: hal: HAL daemon exited with return code 1

2007-10-08 Thread Antonio
Package: hal
Version: 0.5.8.1-9
Severity: critical
Justification: breaks unrelated software

During boot appear the message below:

Starting Hardware abstraction layer: haldrun-parts:/etc/dbus-1/event.d/20hal 
exited with return code 1

It can be gotten when the daemon is started manually:

# /etc/init.d/dbus restart
Stopping Hardware abstraction layer: hald.
Stopping system message bus: dbus.
Starting system message bus: dbus.
Starting Hardware abstraction layer: haldrun-parts:
/etc/dbus-1/event.d/20hal exited with return code 1


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1)

Versions of packages hal depends on:
ii  adduser3.102 Add and remove users and groups
ii  dbus   1.0.2-1   simple interprocess messaging syst
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libdbus-1-31.0.2-1   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.71-3simple interprocess messaging syst
ii  libexpat1  1.95.8-3.4XML parsing C library - runtime li
ii  libglib2.0-0   2.12.4-2  The GLib library of C routines
ii  libhal-storage10.5.8.1-9 Hardware Abstraction Layer - share
ii  libhal10.5.8.1-9 Hardware Abstraction Layer - share
ii  libusb-0.1-4   2:0.1.12-5userspace USB programming library
ii  libvolume-id0  0.105-4   libvolume_id shared library
ii  lsb-base   3.1-23.2etch1 Linux Standard Base 3.1 init scrip
ii  pciutils   1:2.2.4~pre4-1Linux PCI Utilities
ii  udev   0.105-4   /dev/ and hotplug management daemo
ii  usbutils   0.72-7USB console utilities

Versions of packages hal recommends:
ii  eject 2.1.4-3ejects CDs and operates CD-Changer

-- no debconf information



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



Bug#482439: Bug#511666: cfengine2 segfaults

2009-03-02 Thread antonio

Richard Nelson wrote:

I'd wager a significant amount that these items are in fact
one and the same - or at least related...

After a local rebuild, this is what I see (three in a row):
  

Hi,
please include the core file (bzip2-ed) so I can have a look,
also let me know which arch you're running cfengine2 on.

Cheers
Antonio



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



Bug#520696: cfengine2: cfservd fails to parse valid admit rules

2009-05-06 Thread antonio

Bernd Zeimetz wrote:

Hi,

are there any news on this bug?
Would be really great to have it fixed.



Hi,
sorry for the late update, I will try to have this fixed this weekend.

Cheers
Antonio




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



Bug#521732: mutt tls_socket_write error -- imap_keepalive

2009-06-15 Thread antonio

Steven Vancoillie wrote:
Would it be worthwhile to run mutt in gdb with a breakpoint somewhere 
inside the

imap_keepalive function (e.g. imap/util.c:709 imap_check_mailbox (ctx, NULL, 
1); )
while monitoring the network traffic with e.g. wireshark?

grtz
Steven
  
Actually you should be able to see the NOOP in .muttdebug0, which I'm 
not seeing...
Unfortunately, as I said, there is no time/date there so I cannot 
correlate it with the tcpdump stream.


There is a new version of mutt on mentors.debian.net which has the patch 
for time/date, probably you could use that and send me the .muttdebug0 + 
tcpstream so I can have a better look.


Beside this, before the error happens do you use mutt or do you leave it 
open in a terminal? Do you leave it in the pager/index/compose mode? Do 
you use the keys often or is it just sleeping and then the error happens?


Cheers
Antonio



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



Bug#493820: Kopete won't send messages using msn http method

2008-10-10 Thread Antonio
Hi
I'd like to let you know about this bug hoping someone finds the time to fix it

https://bugs.kde.org/show_bug.cgi?id=151638

Best regards

Antonio Pisano



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



Bug#900956: systemd-container: doesn't reboot containter, exit with error "Parent died too early"

2018-06-07 Thread Antonio
Package: systemd-container
Version: 238-5
Severity: normal

Dear Maintainer,

start container:
$ systemd-nspawn -b -D /test

and try to reboot:
root@test:~$ reboot

container doesn't reboot but exit with error:
Failed to request
RequestStop match: Transport endpoint is not connected
Parent died too early

Thanks,
Antonio.


--- details ---

 Stopping Authorization Manager...
 Stopping Hostname Service...
[  OK  ] Stopped target Graphical Interface.
[  OK  ] Stopped target Multi-User System.
 Stopping Regular background program processing daemon...
 Stopping Avahi mDNS/DNS-SD Stack...
 Stopping LSB: exim Mail Transport Agent...
 Stopping Network Name Resolution...
[  OK  ] Removed slice system-getty.slice.
 Stopping pure-ftpd.service...
 Stopping Session 27 of user root.
 Stopping cryptmount startup...
 Stopping Internet superserver...
 Stopping Deferred execution scheduler...
[  OK  ] Stopped target Timers.
[  OK  ] Stopped Daily apt upgrade and clean activities.
[  OK  ] Stopped Clean PHP session files every 30 mins.
 Stopping Samba SMB Daemon...
 Stopping Configurazione postazione - stop...
[  OK  ] Stopped Daily apt download activities.
 Stopping LSB: Clean blkid cache file
 Stopping Modem Manager...
[  OK  ] Stopped target Login Prompts.
 Stopping Console Getty...
 Stopping User Manager for UID 0...
[  OK  ] Stopped Daily Cleanup of Temporary Directories.
[  OK  ] Stopped Avahi mDNS/DNS-SD Stack.
[  OK  ] Stopped Modem Manager.
[  OK  ] Stopped Internet superserver.
[  OK  ] Stopped Regular background program processing daemon.
[  OK  ] Stopped Deferred execution scheduler.
[  OK  ] Stopped Authorization Manager.
[  OK  ] Stopped Network Name Resolution.
[  OK  ] Stopped Hostname Service.
[  OK  ] Stopped Console Getty.
[  OK  ] Stopped Samba SMB Daemon.
[  OK  ] Stopped User Manager for UID 0.
[  OK  ] Stopped Session 27 of user root.
[  OK  ] Stopped LSB: Clean blkid cache file..
[  OK  ] Removed slice User Slice of root.
 Stopping Login Service...
[  OK  ] Stopped Samba NMB Daemon.
[  OK  ] Stopped /etc/rc.local Compatibility.
 Stopping Permit User Sessions...
[  OK  ] Stopped Login Service.
[  OK  ] Stopped LSB: exim Mail Transport Agent.
[  OK  ] Stopped target System Time Synchronized.
[  OK  ] Stopped target Network is Online.
[  OK  ] Stopped Network Manager Wait Online.
[  OK  ] Stopped Permit User Sessions.
[  OK  ] Stopped pure-ftpd.service.
[  OK  ] Stopped target Remote File Systems.
[  OK  ] Stopped target Network.
 Stopping Network Manager...
[  OK  ] Stopped Network Manager.
 Stopping D-Bus System Message Bus...
[  OK  ] Stopped D-Bus System Message Bus.
[  OK  ] Stopped Configurazione postazione - stop.
[  OK  ] Stopped cryptmount startup.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Sockets.
[  OK  ] Closed D-Bus System Message Bus Socket.
[  OK  ] Closed Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Closed UUID daemon activation socket.
[  OK  ] Closed PC/SC Smart Card Daemon Activation Socket.
[  OK  ] Stopped target Slices.
[  OK  ] Removed slice User and Session Slice.
[  OK  ] Stopped target System Initialization.
[  OK  ] Stopped target Encrypted Volumes.
 Stopping Update UTMP about System Boot/Shutdown...
[  OK  ] Stopped target Swap.
[  OK  ] Stopped target Paths.
[  OK  ] Stopped Forward Password Requests to Wall Directory Watch.
[  OK  ] Stopped Dispatch Password Requests to Console Directory Watch.
[  OK  ] Stopped Update UTMP about System Boot/Shutdown.
[  OK  ] Stopped Create Volatile Files and Directories.
[  OK  ] Stopped target Local File Systems.
 Unmounting /var/tmp...
 Unmounting /run/user/0...
 Unmounting /run/systemd/nspawn/incoming...
 Unmounting /tmp...
[  OK  ] Unmounted /var/tmp.
[  OK  ] Unmounted /run/user/0.
[  OK  ] Unmounted /tmp.
[  OK  ] Unmounted /run/systemd/nspawn/incoming.
[  OK  ] Reached target Unmount All Filesystems.
[  OK  ] Stopped target Local File Systems (Pre).
 Stopping Monitoring of LVM2 mirrors, snapshots etc. using dmeventd
or
progress polling...
[  OK  ] Stopped Remount Root and Kernel File Systems.
[  OK  ] Reached target Shutdown.
Sending SIGTERM to remaining processes...
Sending SIGKILL to remaining processes...
Rebooting.
Container test is being rebooted.
Failed to request RequestStop match: Transport endpoint is not connected
Parent died too early



-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500, 'stable-updates'),
(500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.17.0-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it

Bug#901830: cryptsetup-initramfs: warning after upgrade cryptsetup-initramfs (update-initramfs -u / boot process)

2018-06-18 Thread Antonio
Package: cryptsetup-initramfs
Version: 2:2.0.3-2
Severity: normal

Dear Maintainer,
after upgrade cryptsetup-initramfs to version 2:2.0.3-2 (from cryptsetup-bin
2:2.0.2-1) I view this error during boot process:
...
/script/local-top/cryptroot: .: line 29 can't open
'/lib/cryptsetup/functions'
...


and if I try to generate initrd.img:

$ update-initramfs -u
cryptsetup: WARNING: The initramfs image may not contain cryptsetup binaries
nor crypto modules. If that's on purpose, you may want to uninstall the
'crypsetup-initramfs' package in order to disable the cryptsetup initramfs
integration and avoid this warning.

actual packages installed :

cryptsetup-bin  2:2.0.3-2
cryptsetup-initramfs2:2.0.3-2
cryptsetup-run  2:2.0.3-2
libcryptsetup-dev:amd64 2:2.0.3-2
libcryptsetup12:amd64   2:2.0.3-2

Thanks,
Antonio



-- Package-specific info:

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500, 'stable-updates'),
(500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.17.2-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages cryptsetup-initramfs depends on:
ii  busybox 1:1.27.2-2
ii  cryptsetup-run  2:2.0.3-2
ii  initramfs-tools [linux-initramfs-tool]  0.130

Versions of packages cryptsetup-initramfs recommends:
ii  console-setup  1.184
ii  kbd2.0.4-3

cryptsetup-initramfs suggests no packages.

-- no debconf information


Bug#901830: cryptsetup-initramfs: warning after upgrade cryptsetup-initramfs (update-initramfs -u / boot process)

2018-06-19 Thread Antonio
Thank for your reply.

The boot problem is that you include file "/lib/cryptsetup/functions"
[scripts: hooks/cryptgnupg, hooks/cryptopensc, hooks/cryptroot under
/usr/share/initramfs-tools] but when generate initramfs is updated and the
system rebooted, the file "lib/cryptsetup/functions" not exists in this
context.

For fix this, I created a simple hook (view below) and I updated initramfs
(update-initramfs -u).

Now, when boot, no error occour.


File /usr/share/initramfs-tools/hooks/fix-cryptsetup:

#!/bin/sh
set -eu
PREREQ=
prereqs()
{
  echo "$PREREQ"
}
case "${1:-}" in
  prereqs)
prereqs
exit 0
;;
esac
[ -r /usr/share/initramfs-tools/hook-functions ] || exit 0
. /usr/share/initramfs-tools/hook-functions

echo "fix missing file cryptsetup..."
mkdir -p $DESTDIR/lib/cryptsetup/
cp /lib/cryptsetup/functions  $DESTDIR/lib/cryptsetup/
exit 0



2018-06-19 13:43 GMT+02:00 Guilhem Moulin :

> Hi Antonio,
>
> On Tue, 19 Jun 2018 at 08:31:39 +0200, Antonio wrote:
> > $ update-initramfs -u
> > cryptsetup: WARNING: The initramfs image may not contain cryptsetup
> binaries
> > nor crypto modules. If that's on purpose, you may want to uninstall the
> > 'crypsetup-initramfs' package in order to disable the cryptsetup
> initramfs
> > integration and avoid this warning.
>
> This warning is intentional if you have devices that need to be unlocked
> at initramfs stage (for instance devices required to unlock the root FS).
>
> Is that a false positive in your case?  Were there devices that were
> unlocked at initramfs stage before, now making your system unbootable?
>
> Or is this bug about the error when sourcing /lib/cryptsetup/functions
> from the cryptroot initramfs boot script?  It's harmless, but also easy
> to fix.
>
> https://salsa.debian.org/cryptsetup-team/cryptsetup/commit/
> 71cbd49edd15e3431ea9974587291d8293e39f68
>
> --
> Guilhem.
>


Bug#902269: pulseaudio: upgrading to version 12.0 remove plasma-pa

2018-06-24 Thread Antonio
Package: pulseaudio
Version: 11.1-5
Severity: normal

Dear Maintainer,
can't upgrade pulseaudio because it remove installed package plasma-
pa/4:5.12.5-1

Thanks,
Antonio


--- details ---

$ apt-get dist-upgrade
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
Calcolo dell'aggiornamento... Fatto
I seguenti pacchetti saranno RIMOSSI:
  plasma-pa pulseaudio-module-gconf
I seguenti pacchetti NUOVI saranno installati:
  libantlr3c-3.4-0 libcerf1
I seguenti pacchetti saranno aggiornati:
  labplot labplot-data libantlr3c-dev libpulse-dev libpulse-mainloop-glib0
libpulse0 libpulse0:i386
  libpulsedsp pulseaudio pulseaudio-esound-compat pulseaudio-module-bluetooth
pulseaudio-module-jack
  pulseaudio-utils
13 aggiornati, 2 installati, 2 da rimuovere e 0 non aggiornati.
È necessario scaricare 9.698 kB di archivi.
Dopo quest'operazione, verranno liberati 94,2 kB di spazio su disco.
Continuare? [S/n] n
Interrotto.


$ aptitude dist-upgrade
I seguenti pacchetti NUOVI (NEW) saranno installati:
  libantlr3c-3.4-0{a} libcerf1{a}
I seguenti pacchetti saranno aggiornati:
  labplot labplot-data libantlr3c-dev libpulse-dev libpulse-mainloop-glib0
libpulse0 libpulse0:i386
  libpulsedsp pulseaudio pulseaudio-esound-compat pulseaudio-module-bluetooth
pulseaudio-module-jack
  pulseaudio-utils
I seguenti pacchetti sono RACCOMANDATI ma NON verranno installati:
  rtkit
13 pacchetti aggiornati, 2 installati, 0 da rimuovere e 0 non aggiornati.
È necessario prelevare 9.698 kB di archivi. Dopo l'estrazione, verranno
occupati 1.023 kB.
I seguenti pacchetti hanno dipendenze non soddisfatte:
 pulseaudio-module-gconf : Dipende: libpulse0 (= 11.1-5) but 12.0-1 is to be
installed
   Dipende: pulseaudio (= 11.1-5) but 12.0-1 is to be
installed
Le seguenti azioni permetteranno di soddisfare queste dipendenze:

  Mantenere i seguenti pacchetti alla versione attuale:
1)  libpulse-dev [11.1-5 (now, testing)]
2)  libpulse-mainloop-glib0 [11.1-5 (now, testing)]
3)  libpulse0 [11.1-5 (now, testing)]
4)  libpulse0:i386 [11.1-5 (now, testing)]
5)  libpulsedsp [11.1-5 (now, testing)]
6)  pulseaudio [11.1-5 (now, testing)]
7)  pulseaudio-esound-compat [11.1-5 (now, testing)]
8)  pulseaudio-module-bluetooth [11.1-5 (now, testing)]
9)  pulseaudio-module-jack [11.1-5 (now, testing)]
10) pulseaudio-utils [11.1-5 (now, testing)]

Accettare questa soluzione? [Y/n/q/?] q
Abbandonato ogni tentativo di risolvere queste dipendenze.
Uscita.

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500,
'stable-updates'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.17.2-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages pulseaudio depends on:
ii  adduser  3.117
ii  libasound2   1.1.6-1
ii  libasound2-plugins   1:1.1.6-dmo1
ii  libc62.27-3
ii  libcap2  1:2.25-1.2
ii  libdbus-1-3  1.12.8-3
ii  libgcc1  1:8.1.0-8
ii  libice6  2:1.0.9-2
ii  libltdl7 2.4.6-2.1
ii  liborc-0.4-0 1:0.4.28-2
ii  libpulse011.1-5
ii  libsm6   2:1.2.2-1+b3
ii  libsndfile1  1.0.28-4
ii  libsoxr0 0.1.2-3
ii  libspeexdsp1 1.2~rc1.2-1+b2
ii  libstdc++6   8.1.0-8
ii  libsystemd0  239-1
ii  libtdb1  1.3.15-4
ii  libudev1 239-1
ii  libwebrtc-audio-processing1  0.3-1
ii  libx11-6 2:1.6.5-1
ii  libx11-xcb1  2:1.6.5-1
ii  libxcb1  1.13-1
ii  libxtst6 2:1.2.3-1
ii  lsb-base 9.20170808
ii  pulseaudio-utils 11.1-5

Versions of packages pulseaudio recommends:
ii  dbus-user-session  1.12.8-3
ii  libpam-systemd 239-1
pn  rtkit  

Versions of packages pulseaudio suggests:
ii  paman0.9.4-1+b3
pn  paprefs  
ii  pavucontrol  3.0-4
ii  pavumeter0.9.3-4+b3
ii  udev 239-1

-- no debconf information


Bug#902271: ksysguard: does not maintain the settings of the interface

2018-06-24 Thread Antonio
Package: ksysguard
Version: 4:5.12.4-1
Severity: normal

Dear Maintainer,
ksysguard does not maintain the settings of the interface, for example
insertion of columns (PID, processor time), column width etc.

Thanks,
Antonio



-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500,
'stable-updates'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.17.2-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages ksysguard depends on:
ii  kio   5.47.0-1
ii  ksysguard-data4:5.12.4-1
ii  ksysguardd4:5.12.4-1
ii  libc6 2.27-3
ii  libkf5completion5 5.47.0-1
ii  libkf5configcore5 5.47.0-1
ii  libkf5configwidgets5  5.47.0-1
ii  libkf5coreaddons5 5.47.0-1
ii  libkf5dbusaddons5 5.47.0-1
ii  libkf5i18n5   5.47.0-1
ii  libkf5iconthemes5 5.47.0-1
ii  libkf5itemviews5  5.47.0-1
ii  libkf5kiowidgets5 5.47.0-1
ii  libkf5newstuff5   5.47.0-1
ii  libkf5newstuffcore5   5.47.0-1
ii  libkf5notifications5  5.47.0-1
ii  libkf5widgetsaddons5  5.47.0-1
ii  libkf5windowsystem5   5.47.0-1
ii  libkf5xmlgui5 5.47.0-1
ii  libksgrd7 4:5.12.5-1
ii  libksignalplotter74:5.12.5-1
ii  libprocesscore7   4:5.12.5-1
ii  libprocessui7 4:5.12.5-1
ii  libqt5core5a  5.10.1+dfsg-7
ii  libqt5dbus5   5.10.1+dfsg-7
ii  libqt5gui55.10.1+dfsg-7
ii  libqt5widgets55.10.1+dfsg-7
ii  libqt5xml55.10.1+dfsg-7
ii  libstdc++68.1.0-8

ksysguard recommends no packages.

ksysguard suggests no packages.

-- no debconf information


Bug#900956: systemd-container: doesn't reboot containter, exit with error "Parent died too early" (SOLVED)

2018-06-24 Thread Antonio
New version 239 solve (for me) the problem, now i can reboot again.

Regards,
Antonio.


Bug#902271: ksysguard: does not maintain the settings of the interface (solved for me)

2018-06-27 Thread Antonio
I verified that the problem only occurs if I log in as user "root".

I solved the problem by starting ksysguard with a generic user, exiting
from the program and copying the files generated for this user to root.

Now ksysguard works correctly and when I exit the program any changes made
are saved and restored at the next restart.

Antonio.


--- dettagli ---

# run kde session as root

# start ksysguard as user (example "tester"):
su - tester -c ksysguard

# exit from program

# view file modified
ls -ll  /home/tester/.local/share/ksysguard/ProcessTable.sgrd
/home/tester/.local/share/ksysguard/SystemLoad2.sgrd
/home/root/.local/share/ksysguard/ProcessTable.sgrd
/home/root/.local/share/ksysguard/SystemLoad2.sgrd
-rw-rw-r-- 1 root   root   1049 giu 27 15:47
/home/root/.local/share/ksysguard/ProcessTable.sgrd
-rw-rw-r-- 1 root   root   1972 giu 27 15:47
/home/root/.local/share/ksysguard/SystemLoad2.sgrd
-rw-rw-r-- 1 tester tester 1061 giu 27 15:40
/home/tester/.local/share/ksysguard/ProcessTable.sgrd
-rw-rw-r-- 1 tester tester 1972 giu 27 15:40
/home/tester/.local/share/ksysguard/SystemLoad2.sgrd

# replace root file with user file
cp -v  /home/tester/.local/share/ksysguard/SystemLoad2.sgrd
/home/root/.local/share/ksysguard/SystemLoad2.sgrd
cp -v /home/tester/.local/share/ksysguard/ProcessTable.sgrd
/home/root/.local/share/ksysguard/ProcessTable.sgrd

# restart
ksysguard


Bug#979439: hunspell-it: Italian spell check cannot recognize simple words

2021-01-13 Thread Antonio
I solved it by changing this line of the file 
"/usr/share/hunspell/it_IT.aff":


--- it_IT.aff.orig.bad  2021-01-13 19:28:38.184457124 +0100
+++ it_IT.aff.new.ok   2021-01-13 19:38:06.141194317 +0100
@@ -36,7 +36,7 @@
 LANG it_IT
 HOME https://libreitalia.org
 VERSION 5.1.0 (13/10/2020)
-SET UTF-8
+SET ISO8859-15
 TRY 
aioertnsclmdpgubzfvhàq'ACMSkBGPLxEyRTVòIODNwFéùÚìjUZKHWJYQXÃÃ
 # Nota: non presenti nel dizionario: ÃÃ, vanno aggiunte alla TRY 
rigenerata




Bug#980184: time: should be renamed

2021-01-15 Thread Antonio

Package: time
Version: 1.9-0.1
Severity: normal

Dear Maintainer,
as indicated in the object, "/usr/bin/time" should be renamed as it is covered by the 
"time" command integrated into the bash shell, so this executable is never called, unless 
it is run complete with path or through a specific alias.


Thanks,
Antonio



Bug#966524: lvm2: "lvconvert --merge" does not remove the snapshot fter completing

2021-01-16 Thread Antonio

Dear maintenance,
to remember that this problem still exists (and is necessary restart the 
system, after the snapshot revert process has completed)


Thanks
Antonio



Bug#966524: Fwd: lvm2: "lvconvert --merge" does not remove the snapshot fter completing (found workaround)

2021-01-18 Thread Antonio
Comparing the working lvm package (2.03.07-1+b1) with the next package 
that has the problem (2.03.09-1), after some tests I was able to solve 
the problem quite simply:
- copy the file: "69-lvm-metad.rules" of the working version in 
"/lib/udev/rules.d/69-lvm-metad.rules"

- and regenerate initram: "update-initramfs -u"
repeating the test, the problem was solved (for me)

Thanks
Antonio


--- /lib/udev/rules.d/69-lvm-metad.rules    2021-01-18 
10:42:53.67380 +0100
+++ /lib/udev/rules.d/69-lvm-metad.rules    2021-01-18 
11:07:17.154831718 +0100

@@ -68,15 +68,17 @@
 # For "systemd_background" mode, systemd takes care of this by activating
 # the lvm2-pvscan@.service only once.
 LABEL="next"
-TEST!="/run/systemd/system", ACTION!="add", GOTO="lvm_end"
-TEST=="/run/systemd/system", ACTION!="add|change", GOTO="lvm_end"
+ACTION!="add|change", GOTO="lvm_end"

 LABEL="lvm_scan"

 ENV{SYSTEMD_READY}="1"

-TEST!="/run/systemd/system", GOTO="direct_pvscan"
-TEST=="/run/systemd/system", GOTO="systemd_background"
+# The method for invoking pvscan is selected at build time with the option
+# --(enable|disable)-udev-systemd-background-jobs to "configure".
+# On modern distributions with recent systemd, it's "systemd_background";
+# on others, "direct_pvscan".
+GOTO="systemd_background"

 LABEL="systemd_background"




--- /lib/udev/rules.d/69-lvm-metad.rules2021-01-18 10:42:53.67380 
+0100
+++ /lib/udev/rules.d/69-lvm-metad.rules2021-01-18 11:07:17.154831718 
+0100
@@ -68,15 +68,17 @@
 # For "systemd_background" mode, systemd takes care of this by activating
 # the lvm2-pvscan@.service only once.
 LABEL="next"
-TEST!="/run/systemd/system", ACTION!="add", GOTO="lvm_end"
-TEST=="/run/systemd/system", ACTION!="add|change", GOTO="lvm_end"
+ACTION!="add|change", GOTO="lvm_end"
 
 LABEL="lvm_scan"
 
 ENV{SYSTEMD_READY}="1"
 
-TEST!="/run/systemd/system", GOTO="direct_pvscan"
-TEST=="/run/systemd/system", GOTO="systemd_background"
+# The method for invoking pvscan is selected at build time with the option
+# --(enable|disable)-udev-systemd-background-jobs to "configure".
+# On modern distributions with recent systemd, it's "systemd_background";
+# on others, "direct_pvscan".
+GOTO="systemd_background"
 
 LABEL="systemd_background"
 


Bug#861101: Can't enter disk encryption password

2018-08-11 Thread Antonio
On Sun, 10 Jun 2018 09:50:14 -0700 David N  wrote:
> I was seeing this issue on a fresh stretch install, on a amd64 EFI
> system with non-free nvidia driver.
> 
> I installed plymouth, plymouth-label, plymouth-themes, libplymouth4
> 0.9.3-3, as well as fontconfig-config, libfontconfig1 2.13.0-5 from
> buster to satisfy deps.
> 
> This did indeed fix the issue for me.
> 
> Note that I also had to upgrade fontconfig from 2.11.0-6.7+b1 to
> 2.13.0-5 as the plymouth update-initramfs hook was bailing running
> fc-cache. I believe this is caused by an issue with the -y flag in
> the fc-cache present in stretch. Might be worth adding a version to
> the plymouth-themes->fontconfig dep, although this will probably only
> occur for mixed stretch/buster users.

I can confirm that this fixes the issue on a MacBook Pro with nvidia
card.

Thanks!

-- 

CLAVE PÚBLICA GPG: D48D35DF

Algunos consejos para un uso 
coherente del correo electrónico:

1.- Para proteger la intimidad de tus contactos y evitar el SPAM
(correo no deseado): Borra la dirección del remitente y cualquier otra
dirección que aparezca en el cuerpo del mensaje. Introduce los/las
destinatarias en el apartado CCO (Con Copia Oculta) 2.- Existen otros
programas de mensajería instantánea libres y gratuitos, así que no es
ningún drama que MSN desaparezca o que hagan lo que les dé la gana. 3.-
Nadie regala duros a cuatro pesetas, verdad? Pues por qué se le da
tanto bombo a Sony Ericsson o a quien sea con el rollo de que regalan
ordenadores? A alguien le han dado uno, o cheques de Bill Gates?

CUIDA A TUS CONTACTOS Y DEJA DE HACER PUBLICIDAD A LAS MULTINACIONALES!

¡GRACIAS!


pgpe7izTCgbCP.pgp
Description: Firma digital OpenPGP


Bug#981349: kde/plasma does not start under wayland (solved)

2021-01-29 Thread Antonio

Package: plasma-workspace-wayland
Version: 4:5.20.5-3
Severity: normal

Dear Maintainer,
I recently tried to start a kde/plasma session on wayland server, via 
sddm+nouveau, but it return error "kwin_wayland failed backend".
To work I had to modify the file 
"/usr/share/wayland-sessions/plasmawayland.desktop" by inserting 
additional parameters:


original: 
Exec=/usr/lib/x86_64-linux-gnu/libexec/plasma-dbus-run-session-if-needed/usr/bin/startplasma-wayland


modified: 
Exec="/usr/lib/x86_64-linux-gnu/libexec/plasma-dbus-run-session-if-needed 
/usr/bin/startplasma-wayland --drm --libinput --xwayland plasmashell"


The question is: why are these parameters, necessary for its works, not 
already included in plasmawayland.desktop? (or could this be a problem 
with my configuration?)

Thank you,
Antonio

-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (500, 'stable-updates'), (500, 
'stable'), (100, 'experimental')

Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.10.11-custom (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_WARN
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=ISO-8859-1) 
(ignored: LC_ALL set to it_IT), LANGUAGE=it

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

Versions of packages plasma-workspace-wayland depends on:
ii  kwayland-integration  5.20.5-1
ii  kwin-wayland  4:5.20.5-1
ii  libc6 2.31-9
ii  libkf5configcore5 5.78.0-3
ii  libkf5coreaddons5 5.78.0-2
ii  libkworkspace5-5  4:5.20.5-3
ii  libqt5core5a  5.15.2+dfsg-3
ii  libqt5dbus5   5.15.2+dfsg-3
ii  libstdc++6    10.2.1-6
ii  plasma-workspace  4:5.20.5-3
ii  qtwayland5    5.15.2-2



Bug#901434: Unable to create backups with rdiff-backup

2020-10-14 Thread Antonio
Hi,

nice that you remind me about rdiff-backup :)

I've just tested it between 2 Debian Buster machines, and it works
fine. It is ok to close this bug.

And now, time to set it up again, thanks!





CLAVE PÚBLICA GPG: 095A65D7D48D35DF


pgpDiQ_CvCEto.pgp
Description: Firma digital OpenPGP


Bug#972344: bash automatically selects the copied text

2020-10-16 Thread Antonio
Package: bash
Version: 5.1~rc1-2
Severity: normal

Dear Maintainer,
after updating bash to version 5.1 ~ rc1-2 I noticed a new behavior: when
you paste a text it is automatically selected.
This however creates confusion as on plasma / konsole as the text is
confused with the cursor (block), placed at the end of the word.
How can I disable this new feature?
Thank you,
Antonio De Lorenzi


Bug#972382: mariadb-server-10.5: logrotate service error at system startup

2020-10-17 Thread Antonio
Package: mariadb-server-10.5
Version: 1:10.5.6-1
Severity: minor

Dear Maintainer,
at system startup, the logrotate service reports an error due to the
"my_print_defaults --mariadb" command located inside the
"/etc/logrotate.d/mysql-server" file.

If I run the command from the console it returns:
my_print_defaults: unknown option '--mariadb'

Thank you,
Antonio



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

Kernel: Linux 5.9.0-custom (SMP w/8 CPU threads; PREEMPT)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=ISO-8859-1)
(ignored: LC_ALL set to it_IT), LANGUAGE=it
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages mariadb-server-10.5 depends on:
ii  adduser   3.118
ii  debconf [debconf-2.0] 1.5.74
ii  galera-4  26.4.5-1+b1
ii  gawk  1:5.0.1+dfsg-1
ii  iproute2  5.8.0-1
ii  libc6 2.31-4
ii  libdbi-perl   1.643-2
ii  libgnutls30   3.6.15-4
ii  libpam0g  1.3.1-5
ii  libstdc++610.2.0-15
ii  lsb-base  11.1.0
ii  lsof  4.93.2+dfsg-1
ii  mariadb-client-10.5   1:10.5.6-1
ii  mariadb-common1:10.5.6-1
ii  mariadb-server-core-10.5  1:10.5.6-1
ii  passwd1:4.8.1-1
ii  perl  5.30.3-4
ii  procps2:3.3.16-5
ii  psmisc23.3-1
ii  rsync 3.2.3-2
ii  socat 1.7.3.4-1
ii  zlib1g1:1.2.11.dfsg-2

Versions of packages mariadb-server-10.5 recommends:
ii  libhtml-template-perl  2.97-1

Versions of packages mariadb-server-10.5 suggests:
ii  mailutils [mailx]  1:3.10-3
pn  mariadb-test   
ii  netcat-openbsd 1.217-2


Bug#972382: [debian-mysql] Bug#972382: mariadb-server-10.5: logrotate service error at system startup

2020-10-20 Thread Antonio
*$ dpkg -S /etc/logrotate.d/mysql-server*

mariadb-server-10.5: /etc/logrotate.d/mysql-server



*$ find /etc/logrotate.d/m* -ls*

  4857005  4 -rw-r--r--   1 root root 1751 ott 16 07:32
/etc/logrotate.d/mariadb
  4851922  4 -rw-r--r--   1 root root  800 ott 20 11:34
/etc/logrotate.d/mysql-server



*$ cat /etc/logrotate.d/mariadb*

# This is the MariaDB configuration for the logrotate utility
#
# Note that on most Linux systems logs are written to journald, which has
its
# own rotation scheme.
#
# Read https://mariadb.com/kb/en/error-log/ to learn more about logging and
# https://mariadb.com/kb/en/rotating-logs-on-unix-and-linux/ about rotating
logs.

/var/lib/mysql/mysqld.log /mysql.log /var/lib/mysql/mariadb.log
/mysql-slow.log /mariadb-slow.log /error.log {

  # If any of the files listed above is missing, skip them silently without
  # emitting any errors
  missingok

  # If file exists but is empty, don't rotate it
  notifempty

  # Run daily
  daily

  # Keep one week of logs
  rotate 7

  # If file is growing too big, rotate immediately
  maxsize 100M

  # Compress logs, as they are text and compression will save a lot of disk
space
  compress

  # Don't compress the log immediately to avoid errors about "file size
changed while zipping"
  delaycompress

  # Don't run the postrotate script for each file configured in this file,
but
  # run it only once if one or more files were rotated
  sharedscripts

  # After each rotation, run this custom script to flush the logs. Note that
  # this assumes that the mariadb-admin command has database access, which
it
  # has thanks to the default use of Unix socket authentication for the
'root'
  # account used everywhere since MariaDB 10.4.
  postrotate
if test -x /etc/mysql/debian.cnf
then
  EXTRAPARAM='--defaults-file=/etc/mysql/debian.cnf'
fi

if test -x /usr/bin/mariadb-admin && \
/usr/bin/mariadb-admin ping &>/dev/null
then
  /usr/bin/mariadb-admin $EXTRAPARAM --local flush-error-log \
flush-engine-log flush-general-log flush-slow-log
fi
  endscript
}



*$ cat /etc/logrotate.d/mysql-server*

# - I put everything in one block and added sharedscripts, so that mysql
gets
#   flush-logs'd only once.
#   Else the binary logs would automatically increase by n times every day.
# - The error log is obsolete, messages go to syslog now.
/var/log/mysql/mysql.log /var/log/mysql/mysql-slow.log
/var/log/mysql/mariadb-slow.log /var/log/mysql/error.log {
daily
rotate 7
missingok
create 640 mysql adm
compress
sharedscripts
postrotate
  test -x /usr/bin/mysqladmin || exit 0
  if [ -f `*my_print_defaults --mariadb* | grep -oP
"pid-file=\K[^$]+"` ]; then
# If this fails, check debian.conf!
mysqladmin --defaults-file=/etc/mysql/debian.cnf --local
flush-error-log \
  flush-engine-log flush-general-log flush-slow-log
  fi
endscript
}


*$ my_print_defaults --mariadb*

my_print_defaults: unknown option '--mariadb'


but if I change with --mysqld it would seem ok:

*$ my_print_defaults --mysqld *

--socket=/run/mysqld/mysqld.sock
--user=mysql
--pid-file=/run/mysqld/mysqld.pid
--basedir=/usr
--datadir=/var/lib/mysql
--tmpdir=/tmp
--lc-messages-dir=/usr/share/mysql
--lc-messages=en_US
--skip-external-locking
--bind-address=127.0.0.1
--expire_logs_days=10
--character-set-server=utf8mb4
--collation-server=utf8mb4_general_ci



*$ my_print_defaults *

my_print_defaults  Ver 1.7 for debian-linux-gnu at x86_64
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license

Prints all arguments that is give to some program using the default files
Usage: my_print_defaults [OPTIONS] [groups]
 -#, --debug[=#] This is a non-debug version. Catch this and exit
 -c, --defaults-file=name
 Read this file only, do not read global or per-user
 config files; should be the first option
 -e, --defaults-extra-file=name
 Read this file after the global config file and before
 the config file in the users home directory; should be
 the first option
 -g, --defaults-group-suffix=name
 In addition to the given groups, read also groups with
 this suffix
 *--mysqldRead the same set of groups that the mysqld binary
does. *
 -n, --no-defaults   Return an empty string (useful for scripts).
 -?, --help  Display this help message and exit.
 -v, --verbose   Increase the output level
 -V, --version   Output version information and exit.

Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf ~/.my.cnf

Variables (--variable-name=value)
and boolean options {FALSE|TRUE}  Value (after reading options)
- --

Bug#949211: gmic: update packages

2020-01-18 Thread Antonio
Package: gmic
Version: 2.4.5-1+b1

Dear Maintainer,
can update packages?

Thanks,
Antonio

$ apt-get  dist-upgrade
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
Calcolo dell'aggiornamento... Fatto
I seguenti pacchetti sono stati installati automaticamente e non sono più
richiesti:
  libgdcm2.8 libproj13
Usare "apt autoremove" per rimuoverli.
I seguenti pacchetti saranno RIMOSSI:
  gimp-gmic gmic gmic-zart krita-gmic libgdal20 libgmic1 libopencv-calib3d3.2
  libopencv-features2d3.2 libopencv-highgui3.2 libopencv-imgcodecs3.2
libopencv-objdetect3.2 libopencv-stitching3.2 libopencv-superres3.2
libopencv-videoio3.2 libopencv-videostab3.2 libvtk7.1 libvtk7.1-qt
I seguenti pacchetti saranno aggiornati:
  gdal-bin gdal-data libgdal-dev libgdal-grass libgdal-java libgdal26
python3-gdal
7 aggiornati, 0 installati, 17 da rimuovere e 0 non aggiornati.
È necessario scaricare 17,1 MB di archivi.
Dopo quest'operazione, verranno liberati 216 MB di spazio su disco.
Continuare? [S/n] n
Interrotto.



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

Kernel: Linux 5.4.12-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=ISO-8859-1)
(ignored: LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1)
(ignored: LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gmic suggests:
ii  gimp-gmic  2.4.5-1+b1
ii  gmic-zart  2.4.5-1+b1



Bug#949754: libreoffice-writer: cannot open an existing document after an update and subsequent saving (corrupt document?)

2020-01-24 Thread Antonio
Package: libreoffice-writer
Version: 1:6.4.0~rc2-2
Severity: important

Dear Maintainer,
libreoffice writer corrupts an existing document when you update it

Steps to reproduce:
- create new document with some text
- save document
- close document
- reopen previous saved document
- modify or add text
- save document again
- reopen document

appears a error messagebox with this text (in italian): "Errore di lettura.
Errore di formato nel file, nel sotto-documento styles.xml in
2,4696(riga,col)", and I can no longer open the document.

Thanks,
Antonio


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

Kernel: Linux 5.4.14-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=ISO-8859-1)
(ignored: LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1)
(ignored: LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libreoffice-writer depends on:
ii  libabw-0.1-1 0.1.3-1
ii  libc62.29-9
ii  libe-book-0.1-1  0.1.3-1+b2
ii  libepubgen-0.1-1 0.1.1-1
ii  libetonyek-0.1-1 0.1.9-2
ii  libgcc1  1:9.2.1-24
ii  libicu63 63.2-2
ii  libmwaw-0.3-30.3.15-2
ii  libodfgen-0.1-1  0.1.7-1
ii  libreoffice-base-core1:6.4.0~rc2-2
ii  libreoffice-core 1:6.4.0~rc2-2
ii  librevenge-0.0-0 0.0.4-6+b1
ii  libstaroffice-0.0-0  0.0.6-1
ii  libstdc++6   9.2.1-24
ii  libuno-cppu3 1:6.4.0~rc2-2
ii  libuno-cppuhelpergcc3-3  1:6.4.0~rc2-2
ii  libuno-sal3  1:6.4.0~rc2-2
ii  libuno-salhelpergcc3-3   1:6.4.0~rc2-2
ii  libwpd-0.10-10   0.10.3-1
ii  libwpg-0.3-3 0.3.3-1
ii  libwps-0.4-4 0.4.10-1
ii  libxml2  2.9.4+dfsg1-8
ii  uno-libs-private 1:6.4.0~rc2-2
ii  ure  1:6.4.0~rc2-2
ii  zlib1g   1:1.2.11.dfsg-1+b1

Versions of packages libreoffice-writer recommends:
ii  libreoffice-math  1:6.4.0~rc2-2

Versions of packages libreoffice-writer suggests:
ii  fonts-crosextra-caladea 20130214-2
ii  fonts-crosextra-carlito 20130920-1
ii  libreoffice-base1:6.4.0~rc2-2
pn  libreoffice-java-common 
ii  openjdk-13-jre [java8-runtime]  13.0.2+8-1

Versions of packages libreoffice-core depends on:
ii  fontconfig  2.13.1-2+b1
ii  fonts-opensymbol2:102.11+LibO6.4.0~rc3-1
ii  libboost-locale1.67.0   1.67.0-17
ii  libc6   2.29-9
ii  libcairo2   1.16.0-4
ii  libclucene-contribs1v5  2.3.3.4+dfsg-1+b1
ii  libclucene-core1v5  2.3.3.4+dfsg-1+b1
ii  libcmis-0.5-5v5 0.5.2-1
ii  libcups22.3.1-1
ii  libcurl3-gnutls 7.67.0-2
ii  libdbus-1-3 1.12.16-2
ii  libdconf1   0.34.0-2
ii  libeot0 0.01-5+b1
ii  libepoxy0   1.5.4-1
ii  libexpat1   2.2.9-1
ii  libexttextcat-2.0-0 3.4.5-1
ii  libfontconfig1  2.13.1-2+b1
ii  libfreetype62.10.1-2
ii  libgcc1 1:9.2.1-24
ii  libglib2.0-02.62.4-1+b1
ii  libgpgmepp6 1.13.1-3
ii  libgraphite2-3  1.3.13-11
ii  libgstreamer-plugins-base1.0-0  1.16.2-dmo3
ii  libgstreamer1.0-0   1.16.2-2
ii  libharfbuzz-icu02.6.4-1
ii  libharfbuzz0b   2.6.4-1
ii  libhunspell-1.7-0   1.7.0-2+b1
ii  libhyphen0  2.8.8-7
ii  libice6 2:1.0.9-2
ii  libicu6363.2-2
ii  libjpeg62-turbo 1:1.5.2-2+b1
ii  liblcms2-2  2.9-4
ii  libldap-2.4-2   2.4.48+dfsg-1+b2
ii  libmythes-1.2-0 2:1.2.4-3+b1
ii  libneon27-gnutls0.30.2-3
ii  libnspr42:4.24-1
ii  libnss3 2:3.49.1-1
ii  libnumbertext-1.0-0 1.0.5-3
ii  liborcus-0.15-0 0.15.3-3
ii  libpng16-16 1.6.37-1
ii  libpoppler820.71.0-6
ii  libqrcodegencpp11.5.0-2
ii  librdf0 1.0.17-1.1+b1
ii  libreoffice-common  1:6.4.0~rc3-1
ii  librevenge-0.0-00.0.4-6+b1
ii  libsm6  2:1.2.3-1
ii  libstdc++6  9.2.1-24
ii  libuno-cppu31:6.4.0~rc2-2
ii  libuno-cppuhelpergcc3-3 1:6.4.0~rc2-2
ii  libuno-sal3 1:6.4.0~rc2-2
ii  libuno-salhelpergcc3-3  1:6.4.0~rc2-

Bug#949754: libreoffice-writer: cannot open an existing document after an update and subsequent saving (corrupt document?)

2020-01-24 Thread Antonio
After several tests I found that the problem depended on the
libreoffice user profile of the previous installed version.

To solve this problem I manually removed the file:
$ rm  -f /home/user/.config/libreoffice/4/user/registrymodifications.xcu

which will then be recreated when the program restarts.

In doing so the problem is solved, but the documents saved before this
change are unfortunately no longer recoverable.

Perhaps could be evaluated an action in the installation trigger of
the new version to avoid this eventuality...



Bug#947928: rdesktop crash with segmentation error

2020-01-02 Thread Antonio
Package: rdesktop
Version: 1.9.0-1+b1
Severity: normal

Dear Maintainer,
rdesktop crash with this error:

Autoselecting keyboard map 'it' from locale
Protocol(warning): Protocol negotiation failed with reason: SSL not
allowed by server
Retrying with plain RDP.
Errore di segmentazione

Found this issue at https://github.com/rdesktop/rdesktop/issues/277.

Recompiling from the source solve the problem.

Is it possible to update the package provided by repository?

Thanks,
Antonio



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

Kernel: Linux 5.4.7-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages rdesktop depends on:
ii  libasound21.1.9-1
ii  libc6 2.29-7
ii  libgmp10  2:6.1.2+dfsg-4
ii  libgnutls30   3.6.11.1-2
ii  libgssapi-krb5-2  1.17-6
ii  libhogweed5   3.5.1+really3.5.1-2
ii  libnettle73.5.1+really3.5.1-2
ii  libpcsclite1  1.8.25-3
ii  libtasn1-64.15.0-2
ii  libx11-6  2:1.6.8-1
ii  libxcursor1   1:1.2.0-2
ii  libxrandr22:1.5.1-1

rdesktop recommends no packages.

Versions of packages rdesktop suggests:
ii  pcscd  1.8.25-3

-- no debconf information



Bug#947928: rdesktop crash with segmentation error

2020-01-04 Thread Antonio
me from
==37560== For lists of detected and suppressed errors, rerun with: -s
==37560== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 0 from 0)
Errore di segmentazione

-

$  journalctl --no-pager

gen 04 09:19:20 SOLE kernel: traps: rdesktop[30817] general protection
fault ip:7ff052c7a603 sp:7ffd25707648 error:0 in
libgmp.so.10.3.2[7ff052c61000+5e000]

-

-> this version work

$ cd
$ git clone https://github.com/rdesktop/rdesktop.git
$ cd rdesktop
$ ./bootstrap
$ ./configure --prefix ~/rdesktop/testbin
$ sudo make install

$ testbin/bin/rdesktop server.test.it
Autoselecting keyboard map 'it' from locale
Protocol(warning): Protocol negotiation failed with reason: SSL not
allowed by server
Retrying with plain RDP.

Il giorno sab 4 gen 2020 alle ore 01:09 Bernhard Übelacker
 ha scritto:
>
> Hello Antonio,
> could you please add to which windows version you
> were trying to connect.
>
> Maybe you could also try to start it that way:
> catchsegv rdesktop ...
>
> Even better would be if you could install debug symbols like
> described in [1] and systemd-coredump.
> Then after an application crashed you should receive a
> backtrace at the end of this command:
> journalctl --no-pager
>
> [1] 
> https://wiki.debian.org/HowToGetABacktrace#Installing_the_debugging_symbols
>
> Kind regards,
> Bernhard



Bug#947928: rdesktop crash with segmentation error

2020-01-04 Thread Antonio
I found this difference from git version:

--- a/rdesktop-1.9.0/ssl.c
+++ b/ssl.c
@@ -307,10 +307,10 @@
 {
 size_t outlen;

-outlen = (mpz_sizeinbase(modulus, 2) + 7) / 8;
+outlen = (mpz_sizeinbase(rkey->n, 2) + 7) / 8;
 if (outlen > max_mod_len)
 return 1;
-outlen = (mpz_sizeinbase(exponent, 2) + 7) / 8;
+outlen = (mpz_sizeinbase(rkey->e, 2) + 7) / 8;
 if (outlen > max_exp_len)
 return 1;

If I apply patch, recompile package (dpkg-buildpackage) and reinstall
it problem is solved.

Il giorno sab 4 gen 2020 alle ore 01:09 Bernhard Übelacker
 ha scritto:
>
> Hello Antonio,
> could you please add to which windows version you
> were trying to connect.
>
> Maybe you could also try to start it that way:
> catchsegv rdesktop ...
>
> Even better would be if you could install debug symbols like
> described in [1] and systemd-coredump.
> Then after an application crashed you should receive a
> backtrace at the end of this command:
> journalctl --no-pager
>
> [1] 
> https://wiki.debian.org/HowToGetABacktrace#Installing_the_debugging_symbols
>
> Kind regards,
> Bernhard



Bug#948200: apt: problem when a package is present in multiple repositories

2020-01-05 Thread Antonio
Package: apt
Version: 1.8.4
Severity: normal

Dear Maintainer,
after updating the system, including the exiv2 and libexiv2-dev
packages, relaunching the update command:

$ apt-get upgrade
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
Calcolo dell'aggiornamento... Fatto
I seguenti pacchetti saranno RETROCESSI:
  exiv2 libexiv2-dev
0 aggiornati, 0 installati, 2 retrocessi, 0 da rimuovere e 0 non aggiornati.
È necessario scaricare 0 B/999 kB di archivi.
Dopo quest'operazione, verranno occupati 0 B di spazio su disco.
Continuare? [S/n] ^C

if I repeat the update command (already executed), there is
always an update to be performed on the same packages.

As far as I can see these packages appear in two repository:

$ apt-cache policy exiv2 libexiv2-dev

exiv2:
  Installed: 0.27.2-3
  Applicant: 0.27.2-3
  Version table:
 *** 0.27.2-3 100
100 http://debian.fastweb.it/debian experimental / main amd64 Packages
100 / var / lib / dpkg / status
 0.27.2-3 750
750 http://www.deb-multimedia.org sid / main amd64 Packages
 0.25-4 700
500 http://debian.fastweb.it/debian stable / main amd64 Packages
700 http://debian.fastweb.it/debian sid / main amd64 Packages

libexiv2-dev:
  Installed: 0.27.2-3
  Applicant: 0.27.2-3
  Version table:
 *** 0.27.2-3 100
100 http://debian.fastweb.it/debian experimental / main amd64 Packages
100 / var / lib / dpkg / status
 0.27.2-3 750
750 http://www.deb-multimedia.org sid / main amd64 Packages
 0.25-4 700
500 http://debian.fastweb.it/debian stable / main amd64 Packages
700 http://debian.fastweb.it/debian sid / main amd64 Packages

The problem is, that although the package has been installed from the
multimedia repository (pin 750), however in the apt-cache policies it
appears to be (incorrectly) installed by experimental repository, so
the misunderstanding is created and the package is considered to be
reinstalled.

Is it possible to fix the problem?

Thanks,
Antonio


-- Package-specific info:

-- /etc/apt/preferences.d/debian --

Package: *
Pin: origin www.deb-multimedia.org
Pin-Priority: 750

Package: *
Pin: origin mi.mirror.garr.it
Pin-Priority: 750

Package: *
Pin: release a=unstable
Pin-Priority: 700

Package: *
Pin: origin debug.mirrors.debian.org
Pin-Priority: 650

Package: *
Pin: release a=testing
Pin-Priority: 600

Package: *
Pin: release a=stable-backports
Pin-Priority: 555

Package: *
Pin: release a=stable
Pin-Priority: 500

Package: *
Pin: release a=experimental
Pin-Priority: 100


-- (no /etc/apt/sources.list present) --


-- /etc/apt/sources.list.d/debian.list --

# Stable
deb http://debian.fastweb.it/debian/ stable main

# Security
deb http://security.debian.org/ stable/updates main

# Updates
deb http://debian.fastweb.it/debian stable-updates main

# Debian sid
deb http://debian.fastweb.it/debian/ sid main contrib non-free

# Debian experimental
deb http://debian.fastweb.it/debian/ experimental main contrib non-free


-- /etc/apt/sources.list.d/multimedia.list --

deb http://www.deb-multimedia.org sid main


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

Kernel: Linux 5.4.8-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages apt depends on:
ii  adduser 3.118
ii  debian-archive-keyring  2019.1
ii  gpgv2.2.17-3
ii  libapt-pkg5.0   1.8.4
ii  libc6   2.29-7
ii  libgcc1 1:9.2.1-22
ii  libgnutls30 3.6.11.1-2
ii  libseccomp2 2.4.2-2
ii  libstdc++6  9.2.1-22

Versions of packages apt recommends:
ii  ca-certificates  20190110

Versions of packages apt suggests:
pn  apt-doc 
ii  aptitude0.8.12-1
ii  dpkg-dev1.19.7
ii  gnupg   2.2.17-3
ii  gnupg2  2.2.17-3
ii  powermgmt-base  1.36
ii  synaptic0.84.8

-- no debconf information



Bug#948200: Acknowledgement (apt: problem when a package is present in multiple repositories)

2020-01-06 Thread Antonio
> exiv2-dmo (0.27.2-3.1) unstable; urgency=medium
>  * Increase package version as 0.27.2-3 is already in Debian experimental.
> -- Christian Marillat   Mon, 06 Jan 2020 
> 01:07:47 +0100

For now, the problem has been solved but it would be interesting to
evaluate this case to avoid similar problems.

Regards,
Antonio.



Bug#993971: kate: Kate puts a space when using some dead keys

2021-09-09 Thread Antonio
I did a test creating a file with the accented letters (my language is 
LANG=it_it), getting these results:


$ date > prova-accentate-àèéìòù-test

$ ls -ll
-rw-r--r--  1 root   root 31  9 set 21.34 prova-accentate-àèéìòù-test

$ ls prova-accentate-àèéìòù-test | hd
  70 72 6f 76 61 2d 61 63  63 65 6e 74 61 74 65 2d  
|prova-accentate-|

0010  e0 e8 e9 ec f2 f9 2d 74  65 73 74 0a |àèéìòù-test.|

This test is ok

---

$ kate prova-accentate-àèéìòù-test

$ ls -ll
-rw-r--r--  1 root   root 31  9 set 21.35 
prova-accentate-ᅵᅵᅵᅵᅵᅵ-test


$ ls prova-accentate-ᅵᅵᅵᅵᅵᅵ-test | hd
  70 72 6f 76 61 2d 61 63  63 65 6e 74 61 74 65 2d  
|prova-accentate-|
0010  ef bf bd ef bf bd ef bf  bd ef bf bd ef bf bd ef 
|ᅵᅵᅵᅵᅵï|

0020  bf bd 2d 74 65 73 74 0a |¿œ-test.|

This test has an unexpected result, It seems that Kate does not manage 
these characters...




Bug#993971: kate: Kate puts a space when using some dead keys

2021-09-11 Thread Antonio
I tried downgrade but the problem remains. If for you it works, it means 
that you have solved only a part of the problem.


Norbert's deductions are correct, I also saw the source code and it 
looks internally Kate work only in utf-8, so it does not seem to be an 
environment problem but of application or of libraries (and for this 
reason it may also concern more applications).


The confirm of this: if I try to open the same file with LibreOffice 
Writer from console (with "lowriter filename"), instead it works properly.



Il 11/09/21 04:45, Adilson dos Santos Dantas ha scritto:

Hi.

I have done a few tests on a virtual machine and I have discovered 
that the problem is with ibus latest package.  I have problems with 
ibus 1.5.25  and it is only fixed when I downgrade it to 1.5.24.


So I think that we should reassign this bug to ibus.

Regards,

Adilson

Em qui., 9 de set. de 2021 às 19:50, Norbert Preining 
 escreveu:


Hi all,

> I did a test creating a file with the accented letters (my
language is
> LANG=it_it), getting these results:
>
> $ kate prova-accentate-àèéìòù-test
>
> prova-accentate-ᅵᅵᅵᅵᅵᅵ-test

My guess is that there is a locale setup mismatch, and what
happens is:
- filename is encoded in latin1
- kate expects utf8
- kate replaces the non-interpretable characters from latin1 with
        �       (Unicode "REPLACEMENT CHARACTER")
  which has hex utf-8 bytes
        EF BF BD
  which you see in the hd output:
> 0010  ef bf bd ef bf bd ef bf  bd ef bf bd ef bf bd ef


I have never tried running KDE in a *non UTF-8* locale, that might be
problematic.

I tried to reproduce this with
        LANG=de_AT@euro kate
(this is a iso locale defined on my computer) but kate always uses
utf8.

So I suggest that you make sure that your locales are properly set up,
and match with the settings of kde.

Best

Norbert

--
PREINING Norbert https://www.preining.info
Fujitsu Research  +  IFMGA Guide  +  TU Wien  +  TeX Live  +
Debian Dev
GPG: 0x860CDC13   fp: F7D8 A928 26E3 16A1 9FA0 ACF0 6CAC A448 860C
DC13



--
Adilson dos Santos Dantas
http://www.adilson.net.br
http://twitter.com/adilsond

Bug#989202: keepassxc saves config in ~/.cache

2021-05-28 Thread Antonio
I agree, for example I have ~/.cache on tmpfs and at each restart I lose 
the configuration.

To work, at startup I launch this:
    mkdir -p "/home/root/.cache/keeepassxc"
    ln -sfn "/home/root/.config/keepassxc.ini" 
"/home/root/.cache/keeepassxc/keepassxc.ini"

but it would be better to solve the problem from application.

Thanks,
Antonio



Bug#951344: closed by Michael Tokarev (Re: Bug#951344: qemu-system-x86: booting Debian server on qemu + 5.5.x kernel crashes)

2021-08-25 Thread Antonio

Sorry Michael, but I forgot to send a reply email,
the problem was solved recompiling the kernel with CONFIG_IDE option 
disabled.


Greetings,
Antonio


Il 25/08/21 16:57, Debian Bug Tracking System ha scritto:

This is an automatic notification regarding your Bug report
which was filed against the qemu-system-x86 package:

#951344: qemu-system-x86: booting Debian server on qemu + 5.5.x kernel crashes

It has been closed by Michael Tokarev .

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 Michael Tokarev 
 by
replying to this email.






Bug#993296: growisofs: Can't burn the DVD

2021-08-30 Thread Antonio

Package: growisofs
Version: 7.1-14+b1
Severity: important

Dear Maintainer,
I can't burn DVDs or from K3B or command from console.

The detected error is as follows:
":-( Unable to O_Excl / dev / SR0: SomeOone Was in Time to Remount?"

Thanks,
Antonio

--- from command console ---

$ growisofs -z / dev / sr0 test.iso
Executing 'genisoimage test.iso | builtin_dd of = / dev / sr0 obs = 32k 
seek =

0 '
I: -input-charset not specified, using ISO-8859-1 (detected locally 
settings)

   0.71% Done, Estimate Finish Mon Aug 30 12:43:03 2021
   1.42% Done, Estimated Finish Mon Aug 30 12:43:03 2021
   2.13% Done, Estimate Finish Mon Aug 30 12:43:03 2021
:-( Unable to O_Excl / dev / SR0: Someone was in Time to Remount?


--- from k3b (log) ---

Burned media
---
DVD+RW

Devices
---
HL-DT-ST DVDRAM GUC0N AS01 (/dev/sr0, CD-R, CD-RW, CD-ROM, DVD-ROM, 
DVD-R, DVD-RW, DVD-R DL, DVD+R, DVD+RW, DVD+R DL) [DVD-ROM, DVD-R 
sequenziale, DVD-R sequenziale a doppio strato, DVD-R jump a doppio 
strato, DVD-RAM, DVD-RW a riscrittura limitata, DVD-RW sequenziale, 
DVD+RW, DVD+R, DVD+R a doppio strato, CD-ROM, CD-R, CD-RW] [SAO, TAO, 
RAW, SAO/R96P, SAO/R96R, RAW/R16, RAW/R96P, RAW/R96R, Riscrittura 
limitata, Salto di livello] [%7]


System
---
K3b Version: 21.8.0
KDE Version: 5.83.0
Qt Version:  5.15.2
Kernel:  5.14.0

Used versions
---
growisofs: 7.1

growisofs
---
Executing 'builtin_dd if=/dev/fd/0 of=/dev/sr0 obs=32k seek=0'
:-( unable to O_EXCL /dev/sr0: someone was in time to remount?

growisofs command:
---
/usr/bin/growisofs -Z /dev/sr0=/dev/fd/0 -use-the-force-luke=notray 
-use-the-force-luke=tty -use-the-force-luke=4gms 
-use-the-force-luke=tracksize:705605 -speed=4 
-use-the-force-luke=bufsize:32m



-- System Information:
Debian Release: bookworm/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (500, 'stable-security'), (500, 'stable'),
(100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.14.0-custom (SMP w/4 CPU threads; PREEMPT)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=ISO-8859-1) 
(ignored:

LC_ALL set to it_IT), LANGUAGE=it
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages growisofs depends on:
ii  libc6    2.31-17
ii  libgcc-s1 [libgcc1]  11.2.0-3
ii  libstdc++6   11.2.0-3

growisofs recommends no packages.

growisofs suggests no packages.



Bug#993296: growisofs: Can't burn the DVD (solved)

2021-08-30 Thread Antonio
To solve the problem, I had to insert this line 
(https://it.wenda123.org/question/askubuntu/61684/growisofs-fails-with-unable-to-o-excl-dev-scd0-someone-was-in-time-to-remount):


/dev/sr0   /media/cdrom   iso9660   rw,noauto,user,exec   0   0

while so far it worked well without, something has changed but I don't 
know what...




Bug#988497: installation-reports

2021-05-14 Thread Antonio

Package: installation-reports

Boot method: CD
Image version: 
https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-10.9.0-amd64-netinst.iso

Date: 05/14/21

Machine: ASUS X555LN.311
Processor: Intel(R) Core(TM) i7-4510U
Memory: 12GB

Hello,
I would suggest some improvements:

- I recently needed to restore the EFI boot, but looking on the site I 
have not found where to download a disk for the Rescue: on the site it 
should be inserted that those who need a Rescue disk must download 
Debian Netinst and select the Advanced menu; it would be useful to 
change the name of Netinst ISO in "Debian-x-AMD64-netinst+rescue.iso"


- In the Restore mode, after the Scan of the Storage, a list is 
presented with the devices for enter in a shell, but who have more 
partitions, it lose time to locate the right partition: in addition to 
the device name should be printed the filesystem type and, if present, 
the partition name.


- Furthermore, the partitions that certainly do not contain a valid 
shell, such as swap or EFI partitions, they should be excluded from this 
list or printed but disabled, rather than giving an error after they are 
clicked.


Thank you,
Antonio



Bug#966524: lvm2: "lvconvert --merge" does not remove the snapshot after completing (found workaround)

2021-05-21 Thread Antonio

The problem, which I had reported in January, still exists.
It would be useful to apply the patch indicated above or similar (so as 
not to have to apply it to each update of the LVM2 package).


Thanks
Antonio




Bug#985402: libgconf-2-4: found segmentation fault

2021-04-09 Thread Antonio

The path "/etc/gconf/2" is empty:

totale 8
drwxr-xr-x 2 root root 4096  1 mar 15.36 .
drwxr-xr-x 6 root root 4096  1 mar 15.36 ..

However, even if I remove it or remove "/etc/gconf" occurs the same problem.

I note if I remove the entire directory "usr/share/GConf/gsettings" then 
the bug does not occur, but it does not seem to be related to a specific 
file: just remains one file that the problem returns.



Il 09/04/21 15:03, Bernhard Übelacker ha scritto:

Hello Antonio,
thank you for the detailed informations.



Am 01.04.21 um 19:15 schrieb Antonio:


$ gdb gsettings-data-convert



Starting program: /usr/bin/gsettings-data-convert


(gsettings-data-convert:4756): GConf-CRITICAL **: 19:00:31.514: 
gconf_engine_get_local_for_addresses: assertion 'addresses != NULL' 
failed




I guess the above line is causing the issue, which
results in "client->engine" being a null pointer [1] [2].

The interesting function for the addresses
seems to be get_writable_client [3].
It looks like upstream applied a patch to
exit the process immediately in the case of
addresses being a null pointer.

Therefore is just the question left why
get_writable_source_path/gconf_load_source_path
returns a null pointer...
Which leads to the question what the content
of this path might be:

   /etc/gconf/2

Kind regards,
Bernhard




Thread 1 "gsettings-data-" received signal SIGSEGV, Segmentation fault.
gconf_engine_get_entry (conf=0x0, key=key@entry=0x555917d0 
"/system/pulseaudio/modules/combine/args0", locale=0x77b70b6e 
<_nl_C_name> "C", use_schema_default=use_schema_default@entry=1, 
err=err@entry=0x7fffde60) at gconf-dbus.c:1293

1293    gconf-dbus.c: File o directory non esistente.



(gdb) bt
#0  gconf_engine_get_entry (conf=0x0, key=key@entry=0x555917d0 
"/system/pulseaudio/modules/combine/args0", locale=0x77b70b6e 
<_nl_C_name> "C", use_schema_default=use_schema_default@entry=1, 
err=err@entry=0x7fffde60) at gconf-dbus.c:1293
#1  0x77f4d7a6 in get (client=client@entry=0xd2a0, 
key=0x555917d0 "/system/pulseaudio/modules/combine/args0", 
use_default=0, error=error@entry=0x7fffde60) at gconf-client.c:1493
#2  0x77f4ee93 in gconf_client_get_full 
(client=client@entry=0xd2a0, key=key@entry=0x555917d0 
"/system/pulseaudio/modules/combine/args0", 
use_schema_default=use_schema_default@entry=0, 
err=err@entry=0x7fffdef8, locale=0x0) at gconf-client.c:1543
#3  0x77f4efbf in gconf_client_get_without_default 
(client=client@entry=0xd2a0, key=key@entry=0x555917d0 
"/system/pulseaudio/modules/combine/args0", 
err=err@entry=0x7fffdef8) at gconf-client.c:1605
#4  0x715d in handle_file 
(filename=filename@entry=0x5556b490 
"/usr/share/GConf/gsettings/pulseaudio.convert") at 
gsettings-data-convert.c:214
#5  0x6912 in handle_dir (converted=0xc980, 
stored_mtime=0, dirname=0x5556a3e0 "/usr/share/GConf/gsettings") 
at gsettings-data-convert.c:436
#6  main (argc=, argv=) at 
gsettings-data-convert.c:670




[1] 
https://gitlab.gnome.org/Archive/gconf/-/blob/master/gconf/gconf-dbus.c#L1293
[2] 
https://gitlab.gnome.org/Archive/gconf/-/blob/master/gconf/gconf-client.c#L1491


[3] 
https://gitlab.gnome.org/Archive/gconf/-/blob/master/gsettings/gsettings-data-convert.c#L98
[4] 
https://gitlab.gnome.org/Archive/gconf/-/commit/98ff7acca7595f508b094506195aeffaf2e8b74c




Bug#985402: libgconf-2-4: found segmentation fault

2021-04-09 Thread Antonio
I confirm that by downloading this file and copying it as 
"/etc/gconf/2/path" the bug is solved.

I had already noticed the check of this file via strace.

I think the post-installation script, of the package gconf2-common, 
should be changed so that if there is no file "/etc/gconf/2/path" then 
execute the copy from "/usr/share/gconf/default.path" (provided from 
this package, the same as what I downloaded):


[ -f "/etc/gconf/2/path" ] && cp -a "/usr/share/gconf/default.path" 
"/etc/gconf/2/path"


This would avoid bug for those who do not have this file (whatever the 
reason for his absence).


Thanks,
Bernhard


Il 09/04/21 15:48, Bernhard Übelacker ha scritto:

Hello Antonio,
this directory should contain a file: /etc/gconf/2/path

The content should most probably what is shown here:
https://sources.debian.org/src/gconf/3.2.6-7/debian/default.path/
(And can be downloaded in the upper right corner.)

Kind regards,
Bernhard


Am 09.04.21 um 15:26 schrieb Antonio:

The path "/etc/gconf/2" is empty:

totale 8
drwxr-xr-x 2 root root 4096  1 mar 15.36 .
drwxr-xr-x 6 root root 4096  1 mar 15.36 ..

However, even if I remove it or remove "/etc/gconf" occurs the same 
problem.


I note if I remove the entire directory "usr/share/GConf/gsettings" 
then the bug does not occur, but it does not seem to be related to a 
specific file: just remains one file that the problem returns.




Bug#985402: Fwd: Bug#985402: libgconf-2-4: found segmentation fault

2021-04-09 Thread Antonio



[ ! -f "/etc/gconf/2/path" ] && cp -a "/usr/share/gconf/default.path" 
"/etc/gconf/2/path"



Il 09/04/21 16:12, Antonio ha scritto:
I confirm that by downloading this file and copying it as 
"/etc/gconf/2/path" the bug is solved.

I had already noticed the check of this file via strace.

I think the post-installation script, of the package gconf2-common, 
should be changed so that if there is no file "/etc/gconf/2/path" then 
execute the copy from "/usr/share/gconf/default.path" (provided from 
this package, the same as what I downloaded):


[ -f "/etc/gconf/2/path" ] && cp -a "/usr/share/gconf/default.path" 
"/etc/gconf/2/path"


This would avoid bug for those who do not have this file (whatever the 
reason for his absence).


Thanks,
Bernhard





Bug#985402: libgconf-2-4: found segmentation fault

2021-03-17 Thread Antonio

Package: libgconf-2-4
Severity: important

Dear Maintainer,
I found some error in journal:

kernel: gsettings-data-[1841]: segfault at 48 ip 7fdf53ffa2bc sp 
7ffcd6320700 error 4 in libgconf-2.so.4.1.5[7fdf53fe3000+1b000]


Thanks,
Antonio

-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (500, 'stable-updates'), (500, 
'stable'), (100, 'experimental')

Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.11.6-custom (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_WARN
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=ISO-8859-1) 
(ignored: LC_ALL set to it_IT), LANGUAGE=it

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

Versions of packages libgconf-2-4 depends on:
ii  gconf2-common 3.2.6-7
ii  libc6 2.31-9
ii  libdbus-1-3   1.12.20-2
ii  libdbus-glib-1-2  0.110-6
ii  libglib2.0-0  2.66.7-2

Versions of packages libgconf-2-4 recommends:
pn  gconf-service  



Bug#985402: libgconf-2-4: found segmentation fault

2021-04-01 Thread Antonio
    entries = {{long_name = 0x80f0 "verbose", short_name = 
0 '\000', flags = 0, arg = G_OPTION_ARG_NONE, arg_data = 0xa318 
, description = 0x80f8 "show verbose messages", 
arg_description = 0x0}, {long_name = 0x810e "dry-run", 
short_name = 0 '\000', flags = 0, arg = G_OPTION_ARG_NONE, arg_data = 
0xa314 , description = 0x8116 "do not perform 
any changes", arg_description = 0x0}, {long_name = 0x8131 
"file", short_name = 0 '\000', flags = 0, arg = G_OPTION_ARG_STRING, 
arg_data = 0x7fffdf50, description = 0x82e0 "perform 
conversions from an extra file", arg_description = 0x0}, {long_name = 
0x0, short_name = 0 '\000', flags = 0, arg = G_OPTION_ARG_NONE, arg_data 
= 0x0, description = 0x0, arg_description = 0x0}}
#6  main (argc=, argv=) at 
gsettings-data-convert.c:670

    convert_dir = 0x5556a3e0 "/usr/share/GConf/gsettings"
    stored_mtime = 0
    data_dirs = 
    i = 
    error = 0x0
    converted = 0xc980
    context = 
    extra_file = 0x0
    entries = {{long_name = 0x80f0 "verbose", short_name = 
0 '\000', flags = 0, arg = G_OPTION_ARG_NONE, arg_data = 0xa318 
, description = 0x80f8 "show verbose messages", 
arg_description = 0x0}, {long_name = 0x810e "dry-run", 
short_name = 0 '\000', flags = 0, arg = G_OPTION_ARG_NONE, arg_data = 
0xa314 , description = 0x8116 "do not perform 
any changes", arg_description = 0x0}, {long_name = 0x8131 
"file", short_name = 0 '\000', flags = 0, arg = G_OPTION_ARG_STRING, 
arg_data = 0x7fffdf50, description = 0x82e0 "perform 
conversions from an extra file", arg_description = 0x0}, {long_name = 
0x0, short_name = 0 '\000', flags = 0, arg = G_OPTION_ARG_NONE, arg_data 
= 0x0, description = 0x0, arg_description = 0x0}}


Il 01/04/21 18:24, Bernhard Übelacker ha scritto:


Hello Antonio,
was this line in dmesg maybe followed by a "Code:" line?
Could you provide that too?

Otherwise maybe you could install systemd-coredump and after
the next crash journal should contain more info about it and
collect a core for later inspection.

More details here: https://wiki.debian.org/HowToGetABacktrace

Kind regards,
Bernhard


Bug#933982: bash: normalize video with ffmpeg corrupts variable bash in the while/done loop

2019-08-09 Thread Antonio
I understand the problem, it depends on ffmpeg that gets characters from
std input and interferes with input pipe managed by the while/done loop.

I reported the bug to his maintainer.

You can close this bug.

Thanks,
Antonio


Bug#934997: konsole does not display button for open new tab

2019-08-17 Thread Antonio
Package: konsole
Version: 4:19.08.0-1
Severity: normal

Dear Maintainer,
after update konsole to version 19.08 I cannot display button for open new tab
(now, for open new tab, I must double-click on the empty part, after the tab
title)
Thanks,
Antonio



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

Kernel: Linux 5.2.9-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages konsole depends on:
ii  kio5.54.1-1
ii  konsole-kpart  4:19.08.0-1
ii  libc6  2.28-10
ii  libkf5configcore5  5.54.0-2
ii  libkf5configwidgets5   5.54.0-1
ii  libkf5coreaddons5  5.54.0-1
ii  libkf5crash5   5.54.0-1
ii  libkf5dbusaddons5  5.54.0-1
ii  libkf5globalaccel-bin  5.54.0-1
ii  libkf5globalaccel5 5.54.0-1
ii  libkf5i18n55.54.0-1
ii  libkf5iconthemes5  5.54.0-1
ii  libkf5kiowidgets5  5.54.1-1
ii  libkf5notifyconfig55.54.0-1
ii  libkf5widgetsaddons5   5.54.0-1
ii  libkf5windowsystem55.54.0-1
ii  libkf5xmlgui5  5.54.0-1
ii  libqt5core5a   5.11.3+dfsg1-4
ii  libqt5gui5 5.11.3+dfsg1-4
ii  libqt5widgets5 5.11.3+dfsg1-4
ii  libstdc++6 9.2.1-1

konsole recommends no packages.

Versions of packages konsole suggests:
ii  lrzsz  0.12.21-10+b1

-- Configuration Files:
/etc/xdg/konsole.knsrc changed [not included]

-- no debconf information


Bug#907390: digikam: if update libsane library, digikam packages are removed

2018-08-27 Thread Antonio
Package: digikam
Version: 4:5.9.0-1
Severity: normal

Dear Maintainer,
since several days it is not possible update the libsane library, because
doing
this would delete the packages digikam, showfoto, kipi-plugins...
Thank you


-- Details --

root@SERVER:~$ apt-get install libsane-common libsane-dev sane-utils
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
I seguenti pacchetti sono stati installati automaticamente e non sono più
richiesti:
  akonadi-contacts-data libkf5akonadi-data libkf5akonadicontact5
libkf5akonadicore5abi1 libkf5akonadiprivate5abi1 libkf5akonadiwidgets5abi1
libkf5calendarcore5abi1 libkf5contacteditor5 libkf5contacts-data
libkf5contacts5 libkf5mediawiki5 libkf5mime-data libkf5mime5abi1 libqtav1
libqtavwidgets1
Usare "apt autoremove" per rimuoverli.
I seguenti pacchetti aggiuntivi saranno inoltre installati:
  libsane1
Pacchetti suggeriti:
  avahi-daemon hplip
I seguenti pacchetti saranno RIMOSSI:
  digikam digikam-private-libs kipi-plugins kolourpaint kolourpaint4
libkf5sane-dev libkf5sane5 libsane
  libsane-perl sane showfoto simple-scan skanlite xsane
I seguenti pacchetti NUOVI saranno installati:
  libsane1
I seguenti pacchetti saranno aggiornati:
  libsane-common libsane-dev sane-utils
3 aggiornati, 1 installati, 14 da rimuovere e 0 non aggiornati.
È necessario scaricare 5.160 kB di archivi.
Dopo quest'operazione, verranno liberati 58,1 MB di spazio su disco.
Continuare? [S/n] n
Interrotto.


-- System Information:

Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500, 'stable-updates'),
(500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.18.5-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages digikam depends on:
ii  digikam-data  4:5.9.0-1
ii  digikam-private-libs  4:5.9.0-1
ii  kipi-plugins  4:5.9.0-1
ii  libc6 2.27-5
ii  libgcc1   1:8.2.0-4
ii  libkf5configcore5 5.49.0-1
ii  libkf5coreaddons5 5.49.0-1
ii  libkf5filemetadata3   5.49.0-1
ii  libkf5i18n5   5.49.0-1
ii  libqt5core5a  5.11.1+dfsg-7
ii  libqt5gui55.11.1+dfsg-7
ii  libqt5sql55.11.1+dfsg-7
ii  libqt5sql5-mysql  5.11.1+dfsg-7
ii  libqt5sql5-sqlite 5.11.1+dfsg-7
ii  libqt5widgets55.11.1+dfsg-7
ii  libstdc++68.2.0-4
ii  perl  5.26.2-7

Versions of packages digikam recommends:
ii  elinks [www-browser] 0.12~pre6-13
ii  ffmpegthumbs 4:17.08.3-1+b1
ii  konqueror [www-browser]  4:18.04.0-1
ii  links [www-browser]  2.16-1
ii  links2 [www-browser] 2.16-1
ii  lynx [www-browser]   2.8.9rel.1-2
ii  w3m [www-browser]0.5.3-36+b1

Versions of packages digikam suggests:
pn  digikam-doc 
ii  systemsettings  4:5.13.4-1


Bug#907449: liblzma: undefinited reference when link with lzma static library

2018-08-27 Thread Antonio
Package: liblzma-dev
Version: 5.2.2-1.3
Severity: normal

Dear Maintainer,
in a program I tested the lzma library for compress with multithread
function lzma_stream_encoder_mt, with the following results:

- if I link with dynamic library everything is fine
- if I link with static library, are returned these compilation errors:

g++  -Itr1 -Wl,-Bstatic -lblkid -luuid -lstdc++ -llzma -Wl,-Bdynamic
-no-pie -lpthread -O3 -flto -Wall -mindirect-branch=thunk -std=c++11
/usr/bin/ld: /tmp/user/0/ccGxpWk6.ltrans3.ltrans.o: in function ...:
:(.text+0x2089): undefined reference to `lzma_cputhreads'
/usr/bin/ld: :(.text+0x20a8): undefined reference to
`lzma_stream_encoder_mt' collect2: error: ld returned 1 exit status

but if I download the xz library sources (rel.5.3.99), create new static
library and link with it:

g++  -Itr1 -Wl,-Bstatic -lblkid -luuid -lstdc++ /opt/xz/lib/liblzma.a
-Wl,-Bdynamic -no-pie -lpthread -O3 -flto -Wall -mindirect-branch=thunk
-std=c++11

the compilation is successful.

Is it possible recreate or update the static library provided in the
package?

Thanks,
Antonio


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500, 'stable-updates'),
(500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.18.5-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages liblzma-dev depends on:
ii  liblzma5  5.2.2-1.3

liblzma-dev recommends no packages.

Versions of packages liblzma-dev suggests:
ii  liblzma-doc  5.2.2-1.3


Bug#907552: gawk: is possibile upgrade this package?

2018-08-29 Thread Antonio
Package: gawk
Version: 1:4.2.1
Severity: wishlist

Dear Maintainer,
during this time I got to appreciate the features offered by gawk, but I
noticed that some things were not available in the current version sid
(1:4.1.4+dfsg-1+ b1, so I downloaded the sources of the latest version
(4.2.1), recreated the package with checkall and replaced the original.
Since everything seems to work correctly, I wanted to ask if you can update
the version of gawk provided by the package.

Thank you,
Antonio.


Bug#933709: apt-xapian-index: UnicodeDecodeError after update

2019-08-02 Thread Antonio
Package: apt-xapian-index
Version: 0.50
Severity: normal

Dear maintainer,
after updating to version 0.50 I found this error in the log file:

/etc/cron.weekly/apt-xapian-index:
Traceback (most recent call last):
  File "/usr/sbin/update-apt-xapian-index", line 104, in 
indexer.incrementalUpdate()
  File "/usr/lib/python3/dist-packages/axi/indexer.py", line 685, in
incrementalUpdate
self.updateIndex(dbpath)
  File "/usr/lib/python3/dist-packages/axi/indexer.py", line 663, in updateIndex
db.replace_document(outdated[pkg.name], self.get_document_from_apt(pkg))
  File "/usr/lib/python3/dist-packages/axi/indexer.py", line 539, in
get_document_from_apt
addon.obj.index(document, pkg)
  File "/usr/share/apt-xapian-index/plugins/descriptions.py", line 108, in index
self.indexer.index_text_without_positions(version.raw_description)
  File "/usr/lib/python3/dist-packages/apt/package.py", line 607, in
raw_description
return self._records.long_desc
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe5 in position
66: invalid continuation byte

while the previous version 0.49 works well.

Thanks,
Antonio


Bug#933982: bash: normalize video with ffmpeg corrupts variable bash in the while/done loop

2019-08-05 Thread Antonio
Package: bash
Version: 5.0-4
Severity: normal

Dear Maintainer,
today, while I was writing a script for normalize video, I noticed a
strange interaction between "while ... done" (bash script) and program
"ffmpeg".


Here is a simple example to reproduce the problem.


# get a simple video mp4 for testing
wget -c http://techslides.com/demos/sample-videos/small.mp4


# copy url in a variable
url="http://techslides.com/demos/sample-videos/small.mp4";



# create a variable by repeating this line (separating the url with a space)
manyurl="$url $url $url $url $url $url $url $url $url $url $url $url
$url $url $url $url $url $url $url $url"


# convert to a variable containing the same url as lines for test and display it
manyurl_lines="$(for x in $manyurl; do echo $x; done)"
echo -e "$manyurl_lines"


# output (as expected)http://techslides.com/demos/sample-videos/small.mp4
...http://techslides.com/demos/sample-videos/small.mp4


# if I now normalize the same file several times, this process
interferes with the variable "f" in the loop, eating some initial
characters randomly
while read -r f; do echo $f; ffmpeg -y -i "small.mp4" -af
loudnorm=I=-14:TP=-3:LRA=11:print_format=json -f null -
"small_normalized.mp4" &>/dev/null; done <<< "$manyurl_lines"


# output 
(why?):http://techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4
/techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4
/techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4techslides.com/demos/sample-videos/small.mp4


# but if I use the "for ... done" construct this does not happen:
for f in $manyurl_lines; do echo $f; ffmpeg -y -i "small.mp4" -af
loudnorm=I=-14:TP=-3:LRA=11:print_format=json -f null -
"small_normalized.mp4" &>/dev/null; done


# output (as expected)http://techslides.com/demos/sample-videos/small.mp4
...http://techslides.com/demos/sample-videos/small.mp4


# or if comment ffmpeg in the "while ... done":
while read -r f; do echo $f; :ffmpeg -y -i "small.mp4" -af
loudnorm=I=-14:TP=-3:LRA=11:print_format=json -f null -
"small_normalized.mp4" &>/dev/null; done <<< "$manyurl_lines"


# output (as expected)http://techslides.com/demos/sample-videos/small.mp4
...http://techslides.com/demos/sample-videos/small.mp4
there is an explanation for this?

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

Kernel: Linux 5.2.6-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages bash depends on:
ii  base-files   11
ii  debianutils  4.8.6.3
ii  libc62.28-10
ii  libtinfo66.1+20190713-2

Versions of packages bash recommends:
ii  bash-completion  1:2.8-7

Versions of packages bash suggests:
pn  bash-doc  

-- no debconf information


Bug#941505: plasma-framework: Num lock key is always ON at startup, even if in the configuration is forced to OFF

2019-10-01 Thread Antonio
I had already reported this bug, see
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940872



Bug#941858: kpat high cpu usage and show log repeatedly

2019-10-06 Thread Antonio
Package: kpat
Version: 4:19.08.1-1
Severity: normal

Dear Maintainer,
after updating kpat, at startup there is a high cpu usage for about a
minute and some log info are repeatedly showed (when run the
application from konsole).

Thanks,
Antonio


--- INFO SHOWED ---

print-layout-end
moves 7
  move 0 from 2 to 0 (-1) Prio: 9
  move 1 from 2 to 0 (-1) Prio: 4
  move 0 from 9 to 0 (-1) Prio: 4
  move 0 from 8 to 5 (-1) Prio: 17
  move 0 from 7 to 0 (-1) Prio: 4
  move 0 from 3 to 2 (-1) Prio: 13
  move 0 from 6 to 8 (-1) Prio: 16
print-layout-begin
Play0:
Play1: 4C
Play2: |JD |JC |9S 4D 3C 2C AC QH
Play3: |9H |8H 3S 2S AC 3H AD 6H 5S 4H 3D 2H
Play4: |KS KC QS JS TS 9S 8S 7S 6S AH 8C 7S 6S 5S 4D 3D 2D AD 6H 5D 4H
Play5: TD 9D 8D 7D 6C 5C AH KH QS JD
Play6: KD QC JH TC 9D 8D 7D
Play7: |JS |8S |5H |KD 4S 3S 2S AS KH QC JC TS 9H 8H
Play8: KC QD JH TH 9C
Play9: |4S |TC |KS |3H TH 9C 8C 7H 6D 6C 6D 5C 4C 3C 2C AS
Deal0:
Deal1:
Deal2:
Deal3:
Deal4: |TD |2H |2D |QH |QD |5H |7C |5D |7H |7C
Off:
print-layout-end


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

Kernel: Linux 5.3.4-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages kpat depends on:
ii  kdegames-card-data-kf5  4:19.08.1-2
ii  kio 5.62.1-1
ii  libc6   2.29-2
ii  libfreecell-solver0 5.0.0-2+b1
ii  libkf5completion5   5.62.0-1
ii  libkf5configcore5   5.62.0-1
ii  libkf5configgui55.62.0-1
ii  libkf5configwidgets55.62.0-1
ii  libkf5coreaddons5   5.62.0-1
ii  libkf5crash55.62.0-1
ii  libkf5dbusaddons5   5.62.0-1
ii  libkf5guiaddons55.62.0-1
ii  libkf5i18n5 5.62.0-1
ii  libkf5kdegames7 4:19.08.1-1
ii  libkf5kiocore5  5.62.1-1
ii  libkf5newstuff5 5.62.0-1
ii  libkf5widgetsaddons55.62.0-1
ii  libkf5xmlgui5   5.62.0-1
ii  libqt5core5a5.11.3+dfsg1-4
ii  libqt5gui5  5.11.3+dfsg1-4
ii  libqt5svg5  5.11.3-3
ii  libqt5widgets5  5.11.3+dfsg1-4
ii  libqt5xml5  5.11.3+dfsg1-4
ii  libstdc++6  9.2.1-8



Bug#942429:

2019-10-16 Thread Antonio
I reported this problem some time ago, it depends on the 5.62.0 framework.
See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940872



Bug#940872: plasma-framework: Num lock key is always ON at startup, even if in the configuration is forced to OFF

2019-10-17 Thread Antonio
I used this workaround:

- install package numlockx
apt-get install numlockx

- create file /etc/xdg/autostart (in autostart user directory):
[Desktop Entry]
Version=1.0
Name=Disabilita Num Lock
Exec=numlockx off
Terminal=false
Type=Application
Categories=
GenericName=
OnlyShowIn=KDE;

where:
numlockx off for disable
numlockx on for enable



Bug#940024: curl: update package to last version

2019-09-11 Thread Antonio
Package: curl
Version: 7.65.3-1
Severity: wishlist

Dear Maintainer,
a new version of curl has come out that implements the parallel
transfer (opzion -Z): is it possible to update the package present in
the repository to the latest version?
Thanks,
Antonio

info: https://github.com/curl/curl



Bug#940474: gawk: update to the latest version

2019-09-16 Thread Antonio
Package: gawk
Version: 1:4.2.1+dfsg-1.1
Severity: wishlist

Dear Maintainer,
Some improvements and fixes were made in version 5.0.15 released on
2019-06-18: is it possible to update the package provided in the
repository?
Thanks,
Antonio



Bug#934997: konsole does not display button for open new tab

2019-09-19 Thread Antonio
The checkbox shows the new tab button has been restored with version
4: 19.08.1-1, you can close this bug.



Bug#940872: plasma-framework: Num lock key is always ON at startup, even if in the configuration is forced to OFF

2019-09-21 Thread Antonio
Package: plasma-framework
Version: 5.62.0-1
Severity: minor

Dear Maintainer,
after updating to the kde 5.62 framework the num lock key is always on
at startup even if in the settings it was forced to stay off and this
is a problem with my notebook as I use the numeric keys to insert,
delete and move of the cursor and it is tedious to press key num lock
every time the system is rebooted (otherwise in the text editor or
console line are digit the numbers instead of the cursor movement or
the functionality of the indicated keys).
Is it possible to solve this problem in any way?
Thanks,
Antonio

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

Kernel: Linux 5.3.0-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages plasma-framework depends on:
ii  kio  5.62.1-1
ii  kpackagetool55.62.0-1
ii  libc62.29-1
ii  libegl1  1.1.0-1+b1
ii  libgcc1  1:9.2.1-8
ii  libgl1   1.1.0-1+b1
ii  libkf5activities55.62.0-1
ii  libkf5calendarevents55.62.0-1
ii  libkf5configcore55.62.0-1
ii  libkf5configgui5 5.62.0-1
ii  libkf5coreaddons55.62.0-1
ii  libkf5declarative5   5.62.0-1
ii  libkf5i18n5  5.62.0-1
ii  libkf5iconthemes55.62.0-1
ii  libkf5kiocore5   5.62.1-1
ii  libkf5kiowidgets55.62.1-1
ii  libkf5notifications5 5.62.0-1
ii  libkf5package5   5.62.0-1
ii  libkf5plasma55.62.0-1
ii  libkf5plasmaquick5   5.62.0-1
ii  libkf5quickaddons5   5.62.0-1
ii  libkf5widgetsaddons5 5.62.0-1
ii  libkf5windowsystem5  5.62.0-1
ii  libkf5xmlgui55.62.0-1
ii  libqt5core5a 5.11.3+dfsg1-4
ii  libqt5gui5   5.11.3+dfsg1-4
ii  libqt5qml5   5.11.3-4
ii  libqt5quick5 5.11.3-4
ii  libqt5widgets5   5.11.3+dfsg1-4
ii  libqt5x11extras5 5.11.3-2
ii  libstdc++6   9.2.1-8
ii  libx11-6 2:1.6.8-1
ii  libxcb-composite01.13.1-2
ii  libxcb-damage0   1.13.1-2
ii  libxcb-render0   1.13.1-2
ii  libxcb1  1.13.1-2
ii  qml-module-org-kde-kconfig   5.62.0-1
ii  qml-module-org-kde-kquickcontrols5.62.0-1
ii  qml-module-org-kde-kquickcontrolsaddons  5.62.0-1
ii  qml-module-qtqml-models2 5.11.3-4
ii  qml-module-qtquick-controls  5.11.3-2
ii  qml-module-qtquick-controls2 5.11.3+dfsg-2
ii  qml-module-qtquick-templates25.11.3+dfsg-2

plasma-framework recommends no packages.
plasma-framework suggests no packages.

-- no debconf information



Bug#940872: plasma-framework: Num lock key is always ON at startup, even if in the configuration is forced to OFF

2019-09-21 Thread Antonio
I don't know if it is related, but the "Key State" plugin in the sys
tray no longer display the status of the caps, shift, control keys
etc.



Bug#941004: cython3: gcc/ld return "undefined reference" compiling cpp generated with cython3

2019-09-23 Thread Antonio
text.unlikely+0xe2e): undefined reference
to `Py_Initialize'
/usr/bin/ld: testfile.cpp:(.text.unlikely+0xe3a): undefined reference
to `PySys_SetArgv'
/usr/bin/ld: /tmp/user/0/ccJik3VR.o: in function
`__Pyx_PyObject_GetAttrStr(_object*, _object*)':
testfile.cpp:(.text.unlikely+0x61): undefined reference to `PyObject_GetAttr'
/usr/bin/ld: /tmp/user/0/ccJik3VR.o: in function `PyInit_a':
testfile.cpp:(.text.unlikely+0xd16): undefined reference to `PyModuleDef_Init'
collect2: error: ld returned 1 exit status


-- but the library exists and contains references indicated as
missing, for example:


/tmp$ objdump -T /usr/lib/x86_64-linux-gnu/libpython3.7m.so|grep
"PyUnicode_FromFormat"
001f7990 gDF .text  0091  Base PyUnicode_FromFormat
001f6c60 gDF .text  0d2c  Base PyUnicode_FromFormatV


-- why does this procedure no longer work?

Thanks,
Antonio



--  Other details:

$ ls -ll /usr/include/python3.7* -d
drwxr-xr-x 2 root root  4096 lug 15 12:38 /usr/include/python3.7dm
drwxr-xr-x 3 root root 16384 set  8 08:49 /usr/include/python3.7m
lrwxrwxrwx 1 root root10 ott 21  2018 /usr/include/python3.7 -> python3.7m

$ ls -ll /usr/lib/python3.7/config-3.7m-x86_64-linux-gnu/libpython3.7* -d
-rw-r--r-- 1 root root 37815704 set  4 20:42
/usr/lib/python3.7/config-3.7m-x86_64-linux-gnu/libpython3.7m.a
-rw-r--r-- 1 root root 37207272 set  4 20:42
/usr/lib/python3.7/config-3.7m-x86_64-linux-gnu/libpython3.7m-pic.a
lrwxrwxrwx 1 root root   41 set  4 10:03
/usr/lib/python3.7/config-3.7m-x86_64-linux-gnu/libpython3.7m.so ->
../../x86_64-linux-gnu/libpython3.7m.so.1
lrwxrwxrwx 1 root root   41 set  4 10:03
/usr/lib/python3.7/config-3.7m-x86_64-linux-gnu/libpython3.7.so ->
../../x86_64-linux-gnu/libpython3.7m.so.1

$ ls -ll /usr/lib/x86_64-linux-gnu/libpython*
lrwxrwxrwx 1 root root  51 set  4 10:19 libpython2.7.a ->
../python2.7/config-x86_64-linux-gnu/libpython2.7.a
lrwxrwxrwx 1 root root  17 set  4 10:19 libpython2.7.so -> libpython2.7.so.1
lrwxrwxrwx 1 root root  19 set  4 10:19 libpython2.7.so.1 ->
libpython2.7.so.1.0
-rw-r--r-- 1 root root 3439088 set  4 20:42 libpython2.7.so.1.0
lrwxrwxrwx 1 root root  18 set  4 10:03 libpython3.7m.so ->
libpython3.7m.so.1
lrwxrwxrwx 1 root root  20 set  4 10:03 libpython3.7m.so.1 ->
libpython3.7m.so.1.0
-rw-r--r-- 1 root root 5018368 set  4 20:42 libpython3.7m.so.1.0



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

Kernel: Linux 5.3.1-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages cython3 depends on:
ii  libc62.29-2
ii  python3  3.7.3-1

Versions of packages cython3 recommends:
ii  gcc  4:9.2.1-3.1
ii  python3-dev  3.7.3-1

Versions of packages cython3 suggests:
pn  cython-doc  

-- debconf-show failed



Bug#930511: rdesktop exit with error "Failed to negotiate protocol, retrying with plain RDP"

2019-06-14 Thread Antonio
Package: rdesktop
Version: 1.8.4-1
Severity: normal

Dear Maintainer,
The current version of rdesktop 1.8.6-1 does not start, it immediately comes
out generating the error "Failed to negotiate protocol, retrying with
plain RDP".

Note that the previous version 1.8.4-1, in testing repository, works correctly.

Thanks,
Antonio


-- DETAILS --

$ rdesktop indirizzo-server
Autoselected keyboard map it
Failed to negotiate protocol, retrying with plain RDP.
NOT IMPLEMENTED: PDU 8
ERROR: rdp.c:128: rdp_recv(), unexpected stream overrun
 03 00 01 82 02 f0 80 68 00 01 03 eb 70 81 73 08 ...hp.s.
0010 00 02 03 1d c3 6f 06 c1 6a 5d b0 9b 08 88 4d 1b .o..j]M.
...



-- System Information:
Debian Release: 10.0
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500,
'stable-updates'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.1.9-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages rdesktop depends on:
ii  libasound21.1.8-1
ii  libc6 2.28-10
ii  libgssglue1   0.4-2+b2
ii  libpcsclite1  1.8.25-1
ii  libssl1.1 1.1.1c-1
ii  libx11-6  2:1.6.7-1
ii  libxrandr22:1.5.1-1

rdesktop recommends no packages.


Bug#929179: git: error when you press tab key after typing git add

2019-05-18 Thread Antonio
Package: git
Version: 1:2.20.1-2
Severity: normal

Dear Maintainer,
when you press the tab key after typing git add the following error occurs:

$ git add awk: line com.:30: warning: function `dequote ': parameter` p' hides
global variable
awk: line com.:30: warning: function `dequote ': parameter` p' hides global
variable
The problem is in the file: /usr/share/bash-completion/completions/git

As temporary fix I renamed /usr/share/bash-completion/completions/git ->
/usr/share/bash-completion/completions/git.disabled

Thanks,
Antonio


-- System Information:
Debian Release: 10.0
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500,
'stable-updates'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.1.3-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages git depends on:
ii  git-man  1:2.20.1-2
ii  libc62.28-10
ii  libcurl3-gnutls  7.64.0-3
ii  liberror-perl0.17027-2
ii  libexpat12.2.6-1
ii  libpcre2-8-0 10.32-5
ii  perl 5.28.1-6
ii  zlib1g   1:1.2.11.dfsg-1

Versions of packages git recommends:
ii  ca-certificates  20190110
ii  less 487-0.1+b1
ii  openssh-client [ssh-client]  1:7.9p1-10
ii  patch2.7.6-3

Versions of packages git suggests:
ii  gettext-base  0.19.8.1-9
ii  git-cvs   1:2.20.1-2
pn  git-daemon-run | git-daemon-sysvinit  
pn  git-doc   
pn  git-el
ii  git-email 1:2.20.1-2
ii  git-gui   1:2.20.1-2
pn  git-mediawiki 
ii  git-svn   1:2.20.1-2
ii  gitk  1:2.20.1-2
pn  gitweb

-- no debconf information

-- debsums errors found:
debsums: missing file /usr/share/bash-completion/completions/git (from
git package)


Bug#1016530: mesa-utils-bin: some applications do not start

2022-09-28 Thread Antonio

Hi Bernhard,
now everything works.

Thanks,
Antonio


Il 28/09/22 09:37, Bernhard Übelacker ha scritto:

On Fri, 5 Aug 2022 05:50:34 +0100 Sam James  wrote:
It looks like this might be 
https://gitlab.freedesktop.org/mesa/demos/-/issues/27 / 
https://gitlab.freedesktop.org/mesa/demos/-/merge_requests/84.



Hello Antonio,
above Mesa issue 27 referenced another debian bug #1016363,
in which a new package libx11/2:1.8.1-2 got a workaround,
which already migrated to testing quite some time ago.

Are these applications now starting up for you as expected?

Kind regards,
Bernhard

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016363




Bug#1029521: plasma-nm: Unable to access the VPN network in double authentication mode (fix)

2023-01-23 Thread antonio
Package: plasma-nm
Version: 4:5.26.5-1
Severity: normal
X-Debbugs-Cc: antde...@gmail.com

Dear Maintainer,
can you check if this fix works and apply it to this package?

Bug reported last year:
   https://bugs.kde.org/show_bug.cgi?id=448153

Fix proposal:
   https://invent.kde.org/plasma/plasma-nm/-/merge_requests/208

Thanks,
Antonio


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

Kernel: Linux 6.1.0-7.2-liquorix-amd64 (SMP w/24 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to it_IT.UTF-8), LANGUAGE=it
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages plasma-nm depends on:
ii  kio 5.102.0-1
ii  libc6   2.36-8
ii  libkf5completion5   5.102.0-1
ii  libkf5configcore5   5.102.0-1
ii  libkf5configwidgets55.102.0-1
ii  libkf5coreaddons5   5.102.0-1
ii  libkf5dbusaddons5   5.102.0-1
ii  libkf5declarative5  5.102.0-1
ii  libkf5i18n5 5.102.0-1
ii  libkf5kiogui5   5.102.0-1
ii  libkf5kiowidgets5   5.102.0-1
ii  libkf5modemmanagerqt6   5.102.0-1
ii  libkf5networkmanagerqt6 5.102.0-1
ii  libkf5notifications55.102.0-1
ii  libkf5solid55.102.0-1
ii  libkf5wallet-bin5.102.0-1
ii  libkf5wallet5   5.102.0-1
ii  libkf5widgetsaddons55.102.0-1
ii  libkf5windowsystem5 5.102.0-1
ii  libnm0  1.40.10-1
ii  libopenconnect5 9.01-2
ii  libqca-qt5-22.3.5-1
ii  libqt5core5a5.15.8+dfsg-2
ii  libqt5dbus5 5.15.8+dfsg-2
ii  libqt5gui5  5.15.8+dfsg-2
ii  libqt5network5  5.15.8+dfsg-2
ii  libqt5qml5  5.15.8+dfsg-2
ii  libqt5quickwidgets5 5.15.8+dfsg-2
ii  libqt5widgets5  5.15.8+dfsg-2
ii  libqt5xml5  5.15.8+dfsg-2
ii  libstdc++6  12.2.0-14
ii  mobile-broadband-provider-info  20221107-1
ii  network-manager 1.40.10-1
ii  plasma-framework5.102.0-1
ii  qml-module-org-kde-kcoreaddons  5.102.0-1
ii  qml-module-org-kde-kirigami25.102.0-1
ii  qml-module-org-kde-prison   5.102.0-1

Versions of packages plasma-nm recommends:
ii  systemsettings  4:5.26.5-1

Versions of packages plasma-nm suggests:
ii  network-manager-fortisslvpn  1.4.0-0.1
ii  network-manager-iodine   1.2.0-3.2
pn  network-manager-l2tp 
ii  network-manager-openconnect  1.2.8-3
ii  network-manager-openvpn  1.10.2-2
ii  network-manager-pptp 1.2.10-2
ii  network-manager-ssh  1.2.11-1
pn  network-manager-strongswan   
ii  network-manager-vpnc 1.2.8-4

-- no debconf information



Bug#1029606: thunderbird: After updating the package I cannot access the Exchange account

2023-01-25 Thread antonio
Package: thunderbird
Version: 1:102.6.0-1~deb11u1
Severity: normal
X-Debbugs-Cc: antde...@gmail.com

Dear Maintainer,
After updating the Thunderbird, from version 1:102.6.0-1-> 1:102.7.1-1, I
cannot access the Exchange account:
- outlook.office365.com
- port 993
- SSL/TLS
- OAuth2

It makes me insert the access credentials, but then a mistake returns that
cannot authenticate the server.

Reinstalling the previous version solves the problem.

Thanks,
Antonio


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

Kernel: Linux 6.1-8.1-liquorix-amd64 (SMP w/24 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to it_IT.UTF-8), LANGUAGE=it
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages thunderbird depends on:
ii  debianutils  5.7-0.4
ii  fontconfig   2.14.1-3
ii  kdialog  4:22.12.1-1
ii  libasound2   1.2.8-1+b1
ii  libatk1.0-0  2.46.0-4
ii  libc62.36-8
ii  libcairo-gobject21.16.0-7
ii  libcairo21.16.0-7
ii  libdbus-1-3  1.14.4-1
ii  libdbus-glib-1-2 0.112-3
ii  libevent-2.1-7   2.1.12-stable-5+b1
ii  libffi7  3.3-6
ii  libfontconfig1   2.14.1-3
ii  libfreetype6 2.12.1+dfsg-4
ii  libgcc-s112.2.0-14
ii  libgdk-pixbuf-2.0-0  2.42.10+dfsg-1+b1
ii  libglib2.0-0 2.74.5-1
ii  libgtk-3-0   3.24.36-2
ii  libpango-1.0-0   1.50.12+ds-1
ii  libstdc++6   12.2.0-14
ii  libvpx6  1.9.0-1
ii  libx11-6 2:1.8.3-3
ii  libx11-xcb1  2:1.8.3-3
ii  libxcb-shm0  1.15-1
ii  libxcb1  1.15-1
ii  libxext6 2:1.3.4-1+b1
ii  libxrandr2   2:1.5.2-2+b1
ii  psmisc   23.6-1
ii  x11-utils7.7+5
ii  zenity   3.43.0-1
ii  zlib1g   1:1.2.13.dfsg-1

Versions of packages thunderbird recommends:
ii  hunspell-it [hunspell-dictionary]  1:7.4.2-1

Versions of packages thunderbird suggests:
ii  apparmor  3.0.8-2
ii  fonts-lyx 2.3.7-1
ii  libgssapi-krb5-2  1.20.1-1

-- no debconf information



Bug#1029594: Fails to authenticate mit o365

2023-02-06 Thread Antonio

The proposed fix works for me too.



Bug#1025943: dolphin: copy/move files: only the first item is copied to the clipboard

2022-12-12 Thread antonio
Package: dolphin
Version: 4:22.12.0-1
Severity: normal
X-Debbugs-Cc: antde...@gmail.com

Dear Maintainer,

there is a kde bug that makes it problematic to copy/move files, see link
https://bugs.kde.org/show_bug.cgi?id=462928

I went back to the previous version 4:22.08.1-1

Perhaps it would be to return to the previous version also in the repositories
and update this package only when the problem is solved.

Thanks,
Antonio



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

Kernel: Linux 6.0.0-12.1-liquorix-amd64 (SMP w/8 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to it_IT.UTF-8), LANGUAGE=it
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages dolphin depends on:
ii  baloo-kf5 5.100.0-1
ii  kinit 5.100.0-1
ii  kio   5.100.0-2
ii  libc6 2.36-6
hi  libdolphinvcs54:22.08.1-1
ii  libkf5activities5 5.100.0-1
ii  libkf5baloo5  5.100.0-1
ii  libkf5baloowidgets5   4:22.12.0-2
ii  libkf5bookmarks5  5.100.0-1
ii  libkf5codecs5 5.100.0-1
ii  libkf5completion5 5.100.0-1
ii  libkf5configcore5 5.100.1-1
ii  libkf5configgui5  5.100.1-1
ii  libkf5configwidgets5  5.100.0-1
ii  libkf5coreaddons5 5.100.0-1
ii  libkf5crash5  5.100.0-1
ii  libkf5dbusaddons5 5.100.0-1
ii  libkf5filemetadata3   5.100.0-1
ii  libkf5i18n5   5.100.0-1
ii  libkf5iconthemes5 5.100.0-1
ii  libkf5itemviews5  5.100.0-1
ii  libkf5jobwidgets5 5.100.0-1
ii  libkf5kcmutils5   5.100.0-1
ii  libkf5kiocore55.100.0-2
ii  libkf5kiofilewidgets5 5.100.0-2
ii  libkf5kiogui5 5.100.0-2
ii  libkf5kiowidgets5 5.100.0-2
ii  libkf5newstuff5   5.100.0-1
ii  libkf5newstuffwidgets55.100.0-1
ii  libkf5notifications5  5.100.0-1
ii  libkf5parts5  5.100.0-1
ii  libkf5service-bin 5.100.0-1
ii  libkf5service55.100.0-1
ii  libkf5solid5  5.100.0-1
ii  libkf5textwidgets55.100.0-1
ii  libkf5widgetsaddons5  5.100.0-2
ii  libkf5windowsystem5   5.100.0-1
ii  libkf5xmlgui5 5.100.0-1
ii  libkuserfeedbackcore1 1.2.0-2
ii  libkuserfeedbackwidgets1  1.2.0-2
ii  libpackagekitqt5-11.1.0-1
ii  libphonon4qt5-4   4:4.11.1-4
ii  libqt5core5a  5.15.6+dfsg-5
ii  libqt5dbus5   5.15.6+dfsg-5
ii  libqt5gui55.15.6+dfsg-5
ii  libqt5widgets55.15.6+dfsg-5
ii  libqt5xml55.15.6+dfsg-5
ii  libstdc++612.2.0-10
ii  phonon4qt54:4.11.1-4

Versions of packages dolphin recommends:
ii  ffmpegthumbs  4:22.12.0-2
ii  kdegraphics-thumbnailers  4:22.12.0-1
ii  kimageformat-plugins  5.100.0-1
ii  kio-extras4:22.12.0-2

Versions of packages dolphin suggests:
ii  dolphin-plugins  4:22.12.0-1

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/bin/dolphin (from dolphin package)



Bug#1026009: does not detect click mouse if started as root

2022-12-13 Thread antonio
Package: filelight
Version: 4:22.12.0-2
Severity: normal
X-Debbugs-Cc: antde...@gmail.com

Dear Maintainer,
If I start application from root and click on scan directory, the map appears,
but after the mouse click has no effect.

If I download it from Apps/kde repository and recompile, then it works and the
list of directories with their respective dimensions also appears (see photo)

If I run the application as a user, instead it works but the list of
directories on the left side of the window is missing (see photo).

The local compilation returns these warning:
-- The following RUNTIME packages have not been found:

* org.kde.kirigami-QMLModule, QML module 'org.kde.kirigami' is a
runtime dependency.
* org.kde.quickcharts-QMLModule, QML module 'org.kde.quickcharts' is a
runtime dependency.

I don't know if it depends on my installation, but by performing it as a user,
while working, it seems not to have a complete functionality.

Thanks,
Antonio


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

Kernel: Linux 6.0.0-12.1-liquorix-amd64 (SMP w/8 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to it_IT.UTF-8), LANGUAGE=it
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages filelight depends on:
ii  kio 5.100.0-2
ii  libc6   2.36-6
ii  libkf5configcore5   5.100.1-1
ii  libkf5configwidgets55.100.0-1
ii  libkf5coreaddons5   5.100.0-1
ii  libkf5i18n5 5.100.0-1
ii  libkf5jobwidgets5   5.100.0-1
ii  libkf5kiocore5  5.100.0-2
ii  libkf5kiogui5   5.100.0-2
ii  libkf5kiowidgets5   5.100.0-2
ii  libkf5widgetsaddons55.100.0-2
ii  libkf5xmlgui5   5.100.0-1
ii  libqt5core5a5.15.6+dfsg-5
ii  libqt5gui5  5.15.6+dfsg-5
ii  libqt5qml5  5.15.6+dfsg-2
ii  libqt5quick55.15.6+dfsg-2
ii  libqt5quickcontrols2-5  5.15.6+dfsg-2
ii  libqt5svg5  5.15.6-2
ii  libqt5widgets5  5.15.6+dfsg-5
ii  libstdc++6  12.2.0-10

filelight recommends no packages.

filelight suggests no packages.

-- no debconf information



Bug#1033538: chkrootkit: Chkrootkit reports a false positive?

2023-03-26 Thread antonio
Package: chkrootkit
Version: 0.57-2
Severity: normal
X-Debbugs-Cc: antde...@gmail.com

Dear Maintainer,
It seems that chkrootkit returns a false positive... or not?

Thanks,
Antonio

---

$ /usr/lib/chkrootkit/ifpromisc
lo: not promisc and no packet sniffer sockets
eth0: PACKET SNIFFER(/usr/sbin/NetworkManager[1056])
eth2: PACKET SNIFFER(/usr/sbin/NetworkManager[1056])

---

$ ip -d link show
1: lo:  mtu 65536 qdisc noqueue state UNKNOWN mode
DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 promiscuity 0
allmulti 0 minmtu 0 maxmtu 0 addrgenmode none numtxqueues 1 numrxqueues 1
gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535
gro_max_size 65536
3: eth0:  mtu 1500 qdisc fq_codel state UP
mode DEFAULT group default qlen 1000
link/ether XX:XX:XX:XX:XX:XX brd ff:ff:ff:ff:ff:ff promiscuity 0  allmulti
0 minmtu 68 maxmtu 9000 addrgenmode eui64 numtxqueues 1 numrxqueues 1
gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535
gro_max_size 65536 parentbus pci parentdev :00:19.0


-- System Information:
Debian Release: 12.0
  APT prefers unstable
  APT policy: (700, 'unstable'), (500, 'stable-updates'), (500, 
'stable-security'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.2.8-2-liquorix-amd64 (SMP w/8 CPU threads; PREEMPT)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to it_IT.UTF-8), LANGUAGE=it
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages chkrootkit depends on:
ii  libc6  2.36-8

Versions of packages chkrootkit recommends:
ii  anacron 2.3-36
ii  binutils2.40-2
ii  cron [cron-daemon]  3.0pl1-162
pn  default-mta | mail-transport-agent  
ii  iproute26.1.0-2
ii  mailutils [mailx]   1:3.15-4
ii  net-tools   2.10-0.1
ii  procps  2:4.0.3-1
ii  systemd-sysv252.6-1

chkrootkit suggests no packages.

-- no debconf information



Bug#1033538: chkrootkit: Chkrootkit reports a false positive?

2023-03-27 Thread Antonio
Because every morning I receive an email from 
"/etc/cron.daily/chkrootkit" that informs me of this.


Of course I can deactivate the check but I would not like to lose other 
useful information for the security of the system.


Il 27/03/23 19:41, Richard Lewis ha scritto:

control: tags -1 + moreinfo

overall this looks like the intended behaviour, based on the 
information provided, rather than something that needs fixing. Or is 
there another reason you considered this a bug?


On Mon, 27 Mar 2023, 07:51 antonio wrote:


It seems that chkrootkit returns a false positive... or not?


$ /usr/lib/chkrootkit/ifpromisc
lo: not promisc and no packet sniffer sockets
eth0: PACKET SNIFFER(/usr/sbin/NetworkManager[1056])
eth2: PACKET SNIFFER(/usr/sbin/NetworkManager[1056])


If you run ifpromisc directly im not sure quite what output you 
expected, but the above looks correct, based on the information provided.


Network manager can be reasonably classed as a 'packet sniffer' as it 
has the ability to read network traffic.


If network manager was not started intentionally (standard for a 
server) you would want to know about it.


If it was started by you because you are running a standard gnome 
desktop then it is indeed a false positive


...but there is no way software can reliably tell which of these 
circumstances apply.


See the document about false positives in /usr/share/doc/chkrootkit 
for more information on how to filter out such messages from the daily 
report.




Bug#1033538: chkrootkit: Chkrootkit reports a false positive?

2023-03-27 Thread Antonio

Thank Richard,
I will do some tests with the diff mode.

For now, I changed /etc/chkrootkit/chkrootkit.conf:

MAILTO="journal"

- and added this on "/usr/sbin/chkrootkit-daily":

            if [ "$MAILTO" = "journal" ]; then
                logger --file "$FILE"
            else
                mail -s "$SUBJECT" "$MAILTO" < "$FILE"
            fi

for send the output to the journal.


Il 27/03/23 22:19, Richard Lewis ha scritto:

On Mon, 27 Mar 2023, 18:55 Antonio,  wrote:

Because every morning I receive an email from
"/etc/cron.daily/chkrootkit" that informs me of this.

Of course I can deactivate the check but I would not like to lose
other useful information for the security of the system.


And if you read  /etc/chkrootkit/chkrootkit.conf you will find there 
are various ways to stop that happening (without deactivating 
anything). look for the bit about diff mode.

Bug#1034169: libqt5core5a: upgrade to 5.15.8+dfsg-4 stops krunner shortcut from working

2023-04-10 Thread Antonio
I confirm this problem, it should be in one of the following packages 
installed today:


10/04/23 ^ 10:20:56 libqt5opengl5-dev:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:20:57 qtbase5-private-dev:amd64 
(5.15.8+dfsg-3->5.15.8+dfsg-4)

10/04/23 ^ 10:21:00 qtbase5-dev:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:02 libqt5core5a:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:02 libqt5dbus5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:02 libqt5network5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:02 libqt5gui5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:03 libqt5widgets5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:03 libqt5opengl5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:03 libqt5printsupport5:amd64 
(5.15.8+dfsg-3->5.15.8+dfsg-4)

10/04/23 ^ 10:21:04 libqt5sql5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:04 libqt5test5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:04 libqt5xml5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:04 qt5-qmake:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:05 qt5-qmake-bin:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:05 qtbase5-dev-tools:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:06 libqt5concurrent5:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:06 libqt5sql5-mysql:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:06 libqt5sql5-odbc:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:06 libqt5sql5-psql:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:06 libqt5sql5-sqlite:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:06 libqt5sql5-tds:amd64 (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:07 libsub-handlesvia-perl:all (0.046-1->0.05-1)
10/04/23 ^ 10:21:07 libunbound8:amd64 (1.17.1-1->1.17.1-2)
10/04/23 ^ 10:21:07 qt5-flatpak-platformtheme:amd64 
(5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:07 qt5-xdgdesktopportal-platformtheme:amd64 
(5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:07 qt5-gtk-platformtheme:amd64 
(5.15.8+dfsg-3->5.15.8+dfsg-4)

10/04/23 ^ 10:21:07 qtbase5-doc:all (5.15.8+dfsg-3->5.15.8+dfsg-4)
10/04/23 ^ 10:21:08 svn2cl:all (0.14-2->0.14-3)
10/04/23 + 10:21:09 qtbase5-doc:all (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libunbound8:amd64 (1.17.1-2)
10/04/23 + 10:21:09 qt5-qmake-bin:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 svn2cl:all (0.14-3)
10/04/23 + 10:21:09 libsub-handlesvia-perl:all (0.05-1)
10/04/23 + 10:21:09 libqt5core5a:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5dbus5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5test5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5concurrent5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 qt5-qmake:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5network5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5sql5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 qtbase5-dev-tools:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5xml5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5sql5-psql:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5sql5-tds:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5sql5-sqlite:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5sql5-mysql:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5gui5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5widgets5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5sql5-odbc:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 qt5-gtk-platformtheme:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5printsupport5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 qtbase5-dev:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5opengl5:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 qtbase5-private-dev:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 libqt5opengl5-dev:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:09 qt5-xdgdesktopportal-platformtheme:amd64 
(5.15.8+dfsg-4)

10/04/23 + 10:21:09 qt5-flatpak-platformtheme:amd64 (5.15.8+dfsg-4)
10/04/23 + 10:21:13 man-db:amd64 (2.11.2-2)
10/04/23 + 10:21:14 libc-bin:amd64 (2.36-8)

Krunner is currently no longer available.

Thanks,
Antonio


Bug#1034169: libqt5core5a: upgrade to 5.15.8+dfsg-4 stops krunner shortcut from working

2023-04-10 Thread Antonio
_64-linux-gnu/libQt5Core.so.5
#21 0x75ee4beein QObject::property(char const*) const()
  from /lib/x86_64-linux-gnu/libQt5Core.so.5
#22 0x70b749cain ??() from /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#23 0x70b74fbein ??() from /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#24 0x70ad823ein QXcbIntegration::accessibility() const()
  from /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#25 0x76306b6cin QAccessible::isActive()() from 
/lib/x86_64-linux-gnu/libQt5Gui.so.5
#26 0x76306d75in 
QAccessible::updateAccessibility(QAccessibleEvent*)()

  from /lib/x86_64-linux-gnu/libQt5Gui.so.5
#27 0x77ae8537in 
QQuickAccessibleAttached::QQuickAccessibleAttached(QObject*)()

  from /lib/x86_64-linux-gnu/libQt5Quick.so.5


Il 10/04/23 20:43, Samuel Thibault ha scritto:

Antonio, le lun. 10 avril 2023 20:40:12 +0200, a ecrit:

I confirm this problem,

Ok, but I'd need a way to reproduce it to be able to fix the change...

Samuel

Bug#1034169: libqt5core5a: upgrade to 5.15.8+dfsg-4 stops krunner shortcut from working

2023-04-11 Thread Antonio

Hi Samuel,
after update to version 5.15.8+DFSG-6 krunner does not respond to Alt-F2.

Compared to before, the program is active in memory without errors.

The program runs but does not show activities.


$ gdb krunner
...
Starting program: /usr/bin/krunner
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x703ff6c0 (LWP 4954)]
[New Thread 0x7fffef9e76c0 (LWP 4955)]
[New Thread 0x7fffecdff6c0 (LWP 4957)]
[New Thread 0x7fffe59ff6c0 (LWP 4958)]


Il 11/04/23 01:32, Samuel Thibault ha scritto:

Hello,

Thanks for the backtrace, I believe I understand what is happening.  I
came up with another solution that should be way safer.

Thanks,
Samuel

Bug#1034169: libqt5core5a: upgrade to 5.15.8+dfsg-4 stops krunner shortcut from working

2023-04-12 Thread Antonio
The block screen is also back and requires to perform "loginctl 
unlock-session n"



Il 12/04/23 07:58, Antonio ha scritto:


Hi Samuel,
after update to version 5.15.8+DFSG-6 krunner does not respond to Alt-F2.

Compared to before, the program is active in memory without errors.

The program runs but does not show activities.


$ gdb krunner
...
Starting program: /usr/bin/krunner
[Thread debugging using libthread_db enabled]
Using host libthread_db library 
"/lib/x86_64-linux-gnu/libthread_db.so.1".

[New Thread 0x703ff6c0 (LWP 4954)]
[New Thread 0x7fffef9e76c0 (LWP 4955)]
[New Thread 0x7fffecdff6c0 (LWP 4957)]
[New Thread 0x7fffe59ff6c0 (LWP 4958)]


Il 11/04/23 01:32, Samuel Thibault ha scritto:

Hello,

Thanks for the backtrace, I believe I understand what is happening.  I
came up with another solution that should be way safer.

Thanks,
Samuel

Bug#1034395: libkf5kcmutils-dev: need fix incorrect symlink

2023-04-14 Thread antonio
Package: libkf5kcmutils-dev
Version: 5.104.0-1
Severity: normal
X-Debbugs-Cc: antde...@gmail.com

Dear Maintainer,
Se compilo pacchetto "Plasma-NM" dalla sorgente (dpkg-Buildpackage) ricevo
questo messaggio di errore:

/bin/sh: 1: /usr/lib/x86_64-linux-gnu/libexec/kf5/kcmdesktopfilegenerator:
Permission denied
make[2]: *** [kcm/CMakeFiles/kcm_networkmanagement-kcm-desktop-
gen.dir/build.make:70: kcm/CMakeFiles/kcm_networkmanagement-kcm-desktop-gen]
Errore 126
make[1]: *** [CMakeFiles/Makefile2:1413: kcm/CMakeFiles/kcm_networkmanagement-
kcm-desktop-gen.dir/all] Errore 2
make: *** [Makefile:146: all] Errore 2

This depends on the Symlink "/USR/Lib/X86_64-Linux
-gn/Libec/Kf5/Kcmdesktopfilegenerator generated by the" Libkf5kcmutils-Dev
"package.

BEFORE (OK):

$ ls -ll /usr/lib/x86_64-linux-gnu/libexec/kf5/kcmdesktopfilegenerator

lrwxrwxrwx 1 root root 71 14 apr 11.12 /usr/lib/x86_64-linux-
gnu/libexec/kf5/kcmdesktopfilegenerator ->
../../../../libexec/kf5/kcmdesktopfilegenerator/kcmdesktopfilegenerator

AFTER:

To reproduce the problem:

$ apt purge libkf5kcmutils-dev

$ apt install -t experimental libkf5kcmutils-dev

$ ls -ll /usr/lib/x86_64-linux-gnu/libexec/kf5/kcmdesktopfilegenerator

lrwxrwxrwx 1 root root 47 15 mar 16.10 /usr/lib/x86_64-linux-
gnu/libexec/kf5/kcmdesktopfilegenerator ->
../../../../libexec/kf5/kcmdesktopfilegenerator

NEED fix with:

$ ln -sfn
../../../../libexec/kf5/kcmdesktopfilegenerator/kcmdesktopfilegenerator
/usr/lib/x86_64-linux-gnu/libexec/kf5/kcmdesktopfilegenerator

$ ls -ll /usr/lib/x86_64-linux-gnu/libexec/kf5/kcmdesktopfilegenerator

lrwxrwxrwx 1 root root 71 14 apr 11.14 /usr/lib/x86_64-linux-
gnu/libexec/kf5/kcmdesktopfilegenerator ->
../../../../libexec/kf5/kcmdesktopfilegenerator/kcmdesktopfilegenerator

Thanks,
Antonio


-- System Information:
Debian Release: 12.0
  APT prefers unstable
  APT policy: (700, 'unstable'), (500, 'stable-updates'), (500, 
'stable-security'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.2.11-3-liquorix-amd64 (SMP w/24 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to it_IT.UTF-8), LANGUAGE=it
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libkf5kcmutils-dev depends on:
ii  libkf5configwidgets-dev  5.104.0-1
ii  libkf5itemviews-dev  5.104.0-1
ii  libkf5kcmutils-bin   5.104.0-1
ii  libkf5kcmutils5  5.104.0-1
ii  libkf5kcmutilscore5  5.104.0-1
ii  libkf5service-dev5.104.0-1
ii  libkf5xmlgui-dev 5.104.0-1

Versions of packages libkf5kcmutils-dev recommends:
ii  libkf5kcmutils-doc  5.104.0-1

libkf5kcmutils-dev suggests no packages.

-- no debconf information



Bug#911019: mandb: long waiting time during system update

2018-10-14 Thread Antonio
Package: man-db
Version: 2.8.4-2+b1
Severity: normal

Dear Maintainer,
why does mandb take about 1-2 minutes, each time, when invoked during
apt-get dist-
upgrade?
Thanks.

-- NOTE --

# files count:
$ find /usr/share/man -type f|wc -l
23424

/usr/share/man/it :   287
/usr/share/man/man1 :  6407
/usr/share/man/man2 :   639
/usr/share/man/man3 : 10607
/usr/share/man/man4 :   920
/usr/share/man/man5 :   567
/usr/share/man/man6 :   288
/usr/share/man/man7 :   328
/usr/share/man/man8 :  1447
/usr/share/man/man9 :  1934

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500, 'stable-updates'),
(500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.18.14-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages man-db depends on:
ii  bsdmainutils   11.1.2+b1
ii  debconf [debconf-2.0]  1.5.69
ii  dpkg   1.19.2
ii  groff-base 1.22.3-10
ii  libc6  2.27-6
ii  libgdbm6   1.18-2
ii  libpipeline1   1.5.0-1
ii  libseccomp22.3.3-3
ii  zlib1g 1:1.2.11.dfsg-1

man-db recommends no packages.

Versions of packages man-db suggests:
ii  apparmor 2.13-8
ii  elinks [www-browser] 0.12~pre6-13
ii  groff1.22.3-10
ii  konqueror [www-browser]  4:18.04.0-1+b1
ii  less 487-0.1+b1
ii  links [www-browser]  2.17-1
ii  links2 [www-browser] 2.17-1
ii  lynx [www-browser]   2.8.9rel.1-2
ii  w3m [www-browser]0.5.3-36+b1

-- debconf information:
  man-db/rebuild-database: true
  man-db/build-database: true
* man-db/install-setuid: false
  man-db/auto-update: true


Bug#913326: [plasma-desktop] Please update Plasma to 5.14

2018-11-09 Thread Antonio
>
> Package: plasma-desktop
> Version: 4:5.13.5-1+b1
> Severity: normal
>
> Plasma 5.14 is released a month ago, please consider updating to 5.14 in
> Debian.
>
> --
> Alexander Kernozhitsky
>
>
I made a simple statistic on the packages installed on my system (debian
sid):

--previous ---
Packages 4: 4.14: 34
Packages 17.08.3: 88
Packages 18.04.0: 28
Packages 18.04.1: 62
Packages 18.04.3:  1
Packages 5.13.4:  48
Packages 5.13.5:  68
Packages 5.14.0:   0
Packages 5.14.1:   0
Packages 5.14.2:   0
Packages 18.08.0: 12
Packages 18.08.1: 35
Packages 18.08.2:  0

--latest -
Packages 18.08.3: 13
Packages 5.14.3:   0
Packages 5.51.0: 329

I would also like to see kde plasma and updated applications...
Thank you.


Bug#924638: cron: scheduled command execution problems

2019-03-15 Thread Antonio
Package: cron
Version: 3.0pl1-133
Severity: minor

Dear Maintainer,
I tried the following command line in the crontab:
* * * * * [ "$(date +%d)" -gt 10 ] && date >> /tmp/test.log
but when the condition occurred, no log file was generated.

I observed that the journal reported:
mar 15 11:05:01 UFFICIO CRON[29344]: (root) CMD ([29346] [ "$(date
+)
mar 15 11:05:01 UFFICIO CRON[29344]: (CRON) error (grandchild
#29346 failed with exit status 2)
so the problem was the percentage character that interrupted the command
and also generated an error

If I insert a backslash before:
* * * * * [ "$(date +\%d)" -gt 10 ] && date >> /tmp/test.log

it works well:
mar 15 11:08:01 UFFICIO CRON[30832]: (root) CMD ([30834] [
"$(date+%d)" -gt 10 ] && date >> /tmp/test.log)

Question: the percentage must be considered special character (I can't find
this in the documentation) or is it only a cron problem?

Thank you,
Antonio


-- Package-specific info:
--- EDITOR:
--- /usr/bin/editor: /usr/bin/ne
--- /usr/bin/crontab: -rwxr-sr-x 1 root crontab 43568 Mar 12 07:34
/usr/bin/crontab
--- /var/spool/cron: drwxr-xr-x 5 root root 4096 Mar 12 07:34
/var/spool/cron
--- /var/spool/cron/crontabs: drwx-wx--T 2 root crontab 4096 Mar 15 11:18
/var/spool/cron/crontabs
--- /etc/cron.d: drwxr-xr-x 2 root root 4096 Mar 12 14:50 /etc/cron.d
--- /etc/cron.daily: drwxr-xr-x 2 root root 4096 Mar 12 14:50
/etc/cron.daily
--- /etc/cron.hourly: drwxr-xr-x 2 root root 4096 Mar 12 07:34
/etc/cron.hourly
--- /etc/cron.monthly: drwxr-xr-x 2 root root 4096 Mar 12 07:34
/etc/cron.monthly
--- /etc/cron.weekly: drwxr-xr-x 2 root root 4096 Mar 12 07:34
/etc/cron.weekly

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500, 'stable-updates'),
(500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.0.2-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored: LC_ALL
set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored: LC_ALL set to
it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages cron depends on:
ii  adduser  3.118
ii  debianutils  4.8.6.1
ii  init-system-helpers  1.56+nmu1
ii  libc62.28-8
ii  libpam-runtime   1.3.1-5
ii  libpam0g 1.3.1-5
ii  libselinux1  2.8-1+b1
ii  lsb-base 10.2019031300
ii  sensible-utils   0.0.12

Versions of packages cron recommends:
ii  postfix [mail-transport-agent]  3.4.1-1

Versions of packages cron suggests:
ii  anacron2.3-27
ii  checksecurity  2.0.16+nmu1
ii  logrotate  3.14.0-4

Versions of packages cron is related to:
pn  libnss-ldap   
pn  libnss-ldapd  
pn  libpam-ldap   
pn  libpam-mount  
pn  nis   
pn  nscd  

-- no debconf information


Bug#920324: plasma-workspace: device notifier turn off the external hard disk when it is dismounted

2019-01-23 Thread Antonio
Package: plasma-workspace
Version: 4:5.14.3-1+b1
Severity: normal

Dear Maintainer,
after updating to the 5.54 framework, the dismounted USB hard drive via the
device notifier is automatically turned off.
This is a different behavior than the previous framework 5.51 and for me it
is a problem, because in the procedures of daily use I need the hard disk
to remain accessible and ready for next mounts ... otherwise I have to
remove the cable from the USB port every time and then reinsert it so that
it is detected again.
Note that if I run mount/unmount from the command line, the disk remains
properly powered.
Thanks,
Antonio


-- DETAILS --

umount with framework 5.51:
...
gen 24 07:25:27 OFFICE systemd[1]: Stopping Clean the /media/root/MOBILE
mount point...
gen 24 07:25:27 OFFICE systemd[1]:
clean-mount-point@media-root-MOBILE.service: Succeeded.
gen 24 07:25:27 OFFICE systemd[1]: Stopped Clean the /media/root/MOBILE
mount point.
gen 24 07:25:27 OFFICE udisksd[1329]: Unmounted /dev/sdc1 on behalf of uid 0
...

umount with framework 5.54:
...
gen 24 07:29:05 OFFICE systemd[1]: Stopping Clean the /media/root/MOBILE
mount point...
gen 24 07:29:05 OFFICE systemd[1]:
clean-mount-point@media-root-MOBILE.service: Succeeded.
gen 24 07:29:05 OFFICE systemd[1]: Stopped Clean the /media/root/MOBILE
mount point.
gen 24 07:29:05 OFFICE udisksd[1329]: Unmounted /dev/sdc1 on behalf of uid 0
gen 24 07:29:05 OFFICE udisksd[1329]: Successfully sent SCSI command
SYNCHRONIZE CACHE to /dev/sdc
gen 24 07:29:05 OFFICE udisksd[1329]: Successfully sent SCSI command START
STOP UNIT to /dev/sdc
gen 24 07:29:05 OFFICE udisksd[1329]: Powered off /dev/sdc - successfully
wrote to sysfs path
/sys/devices/pci:00/:00:1c.4/:03:00.0/usb6/6-2/remove
gen 24 07:29:05 OFFICE kernel: usb 6-2: USB disconnect, device number 2
gen 24 07:29:06 OFFICE kernel: usb usb6-port2: config error
...

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500, 'stable-updates'),
(500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.20.4-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored: LC_ALL
set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored: LC_ALL set to
it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages plasma-workspace depends on:
ii  dbus-user-session [default-dbus-session-bus]  1.12.12-1
ii  dbus-x11 [dbus-session-bus]   1.12.12-1
ii  drkonqi   5.14.3-1
ii  frameworkintegration  5.54.0-1
ii  gdb   8.2-1
ii  iso-codes 4.1-1
ii  kactivitymanagerd 5.14.3-1
ii  kded5 5.54.0-1
ii  kinit 5.54.0-1
ii  kio   5.54.1-1
ii  kpackagetool5 5.54.0-1
ii  kwin-common   4:5.14.3-2+b1
ii  libappstreamqt2   0.12.4-2
ii  libc6 2.28-5
ii  libcolorcorrect5  4:5.14.3-1+b1
ii  libgcc1   1:8.2.0-14
ii  libgps23  3.17-5+b1
ii  libice6   2:1.0.9-2
ii  libkf5activities5 5.54.0-1
ii  libkf5auth5   5.54.0-1
ii  libkf5baloo5  5.54.0-1
ii  libkf5bookmarks5  5.54.0-1
ii  libkf5calendarevents5 5.54.0-1
ii  libkf5completion5 5.54.0-1
ii  libkf5config-bin  5.54.0-1
ii  libkf5configcore5 5.54.0-1
ii  libkf5configgui5  5.54.0-1
ii  libkf5configwidgets5  5.54.0-1
ii  libkf5coreaddons5 5.54.0-1
ii  libkf5crash5  5.54.0-1
ii  libkf5dbusaddons5 5.54.0-1
ii  libkf5declarative55.54.0-1
ii  libkf5globalaccel-bin 5.54.0-1
ii  libkf5globalaccel55.54.0-1
ii  libkf5guiaddons5  5.54.0-1
ii  libkf5holidays5   1:5.54.0-1
ii  libkf5i18n5   5.54.0-1
ii  libkf5iconthemes5 5.54.0-1
ii  libkf5idletime5   5.54.0-1
ii  libkf5itemviews5  5.54.0-1
ii  libkf5jobwidgets5 5.54.0-1
ii  libkf5js5  

Bug#920324: Acknowledgement (plasma-workspace: device notifier turn off the external hard disk when it is dismounted) - workaround

2019-01-25 Thread Antonio
Dear Maintainer,
to solve the problem I wrote the following rule for udev:

file: /etc/udev/rules.d/99-usbdisk-nopoweroff.rules

# CHECK FLAG POWEROFF HARDDISK USB CONNECTED (LABEL "MOBILE")
# udisksctl info -d "$(udisksctl info -b "$(blkid -L MOBILE
2>/dev/null)"|grep -E "^\s+Drive:"|sed "s|^.*/||g;s|'||g")"|grep CanPowerOff

# TEST RULES AND FIND PROPERTIES
# drv="$(blkid -L MOBILE 2>/dev/null|sed
"s|/dev/\(.d[a-z]\)[0-9]\+|\1|g")"; udevadm info --query all --path
/sys/block/$drv/

# RELOAD RULES
# sys restart udev

# intercept and override CanPowerOff flag for generic usb disk
SUBSYSTEM=="block", ACTION=="add|change", ENV{ID_TYPE}=="disk",
ENV{ID_BUS}=="usb", ENV{UDISKS_CAN_POWER_OFF}="0"

now the behavior is what is expected.
Thanks,
Antonio


Bug#914678: pyqt5-dev-tools lock update python 3.7 and libreoffice

2018-11-26 Thread Antonio
Package: pyqt5-dev-tools
Version: 5.11.3+dfsg-1+b1
Severity: minor

Dear Maintainer,
pyqt5-dev-tools lock recent update python 3.7 and libreoffice... can you update
this package?
Thanks

--- DETAILS ---
$ apt-get dist-upgrade --no-remove

I seguenti pacchetti saranno RIMOSSI:
  pyqt5-dev-tools
I seguenti pacchetti NUOVI saranno installati:
  freetype2-doc idle-python3.7 libpython3.7-dev libyaml-cpp0.5d1 python3.7
python3.7-dev python3.7-minimal
I seguenti pacchetti sono stati mantenuti alla versione attuale:
  libqalculate-dev qalc qalculate-gtk
I seguenti pacchetti saranno aggiornati:
  gir1.2-lokdocview-0.1 idle libfreetype6 libfreetype6:i386 libfreetype6-dev
liblibreofficekitgtk libpython3-dev libpython3-stdlib libreoffice libreoffice-
avmedia-backend-gstreamer libreoffice-avmedia-backend-vlc libreoffice-base
libreoffice-base-core libreoffice-base-drivers libreoffice-calc libreoffice-
core libreoffice-draw libreoffice-impress libreoffice-kde5 libreoffice-math
libreoffice-officebean libreoffice-ogltrans libreoffice-report-builder-bin
libreoffice-sdbc-hsqldb libreoffice-sdbc-postgresql libreoffice-writer
libreofficekit-dev libyaml-cpp-dev python3 python3-dev python3-minimal
python3-uno vapoursynth
33 aggiornati, 7 installati, 1 da rimuovere e 3 non aggiornati.
E: I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata.


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500,
'stable-updates'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.4-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages pyqt5-dev-tools depends on:
ii  libc6  2.27-8
ii  libqt5core5a   5.11.2+dfsg-7
ii  libqt5xml5 5.11.2+dfsg-7
ii  libstdc++6 8.2.0-10
ii  python33.6.7-1
ii  python3-pyqt5  5.11.3+dfsg-1+b1

pyqt5-dev-tools recommends no packages.
pyqt5-dev-tools suggests no packages.
-- no debconf information


Bug#900149: xserver-xorg: plasmashell freezes after upgrade xserver-xorg

2018-05-26 Thread Antonio
Package: xserver-xorg
Version: 1:7.7+19
Severity: normal

Dear Maintainer,
after upgrade xserver packages to version sid/1.20, plasmashell freeze
after a few minutes.
As workaround return to version testing/1.90 and prevent packages upgrade.

Thanks.


-- Package-specific info:
VGA-compatible devices on PCI bus:
--
00:02.0 VGA compatible controller [0300]: Intel Corporation
Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 0b)

DRM Information from dmesg:
---
[1.891694] fb: switching to inteldrmfb from VESA VGA
[1.891802] [drm] Replacing VGA console driver
[1.906059] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[1.906060] [drm] Driver supports precise vblank timestamp query.
[2.159177] ata1.00: supports DRM functions and may not be fully accessible
[2.160812] ata1.00: supports DRM functions and may not be fully accessible
[2.641421] nouveau :04:00.0: DRM: VRAM: 2048 MiB
[2.641423] nouveau :04:00.0: DRM: GART: 1048576 MiB
[2.641425] nouveau :04:00.0: DRM: Pointer to TMDS table invalid
[2.641429] nouveau :04:00.0: DRM: DCB version 4.0
[2.642236] nouveau :04:00.0: DRM: MM: using COPY for buffer copies
[2.642250] [drm] Initialized nouveau 1.3.1 20120801 for
:04:00.0 on minor 1
[2.642750] [drm] Initialized i915 1.6.0 20171222 for :00:02.0 on minor 0
[2.653829] fbcon: inteldrmfb (fb0) is primary device
[3.809807] i915 :00:02.0: fb0: inteldrmfb frame buffer device


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500,
'stable-updates'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.16.12-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages xserver-xorg depends on:
ii  x11-xkb-utils 7.7+4
ii  xkb-data  2.23.1-1
ii  xorgxrdp [xorg-driver-video]  1:0.2.6-1
ii  xserver-xorg-core 2:1.19.6-1
ii  xserver-xorg-input-all1:7.7+19
ii  xserver-xorg-input-evdev [xorg-driver-input]  1:2.10.5-1
ii  xserver-xorg-input-kbd [xorg-driver-input]1:1.9.0-1+b1
ii  xserver-xorg-input-libinput [xorg-driver-input]   0.27.1-1
ii  xserver-xorg-input-mouse [xorg-driver-input]  1:1.9.2-1+b1
ii  xserver-xorg-input-synaptics [xorg-driver-input]  1.9.0-1+b1
ii  xserver-xorg-input-wacom [xorg-driver-input]  0.34.99.1-1
ii  xserver-xorg-video-all1:7.7+19
ii  xserver-xorg-video-amdgpu [xorg-driver-video] 18.0.1-1
ii  xserver-xorg-video-ati [xorg-driver-video]1:18.0.1-1
ii  xserver-xorg-video-cirrus [xorg-driver-video] 1:1.5.3-1+b2
ii  xserver-xorg-video-fbdev [xorg-driver-video]  1:0.4.4-1+b5
ii  xserver-xorg-video-intel [xorg-driver-video]  2:2.99.917+git20171229-1
ii  xserver-xorg-video-mach64 [xorg-driver-video] 6.9.5-1+b2
ii  xserver-xorg-video-mga [xorg-driver-video]1:1.6.5-1
ii  xserver-xorg-video-neomagic [xorg-driver-video]   1:1.2.9-1+b2
ii  xserver-xorg-video-nouveau [xorg-driver-video]1:1.0.15-2
ii  xserver-xorg-video-qxl [xorg-driver-video]0.1.5-2
ii  xserver-xorg-video-r128 [xorg-driver-video]   6.10.2-1
ii  xserver-xorg-video-radeon [xorg-driver-video] 1:18.0.1-1
ii  xserver-xorg-video-savage [xorg-driver-video] 1:2.3.9-1
ii  xserver-xorg-video-sisusb [xorg-driver-video] 1:0.9.7-1
ii  xserver-xorg-video-tdfx [xorg-driver-video]   1:1.4.7-1
ii  xserver-xorg-video-trident [xorg-driver-video]1:1.3.8-1
ii  xserver-xorg-video-vesa [xorg-driver-video]   1:2.3.4-1+b2
ii  xserver-xorg-video-vmware [xorg-driver-video] 1:13.2.1-1+b1

Versions of packages xserver-xorg recommends:
ii  libgl1-mesa-dri  18.0.4-1
ii  xserver-xorg-legacy  2:1.20.0-2

xserver-xorg suggests no packages.

-- debconf information:
* xserver-xorg/config/display/modes: 1024x786, 800x600, 640x480
  xserver-xorg/config/device/default-identifier:
  xserver-xorg/config/monitor/use_sync_ranges: true
  shared/no_known_x-server:
  shared/multiple_possible_x-servers:
  xserver-xorg/config/inputdevice/mouse/emulate3buttons: true
  shared/fontpath/fontserver:


Bug#900352: plasmashell freezes after upgrade xserver-xorg

2018-05-30 Thread Antonio
see also:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900149

https://cgit.freedesktop.org/mesa/mesa/commit/?id=fe2edb25dd5628c395a65b60998f11e839d2b458


Bug#916357: streamtuner2: Unable to install because omitted parenthesis in the print stantment under python3

2018-12-13 Thread Antonio
Package: streamtuner2
Version: 2.2.1+dfsg-1
Severity: normal

Dear Maintainer,

>>> error during upgrade:

Configurazione di streamtuner2 (2.2.1+dfsg-1)...
  File "/usr/share/streamtuner2/try.py", line 10
print "ERROR"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean
print("ERROR")?

dpkg: errore nell'elaborare il pacchetto streamtuner2 (--configure):
 il sottoprocesso installato pacchetto streamtuner2 script post-installation ha
restituito lo stato di errore 1
Elaborazione dei trigger per menu (2.1.47+b1)...
Si sono verificati degli errori nell'elaborazione:
 streamtuner2
E: Sub-process /usr/bin/dpkg returned an error code (1)

Configurazione di streamtuner2 (2.2.1+dfsg-1)...
  File "/usr/share/streamtuner2/try.py", line 15
print json.dumps(data)
 ^
SyntaxError: invalid syntax

dpkg: errore nell'elaborare il pacchetto streamtuner2 (--configure):
 il sottoprocesso installato pacchetto streamtuner2 script post-installation ha
restituito lo stato di errore 1
Si sono verificati degli errori nell'elaborazione:
 streamtuner2
E: Sub-process /usr/bin/dpkg returned an error code (1)


>>> After correct file /usr/share/streamtuner2/try.py the installation was

completed.

#! /usr/bin/python3
import sys, json

#print(sys.argv)

# Load the data that PHP sent us
try:
data = json.loads(sys.argv[1])
except:
print("ERROR")
sys.exit(1)

#print (data)
# Send it to stdout (to PHP)
print(json.dumps(data))



-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500,
'stable-updates'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.8-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages streamtuner2 depends on:
ii  python33.7.1-2
ii  python3-distutils  3.7.1-1
ii  python3-gi 3.30.2-1
ii  python3-lxml   4.2.5-1
ii  python3-pil5.3.0-1
ii  python3-pyquery1.2.9-3
ii  python3-requests   2.20.0-2


Bug#908810: libpulse0: can't upgrade pulseaudio packages (version misalignment)

2018-09-14 Thread Antonio
Package: libpulse0
Severity: normal

Dear Maintainer,
pulseaudio packages can not be updated due to version misalignment.
Thanks.

--- details ---

root@OFFICE:~$ apt-get upgrade
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
Calcolo dell'aggiornamento... Fatto
I seguenti pacchetti sono stati mantenuti alla versione attuale:
  libpulse-dev libpulse-mainloop-glib0 libpulse0 libpulsedsp
pulseaudio pulseaudio-equalizer
  pulseaudio-module-bluetooth pulseaudio-module-jack
pulseaudio-module-lirc pulseaudio-utils
0 aggiornati, 0 installati, 0 da rimuovere e 10 non aggiornati.


root@OFFICE:~$ apt-get install libpulse-dev libpulse-mainloop-glib0
libpulse0 libpulsedsp pulseaudio pulseaudio-equalizer
pulseaudio-module-bluetooth
pulseaudio-module-jack pulseaudio-module-lirc pulseaudio-utils
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
I seguenti pacchetti sono stati installati automaticamente e non sono più
richiesti:
  libcapi20-3:i386 libexif12:i386 libgd3:i386 libgphoto2-6:i386
libgphoto2-port12:i386 libjbig0:i386   libjpeg62-turbo:i386
libltdl7:i386 libncurses6:i386 libtiff5:i386 libtinfo6:i386
libusb-1.0-0:i386
  libvkd3d1:i386 libvulkan1:i386 libwayland-client0:i386
libwayland-cursor0:i386 libwayland-egl1:i386   libwebp6:i386
libxcursor1:i386 libxinerama1:i386 libxkbcommon0:i386
libxpm4:i386 libxrandr2:i386 libxrender1:i386 libxss1:i386
Usare "apt autoremove" per rimuoverli.
Pacchetti suggeriti:
  paprefs avahi-daemon
Pacchetti raccomandati:
  rtkit
I seguenti pacchetti saranno RIMOSSI:
  libpulse0:i386 libsdl2-2.0-0:i386 libwine:i386 libwine-development:i386
pulseaudio-esound-compat
  wine32:i386 wine32-development:i386 wine32-development-preloader:i386
wine32-preloader:i386
I seguenti pacchetti saranno aggiornati:
  libpulse-dev libpulse-mainloop-glib0 libpulse0 libpulsedsp
pulseaudio pulseaudio-equalizer
  pulseaudio-module-bluetooth pulseaudio-module-jack
pulseaudio-module-lirc pulseaudio-utils
10 aggiornati, 0 installati, 9 da rimuovere e 0 non aggiornati.
È necessario scaricare 1.890 kB di archivi.
Dopo quest'operazione, verranno liberati 400 MB di spazio su disco.
Continuare? [S/n] n
Interrotto.


root@OFFICE:~$ apt-cache policy  libpulse0 libpulse0:i386
libpulse0:
  Installato: 12.0-1
  Candidato:  12.2-1
  Tabella versione:
 12.2-1 700
700 http://mirror.de.leaseweb.net/debian sid/main amd64 Packages
 *** 12.0-1 600
600 http://mirror.de.leaseweb.net/debian testing/main amd64 Packages
100 /var/lib/dpkg/status
 10.0-1+deb9u1 500
500 http://mirror.de.leaseweb.net/debian stable/main amd64 Packages
libpulse0:i386:
  Installato: 12.0-1
  Candidato:  12.0-1
  Tabella versione:
 *** 12.0-1 700
600 http://mirror.de.leaseweb.net/debian testing/main i386 Packages
700 http://mirror.de.leaseweb.net/debian sid/main i386 Packages
100 /var/lib/dpkg/status
 10.0-1+deb9u1 500
500 http://mirror.de.leaseweb.net/debian stable/main i386 Packages



-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (500,
'stable-updates'), (500, 'stable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.18.7-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1), LANGUAGE=it
(charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


Bug#942654: Bug#940872: KDE Frameworks 5.62 coming to unstable

2019-10-22 Thread Antonio
I had already tried this approach for disable numlock but does not
work. I solved it only by running numlockx in the auto-start directory
(after the kde desktop was started).



Bug#943874: pure-ftpd: pure-ftp error on upgrade

2019-10-30 Thread Antonio
Package: pure-ftpd
Version: 1.0.49-1
Severity: important

Dear Maintainer,
there is an error on pure-ftpd-common package when I try to upgrade pure-ftp

Preparativi per estrarre .../pure-ftpd-common_1.0.49-1_all.deb...
Estrazione di pure-ftpd-common (1.0.49-1) su (1.0.47-3)...
dpkg: errore nell'elaborare l'archivio /var/cache/apt/archives/pure-ftpd-
common_1.0.49-1_all.deb (--unpack):
 impossibile aprire "/usr/share/doc/pure-ftpd-common/README.Authentication-
Modules.gz.dpkg-new": File o directory non esistente
Si sono verificati degli errori nell'elaborazione:
 /var/cache/apt/archives/pure-ftpd-common_1.0.49-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Thanks,
Antonio



Bug#943874: pure-ftpd: pure-ftp error on upgrade

2019-11-01 Thread Antonio
Hi Stefan,
I bypassed the problem this way:

# remove previous doc directories:
root@TONY:~/desktop$ rm -rf /usr/share/doc/pure-ftpd-common/
/usr/share/doc/pure-ftpd/

# reinstall packages:
root@TONY:~/desktop$ apt-get install pure-ftpd pure-ftpd-common

Preparativi per estrarre .../pure-ftpd-common_1.0.49-1_all.deb...
Estrazione di pure-ftpd-common (1.0.49-1) su (1.0.47-3)...
 errore nell'elaborare l'archivio
/var/cache/apt/archives/pure-ftpd-common_1.0.49-1_all.deb (--install):
 tentata sovrascrittura di "/usr/share/doc/pure-ftpd" presente anche
nel pacchetto pure-ftpd 1.0.49-1
dpkg-deb: errore: il sottoprocesso paste è stato terminato dal segnale
(Pipe interrotta)
Si sono verificati degli errori nell'elaborazione:
 /var/cache/apt/archives/pure-ftpd-common_1.0.49-1_all.deb

# force overwrite
 root@TONY:~/desktop$ dpkg -i --force-overwrite
/var/cache/apt/archives/pure-ftpd-common_1.0.49-1_all.deb

Configurazione di pure-ftpd-common (1.0.49-1)...

File di configurazione "/etc/pure-ftpd/pure-ftpd.conf"
 ==> Modificato (dall'utente o da uno script) dopo l'installazione.
 ==> Il distributore del pacchetto ha fornito una versione aggiornata.
   Come procedere? Le opzioni sono:
Y o I   : installa la versione del responsabile del pacchetto
N od O  : mantiene la versione attualmente installata
  D : mostra le differenze tra le versioni
  Z : avvia una shell per esaminare la situazione
 L'azione predefinita consiste nel mantenere la versione attuale.
*** pure-ftpd.conf (Y/I/N/O/D/Z) [predefinito=N] ? N
Elaborazione dei trigger per man-db (2.9.0-1)...

# now is updated
root@TONY:~/desktop$ apt-cache policy pure-ftpd pure-ftpd-common
pure-ftpd:
  Installato: 1.0.49-1
  Candidato:  1.0.49-1
  Tabella versione:
 *** 1.0.49-1 700
700 http://debian.fastweb.it/debian sid/main amd64 Packages
100 /var/lib/dpkg/status
 1.0.47-3 500
500 http://debian.fastweb.it/debian stable/main amd64 Packages
pure-ftpd-common:
  Installato: 1.0.49-1
  Candidato:  1.0.49-1
  Tabella versione:
 *** 1.0.49-1 700
700 http://debian.fastweb.it/debian sid/main amd64 Packages
700 http://debian.fastweb.it/debian sid/main i386 Packages
100 /var/lib/dpkg/status
 1.0.47-3 500
500 http://debian.fastweb.it/debian stable/main amd64 Packages
500 http://debian.fastweb.it/debian stable/main i386 Packages

# test
root@TONY:~/desktop$ systemctl restart pure-ftpd
root@TONY:~/desktop$ ftp 127.0.0.1
Connected to 127.0.0.1.
220-- Welcome to Pure-FTPd [privsep] [TLS] --
220-You are user number 1 of 50 allowed.
220-Local time is now 09:15. Server port: 21.
220-This is a private system - No anonymous login
220-IPv6 connections are also welcome on this server.
220 You will be disconnected after 15 minutes of inactivity.
Name (127.0.0.1:root):


Il giorno ven 1 nov 2019 alle ore 07:12 Stefan Hornburg (Racke)
 ha scritto:
>
> On 10/31/19 8:54 AM, Antonio wrote:
> > Package: pure-ftpd
> > Version: 1.0.49-1
> > Severity: important
> >
> > Dear Maintainer,
> > there is an error on pure-ftpd-common package when I try to upgrade pure-ftp
> >
> > Preparativi per estrarre .../pure-ftpd-common_1.0.49-1_all.deb...
> > Estrazione di pure-ftpd-common (1.0.49-1) su (1.0.47-3)...
> > dpkg: errore nell'elaborare l'archivio /var/cache/apt/archives/pure-ftpd-
> > common_1.0.49-1_all.deb (--unpack):
> >  impossibile aprire "/usr/share/doc/pure-ftpd-common/README.Authentication-
> > Modules.gz.dpkg-new": File o directory non esistente
> > Si sono verificati degli errori nell'elaborazione:
> >  /var/cache/apt/archives/pure-ftpd-common_1.0.49-1_all.deb
> > E: Sub-process /usr/bin/dpkg returned an error code (1)
> >
> > Thanks,
> > Antonio
> >
>
> Hello Antonio,
>
> I can reproduce the problem but can't explain why it happens.
> Thanks for the report.
>
> Regards
>  Racke
>
>
> --
> Ecommerce and Linux consulting + Perl and web application programming.
> Debian and Sympa administration. Provisioning with Ansible.
>



Bug#943874: pure-ftpd: pure-ftp error on upgrade

2019-11-01 Thread Antonio
it could be a problem of mutual interaction created by a package that
removes the directory while the other tries to write a file on the
same path. If so, it would be a case not managed during the update
process...

Il giorno ven 1 nov 2019 alle ore 07:12 Stefan Hornburg (Racke)
 ha scritto:
>
> On 10/31/19 8:54 AM, Antonio wrote:
> > Package: pure-ftpd
> > Version: 1.0.49-1
> > Severity: important
> >
> > Dear Maintainer,
> > there is an error on pure-ftpd-common package when I try to upgrade pure-ftp
> >
> > Preparativi per estrarre .../pure-ftpd-common_1.0.49-1_all.deb...
> > Estrazione di pure-ftpd-common (1.0.49-1) su (1.0.47-3)...
> > dpkg: errore nell'elaborare l'archivio /var/cache/apt/archives/pure-ftpd-
> > common_1.0.49-1_all.deb (--unpack):
> >  impossibile aprire "/usr/share/doc/pure-ftpd-common/README.Authentication-
> > Modules.gz.dpkg-new": File o directory non esistente
> > Si sono verificati degli errori nell'elaborazione:
> >  /var/cache/apt/archives/pure-ftpd-common_1.0.49-1_all.deb
> > E: Sub-process /usr/bin/dpkg returned an error code (1)
> >
> > Thanks,
> > Antonio
> >
>
> Hello Antonio,
>
> I can reproduce the problem but can't explain why it happens.
> Thanks for the report.
>
> Regards
>  Racke
>
>
> --
> Ecommerce and Linux consulting + Perl and web application programming.
> Debian and Sympa administration. Provisioning with Ansible.
>



Bug#944586: udev: after upgrading to version 243-5, udev blocks the removal of lvm2 snapshots

2019-11-11 Thread Antonio
Package: udev
Version: 243-5
Severity: normal

Dear Maintainer,
after updating systemd to version 243-5, my backup procedures, which
include the use of snapshots on lvm2 logical volumes, were blocked
during the snapshot removal phase.

> create snapshot: OK
lvcreate --size 1G -s -n prova  system/doc

> no other action

> remove snapshot
lvremove -fv system/prova
Archiving volume group "system" metadata (seqno 4031).
Removing snapshot volume system/prova.
Loading table for system-doc (251:7).
Loading table for system-prova (251:12).
Not monitoring system/prova with libdevmapper-event-lvm2snapshot.so
Unmonitored
LVM-zKZzKzFy3LSl0iVHcy7DY8oSb1b6eCOf319azVbo42LDvCA6Bf1eoK6FoYY5r89e
for events
Suspending system-doc (251:7) with device flush
Suspending system-prova (251:12) with device flush
Suspending system-doc-real (251:10) with device flush
Suspending system-prova-cow (251:11) with device flush
activation/volume_list configuration setting not defined: Checking
only host tags for system/prova.
Resuming system-prova-cow (251:11).
Resuming system-doc-real (251:10).
Resuming system-prova (251:12).
Removing system-prova-cow (251:11)
Resuming system-doc (251:7).
Removing system-doc-real (251:10)

> process is blocked
> now press ctrl-c for return in terminal

> but if I launch same command again:
 lvremove -fv system/prova
Removing system-prova (251:12)
Archiving volume group "system" metadata (seqno 4032).
Releasing logical volume "prova"
Creating volume group backup "/etc/lvm/backup/system" (seqno 4033).
  Logical volume "prova" successfully removed

> the internal actions are completed and the command then succeeds

> Reinstall stable or previous version solve the problem.
apt-get install udev=241-7~deb10u1 libudev1=241-7~deb10u1

# repeat test
lvcreate --size 1G -s -n prova  system/doc
  Logical volume "prova" created.
...
lvremove -fv system/prova
Archiving volume group "system" metadata (seqno 4035).
Removing snapshot volume system/prova.
Loading table for system-doc (251:7).
Loading table for system-prova (251:12).
Not monitoring system/prova with libdevmapper-event-lvm2snapshot.so
Unmonitored LVM-
zKZzKzFy3LSl0iVHcy7DY8oSb1b6eCOfO01gXwNkzP5AaYp6LZAx8b6nzUPILTAh for events
Suspending system-doc (251:7) with device flush
Suspending system-prova (251:12) with device flush
Suspending system-doc-real (251:10) with device flush
Suspending system-prova-cow (251:11) with device flush
activation/volume_list configuration setting not defined: Checking only
host tags for system/prova.
Resuming system-prova-cow (251:11).
Resuming system-doc-real (251:10).
Resuming system-prova (251:12).
Removing system-prova-cow (251:11)
Resuming system-doc (251:7).
Removing system-doc-real (251:10)
Removing system-prova (251:12)
Releasing logical volume "prova"
Creating volume group backup "/etc/lvm/backup/system" (seqno 4037).
  Logical volume "prova" successfully removed

> with the previous version everything was ok

Thanks,
Antonio


-- Package-specific info:

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

Kernel: Linux 5.3.10-custom (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1) (ignored:
LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages udev depends on:
ii  adduser   3.118
ii  dpkg  1.19.7
ii  libacl1   2.2.53-5
ii  libblkid1 2.34-0.1
ii  libc6 2.29-3
ii  libkmod2  26-3
ii  libselinux1   2.9-2+b2
ii  libudev1  243-5
ii  systemd-sysv  243-5
ii  util-linux2.34-0.1

udev recommends no packages.

udev suggests no packages.

Versions of packages udev is related to:
ii  systemd  243-5

-- debconf information:
  udev/new_kernel_needed: false
  udev/title/upgrade:
  udev/reboot_needed:
  udev/sysfs_deprecated_incompatibility:



Bug#949754: libreoffice-writer: cannot open an existing document after an update and subsequent saving (corrupt document?)

2020-01-31 Thread Antonio
File /home/user/.config/libreoffice/4/user/registrymodifications.xcu:

the problem is in this line:

0

if you remove it, everything is fine, if you reinsert it, the
indicated problem occurs.

I think it would be preferable to remove it (or modify it
appropriately) after installing the package ...

Il giorno ven 31 gen 2020 alle ore 18:26 Rene Engelhard
 ha scritto:
>
> tag 949754 + moreinfo
> tag 949754 + unreproducible
> thanks
>
> On Fri, Jan 24, 2020 at 07:39:16PM +0100, Antonio wrote:
> > After several tests I found that the problem depended on the
> > libreoffice user profile of the previous installed version.
>
> Hrm.
>
> > To solve this problem I manually removed the file:
> > $ rm  -f /home/user/.config/libreoffice/4/user/registrymodifications.xcu
>
> It would have been interesting *what* entry there caused the problem.
> Maybe some export/filter option? Or ODF  compatibility?
>
> > which will then be recreated when the program restarts.
>
> With default values.
>
> > Perhaps could be evaluated an action in the installation trigger of
> > the new version to avoid this eventuality...
>
> If so, only in the application, not in maintainer scripts since $HOME is
> a no-go for them.
>
> In any case: one needs to know a config item to fix.
>
> Regards,
>
> Rene



Bug#949754: libreoffice-writer: cannot open an existing document after an update and subsequent saving (corrupt document?)

2020-01-31 Thread Antonio
I don't remember changing anything, I only used basic functions like
open, edit, save etc ... and updated the package when available in the
debian / sid repository.

Il giorno ven 31 gen 2020 alle ore 19:37 Rene Engelhard
 ha scritto:
>
> forwarded 949754 Michael Stahl 
> tag 949754 - unreproducible
> thanks
>
> Hi,
>
> On Fri, Jan 31, 2020 at 07:08:53PM +0100, Antonio wrote:
> > the problem is in this line:
> >
> >  > oor:name="DefaultVersion" oor:op="fuse">0
>
> aha. ok, as I guessed, ODF format...
>
> Do you remember changing the ODF default save version once?
>
> > I think it would be preferable to remove it (or modify it
> > appropriately) after installing the package ...
>
> For upstream LO code, yes. As said, going over all homes and removing
> this line in maintainer scripts is a no-go.
>
> Just asked on IRC (also Cced):
>
> 19:24 < _rene_> mst___: bugs.debian.org/949754. known?
> 19:24 < _rene_> mst___: something which should be handled in LO code?
> 19:24 < mst___> shivam_, yes that is expected, translations repo is large
> 19:24 -!- mebasoglu [~mebasoglu@81.214.161.7] has joined #libreoffice-dev
> 19:24 -!- MechtiIde [~Mechtilde@2a02:2788:1004:59a::16] has joined 
> #libreoffice-dev
> 19:25 < mst___> _rene_, that sounds like a very serious bug
> 19:25 < _rene_> mst___: yup...
> 19:25 < _rene_> mst___: no idea what the value he has means, though
> 19:25 < _rene_> mst___: that's why I ask :)
> 19:25 < mst___> i'd be very interested how to reproduce that
> 19:26 < _rene_> probably he changed some setting?
> 19:26 < _rene_> and then upgraded to 6.4 which doesn't like that setting?
> 19:26 < _rene_> it's registrymodifications.xcu. ttbomk that holds changed 
> user settings compared to the default?
> 19:27 < mst___> ah he says this is the problem:  oor:path="/org.openoffice.Office.Common/Save/ODF"> 19:27 < mst___> oor:name="DefaultVersion" 
> oor:op="fuse">0
> 19:27 < mst___> iirc that's the ODF version in tools->options
> 19:27 < mst___> probably 0 is the oldest one?
> 19:29 < _rene_> I don't know, I assumed you do :)
> 19:29 < mst___> ah no 0 is "ODFVER_UNKNOWN" - wtf is that?
> 19:30 -!- dtardon [~dtar...@ip-89-177-152-132.net.upcbroadband.cz] has quit 
> [Ping timeout: 268 seconds]
> 19:31 < _rene_> mst___: if you want me to ask him something, can do
> 19:32 < _rene_> I am already asking him whether he remembers setting ODF save 
> settings
> 19:32 < mst___> uh i dont get it, there is no constant there for odf 1.2 
> extended or 1.2 extended(compatibility) - would need some investigation what 
> is the
> mapping between the dialog and the configuration
> 19:33 < mst___> lol ... i write that into registrymodfications.xcu and the 
> dialog shows an empty combobox
> 19:34 < mst___> _rene_, maybe ask him if he remembers how he set this value, 
> or if it shows up as smoething other than empty combo-box in
> Load/Save->General->ODF format version
> 19:34 <@jmux> Any reason why ODFDefaultVersion has no 1.3 but 
> ODFSaneDefaultVersion has?
> 19:34 < _rene_> ok, mind pasting this conversation?
> 19:34 < _rene_> (for reference)
>
> As said above, did you change the ODF save version once? And how? And what 
> does the combo-box look like?
>
> Regards,
>
> Rene



Bug#949754: libreoffice-writer: cannot open an existing document after an update and subsequent saving (corrupt document?)

2020-02-03 Thread Antonio
I don't remember if in the past I have changed the odf version..

Anyway now, If I start the program with problematic line, format
version combobox shows "1.0/1.1", but if I remove it and restart
application, combobox shows "1.2 extended (recommended)". The values
settable are: "1.0/1.1", "1.2", "1.2 (compatibility mode)", "1.2
extended (recommended)".

Regards,
Antonio


Il giorno ven 31 gen 2020 alle ore 19:57 Rene Engelhard
 ha scritto:
>
> On Fri, Jan 31, 2020 at 07:49:09PM +0100, Antonio wrote:
> > I don't remember changing anything, I only used basic functions like
> > open, edit, save etc ... and updated the package when available in the
> > debian / sid repository.
>
> Hmm, ok.
>
> You missed to answer
>
> > > As said above, did you change the ODF save version once? And how? And 
> > > what does the combo-box look like?
>   
> ^
>this.
> as also asked for by upstream:
>
> > 19:34 < mst___> _rene_, maybe ask him if he remembers how he set this
> > value, or if it shows up as smoething other than empty combo-box in
> > Load/Save->General->ODF format version
>
> though :)
>
> Regards,
>
> Rene
>
> P.S.: And please use proper mail quoting. Top-Posting and fullquote
> after it is NOT.



Bug#951344: qemu-system-x86: booting Debian server on qemu + 5.5.x kernel crashes

2020-02-14 Thread Antonio
Package: qemu-system-x86
Version: 1:4.2-3
Severity: normal

Dear Maintainer,
I would like to report that using qemu to boot a Debian server crashes with the
latest versions of the 5.5.x kernel.
I also reported this problem on Bugzilla at the following link:
https://bugzilla.kernel.org/show_bug.cgi?id=206405
Thank you,
Antonio


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

Kernel: Linux 5.5.3-custom (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=ISO-8859-1)
(ignored: LC_ALL set to it_IT), LANGUAGE=it (charmap=ISO-8859-1)
(ignored: LC_ALL set to it_IT)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages qemu-system-x86 depends on:
ii  ipxe-qemu 1.0.0+git-20190125.36a4c85-4
ii  libaio1   0.3.112-5
ii  libasound21.2.1.2-2
ii  libbrlapi0.7  6.0+dfsg-4+b1
ii  libc6 2.29-10
ii  libcacard01:2.6.1-1
ii  libcapstone3  4.0.1+really+3.0.5-1+b1
ii  libepoxy0 1.5.4-1
ii  libfdt1   1.5.1-1
ii  libgbm1   19.3.3-1
ii  libgcc-s1 [libgcc1]   10-20200211-1
ii  libgcc1   1:10-20200211-1
ii  libglib2.0-0  2.62.4-2
ii  libgnutls30   3.6.11.1-2
ii  libibverbs1   28.0-1
ii  libjpeg62-turbo   1:1.5.2-2+b1
ii  libncursesw6  6.1+20191019-1
ii  libnettle73.5.1+really3.5.1-2
ii  libnuma1  2.0.12-1+b1
ii  libpixman-1-0 0.36.0-1
ii  libpmem1  1.8-1
ii  libpng16-16   1.6.37-2
ii  librdmacm128.0-1
ii  libsasl2-22.1.27+dfsg-2
ii  libseccomp2   2.4.2-2
ii  libslirp0 4.1.0-2
ii  libspice-server1  0.14.2-4
ii  libtinfo6 6.1+20191019-1
ii  libusb-1.0-0  2:1.0.23-2
ii  libusbredirparser10.8.0-1+b1
ii  libvdeplug2   2.3.2+r586-2.2+b1
ii  libvirglrenderer1 0.8.2-1
ii  libxendevicemodel14.11.3+24-g14b62ab3e5-1
ii  libxenevtchn1 4.11.3+24-g14b62ab3e5-1
ii  libxenforeignmemory1  4.11.3+24-g14b62ab3e5-1
ii  libxengnttab1 4.11.3+24-g14b62ab3e5-1
ii  libxenmisc4.114.11.3+24-g14b62ab3e5-1
ii  libxenstore3.04.11.3+24-g14b62ab3e5-1
ii  libxentoolcore1   4.11.3+24-g14b62ab3e5-1
ii  qemu-system-common1:4.2-3
ii  qemu-system-data  1:4.2-3
ii  seabios   1.13.0-1
ii  zlib1g1:1.2.11.dfsg-1.2

Versions of packages qemu-system-x86 recommends:
ii  ovmf 0~20191122.bd85bf54-1
ii  qemu-system-gui  1:4.2-3
ii  qemu-utils   1:4.2-3

Versions of packages qemu-system-x86 suggests:
ii  qemu-block-extra1:4.2-3
ii  qemu-system-data [sgabios]  1:4.2-3
ii  samba   2:4.11.5+dfsg-1
pn  vde2



Bug#965368: rkhunter: fails to start

2020-07-20 Thread Antonio
Package: rkhunter
Version: 1.4.6-8
Severity: normal

Dear Maintainer,
rkhunter fails to start because it cannot find the fgrep/egrep utilities.

The return message is as follows:
$ rkhunter --check
Invalid SCRIPTWHITELIST configuration option: Non-existent pathname:
/usr/bin/egrep
Invalid SCRIPTWHITELIST configuration option: Non-existent pathname:
/usr/bin/fgrep

while they are in the path:
$ type egrep fgrep
egrep is /bin/egrep
fgrep is /bin/fgrep

Thank you,
Antonio


  1   2   3   4   5   6   7   8   9   10   >