Bug#898960: [libpangoft2-1.0-0] Crashes some Java applications in pango_fc_font_key_get_variations

2018-11-29 Thread Zoltan Hidvegi
I am also experiencing this with eclipse, it seems there is a fix upstream,
see the discussion here: https://github.com/gentoo/gentoo/pull/10417

Zoltan


Bug#840480: cryptsetup initramfs hook warning with multiple encrypted physical volumes

2016-10-11 Thread Zoltan Hidvegi
Package: cryptsetup
Version: 2:1.7.2-3

I have a volume group with 2 physical volumes named ssd.luks and spin.luks.
Both are encrypted with luks. This is the only VG in the system, and it
contains all filesystems. When I run update-initramfs, I get this warning:

update-initramfs: Generating /boot/initrd.img-4.7.0-1-amd64
cryptsetup: WARNING: invalid line in /etc/crypttab for ssd.luksspin.luks -

This happens because when there are multiple luks devices in a volume
group, they are printed without space so the names get concatenated, and
the concatenated device is not found. The attached patch fixes the issue
for me.

Thanks,
 Zoltan
--- /mnt/btroot/root-2016.10.11/usr/share/initramfs-tools/hooks/cryptroot	2016-10-06 03:47:05.0 -0500
+++ /usr/share/initramfs-tools/hooks/cryptroot	2016-10-11 17:01:40.826238533 -0500
@@ -230,7 +230,7 @@
 			get_lvm_deps "$depnode"
 			continue
 		fi
-		printf '%s' "$depnode"
+		printf '%s\n' "$depnode"
 	done
 
 	return 0


Bug#752681: laptop-mode-tools: The new runtime-pm management is enabled in more situations than usb-autosuspend

2014-08-11 Thread Zoltan Hidvegi
On Mon, 21 Jul 2014 10:49:56 +0530 Ritesh Raj Sarraf r...@researchut.com
wrote:
 On 07/21/2014 08:31 AM, Adam Lee wrote:
   No. You should not be disabling runtime pm management. By doing that
you tell
   the kernel to do no power savings. Which is not good.
  Exactly, I don't want the power savings when AC is plugged in.
 
  Autosuspend is so broken that linux kernel disables it by default,
  not enabling it by laptop-mode-tools when AC is plugged in might be a
  good idea(only a suggestion).


 Blacklisting will work. Try it. It works for me.

Yes, blacklisting does work, but the problem is that the default behavior
of the system has changed in a very undesirable way, and it's very hard for
a non-expert to figure out how to fix it. On every optical mouse I've came
across (several different manufacturers) the autosuspend works by turning
off the mouse LED. After that the mouse stays suspended until a button is
pressed, which wakes up the mouse and turns the LED back on but it goes to
sleep again after the prescribed autosuspend delay. This is a new an
unexpected behavior, and although I consider myself an experienced expert
user, it took a long time to find the source of the problem as I also run
into the no longer used usb-autosuspend module that is still there giving
you a false hope that you can fix it there. A possible solution would be to
allow a blacklist based on the product name (found in the product file in
/sys/bus/usb/devices/*/product) and look for something like *Optical*Mouse*
in the product name to blacklist. It would be nice if optical mice would
behave as before, since that's what most people would prefer and expect.

There are also issues in the
/usr/share/laptop-mode-tools/modules/runtime-pm script, it assumes that the
$runtime_device variable does not contain spaces. Unfortunately, on my
system there is a file called

/sys/bus/platform/devices/Fixed MDIO bus.0

Note the spaces in the name. The shell by default does word splitting on
variables. All uses of $runtime_device should be quoted (and not only  that
but also any function that takes such a device as an argument should handle
names with spaces), list the blacklisted, whichlisted, listed_by_id,
listed_by_type etc. functions, they all use unquoted variables at the
moment. Unfortunately to support names with spaces, the script probably
needs some more invasive changes. The current module gives me error
messages like:

sirius /home/hzoli # service laptop-mode reload
/usr/sbin/laptop_mode: 108: [: /sys/bus/platform/devices/Fixed: unexpected
operator
/usr/sbin/laptop_mode: 115: [: /sys/bus/platform/devices/Fixed: unexpected
operator
/usr/sbin/laptop_mode: 118: [: /sys/bus/platform/devices/Fixed: unexpected
operator
[ ok ] Laptop mode disabled, not active.
/usr/sbin/laptop_mode: 108: [: /sys/bus/platform/devices/Fixed: unexpected
operator
/usr/sbin/laptop_mode: 115: [: /sys/bus/platform/devices/Fixed: unexpected
operator
/usr/sbin/laptop_mode: 118: [: /sys/bus/platform/devices/Fixed: unexpected
operator
[ ok ] Laptop mode enabled, not active.

These come from line 108 of /usr/share/laptop-mode-tools/modules/runtime-pm
not /usr/sbin/laptop_mode

-Zoltan


Bug#675860: gthumb: second gthumb instance doesn't display the image in argument

2014-06-10 Thread Zoltan Hidvegi
I think this bug has been fixed upstream in 3.3.2, in this commit:
https://github.com/GNOME/gthumb/commit/b184ef69fa90a4e37bd91e6688a75838e243dcb0

-Zoltan


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



Bug#743026: cinnamon experimental missing ITP deps

2014-06-06 Thread Zoltan Hidvegi
The experimental cinnamon package is still uninstallable, even though
it seems most (if not all) the required parts have been uploaded to
ftp-master, nut the ITP requests are still pending? Is there any way
to download the pending packages? Is there any side repository that
can be used for testing?

Thanks,
 -Zoltan


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



Bug#679966: Possible security issues and a temporary fix

2012-07-11 Thread Zoltan Hidvegi
More info: this is not an upstream issue, it's caused by the
handle-removed-working-dir.patch which is an attempt to fix
#667038. Besides chopping off the last path component of any cd
../name command, it also does sfprintf(shp-strbuf,oldpwd) which is a
problem if oldpwd contains printf formatting escapes, which probably
could be exploited. Workaround is to remove
handle-removed-working-dir.patch which would then reopen #667038.

 -Zoltan



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



Bug#679966: ksh: cd ../name does not work

2012-07-02 Thread Zoltan Hidvegi
Package: ksh
Version: 93u+-1
Justification: renders package unusable
Severity: grave

Dear Maintainer,

I've done this:

sirius ~MOD/wmesa % ksh -c 'pwd; (cd ../alias; pwd); (cd ./../alias; pwd)'
/home/hzoli/dev/wmesa
/home/hzoli/dev
/home/hzoli/dev/alias
sirius ~MOD/wmesa % ksh --version
  version sh (ATT Research) 93u+ 2012-02-29

Notive that cd ../alias does not work, but cd ./../alias does.
Setting CDPATH does not work. This used to work with the previous version,
ksh-93u.

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

Kernel: Linux 3.4-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages ksh depends on:
ii  libc6  2.13-34

ksh recommends no packages.

ksh 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