Bug#411459: alltray: Add multiple modifier support

2007-02-19 Thread Itaï BEN YAACOV
Package: alltray
Version: 0.69-2
Severity: wishlist
Tags: patch


Please apply this patch allowing several modifiers.
New syntax:  -k Modifier:Modifier:...:keycode .

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages alltray depends on:
ii  libatk1.0-0   1.12.4-2   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-12   GNU C Library: Shared libraries
ii  libcairo2 1.2.4-4The Cairo 2D vector graphics libra
ii  libfontconfig12.4.2-1generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libgconf2-4   2.16.0-3   GNOME configuration database syste
ii  libglib2.0-0  2.12.6-2   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-5   The GTK+ graphical user interface 
ii  liborbit2 1:2.14.4-1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.14.8-5   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libx11-6  2:1.0.3-5  X11 client-side library
ii  libxcursor1   1.1.7-4X cursor management library
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxfixes31:4.0.1-5  X11 miscellaneous 'fixes' extensio
ii  libxi61:1.0.1-4  X11 Input extension library
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxrandr22:1.1.0.2-5X11 RandR extension library
ii  libxrender1   1:0.9.1-3  X Rendering Extension client libra
ii  zlib1g1:1.2.3-13 compression library - runtime

alltray recommends no packages.

-- no debconf information
diff -u -Nru alltray-0.69/src/shortcut.c alltray-0.69.new/src/shortcut.c
--- alltray-0.69/src/shortcut.c	2006-07-06 17:42:23.0 +0200
+++ alltray-0.69.new/src/shortcut.c	2007-02-19 09:41:58.0 +0100
@@ -44,13 +44,27 @@
 #include "common.h"
 #include "utils.h"
 
+struct {
+  gchar* name;
+  unsigned int mask;
+} modifiers[] = {
+  { "Shift", ShiftMask },
+  { "Control", ControlMask },
+  { "Alt", Mod1Mask },
+  { "Winkey_right", Mod4Mask },
+  { "AltGr", Mod5Mask },
+  { NULL, 0}
+};
+
+
 gboolean parse_shortcut (gchar *string, 
 unsigned int *key_return, unsigned int *modifier_return)
 {
 
   gchar *tmp=NULL;
   gchar *colon=NULL;
-  gchar *modifier=NULL;
+  gchar *current=NULL;
+  int i;
 
 
   if (debug) printf ("parse_shortcut\n");
@@ -59,74 +73,34 @@
 return FALSE;
 
   tmp=g_strdup (string);
-  
-  colon=strstr (tmp,":");
 
-  if (colon) {
-if (debug) printf ("colon: %s\n", colon);
+  *modifier_return=0;
+  for (current=tmp; (colon=strchr (current,':')) != NULL; current=colon+1) {
 
-*key_return =atoi (++colon);
-
-if (*key_return == 0)
-  *key_return=XKeysymToKeycode(GDK_DISPLAY(), XStringToKeysym(colon));
-
-   *(--colon)=0;
-   modifier=tmp;
-  
-   if (debug) printf ("modifier: %s\n", modifier);
-
-   do {
-
-if (!strcmp (modifier, "Shift")) {
-  if (debug) printf ("found Shift\n");
-  *modifier_return=ShiftMask;
-  break;
-}
-
-if (!strcmp (modifier, "Control")) {
-  if (debug) printf ("found Control\n");
-  *modifier_return=ControlMask;
-  break;
-}
-  
-if (!strcmp (modifier, "Alt")) {
-  if (debug) printf ("found Alt\n");
-  *modifier_return=Mod1Mask;
-  break;
-}
-
-if (!strcmp (modifier, "Winkey_right")) {
-  if (debug) printf ("found Winkey_right\n");
-  *modifier_return=Mod4Mask;
-  break;
-}   
+   *colon=0;
 
-if (!strcmp (modifier, "AltGr")) {
-  if (debug) printf ("found AltGr\n");
-  *modifier_return=Mod5Mask;
-  break;
-}   
+   if (debug) printf ("modifier: %s\n", current);
 
+   for (i = 0; modifiers[i].name; ++i) {
+if (!strcmp (current, modifiers[i].name)) {
+  if (debug) printf ("found %s\n", modifiers[i].name);
+  *modifier_return|=modifiers[i].mask;
+  break;
+}
+   }
 
+   if (!modifiers[i].name) {
 printf ("\n\nAllTray: unknown modifier!"\
 " (Only \"Shift\", \"Control\" \"Alt\" or \"AltGr\" is allowed).\n\n");
-
 g_free (tmp);
 return FALSE;
+   }
+  }
 
-  } while (0);
- 
-   
-  } else {
-
-*key_return =atoi (tmp);
-
-if (*key_return == 0) 
-  *key_return=XKeysymToKeycode(GDK_DISPLAY(), XStringToKeysym(tmp));
+  *key_return = atoi (current);
 
-*modifier_return=AnyModifier;
-  
-  }
+  if (*key_return == 0) 
+   *key_return=XKeysymToKeycode(GDK_DISPLAY(), XStringToKeysym(current));
 
   g_free (tmp);
 


Bug#411644: Since 2.0.0.1+dfsg-3, running "iceweasel -jsconsole" twice gives "runs but not responding"

2007-02-20 Thread Itaï BEN YAACOV
Package: iceweasel
Version: 2.0.0.1+dfsg-3
Severity: minor


Try:

iceweasel -jsconsole &
iceweasel -jsconsole &

With 2.0.0.1+dfsg-2, the second launching would just give a
browser window, since there already is a js console.
With 2.0.0.1+dfsg-3 you'd get an "instance already running but not
responding" error.

Why do I want the first behaviour?  It's great with "alltray": the
jsconsole gets trayed, and the browser windows can be opened and
closed without closing the running instance.  Try and enjoy!  Some
modification from 2.0.0.1+dfsg-2 to 2.0.0.1+dfsg-3 breaks this,
though.

Thanks,
Itai.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages iceweasel depends on:
ii  debianutils   2.17.5 Miscellaneous utilities specific t
ii  fontconfig2.4.2-1generic font configuration library
ii  libatk1.0-0   1.12.4-2   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-12   GNU C Library: Shared libraries
ii  libcairo2 1.2.4-4The Cairo 2D vector graphics libra
ii  libfontconfig12.4.2-1generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-21 GCC support library
ii  libglib2.0-0  2.12.6-2   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-5   The GTK+ graphical user interface 
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libmyspell3c2 1:3.1-18   MySpell spellchecking library
ii  libpango1.0-0 1.14.8-5   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libstdc++64.1.1-21   The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.3-5  X11 client-side library
ii  libxft2   2.1.8.2-8  FreeType-based font drawing librar
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxrender1   1:0.9.1-3  X Rendering Extension client libra
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  psmisc22.3-1 Utilities that use the proc filesy
ii  zlib1g1:1.2.3-13 compression library - runtime

iceweasel recommends no packages.

-- no debconf information


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



Bug#738991: linux-image-3.12-1-amd64: Dell E7230 (and similar) : unable to use external monitor through dock

2014-02-14 Thread Itaï BEN YAACOV
Package: src:linux
Version: 3.12.9-1
Severity: normal
Tags: patch upstream

Dear Maintainer,

As per https://bugs.freedesktop.org/show_bug.cgi?id=73694 ,
connecting an external monitor via a port replicator does not work, and one gets
lots of 



[   71.064428] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, 
aborting
[   72.050687] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, 
aborting
[   72.896907] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, 
aborting


Comment 2 to that bug suggests a patch 
https://bugs.freedesktop.org/attachment.cgi?id=92231
It works for me against 3.12 and the reporter said it worked against 3.13 as 
well.

Please include !

Cheers,
Itai.



-- Package-specific info:
** Version:
Linux version 3.12-1-amd64 (debian-ker...@lists.debian.org) (gcc version 4.8.2 
(Debian 4.8.2-14) ) #1 SMP Debian 3.12.9-1 (2014-02-01)

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.12-1-amd64 root=/dev/sda1 ro resume=LABEL=Swap quiet 
splash

** Tainted: WO (4608)
 * Taint on warning.
 * Out-of-tree module has been loaded.

** Kernel log:
[3.115193] uvcvideo: Found UVC 1.00 device  (046d:08ca)
[3.132914] input: UVC Camera (046d:08ca) as 
/devices/pci:00/:00:1d.0/usb4/4-1/4-1.5/4-1.5:1.0/input/input14
[3.132955] usbcore: registered new interface driver uvcvideo
[3.132956] USB Video Class driver (1.1.1)
[3.361031] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: 
errors=remount-ro
[3.368413] usb 4-1.6.1: new high-speed USB device number 7 using ehci-pci
[3.388824] Adding 15623208k swap on /dev/sdb2.  Priority:-1 extents:1 
across:15623208k 
[3.460697] usb 4-1.6.1: New USB device found, idVendor=0424, idProduct=2640
[3.460699] usb 4-1.6.1: New USB device strings: Mfr=0, Product=0, 
SerialNumber=0
[3.461095] hub 4-1.6.1:1.0: USB hub found
[3.461179] hub 4-1.6.1:1.0: 3 ports detected
[3.587714] EXT4-fs (sdb3): mounted filesystem with ordered data mode. Opts: 
(null)
[3.732335] usb 4-1.6.1.1: new high-speed USB device number 8 using ehci-pci
[3.857739] vboxdrv: Found 4 processor cores.
[3.857928] vboxdrv: fAsync=0 offMin=0x18d offMax=0x3114
[3.857970] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 
'normal'.
[3.857971] vboxdrv: Successfully loaded version 4.3.2_Debian (interface 
0x001a0005).
[3.883049] usb 4-1.6.1.1: New USB device found, idVendor=0424, 
idProduct=4060
[3.883053] usb 4-1.6.1.1: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[3.883054] usb 4-1.6.1.1: Product: Ultra Fast Media Reader
[3.883056] usb 4-1.6.1.1: Manufacturer: Generic
[3.883057] usb 4-1.6.1.1: SerialNumber: F110A60117AA
[3.908414] usb-storage 4-1.6.1.1:1.0: USB Mass Storage device detected
[3.908605] scsi6 : usb-storage 4-1.6.1.1:1.0
[3.908656] usbcore: registered new interface driver usb-storage
[3.912116] vboxpci: IOMMU not found (not registered)
[3.915409] lp: driver loaded but no devices found
[3.927614] ppdev: user-space parallel port driver
[3.968282] usb 4-1.6.1.3: new full-speed USB device number 9 using ehci-pci
[3.936051] parport0: PC-style at 0x378 (0x778) [PCSPP,TRISTATE]
[4.060225] parport0: irq 7 detected
[4.064641] usb 4-1.6.1.3: New USB device found, idVendor=050d, 
idProduct=0121
[4.064643] usb 4-1.6.1.3: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[4.064645] usb 4-1.6.1.3: Product: BELKIN BLUETOOTH USB ADAPTER CL. 1
[4.064646] usb 4-1.6.1.3: Manufacturer: Broadcom Corp
[4.080519] Bluetooth: Core ver 2.16
[4.080529] NET: Registered protocol family 31
[4.080530] Bluetooth: HCI device and connection manager initialized
[4.080535] Bluetooth: HCI socket layer initialized
[4.080537] Bluetooth: L2CAP socket layer initialized
[4.080540] Bluetooth: SCO socket layer initialized
[4.081752] usbcore: registered new interface driver btusb
[4.100257] e1000e :00:19.0: irq 40 for MSI/MSI-X
[4.156164] lp0: using parport0 (polling).
[4.204109] e1000e :00:19.0: irq 40 for MSI/MSI-X
[4.204344] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[4.919104] scsi 6:0:0:0: Direct-Access Generic  Ultra HS-SD/MMC  1.82 
PQ: 0 ANSI: 0
[4.919327] sd 6:0:0:0: Attached scsi generic sg3 type 0
[4.935947] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[7.364331] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: 
None
[7.364366] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   13.727133] type=1305 audit(1391582859.679:62167): auid=4294967295 
ses=4294967295 op="remove rule" key=(null) list=4 res=1
[   13.727137] type=1305 audit(1391582859.679:62168): audit_enabled=0 old=1 
auid=4294967295 ses=4294967295
[   13.727137]  res=1
[158378.186128] perf samples too long (2505 > 2500), lowering 
kernel.perf_event_max_sample_rate to 5
[184539.576704] dconf worker[29912]: segfault at 8 ip 7f5689a4839c sp 
000

Bug#740380: logrotate warnings when running under systemd

2014-03-06 Thread Itaï BEN YAACOV
Package: cups-daemon
Version: 1.7.1-7
Followup-For: Bug #740380

Dear Maintainer,

Hello,

The following patch is less intrusive and just solves the problem,
namely that with systemd messages are sent to standard error.

Cheers,
Itai.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages cups-daemon depends on:
ii  adduser  3.113+nmu3
ii  bc   1.06.95-8
ii  dpkg 1.17.6
ii  init-system-helpers  1.18
ii  libavahi-client3 0.6.31-4
ii  libavahi-common3 0.6.31-4
ii  libc62.18-4
ii  libcups2 1.7.1-7
ii  libcupsmime1 1.7.1-7
ii  libdbus-1-3  1.8.0-2
ii  libgnutls26  2.12.23-13
ii  libgssapi-krb5-2 1.12+dfsg-2
ii  libpam0g 1.1.8-2
ii  libpaper11.1.24+nmu2
ii  libsystemd-daemon0   204-7
ii  lsb-base 4.1+Debian12
ii  procps   1:3.3.9-4
ii  ssl-cert 1.0.33

Versions of packages cups-daemon recommends:
ii  avahi-daemon  0.6.31-4
ii  colord1.0.6-1
ii  cups-browsed  1.0.46-1

Versions of packages cups-daemon suggests:
ii  cups   1.7.1-7
ii  cups-bsd   1.7.1-7
ii  cups-client1.7.1-7
ii  cups-common1.7.1-7
ii  cups-filters [foomatic-filters]1.0.46-1
ii  cups-pdf   2.6.1-9
ii  cups-ppdc  1.7.1-7
ii  cups-server-common 1.7.1-7
pn  foomatic-db-compressed-ppds | foomatic-db  
ii  ghostscript9.05~dfsg-8+b1
pn  hplip  
ii  poppler-utils  0.22.5-4
ii  printer-driver-gutenprint  5.2.9-1
pn  printer-driver-hpcups  
pn  smbclient  
ii  udev   204-7

-- no debconf information
--- ./cups-1.7.1/debian/cups-daemon.logrotate	2014-03-06 11:28:01.943676596 +0100
+++ ./cups-1.7.1.old/debian/cups-daemon.logrotate	2014-01-30 16:21:09.0 +0100
@@ -5,14 +5,14 @@
 	sharedscripts
 	prerotate
 		if [ -e /var/run/cups/cupsd.pid ]; then
-			invoke-rc.d --quiet cups stop > /dev/null 2>&1
+			invoke-rc.d --quiet cups stop > /dev/null
 			touch /var/run/cups/cupsd.stopped
 		fi
 	endscript
 	postrotate
 		if [ -e /var/run/cups/cupsd.stopped ]; then
 			rm /var/run/cups/cupsd.stopped
-			invoke-rc.d --quiet cups start > /dev/null 2>&1
+			invoke-rc.d --quiet cups start > /dev/null
 			sleep 10
 		fi
 	endscript


Bug#749067: kupfer: Kupfer no longer reads firefox bookmark files

2014-05-23 Thread Itaï BEN YAACOV
Package: kupfer
Version: 0+v208-3
Severity: normal
Tags: patch

Dear Maintainer,

Since iceweasel 29 kupfer no longer reads the bookmark file.
For a while it was looking for backup files even though
bookmarks were stored in places.sqlite.  Included patch adapts
functionality already present for reading history to reading
bookmarks.

Cheers,
Itai



-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages kupfer depends on:
ii  dbus  1.8.2-1
ii  python-dbus   1.2.0-2+b2
ii  python-gobject3.12.1-1
ii  python-gtk2   2.24.0-3+b1
ii  python-keybinder  0.3.0-3
ii  python-xdg0.25-4
pn  python:any

Versions of packages kupfer recommends:
ii  python-keyring  3.8-1
ii  python-wnck 2.32.0+dfsg-3

Versions of packages kupfer suggests:
pn  python-cjson 
pn  python-gdata 
pn  python-qrencode  

-- no debconf information
Description: 
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 kupfer (0+v208-3.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Read firefox bookmarks from places.sqlite
Author: Itaï BEN YAACOV 

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: , 
Bug: 
Bug-Debian: http://bugs.debian.org/
Bug-Ubuntu: https://launchpad.net/bugs/
Forwarded: 
Reviewed-By: 
Last-Update: 

--- kupfer-0+v208.orig/kupfer/plugin/firefox.py
+++ kupfer-0+v208/kupfer/plugin/firefox.py
@@ -65,12 +65,21 @@ class BookmarksSource (AppLeafContentMix
 			self.output_exc()
 
 	def _get_ffx3_bookmarks(self, fpath):
-		"""Parse Firefox' .json bookmarks backups"""
-		from kupfer.plugin import firefox3_support
-		self.output_debug("Parsing", fpath)
-		bookmarks = firefox3_support.get_bookmarks(fpath)
-		for book in bookmarks:
-			yield UrlLeaf(book["uri"], book["title"])
+		"""Query the firefox places bookmark database"""
+		fpath = firefox_support.get_firefox_home_file("places.sqlite")
+		if not (fpath and os.path.isfile(fpath)):
+			return
+		try:
+			self.output_debug("Reading bookmarks from", fpath)
+			with closing(sqlite3.connect(fpath, timeout=1)) as conn:
+c = conn.cursor()
+c.execute("""SELECT moz_places.url, moz_bookmarks.title
+ FROM moz_places, moz_bookmarks
+ WHERE moz_places.id = moz_bookmarks.fk""")
+return [UrlLeaf(url, title) for url, title in c]
+		except sqlite3.Error:
+			# Something is wrong with the database
+			self.output_exc()
 
 	def _get_ffx2_bookmarks(self, fpath):
 		"""Parse Firefox' bookmarks.html"""


Bug#695917: auctex: emacs --daemon stuck with (require 'latex) in .emacs

2012-12-14 Thread Itaï BEN YAACOV
Package: auctex
Version: 11.87-1
Severity: normal
Tags: upstream

Dear Maintainer,

(I *think* this is an upstream bug)

Since 11.87, staring emacs as a daemon with  emacs --daemon  blocks on the
(require 'latex)
line of my .emacs.  No such problem when staring emacs normally on foreground.
This can be overcome by putting configuration which would require auctex
into LaTeX-mode-hook (and this approach is arguably more correct),
but still, this is a bug.

Yours,
Itai.

-- Package-specific info:

Content of '/usr/share/emacs/site-lisp/auctex'

d41d8cd98f00b204e9800998ecf8427e  /usr/share/emacs/site-lisp/auctex/.nosearch
3366a99dd44e27fa57e0bcc130c4fa1c  /usr/share/emacs/site-lisp/auctex/bib-cite.el
6674b961058a19d2ff2f15c9d6d39272  
/usr/share/emacs/site-lisp/auctex/context-en.el
f5ed983cd477814f04e4a63affd4f323  
/usr/share/emacs/site-lisp/auctex/context-nl.el
0cbe483d1a5567ea46a104f4f1cd7784  /usr/share/emacs/site-lisp/auctex/context.el
b133f33d0c97e1ac061d9e5c88774781  
/usr/share/emacs/site-lisp/auctex/font-latex.el
f176261b5a5511cbe1401ee72ffb8947  
/usr/share/emacs/site-lisp/auctex/images/amstex.xpm
d33121019448617a3ad3bcafdeb8db40  
/usr/share/emacs/site-lisp/auctex/images/bibtex.xpm
1a43d6438010bceb374ab0a5f2bd05a8  
/usr/share/emacs/site-lisp/auctex/images/dropdown.xpm
41f1ae0341ae2e307d92a7b8b815f868  
/usr/share/emacs/site-lisp/auctex/images/dvipdf.xpm
2e4b8669b0168f32247411be3f999437  
/usr/share/emacs/site-lisp/auctex/images/dvips.xpm
55f7600cadc3a209e94bacf6bbc42a7c  
/usr/share/emacs/site-lisp/auctex/images/error.xpm
c29ad797273fd27201a40bd939a95fe0  
/usr/share/emacs/site-lisp/auctex/images/exec.xpm
79b958849511c67d6b13ef9f5b3673e8  
/usr/share/emacs/site-lisp/auctex/images/execbibtex.xpm
a8570e26e9f96b6f527cdbe218d6c55f  
/usr/share/emacs/site-lisp/auctex/images/execdvips.xpm
e647bc601aef2dc71b134a989df1adff  
/usr/share/emacs/site-lisp/auctex/images/execerror.xpm
4610ec6133f89ceb441c43dfee077361  
/usr/share/emacs/site-lisp/auctex/images/execpdftex.xpm
c9cd1fc9fe4fd122cbf900fae654a67b  
/usr/share/emacs/site-lisp/auctex/images/exectex.xpm
6a6b9af945d4735f048ea8e475f8d9b8  
/usr/share/emacs/site-lisp/auctex/images/execviewdvi.xpm
466466f6d1867510b058a9c184ffce5d  
/usr/share/emacs/site-lisp/auctex/images/execviewpdf.xpm
39d8ccaffb40b0c118e000f45272db05  
/usr/share/emacs/site-lisp/auctex/images/execviewps.xpm
6767e2583c668dcb47495197b9e8cb65  
/usr/share/emacs/site-lisp/auctex/images/gv.xpm
ff9c61ef5148a0cacd5422d7c0d99396  
/usr/share/emacs/site-lisp/auctex/images/jumpdvi.xpm
ece6608586b591f50f20d17cdb316a1c  
/usr/share/emacs/site-lisp/auctex/images/ltx-symb-turn-off.xpm
b1f10de33dcf1b5ca9ac6155c13683a3  
/usr/share/emacs/site-lisp/auctex/images/ltx-symb-turn-on.xpm
44e35faa18ab34f3c13ac3b0082bcc47  
/usr/share/emacs/site-lisp/auctex/images/pdftex.xpm
84673eb20ac3be7bf0eb4e84e23e828f  
/usr/share/emacs/site-lisp/auctex/images/prverr16.xpm
59e6a0dddb00ab16c4209a2e4c6e283d  
/usr/share/emacs/site-lisp/auctex/images/prverr20.xpm
30dc2ada41625cb24ea459bd62f7386c  
/usr/share/emacs/site-lisp/auctex/images/prverr24.xbm
225929f8131bdd7b9b8207494a59619a  
/usr/share/emacs/site-lisp/auctex/images/prverr24.xpm
0dac3d8eb00c902037cc5fa6a03e53e3  
/usr/share/emacs/site-lisp/auctex/images/prvtex-cap-up.xpm
40feb30f80d3606f32ba54b57ba18af5  
/usr/share/emacs/site-lisp/auctex/images/prvtex12.xbm
e1b3c9d6a6eb6fb6f096736cdfc059cf  
/usr/share/emacs/site-lisp/auctex/images/prvtex12.xpm
32406fc4b893b48d2996c424f61ea238  
/usr/share/emacs/site-lisp/auctex/images/prvtex16.xbm
cc4101ee6a3ab6a1f4e9991b91b3ff0b  
/usr/share/emacs/site-lisp/auctex/images/prvtex16.xpm
d4dbe057a8d3b2facd61cf7583c1e97c  
/usr/share/emacs/site-lisp/auctex/images/prvtex20.xpm
f25ba1b984b095c9c561e5443f3d77a3  
/usr/share/emacs/site-lisp/auctex/images/prvtex24.xbm
28ac0855d853f606dd91e3cfacaa8a14  
/usr/share/emacs/site-lisp/auctex/images/prvtex24.xpm
6ce704103821329336489e990bc6f267  
/usr/share/emacs/site-lisp/auctex/images/prvwrk12.xpm
5607f4e8bc0eb555206e6a3542205f45  
/usr/share/emacs/site-lisp/auctex/images/prvwrk14.xpm
878a72cde3bb6f0ea6d586cff56e619c  
/usr/share/emacs/site-lisp/auctex/images/prvwrk16.xpm
41811748a97673381115957d42a6529b  
/usr/share/emacs/site-lisp/auctex/images/prvwrk20.xpm
254fc07db6a03a8a24f762135a403433  
/usr/share/emacs/site-lisp/auctex/images/prvwrk24.xbm
9690511307f3693e6f28e4db93fdc58c  
/usr/share/emacs/site-lisp/auctex/images/prvwrk24.xpm
e30a80ecb0711ceb42a2ca966ad74bbb  
/usr/share/emacs/site-lisp/auctex/images/pspdf.xpm
5cc696e2c69ae401c0c223d84d013c8e  
/usr/share/emacs/site-lisp/auctex/images/sep.xpm
861fc288565e624ce8b34c1fc42e3496  
/usr/share/emacs/site-lisp/auctex/images/tex.xpm
338158cc358b16daf9b58ee54bd14bad  
/usr/share/emacs/site-lisp/auctex/images/view.xpm
8147722e0061799437edf36d4466e5ab  
/usr/share/emacs/site-lisp/auctex/images/viewdvi.xpm
67

Bug#628790: auctex: Regarding the problem with hyperref

2013-03-06 Thread Itaï BEN YAACOV
Package: auctex
Followup-For: Bug #628790

For hyperref the problem is that the "new file" regexp is
more restrictive than the "end of file" regexp, so auctex
removes from the stack a file that was never put there.
Specifically, anything of the form   (xx):  will not be
recognised as a new file because of the colon, but the closing
parenthesis is recognised as end-of-file.
Having false positives is no problem, so long as the
parentheses are blanaced (which they are), you add a non-file
to the stack and remove it again.  My personal solution was
to make the new file regexp less restrictive, although I guess
that making the end-of-file regexp more restrictive would
work just as well.

Cheers,
Itai.


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



Bug#702871: auctex: Raise/focus window on forward/reverse search with evince

2013-03-12 Thread Itaï BEN YAACOV
phanum.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/amsart.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/amsbook.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/amsbsy.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/amsmath.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/amsopn.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/amstex.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/amstext.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/amsthm.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/article.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/austrian.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/babel.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/beamer.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/biblatex.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/book.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/booktabs.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/bulgarian.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/captcont.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/comment.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/csquotes.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/czech.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/danish.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/dinbrief.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/dk-bib.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/dk.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/doc.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/dutch.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/emp.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/epsf.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/fancyref.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/flashcards.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/foils.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/francais.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/french.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/frenchb.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/german.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/graphics.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/graphicx.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/harvard.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/hyperref.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/icelandic.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/index.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/inputenc.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/italian.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/j-article.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/j-book.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/j-report.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/jarticle.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/jbook.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/jreport.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/jsarticle.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/jsbook.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/jura.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/jurabib.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/latexinfo.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/letter.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/lettrine.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/listings.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/ltx-base.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/ltxdoc.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/makeidx.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/mdwlist.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/multicol.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/multido.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/multind.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/natbib.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/naustrian.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/ngerman.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/nicefrac.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/nomencl.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/paralist.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/pdfsync.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/plfonts.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/plhb.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/polish.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/polski.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/prosper.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/psfig.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/pst-grad.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/pst-node.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/pst-plot.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/pst-slpe.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/pstricks.elc
Wrote /usr/share/emacs24/site-lisp/auctex/style/report.elc
Wrote /usr/share/em

Bug#666055: bash-completion: Make scp completions recognise symlinks to directories as directories.

2012-03-28 Thread Itaï BEN YAACOV
Package: bash-completion
Version: 1:1.99-3
Severity: minor
Tags: patch upstream

Dear Maintainer,

When auto-completing an scp command, slashes are added after (local
or remote) directories, and spaces after files AND after symlinks to
directories.  Expected behaviour would be slashes after directories
or symlinks to such.

Please see attached patch which corrects the problem.

Cheers,
Itaï.


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

Kernel: Linux 3.2.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bash-completion depends on:
ii  bash  4.2-1

bash-completion recommends no packages.

bash-completion suggests no packages.

-- debconf-show failed
Description: 
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 bash-completion (1:1.99-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Follow symlinks on scp completion.
Author: Itaï BEN YAACOV 

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: , 
Bug: 
Bug-Debian: http://bugs.debian.org/
Bug-Ubuntu: https://launchpad.net/bugs/
Forwarded: 
Reviewed-By: 
Last-Update: 

--- bash-completion-1.99.orig/completions/ssh
+++ bash-completion-1.99/completions/ssh
@@ -266,13 +266,13 @@ _scp_remote_files()
 if [[ $1 == -d ]]; then
 # escape problematic characters; remove non-dirs
 files=$( ssh -o 'Batchmode yes' $userhost \
-command ls -aF1d "$path*" 2>/dev/null | \
+command ls -aF1dL "$path*" 2>/dev/null | \
 sed -e 's/'$_scp_path_esc'/\\&/g' -e '/[^\/]$/d' )
 else
 # escape problematic characters; remove executables, aliases, pipes
 # and sockets; add space at end of file names
 files=$( ssh -o 'Batchmode yes' $userhost \
-command ls -aF1d "$path*" 2>/dev/null | \
+command ls -aF1dL "$path*" 2>/dev/null | \
 sed -e 's/'$_scp_path_esc'/\\&/g' -e 's/[*@|=]$//g' \
 -e 's/[^\/]$/& /g' )
 fi
@@ -294,10 +294,10 @@ _scp_local_files()
 fi
 
 if $dirsonly ; then
-COMPREPLY+=( $( command ls -aF1d $cur* 2>/dev/null | \
+COMPREPLY+=( $( command ls -aF1dL $cur* 2>/dev/null | \
 sed -e "s/$_scp_path_esc/&/g" -e '/[^\/]$/d' -e "s/^/$1/") )
 else
-COMPREPLY+=( $( command ls -aF1d $cur* 2>/dev/null | \
+COMPREPLY+=( $( command ls -aF1dL $cur* 2>/dev/null | \
 sed -e "s/$_scp_path_esc/&/g" -e 's/[*@|=]$//g' \
 -e 's/[^\/]$/& /g' -e "s/^/$1/") )
 fi


Bug#666714: emacs: Emacs 23.4+1-2 freezes with 100% CPU usage with option --daemon

2012-04-03 Thread Itaï BEN YAACOV
Package: emacs23
Version: 23.4+1-2
Followup-For: Bug #666714


I also encountered this.  Two more things:

1.  Downgrading all dependencies to testing resolves the issue
(surprise).  Upgrading libglib alone from 2.30 to 2.32 brings it back.
So it's somewhere there.

2.  Also, staring emacs in text mode makes it freeze with 100% cpu.
While I did not try to check if it is again glib 2.32 which is the cause,
I have a guess, that the new glib is somehow unhappy if there is no X
connection.

Cheers,
Itai.


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

Kernel: Linux 3.2.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages emacs23 depends on:
ii  emacs23-bin-common  23.4+1-2
ii  gconf-service   3.2.3-4
ii  libasound2  1.0.25-2
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-27
ii  libcairo2   1.12.0-2
ii  libdbus-1-3 1.5.12-1
ii  libfontconfig1  2.8.0-3.1
ii  libfreetype62.4.9-1
ii  libgconf-2-43.2.3-4
ii  libgdk-pixbuf2.0-0  2.26.0-2
ii  libgif4 4.1.6-9
ii  libglib2.0-02.32.0-3
ii  libgpm2 1.20.4-4
ii  libgtk2.0-0 2.24.10-1
ii  libice6 2:1.0.7-2
ii  libjpeg88d-1
ii  libm17n-0   1.6.3-1
ii  libncurses5 5.9-5
ii  libotf0 0.9.12-1
ii  libpango1.0-0   1.30.0-1
ii  libpng12-0  1.2.47-2
ii  librsvg2-2  2.36.0-5
ii  libsm6  2:1.2.0-2
ii  libtiff43.9.6-1
ii  libtinfo5   5.9-5
ii  libx11-62:1.4.4-4
ii  libxft2 2.2.0-3
ii  libxpm4 1:3.5.9-4
ii  libxrender1 1:0.9.6-2
ii  zlib1g  1:1.2.6.dfsg-2

emacs23 recommends no packages.

Versions of packages emacs23 suggests:
pn  emacs23-common-non-dfsg  

-- debconf-show failed



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



Bug#859028: emacs24: Will you consider dropping gconf support ?

2017-03-29 Thread Itaï BEN YAACOV
Package: emacs24
Version: 24.5+1-8.1
Severity: wishlist

Dear Maintainer,

The gconf library is deprecated, and on my system, only pulled in by emacs24.
Looking for various resources on its usefulness, I only found a reference in
the GNU Emacs Manual to gconf being needed for using the system font.  This
seems outdated, gsettings should suffice.  I recompiled without gconf
support, and emacs follows changes to the system monospace font just fine.

What are the reasons for keeping support for this deprecated library in
emacs24 (and emacs25) ?  Can it be removed ?

Cheers,
Itaï.


-- System Information:
Debian Release: 9.0
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages emacs24 depends on:
ii  emacs24-bin-common 24.5+1-8.1
ii  libacl12.2.52-3+b1
ii  libasound2 1.1.3-5
ii  libatk1.0-02.22.0-1
ii  libc6  2.24-9
ii  libcairo-gobject2  1.14.8-1
ii  libcairo2  1.14.8-1
ii  libdbus-1-31.10.16-1
ii  libfontconfig1 2.11.0-6.7+b1
ii  libfreetype6   2.6.3-3+b2
ii  libgdk-pixbuf2.0-0 2.36.5-2
ii  libgif75.1.4-0.4
ii  libglib2.0-0   2.50.3-2
ii  libgnutls303.5.8-5
ii  libgomp1   6.3.0-11
ii  libgpm21.20.4-6.2+b1
ii  libgtk-3-0 3.22.11-1
ii  libice62:1.0.9-2
ii  libjpeg62-turbo1:1.5.1-2
ii  libm17n-0  1.7.0-3+b1
ii  libmagickcore-6.q16-3  8:6.9.7.4+dfsg-2
ii  libmagickwand-6.q16-3  8:6.9.7.4+dfsg-2
ii  libotf00.9.13-3+b1
ii  libpango-1.0-0 1.40.4-1
ii  libpangocairo-1.0-01.40.4-1
ii  libpng16-161.6.28-1
ii  librsvg2-2 2.40.16-1+b1
ii  libselinux12.6-3+b1
ii  libsm6 2:1.2.2-1+b3
ii  libtiff5   4.0.7-5
ii  libtinfo5  6.0+20161126-1
ii  libx11-6   2:1.6.4-3
ii  libxft22.3.2-1+b2
ii  libxinerama1   2:1.1.3-1+b3
ii  libxml22.9.4+dfsg1-2.2
ii  libxpm41:3.5.12-1
ii  libxrandr2 2:1.5.1-1
ii  libxrender11:0.9.10-1
ii  zlib1g 1:1.2.8.dfsg-5

emacs24 recommends no packages.

Versions of packages emacs24 suggests:
pn  emacs24-common-non-dfsg  

-- no debconf information


Bug#821269: firefox-esr-l10n-fr: Same for all languages

2016-06-09 Thread Itaï BEN YAACOV
Package: firefox-esr-l10n-fr
Version: 45.2.0esr-1
Followup-For: Bug #821269

Dear Maintainer,

This bug concerns all languages, not just German.
Also, wouldn't it be better to recommend
hunspell-dictionary-?? | myspell-dictionary-??,
(or just hunspell-dictionary-??), rather than a per-language
variant | variant | variant ... ?

Cheers,
Itaï.


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages firefox-esr-l10n-fr depends on:
ii  firefox-esr  45.2.0esr-1

Versions of packages firefox-esr-l10n-fr recommends:
pn  myspell-fr | myspell-fr-gut  

firefox-esr-l10n-fr suggests no packages.

-- no debconf information



Bug#827350: kupfer: Please recommend gnome-icon-theme

2016-06-15 Thread Itaï BEN YAACOV
Package: kupfer
Version: 0+v208-6.2
Severity: minor

Dear Maintainer,

With various recent changes in icon package dependencies,
nothing on my system depends on, or even recommends,
gnome-icon-theme.
With this package out, kupfer is missing some action icons, so it
should recommend it, if not even depend on it (or on a group of
packages providing equivalent icons).

Cheers,
Itaï.



-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages kupfer depends on:
ii  dbus  1.10.8-1
ii  python-dbus   1.2.4-1
ii  python-gobject3.20.1-1
ii  python-gtk2   2.24.0-4
ii  python-keybinder  0.3.1-1
ii  python-xdg0.25-4
pn  python:any

Versions of packages kupfer recommends:
pn  python-keyring  
ii  python-wnck 2.32.0+dfsg-3

Versions of packages kupfer suggests:
pn  python-cjson 
pn  python-gdata 
pn  python-qrencode  

-- no debconf information



Bug#827508: aptitude: Will not remove recommended package

2016-06-16 Thread Itaï BEN YAACOV
Package: aptitude
Version: 0.8.1-1
Severity: normal

Dear Maintainer,

I have aspell and aspell-xx installed on my system, and I want to remove them.
After marking removal and pressing 'g' it does nothing - just displays a red
status line with some suggestions it does not try to enact.

I believe this is some bug in the new treatment of 'Recommends':
libaspell Recommends an aspell dictionary, and this is about to be broken.
But instead of just warning me about it, aptitude
a. Merely suggets action to resolve this, without even telling me what
the actual problem is (no broken packages)
b. When Depends is broken pressing 'g' enacts the current suggested resolution
and we can move to actual installation / removal.  Here, it does not enact it
(which is OK - these are merely Recommends which are broken) but does not move
on to the 'let's do it' screen -- simply a flicker (so it thinks it is doing
something) but just staying where we were.  Ad infinitum.

I do not want to set APT::Install-Recommends False , since it is useful.
I just want to be able to say, OK, fine, it breaks a Recommends, now can we 
do it already ?

Cheers,
Itaï.


p.s.
Yes I know I can remove packages using other tools.


-- Package-specific info:
Terminal: xterm-256color
$DISPLAY not set.
which aptitude: /usr/bin/aptitude

aptitude version information:
aptitude 0.8.1
Compiler: g++ 5.3.1 20160429
Compiled against:
  apt version 5.0.0
  NCurses version 6.0
  libsigc++ version: 2.8.0
  Gtk+ support disabled.
  Qt support disabled.

Current library versions:
  NCurses version: ncurses 6.0.20160319
  cwidget version: 0.5.17
  Apt version: 5.0.0

aptitude linkage:
linux-vdso.so.1 (0x7ffc575c1000)
libapt-pkg.so.5.0 => /usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0 
(0x7fd3c80bd000)
libncursesw.so.5 => /lib/x86_64-linux-gnu/libncursesw.so.5 
(0x7fd3c7e8d000)
libtinfo.so.5 => /lib/x86_64-linux-gnu/libtinfo.so.5 
(0x7fd3c7c62000)
libsigc-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0 
(0x7fd3c7a5b000)
libcwidget.so.3 => /usr/lib/x86_64-linux-gnu/libcwidget.so.3 
(0x7fd3c775e000)
libsqlite3.so.0 => /usr/lib/x86_64-linux-gnu/libsqlite3.so.0 
(0x7fd3c7459000)
libboost_iostreams.so.1.58.0 => 
/usr/lib/x86_64-linux-gnu/libboost_iostreams.so.1.58.0 (0x7fd3c723f000)
libboost_filesystem.so.1.58.0 => 
/usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.58.0 (0x7fd3c7026000)
libboost_system.so.1.58.0 => 
/usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0 (0x7fd3c6e21000)
libxapian.so.22 => /usr/lib/x86_64-linux-gnu/libxapian.so.22 
(0x7fd3c6a1d000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 
(0x7fd3c680)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7fd3c647f000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x7fd3c6181000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7fd3c5f6b000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7fd3c5bc6000)
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x7fd3c59c3000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x7fd3c57bf000)
libresolv.so.2 => /lib/x86_64-linux-gnu/libresolv.so.2 
(0x7fd3c55a7000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x7fd3c538c000)
libbz2.so.1.0 => /lib/x86_64-linux-gnu/libbz2.so.1.0 
(0x7fd3c517c000)
liblzma.so.5 => /lib/x86_64-linux-gnu/liblzma.so.5 (0x7fd3c4f58000)
liblz4.so.1 => /usr/lib/x86_64-linux-gnu/liblz4.so.1 
(0x7fd3c4d46000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x7fd3c4b3d000)
libuuid.so.1 => /lib/x86_64-linux-gnu/libuuid.so.1 (0x7fd3c4938000)
/lib64/ld-linux-x86-64.so.2 (0x558736be5000)

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages aptitude depends on:
ii  aptitude-common0.8.1-1
ii  libapt-pkg5.0  1.2.13
ii  libboost-filesystem1.58.0  1.58.0+dfsg-5.1
ii  libboost-iostreams1.58.0   1.58.0+dfsg-5.1
ii  libboost-system1.58.0  1.58.0+dfsg-5.1
ii  libc6  2.22-11
ii  libcwidget3v5  0.5.17-4+b1
ii  libgcc11:6.1.1-6
ii  libncursesw5   6.0+20160319-1
ii  libsigc++-2.0-0v5  2.8.0-1
ii  libsqlite3-0   3.13.0-1
ii  libstdc++6 6.1.1-6
ii  libtinfo5  6.0+20160319-1
ii  libxapian22v5  1.2.23-1

Versions of packages aptitude recommends:
ii  libparse-debianchangelog-perl  1.2.0-8
ii  sensible-utils 0.0.9

Versions of packages aptitud

Bug#822329: aptitude: Hold Package and Upgrade Package slow

2016-04-26 Thread Itaï BEN YAACOV
Package: aptitude
Version: 0.8-1
Followup-For: Bug #822329

Dear Maintainer,

I wish to second the bug report.  I have several machines of various ages and
speeds, and on some this is a true nuisance.  I tried to install a modern Debian
(i.e., sid) on a raspberry, everything worked fine except for the several second
wait in aptitude.  I admit I did not read through the bug report this is 
supposed
to fix, but there should be a way to disable this new behaviour without breaking
basic functionality such as satifaction of "Recommends" in easy cases.

Cheers,
Itaï.


-- Package-specific info:
Terminal: xterm-256color
$DISPLAY not set.
which aptitude: /usr/bin/aptitude

aptitude version information:
aptitude 0.8
Compiler: g++ 5.3.1 20160409
Compiled against:
  apt version 5.0.0
  NCurses version 6.0
  libsigc++ version: 2.8.0
  Gtk+ support disabled.
  Qt support disabled.

Current library versions:
  NCurses version: ncurses 6.0.20160319
  cwidget version: 0.5.17
  Apt version: 5.0.0

aptitude linkage:
linux-vdso.so.1 (0x7ffc6d102000)
libapt-pkg.so.5.0 => /usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0 
(0x7fba757f3000)
libncursesw.so.5 => /lib/x86_64-linux-gnu/libncursesw.so.5 
(0x7fba755c3000)
libtinfo.so.5 => /lib/x86_64-linux-gnu/libtinfo.so.5 
(0x7fba75398000)
libsigc-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libsigc-2.0.so.0 
(0x7fba75191000)
libcwidget.so.3 => /usr/lib/x86_64-linux-gnu/libcwidget.so.3 
(0x7fba74e94000)
libsqlite3.so.0 => /usr/lib/x86_64-linux-gnu/libsqlite3.so.0 
(0x7fba74b99000)
libboost_iostreams.so.1.58.0 => 
/usr/lib/x86_64-linux-gnu/libboost_iostreams.so.1.58.0 (0x7fba7497f000)
libboost_filesystem.so.1.58.0 => 
/usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.58.0 (0x7fba74766000)
libboost_system.so.1.58.0 => 
/usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0 (0x7fba74561000)
libxapian.so.22 => /usr/lib/x86_64-linux-gnu/libxapian.so.22 
(0x7fba7415d000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 
(0x7fba73f4)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7fba73bbd000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x7fba738bf000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7fba736a9000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7fba73304000)
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x7fba73101000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x7fba72efd000)
libresolv.so.2 => /lib/x86_64-linux-gnu/libresolv.so.2 
(0x7fba72ce5000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x7fba72aca000)
libbz2.so.1.0 => /lib/x86_64-linux-gnu/libbz2.so.1.0 
(0x7fba728ba000)
liblzma.so.5 => /lib/x86_64-linux-gnu/liblzma.so.5 (0x7fba72696000)
liblz4.so.1 => /usr/lib/x86_64-linux-gnu/liblz4.so.1 
(0x7fba72484000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x7fba7227b000)
libuuid.so.1 => /lib/x86_64-linux-gnu/libuuid.so.1 (0x7fba72076000)
/lib64/ld-linux-x86-64.so.2 (0x55f0bca49000)

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages aptitude depends on:
ii  aptitude-common0.8-1
ii  libapt-pkg5.0  1.2.11
ii  libboost-filesystem1.58.0  1.58.0+dfsg-5+b1
ii  libboost-iostreams1.58.0   1.58.0+dfsg-5+b1
ii  libboost-system1.58.0  1.58.0+dfsg-5+b1
ii  libc6  2.22-7
ii  libcwidget3v5  0.5.17-4+b1
ii  libgcc11:6.0.1-2
ii  libncursesw5   6.0+20160319-1
ii  libsigc++-2.0-0v5  2.8.0-1
ii  libsqlite3-0   3.12.2-1
ii  libstdc++6 6.0.1-2
ii  libtinfo5  6.0+20160319-1
ii  libxapian22v5  1.2.23-1

Versions of packages aptitude recommends:
ii  libparse-debianchangelog-perl  1.2.0-8
ii  sensible-utils 0.0.9

Versions of packages aptitude suggests:
pn  apt-xapian-index
pn  aptitude-doc-en | aptitude-doc  
pn  debtags 
pn  tasksel 

-- no debconf information



Bug#787094: kupfer: Kupfer fails to get iceweasel 38 bookmarks

2015-05-28 Thread Itaï BEN YAACOV
Package: kupfer
Version: 0+v208-5.1
Severity: normal
Tags: patch

Dear Maintainer,

Kupfer 0+v208-5 includes a patch to replace the reading of json
bookmark files with sqlite places file.  The patch however did not
remove logic meant to look for the json file, which makes it fail
in more recent versions of iceweasel.

Attached is a more complete json -> sqlite patch.


Cheers
Itaï


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages kupfer depends on:
ii  dbus  1.8.18-1
ii  python-dbus   1.2.0-2+b3
ii  python-gobject3.14.0-1
ii  python-gtk2   2.24.0-4
ii  python-keybinder  0.3.0-3
ii  python-xdg0.25-4
pn  python:any

Versions of packages kupfer recommends:
ii  python-keyring  4.0-1
ii  python-wnck 2.32.0+dfsg-3

Versions of packages kupfer suggests:
pn  python-cjson 
pn  python-gdata 
pn  python-qrencode  

-- no debconf information
From: Itaï BEN YAACOV 
Subject: Fix the error when reading firefox bookmark files
   * Read firefox bookmarks from places.sqlite

Bug-Debian: http://bugs.debian.org/749067
Last-Update: 2014-06-07

Index: kupfer-0+v208/kupfer/plugin/firefox.py
===
--- kupfer-0+v208.orig/kupfer/plugin/firefox.py
+++ kupfer-0+v208/kupfer/plugin/firefox.py
@@ -65,12 +65,14 @@ class BookmarksSource (AppLeafContentMix
 			self.output_exc()
 
 	def _get_ffx3_bookmarks(self, fpath):
-		"""Parse Firefox' .json bookmarks backups"""
-		from kupfer.plugin import firefox3_support
-		self.output_debug("Parsing", fpath)
-		bookmarks = firefox3_support.get_bookmarks(fpath)
-		for book in bookmarks:
-			yield UrlLeaf(book["uri"], book["title"])
+		"""Query the firefox places bookmark database"""
+self.output_debug("Reading bookmarks from", fpath)
+with closing(sqlite3.connect(fpath, timeout=1)) as conn:
+c = conn.cursor()
+c.execute("""SELECT moz_places.url, moz_bookmarks.title
+ FROM moz_places, moz_bookmarks
+ WHERE moz_places.id = moz_bookmarks.fk""")
+return [UrlLeaf(url, title) for url, title in c]
 
 	def _get_ffx2_bookmarks(self, fpath):
 		"""Parse Firefox' bookmarks.html"""
@@ -88,25 +90,16 @@ class BookmarksSource (AppLeafContentMix
 		else:
 			self._history = []
 
-		# now try reading JSON bookmark backups,
+		# now try reading sqlite places file
 		# with html bookmarks as backup
-		dirloc = firefox_support.get_firefox_home_file("bookmarkbackups")
-		fpath = None
-		if dirloc:
-			files = os.listdir(dirloc)
-			if files:
-latest_file = (files.sort() or files)[-1]
-fpath = os.path.join(dirloc, latest_file)
-
-		if fpath and os.path.splitext(fpath)[-1].lower() == ".json":
+		fpath = firefox_support.get_firefox_home_file("places.sqlite")
+		if fpath:
 			try:
-json_bookmarks = list(self._get_ffx3_bookmarks(fpath))
-			except Exception:
-# Catch JSON parse errors
-# different exception for cjson and json
+sqlite3_bookmarks = self._get_ffx3_bookmarks(fpath)
+			except sqlite3.Error:
 self.output_exc()
 			else:
-return itertools.chain(self._history, json_bookmarks)
+return itertools.chain(self._history, sqlite3_bookmarks)
 
 		fpath = firefox_support.get_firefox_home_file("bookmarks.html")
 		if fpath:


Bug#807042: latexdiff: Depend or recommend on texlive-generic-recommended

2015-12-04 Thread Itaï BEN YAACOV
Package: latexdiff
Version: 1.0.4-1
Severity: normal

Dear Maintainer,

latexdiff uses ulem.sty which is in texlive-generic-recommended

Cheers,
Itaï


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages latexdiff depends on:
ii  perl  5.20.2-6

Versions of packages latexdiff recommends:
ii  texlive-latex-base   2015.20151116-1
ii  texlive-latex-extra  2015.20151116-1

Versions of packages latexdiff suggests:
ii  subversion  1.9.2-3+b1

-- no debconf information



Bug#800077: virtualbox: Cannot install 5.0.4-dfsg-3 with just modules

2015-09-26 Thread Itaï BEN YAACOV
Package: virtualbox
Version: 5.0.4-dfsg-3
Severity: normal

Dear Maintainer,

I cannot upgrade from 5.0.4-dfsg-2 to 5.0.4-dfsg-3 since the latter pre-depends 
on
virtualbox-dkms | virtualbox-source which poses two problems
1. These are not available at version 5.0.4-dfsg-3 . I assume this will be 
solved but
   I will still not be able to upgrade since I do not want any of the two 
installed :
2. They are not even necessary - virtualbox-modules is sufficient.  It makes no 
sense
   to require users to install kernel sources (or headers) in order to run 
virtualbox.

Cheers,
Itai.


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages virtualbox depends on:
ii  adduser  3.113+nmu3
ii  dpkg 1.18.3
ii  libc62.19-22
ii  libcurl3-gnutls  7.44.0-2
ii  libgcc1  1:5.2.1-17
ii  libgsoap72.8.22-1
ii  libpng12-0   1.2.50-2+b2
ii  libpython2.7 2.7.10-4
ii  libsdl1.2debian  1.2.15-11
ii  libssl1.0.0  1.0.2d-1
ii  libstdc++6   5.2.1-17
ii  libvncserver10.9.10+dfsg-3
ii  libvpx2  1.4.0-4
ii  libx11-6 2:1.6.3-1
ii  libxcursor1  1:1.1.14-1+b1
ii  libxext6 2:1.3.3-1
ii  libxml2  2.9.2+zdfsg1-4
ii  libxmu6  2:1.1.2-1
ii  libxt6   1:1.1.4-1+b1
ii  python   2.7.9-1
ii  python2.72.7.10-4
pn  python:any   
ii  zlib1g   1:1.2.8.dfsg-2+b1

Versions of packages virtualbox recommends:
ii  libgl1-mesa-glx [libgl1]  10.6.8-1
ii  libqt4-opengl 4:4.8.7+dfsg-3
ii  libqtcore44:4.8.7+dfsg-3
ii  libqtgui4 4:4.8.7+dfsg-3
ii  virtualbox-qt 5.0.4-dfsg-2
ii  virtualbox-source 5.0.4-dfsg-2

Versions of packages virtualbox suggests:
pn  vde2
ii  virtualbox-guest-additions-iso  5.0.4-1

-- no debconf information



Bug#760669: mpd: MPD crashes ion m4a with libav 11

2014-09-06 Thread Itaï BEN YAACOV
Package: mpd
Version: 0.18.12-1+b1
Severity: normal

Dear Maintainer,

Since the recompile with libav 11 (0.18.12-1+b1 or 18.13-1) MPD crashes on 
starting to play
.m4a files.  Oddly enough, this happens if it has already played an mp3, but 
not if
it has only played .flac's (or if the .m4a is first).
Going back to a version compiled agains libav 10 solves this.

I am not even sure if this is an MPD bug or a libav bug...

Cheers,
Itai.


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (600, 'unstable'), (600, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages mpd depends on:
ii  adduser   3.113+nmu3
ii  init-system-helpers   1.21
ii  libadplug-2.2.1-0 2.2.1+dfsg3-0.1
ii  libao41.1.0-3
ii  libasound21.0.28-1
ii  libaudiofile1 0.3.6-2
ii  libavahi-client3  0.6.31-4
ii  libavahi-common3  0.6.31-4
ii  libavcodec56  6:11~beta1-2
ii  libavformat56 6:11~beta1-2
ii  libavutil54   6:11~beta1-2
ii  libbz2-1.01.0.6-7
ii  libc6 2.19-10
ii  libcdio-cdda1 0.83-4.2
ii  libcdio-paranoia1 0.83-4.2
ii  libcdio13 0.83-4.2
ii  libcurl3-gnutls   7.37.1-1
ii  libfaad2  2.7-8
ii  libflac8  1.3.0-2
ii  libfluidsynth11.1.6-2
ii  libglib2.0-0  2.40.0-5
ii  libgme0   0.5.5-2
ii  libid3tag00.15.1b-11
ii  libiso9660-8  0.83-4.2
ii  libjack-jackd2-0 [libjack-0.116]  1.9.10+20140719git3eb0ae6a~dfsg-1
ii  libmad0   0.15.1b-8
ii  libmikmod33.3.6-4
ii  libmms0   0.6.2-4
ii  libmodplug1   1:0.8.8.4-4.1
ii  libmp3lame0   3.99.5+repack1-5
ii  libmpcdec62:0.1~r459-4.1
ii  libmpdclient2 2.9-1
ii  libmpg123-0   1.20.1-2
ii  libogg0   1.3.2-1
ii  libopenal11:1.15.1-5
ii  libopus0  1.1-2
ii  libpulse0 5.0-6
ii  libresid-builder0c2a  2.1.1-14
ii  libroar2  1.0~beta11-1
ii  libsamplerate00.1.8-8
ii  libshout3 2.3.1-3
ii  libsidplay2   2.1.1-14
ii  libsidutils0  2.1.1-14
ii  libsndfile1   1.0.25-9
ii  libsqlite3-0  3.8.6-1
ii  libstdc++64.9.1-12
ii  libsystemd-daemon0208-8
ii  libvorbis0a   1.3.2-1.4
ii  libvorbisenc2 1.3.2-1.4
ii  libvorbisfile31.3.2-1.4
ii  libwavpack1   4.70.0-1
ii  libwildmidi1  0.3.7-1
ii  libwrap0  7.6.q-25
ii  libyajl2  2.1.0-2
ii  libzzip-0-13  0.13.62-3
ii  lsb-base  4.1+Debian13

mpd recommends no packages.

Versions of packages mpd suggests:
ii  avahi-daemon  0.6.31-4
ii  gmpc [mpd-client] 11.8.16-9
pn  icecast2  
ii  mpc [mpd-client]  0.26-1
ii  mpdris2 [mpd-client]  0.5-1
ii  pulseaudio5.0-6

-- no debconf information


.mpdconf
Description: inode/symlink


Bug#762600: xbmc: Does not work with libcurl3 7.38.0

2014-09-23 Thread Itaï BEN YAACOV
Package: xbmc
Version: 2:13.1~rc1+dfsg1-1
Severity: normal

Dear Maintainer,

Upgrading recently to libcurl3  v. 7.38.0 breaks internet access : updating 
addons,
the TMDB scraper, and possibly other features, fail to work.  Dongrading back to
7.37.1 resolves this.

Cheers,
Itai.


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xbmc depends on:
ii  fonts-dejavu-core  2.34-1
ii  fonts-roboto   1:4.4.4r2-2
ii  libjs-iscroll  5.1.2+dfsg1-1
ii  libjs-jquery   1.7.2+dfsg-3.2
ii  mesa-utils 8.2.0-1
ii  python-imaging 2.5.3-1
pn  python:any 
ii  ttf-dejavu-core2.34-1
ii  x11-utils  7.7+2
ii  xbmc-bin   2:13.1~rc1+dfsg1-1+b2

xbmc recommends no packages.

xbmc 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#755981: evolution-data-server: this seems to have to do with ipv6 DNS issues

2014-10-18 Thread Itaï BEN YAACOV
Package: evolution-data-server
Version: 3.12.7.1-1
Followup-For: Bug #755981

Dear Maintainer,

I am experienceing the same issue, but oddly enough, it happens on one of my 
computers
but not on another although I thought they are configured very similarly.  Not 
sure why.

However:
1.  When this happens, almost all the network activity consists of bombarding 
the
DNS server with requests (checked with iftop -P)
2.  Disabling ipv6 (or even just the global ipv6 address) makes the problem 
disappear.


Hope this helps.

Cheers,
Itai.


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages evolution-data-server depends on:
ii  evolution-data-server-common  3.12.7.1-1
ii  libc6 2.19-11
ii  libcamel-1.2-49   3.12.7.1-1
ii  libdb5.3  5.3.28-6
ii  libebackend-1.2-7 3.12.7.1-1
ii  libebook-1.2-14   3.12.7.1-1
ii  libebook-contacts-1.2-0   3.12.7.1-1
ii  libecal-1.2-163.12.7.1-1
ii  libedata-book-1.2-20  3.12.7.1-1
ii  libedata-cal-1.2-23   3.12.7.1-1
ii  libedataserver-1.2-18 3.12.7.1-1
ii  libgcr-base-3-1   3.14.0-2
ii  libgcr-ui-3-1 3.14.0-2
ii  libgdata190.16.0-1
ii  libglib2.0-0  2.42.0-2
ii  libgoa-1.0-0b 3.14.0-1
ii  libgtk-3-03.14.3-1
ii  libgweather-3-6   3.14.1-1
ii  libical1  1.0-1
ii  libldap-2.4-2 2.4.39-1.1+b1
ii  libpango-1.0-01.36.8-2
ii  libsecret-1-0 0.18-1+b1
ii  libsoup2.4-1  2.48.0-1
ii  libxml2   2.9.1+dfsg1-4

evolution-data-server recommends no packages.

Versions of packages evolution-data-server suggests:
ii  evolution  3.12.7-1
pn  evolution-data-server-dbg  

-- debconf-show failed


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



Bug#769436: mpd: Fails to play some audio streams (solved in 0.19.3)

2014-11-13 Thread Itaï BEN YAACOV
Package: mpd
Version: 0.19.1-1
Severity: normal

Dear Maintainer,

mpd v 0.19.1 fails to play, e.g., 
http://mp3.live.tv-radio.com/franceinter/all/franceinterhautdebit.mp3
mpd v 0.19.3 does it fine (as did 0.18.6), so I assume upstream has already 
noticed and solved the bug.

Cheers,
Itai.


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mpd depends on:
ii  adduser   3.113+nmu3
ii  init-system-helpers   1.21
ii  libadplug-2.2.1-0 2.2.1+dfsg3-0.1
ii  libao41.1.0-3
ii  libasound21.0.28-1
ii  libaudiofile1 0.3.6-2+b1
ii  libavahi-client3  0.6.31-4+b1
ii  libavahi-common3  0.6.31-4+b1
ii  libavcodec56  6:11-2
ii  libavformat56 6:11-2
ii  libavutil54   6:11-2
ii  libbz2-1.01.0.6-7+b1
ii  libc6 2.19-13
ii  libcdio-cdda1 0.83-4.2
ii  libcdio-paranoia1 0.83-4.2
ii  libcdio13 0.83-4.2
ii  libcurl3-gnutls   7.38.0-3
ii  libdbus-1-3   1.8.10-1
ii  libexpat1 2.1.0-6+b3
ii  libfaad2  2.7-8
ii  libflac8  1.3.0-2+b1
ii  libfluidsynth11.1.6-2
ii  libglib2.0-0  2.42.1-1
ii  libgme0   0.5.5-2
ii  libicu52  52.1-6
ii  libid3tag00.15.1b-11
ii  libiso9660-8  0.83-4.2
ii  libjack-jackd2-0 [libjack-0.116]  1.9.10+20140719git3eb0ae6a~dfsg-2
ii  libmad0   0.15.1b-8
ii  libmikmod33.3.7-1
ii  libmms0   0.6.2-4
ii  libmodplug1   1:0.8.8.4-4.1+b1
ii  libmp3lame0   3.99.5+repack1-5
ii  libmp4v2-22.0.0~dfsg0-3
ii  libmpcdec62:0.1~r459-4.1
ii  libmpdclient2 2.9-1
ii  libmpg123-0   1.20.1-2
ii  libnfs4   1.9.5-2
ii  libogg0   1.3.2-1
ii  libopenal11:1.15.1-5
ii  libopus0  1.1-2
ii  libpulse0 5.0-13
ii  libresid-builder0c2a  2.1.1-14
ii  libroar2  1.0~beta11-1
ii  libsamplerate00.1.8-8
ii  libshout3 2.3.1-3
ii  libsidplay2   2.1.1-14
ii  libsidutils0  2.1.1-14
ii  libsmbclient  2:4.1.13+dfsg-2
ii  libsndfile1   1.0.25-9+b1
ii  libsoxr0  0.1.1-1
ii  libsqlite3-0  3.8.7.1-1
ii  libstdc++64.9.2-1
ii  libsystemd0   215-5+b1
ii  libupnp6  1:1.6.19+git20141001-1
ii  libvorbis0a   1.3.4-2
ii  libvorbisenc2 1.3.4-2
ii  libvorbisfile31.3.4-2
ii  libwavpack1   4.70.0-1
ii  libwildmidi1  0.3.7-1
ii  libwrap0  7.6.q-25
ii  libyajl2  2.1.0-2
ii  libzzip-0-13  0.13.62-3
ii  lsb-base  4.1+Debian13+nmu1
ii  zlib1g1:1.2.8.dfsg-2

mpd recommends no packages.

Versions of packages mpd suggests:
ii  avahi-daemon  0.6.31-4+b1
ii  gmpc [mpd-client] 11.8.16-9
pn  icecast2  
ii  mpc [mpd-client]  0.26-1
ii  mpdris2 [mpd-client]  0.5-1
ii  pulseaudio5.0-13

-- debconf-show failed


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



Bug#869560: python3-decorator: Please package 4.1.2

2017-07-24 Thread Itaï BEN YAACOV
Package: python3-decorator
Version: 4.1.1-1
Severity: normal

Dear Maintainer,

Version 4.1.1 introduced a new behaviour when decorating
coroutine functions, which breaks certain use cases.  After
a discussion I had with the author, he uploaded 4.1.2 which
behaves more sensibly (and does not break my code...)

Please upload it to unstable !

Cheers,
Itaï.


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages python3-decorator depends on:
ii  python3  3.5.3-3

python3-decorator recommends no packages.

python3-decorator suggests no packages.

-- debconf-show failed


Bug#870335: gnome-session: Gnome session creates a new kernel session keyring, without a link to the user keyring

2017-08-01 Thread Itaï BEN YAACOV
Package: gnome-session
Version: 3.22.3-1
Severity: normal

Dear Maintainer,

When logging in to console, or via ssh, typing "keyctl show" gives something 
like

Session Keyring
 365837487 --alswrv   1000  1000  keyring: _ses
 924915722 --alswrv   1000 65534   \_ keyring: _uid.1000

When logging in to gnome, I get

Session Keyring
1002009370 --alswrv   1000  1000  keyring: _ses
 226607596 s-rv  0 0   \_ user: invocation_id

without a link to the user keyring.  This breaks ecryptfs-mount-private (which
is how I found this problem).

I did this with a phoney pristine user, same behaviour, so this isn't something 
in my
dotfiles.

Better still: doing "keyctl show > SOMEFILE" in my .profile shows that when
.profile is sourced, there is a session keyring with a link to the user keyring
(so pam_keyinit is run correctly), but once in the gnome session, I get a 
different
session ring (different keyring number) without the link.

I suspect that as some stage after the .profile is invoked, a new session ring 
is created.
Not entirely sure how to debug this any further.

Cheers,
Itaï.


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages gnome-session depends on:
ii  gnome-session-bin  3.22.3-1
ii  gnome-session-common   3.22.3-1
ii  gnome-settings-daemon  3.22.2-5
ii  gnome-shell3.22.3-3

gnome-session recommends no packages.

Versions of packages gnome-session suggests:
ii  desktop-base  9.0.5
ii  gnome-keyring 3.20.1-1
ii  gnome-user-guide  3.22.0-1

-- debconf-show failed


Bug#870126: ecryptfs-utils: The problem is the link from the session ring

2017-08-01 Thread Itaï BEN YAACOV
Package: ecryptfs-utils
Followup-For: Bug #870126


Hello,

1. The problem is the user keyring not being linked
to the session keyring.   keyctl link @u @s   is a much easier workaround.

2. For me this happens only in gnome sessions (not console or ssh)
Is this the same for you?

(see also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870335 )

Cheers,
Itaï.



-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages ecryptfs-utils depends on:
ii  gettext-base0.19.8.1-2+b1
ii  keyutils1.5.9-9
ii  libassuan0  2.4.3-2
ii  libc6   2.24-12
ii  libecryptfs1111-4
ii  libgpg-error0   1.27-3
ii  libgpgme11  1.8.0-3+b3
ii  libkeyutils11.5.9-9
ii  libpam-runtime  1.1.8-3.6
ii  libpam0g1.1.8-3.6
ii  libtspi10.3.14+fixed1-1

ecryptfs-utils recommends no packages.

Versions of packages ecryptfs-utils suggests:
pn  cryptsetup  

-- debconf-show failed


Bug#845666: emacs: Please allow replacing emacs24 with emacs25

2016-11-25 Thread Itaï BEN YAACOV
Package: emacs
Version: 46.1
Severity: normal

Dear Maintainer,

Please add "or" dependencies on emacs25 and its variants.

Cheers,
Itaï.

-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages emacs depends on:
ii  emacs24  24.5+1-7

emacs recommends no packages.

emacs suggests no packages.

-- no debconf information



Bug#1025326: tigervnc-standalone-server: Upgrade of libgl1-mesa-dri to 22.3.0 breaks Xvnc

2022-12-02 Thread Itaï BEN YAACOV
Package: tigervnc-standalone-server
Version: 1.12.0+dfsg-5
Severity: normal

Dear Maintainer,

Having upgraded mesa to 22.3.0, Xvnc will not start, giving the following:





Xvnc TigerVNC 1.12.0 - built 2022-07-09 14:10
Copyright (C) 1999-2021 TigerVNC Team and many others (see README.rst)
See https://www.tigervnc.org for information on TigerVNC.
Underlying X server release 12101004, X.Org


Fri Dec  2 14:46:58 2022
 vncext:  VNC extension running!
 vncext:  Listening for VNC connections on local interface(s), port 5910
 vncext:  created VNC server for screen 0
(EE) 
(EE) Backtrace:
(EE) 0: /usr/bin/Xtigervnc (OsLookupColor+0x139) [0x564f7b36e2d9]
(EE) 1: /lib/x86_64-linux-gnu/libc.so.6 (__sigaction+0x40) [0x7fcc4345af90]
(EE) unw_get_proc_name failed: no unwind info found [-10]
(EE) 2: /lib64/ld-linux-x86-64.so.2 (?+0x0) [0x7fcc4402e029]
(EE) 3: /lib/x86_64-linux-gnu/libc.so.6 (_dl_catch_exception+0x7a) 
[0x7fcc4356de9a]
(EE) 4: /lib/x86_64-linux-gnu/libc.so.6 (_dl_catch_error+0x2f) [0x7fcc4356df4f]
(EE) 5: /lib/x86_64-linux-gnu/libc.so.6 (dlerror+0x297) [0x7fcc434a3dc7]
(EE) 6: /lib/x86_64-linux-gnu/libc.so.6 (dlclose+0x36) [0x7fcc434a3b26]
(EE) 7: /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(nouveau_drm_screen_create+0x1d50f4) [0x7fcc40ee7f44]
(EE) 8: /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(nouveau_drm_screen_create+0x1d4340) [0x7fcc40ee7190]
(EE) unw_get_proc_name failed: no unwind info found [-10]
(EE) 9: /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so (?+0x0) [0x7fcc404aa179]
(EE) 10: /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_d3d12+0x60ae16) [0x7fcc40ab5156]
(EE) 11: /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_d3d12+0x60ad84) [0x7fcc40ab50c4]
(EE) 12: /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_d3d12+0x6f4) [0x7fcc404aaa34]
(EE) 13: /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_d3d12+0xa175) [0x7fcc404b44b5]
(EE) 14: /usr/bin/Xtigervnc (__glGetProcAddress+0x677) [0x564f7b22c417]
(EE) 15: /usr/bin/Xtigervnc (RecordCreateSet+0x47f) [0x564f7b22b2df]
(EE) 16: /usr/bin/Xtigervnc (_CallCallbacks+0x34) [0x564f7b31c894]
(EE) 17: /usr/bin/Xtigervnc (GlxExtensionInit+0x152) [0x564f7b24c602]
(EE) 18: /usr/bin/Xtigervnc (InitExtensions+0x89) [0x564f7b1ed7a9]
(EE) 19: /usr/bin/Xtigervnc (dix_main+0x1a8) [0x564f7b31b398]
(EE) 20: /lib/x86_64-linux-gnu/libc.so.6 (__libc_init_first+0x8a) 
[0x7fcc4344618a]
(EE) 21: /lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0x85) 
[0x7fcc43446245]
(EE) 22: /usr/bin/Xtigervnc (_start+0x21) [0x564f7b1eb7f1]
(EE) 
(EE) Segmentation fault at address 0x337
(EE) 
Fatal server error:
(EE) Caught signal 11 (Segmentation fault). Server aborting
(EE) 





Downgrading libgl1-mesa-dri to 22.2.4 solves this (even if it is the only 
package downgraded, 
leaving some "broken").  So I guess the problem must be in some incomatible 
change in the
swrast_dri.so module.

Cheers,
Itaï


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

Kernel: Linux 6.0.0-5-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages tigervnc-standalone-server depends on:
ii  libaudit1   1:3.0.7-1.1+b2
ii  libbsd0 0.11.7-1
ii  libc6   2.36-6
ii  libfile-readbackwards-perl  1.06-2
ii  libgcrypt20 1.10.1-3
ii  libgl1  1.5.0-1
ii  libgnutls30 3.7.8-4
ii  libjpeg62-turbo 1:2.1.2-1+b1
ii  libpam0g1.5.2-5
ii  libpixman-1-0   0.42.2-1
ii  libselinux1 3.4-1+b3
ii  libstdc++6  12.2.0-9
ii  libsystemd0 252.2-1
ii  libunwind8  1.6.2-2
ii  libxau6 1:1.0.9-1
ii  libxdmcp6   1:1.1.2-3
ii  libxfont2   1:2.0.6-1
ii  perl5.36.0-4
ii  tigervnc-common 1.12.0+dfsg-5
ii  x11-xkb-utils   7.7+7
ii  xauth   1:1.1.1-1
ii  xkb-data2.35.1-1
ii  zlib1g  1:1.2.13.dfsg-1

Versions of packages tigervnc-standalone-server recommends:
ii  libgl1-mesa-dri22.2.4-1
ii  tigervnc-tools 1.12.0+dfsg-5
ii  x11-xserver-utils  7.7+9+b1
ii  xfonts-base1:1.0.5

Versions of packages tigervnc-standalone-server suggests:
ii  openssl   3.0.7-1
pn  xfonts-100dpi | xfonts-75dpi  
pn  xfonts-scalable   

-- no debconf information


Bug#1025326: tigervnc-standalone-server: tigervnc-standalone-server: Upgrade of libgl1-mesa-dri to 22.3.0 breaks Xvnc

2022-12-07 Thread Itaï BEN YAACOV

Yes, it is.  So it was a mesa bug, sorry about this.

Cheers,
Itaï

Le mardi 06 décembre 2022 à 22:33 +0100, Agustin Martin a écrit :
> El lun, 5 dic 2022 a las 13:40, Agustin Martin
> () escribió:
> > 
> > Hi,
> > 
> > Looking at
> > 
> > https://bugs.debian.org/1025312 [libgl1-mesa-dri: multiple packages
> > FTBFS and have autopkgtest regressions running test programs under
> > Xvfb] I noticed that this #1025326 bug report is mentioned as a
> > possible duplicate of #1025312.
> 
> This should be fixed in libgl1-mesa-dri 22.3.0-2, already in sid.
> Please check.
> 
> Thanks,
> 


Bug#905166: Enable support for Opus

2023-04-13 Thread Itaï BEN YAACOV
Package: sox
Version: 14.4.2+git20190427-3.5
Followup-For: Bug #905166

Dear Maintainer,

I second this request.  Right now I need to have my own recompiled version
of sox for this.   I can confirm that enabling opus is both easy and, for
some users, useful.

Cheers,
Itaï


-- System Information:
Debian Release: 12.0
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 6.1.0-7-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages sox depends on:
ii  libc6 2.36-9
ii  libsox-fmt-base   14.4.2+git20190427-3.5
ii  libsox-fmt-pulse  14.4.2+git20190427-3.5
ii  libsox3   14.4.2+git20190427-3.5

sox recommends no packages.

Versions of packages sox suggests:
pn  libsox-fmt-all  

-- debconf-show failed


Bug#1018173: libreoffice: Please upload final releases

2022-08-26 Thread Itaï BEN YAACOV
Source: libreoffice
Version: 1:7.4.0~rc3-1
Severity: wishlist

Dear Maintainer,

Since 7.3.1 (which is no longer installable) you have only uploaded release 
candidates
to Debian/sid.  Please consider uploading final releases as well, before moving 
on to
candidates of the next release.

1. I understand that unstable is the place to stage pre-release software.  But 
this
does not mean it must only contain such.  Moreover, given Debian's slow release 
cycle
some users (such as myself) use it for daily work, rather than for testing new 
software.

2. I am **guessing** that you might answer that the last release candidate in 
each
cycle is the final release -- but this is merely a guess (is it, actually?)
The point is that this is developer logic, but from the point of view of a user,
just being told "this is the final 7.something.whatever release" is so much 
easier
and does not involve any guesswork.  (Also, you know it when it is uploaded, 
rather
than when the first candidate for the next release is uploaded).

If the final release is indeed equal to some rc#, then, as pointless as this 
may seem
to you, could you please just bump up the version number and upload again as 
final?

Many thanks !!

Cheers,
Itaï


-- System Information:
Debian Release: bookworm/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
merged-usr: no
Architecture: amd64 (x86_64)

Kernel: Linux 5.18.0-4-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled


Bug#463373: xkb-data: grp:alts_toggle broken

2008-01-30 Thread Itaï BEN YAACOV
Package: xkb-data
Version: 1.1~cvs.20080104.1-1
Severity: normal


Ever since 1.1~cvs.20080104.1-1 grp:alts_toggle does not work any more, as in:

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "us(intl),il"
Option  "XkbOptions""grp:alts_toggle"
EndSection

Installing xkb-data_1.0~cvs.20070916-1ubuntu1_all.deb saves the day.

Cheers,
Itai.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- no debconf information



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



Bug#509191: locales: New French month abbrevs (fr_FR ver 4.4) are not fixed length

2008-12-19 Thread Itaï BEN YAACOV
Package: locales
Version: 2.8+20080809-3
Severity: normal


Hello,

locales version 2.8 switched from version 4.3 to 4.4 of fr_FR.  The
changes in the file are mostly to the abbreviations, and in my view
to the worse.

-  Month name abbreviations were changed from a fixed three letter
length (jan, féb, etc.) to variable length, ranging from 3 (mai) to
5 (juil., avril).
-  A period was added to all weekday abbrevs, increasing from 3 to 4
letters (but this time keeping it fixed).

Working in text mode this is enough of a nuisance to make me switch to
an English locale, where all abbrevs are still 3 letter, without period,
as I believe is the standard.

Would you consider reverting to the old fr_FR ?

Cheers,
Itai BEN YAACOV

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages locales depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  libc6 [glibc-2.8-1]   2.8+20080809-1 GNU C Library: Shared libraries

locales recommends no packages.

locales suggests no packages.

-- debconf information:
* locales/default_environment_locale: fr_FR.UTF-8
* locales/locales_to_be_generated: en_GB.UTF-8 UTF-8, fr_FR.UTF-8 UTF-8, 
he_IL.UTF-8 UTF-8



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



Bug#463373: xkb-data: Patch resolving the issue

2008-12-29 Thread Itaï BEN YAACOV
Package: xkb-data
Version: 1.4-1
Followup-For: Bug #463373




Yes, that patch also resolves the issue.



-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 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#381435: mail-notification: Causes file descriptor leak in bonobo-ativation-server

2006-08-04 Thread Itaï BEN YAACOV
Package: mail-notification
Version: 3.0.dfsg.1-3
Severity: normal


(This is an upstream bug, but I could not find a bug tracking system
for upstream.)

mail-notification causes bonobo-activation-server to leak file
descriptors (opens too many pipes).  I ran across this in the
following situation:

Tell mail-notification to watch an evolution mailbox with a pretty
frequent update interval (not sure whether the last one is really
necessary).  Then close evolution, so mail-notification usually
displays a funny "cannot access mailbox" icon in the notification
area.
Now the bonobo-activation server starts opening file descriptors (and
not close them) at an alarming rate -- this can be observed in
/proc/###/fd
Pretty soon 1024 file descriptors are open.
Then trying to open a gnome-terminal just means sending bonobo
on a 100% cpu trip, no terminal opening.  According to strace, bonobo
just tries to open pipes and fails due to too many open files.

Cheers,
Itay.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17-phichsa-1
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages mail-notification depends on:
ii  gnome-icon-theme2.14.2-1 GNOME Desktop icon theme
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libatk1.0-0 1.12.1-1 The ATK accessibility toolkit
ii  libaudiofile0   0.2.6-6  Open-source version of SGI's audio
ii  libavahi-client30.6.12-1 Avahi client library
ii  libavahi-common30.6.12-1 Avahi common library
ii  libavahi-glib1  0.6.12-1 Avahi glib integration library
ii  libbonobo2-02.14.0-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.14.0-3 The Bonobo UI library
ii  libc6   2.3.6-18 GNU C Library: Shared libraries
ii  libcairo2   1.2.0-5  The Cairo 2D vector graphics libra
ii  libdbus-1-2 0.62-4   simple interprocess messaging syst
ii  libeel2-2   2.14.3-1 Eazel Extensions Library (for GNOM
ii  libesd-alsa0 [libesd0]  0.2.36-3 Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libgail-common  1.8.11-2 GNOME Accessibility Implementation
ii  libgail17   1.8.11-2 GNOME Accessibility Implementation
ii  libgconf2-4 2.14.0-2 GNOME configuration database syste
ii  libgcrypt11 1.2.2-3  LGPL Crypto library - runtime libr
ii  libglade2-0 1:2.5.1-2library to load .glade files at ru
ii  libglib2.0-02.10.3-3 The GLib library of C routines
ii  libgmime2.1 2.1.19-1 MIME library, unstable version
ii  libgnome-keyring0   0.4.9-1  GNOME keyring services library
ii  libgnome2-0 2.14.1-2 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.14.0-2 A powerful object-oriented display
ii  libgnomeui-02.14.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  2.14.2-1 GNOME virtual file-system (runtime
ii  libgnutls13 1.4.1-1  the GNU TLS library - runtime libr
ii  libgpg-error0   1.2-1library for common error values an
ii  libgtk2.0-0 2.8.18-6 The GTK+ graphical user interface 
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  liborbit2   1:2.14.0-2   libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.12.3-1+b1  Layout and rendering of internatio
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libpopt01.10-2   lib for parsing cmdline parameters
ii  libsasl22.1.19.dfsg1-0.2 Authentication abstraction library
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libtasn1-3  0.3.5-2  Manage ASN.1 structures (runtime)
ii  libx11-62:1.0.0-7X11 client-side library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11:1.0.1-4X11 Xinerama extension library
ii  libxml2 2.6.26.dfsg-3GNOME XML library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1

Bug#548423: addressbook fails with "Error loading address book" (after 2.28 upgrade)

2009-09-26 Thread Itaï BEN YAACOV
Package: evolution
Version: 2.28.0-2
Severity: normal



Hello,

Same problem here.  It looks like a problem with evolution-data-server.
For some reason the 2.28 version is compiled against libdb4.5, which may
have trouble reading libdb4.7 format (which is what evolution 2.26 was
compiled against in Debian).  Recompiling against libdb4.7 solves the
issue.  I haven't tried compiling against 4.8.

Cheers,
Itai.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (600, 'unstable'), (600, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages evolution depends on:
ii  dbus   1.2.16-2  simple interprocess messaging syst
ii  debconf [debconf-2.0]  1.5.27Debian configuration management sy
ii  evolution-common   2.28.0-2  architecture independent files for
ii  evolution-data-server  2.28.0-2  evolution database backend server
ii  gconf2 2.26.2-3  GNOME configuration database syste
ii  gnome-icon-theme   2.26.0-1  GNOME Desktop icon theme
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.28.0-1  The ATK accessibility toolkit
ii  libbluetooth3  4.42-2Library to use the BlueZ Linux Blu
ii  libbonobo2-0   2.24.2-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.2-1  The Bonobo UI library
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libcamel1.2-14 2.28.0-2  The Evolution MIME message handlin
ii  libdbus-1-31.2.16-2  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.82-1simple interprocess messaging syst
ii  libebackend1.2-0   2.28.0-2  Utility library for evolution data
ii  libebook1.2-9  2.28.0-2  Client library for evolution addre
ii  libecal1.2-7   2.28.0-2  Client library for evolution calen
ii  libedataserver1.2-11   2.28.0-2  Utility library for evolution data
ii  libedataserverui1.2-8  2.28.0-2  GUI utility library for evolution 
ii  libegroupwise1.2-132.28.0-2  Client library for accessing group
ii  libenchant1c2a 1.4.2-3.3 a wrapper library for various spel
ii  libexchange-storage1.2 2.28.0-2  Client library for accessing Excha
ii  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.9-5   FreeType 2 font engine, shared lib
ii  libgconf2-42.26.2-3  GNOME configuration database syste
ii  libgdata-google1.2-1   2.28.0-2  Client library for accessing Googl
ii  libgdata1.2-1  2.28.0-2  Client library for accessing Googl
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.22.0-1  The GLib library of C routines
ii  libgnome-desktop-2-11  2.26.1-1  Utility library for loading .deskt
ii  libgnome-pilot22.0.15-2.4Support libraries for gnome-pilot
ii  libgnome2-02.26.0-1  The GNOME library - runtime files
ii  libgnomecanvas2-0  2.26.0-1  A powerful object-oriented display
ii  libgnomeui-0   2.24.2-1  The GNOME libraries (User Interfac
ii  libgnomevfs2-0 1:2.24.1-4GNOME Virtual File System (runtime
ii  libgtk2.0-02.18.0-1  The GTK+ graphical user interface 
ii  libgtkhtml-editor0 3.28.0-3  HTML rendering/editing library - e
ii  libgtkhtml3.14-19  3.28.0-3  HTML rendering/editing library - r
ii  libgweather1   2.28.0-1  GWeather shared library
ii  libhal10.5.13-3  Hardware Abstraction Layer - share
ii  libical0   0.43-3iCalendar library implementation i
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libldap-2.4-2  2.4.17-2  OpenLDAP libraries
ii  libnotify1 [libnotify1 0.4.5-1   sends desktop notifications to a n
ii  libnspr4-0d4.8-1 NetScape Portable Runtime Library
ii  libnss3-1d 3.12.3.1-1Network Security Service libraries
ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.26.0-1  Layout and rendering of internatio
ii  libpisock9 0.12.4-6  library for communicating with a P
ii  libpisync1 0.12.4-6  synchronization library for PalmOS
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.1.1-1 X11 Session Management l

Bug#548423: addressbook fails with "Error loading address book" (after 2.28 upgrade)

2009-09-27 Thread Itaï BEN YAACOV
Package: evolution
Version: 2.28.0-2
Severity: normal



OK : I just see that python2.5 2.5.4-2  was uploded linked against libdb4.5
(while 2.5.4-1.1 was linked against libdb4.8).  So there's a bigger problem
here than this, at the level of the builder or something.  I am not a Debian
developper and do not know whom to contact, but those of you who do, please
do it FAST.

Cheers,
Itai.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages evolution depends on:
ii  dbus   1.2.16-2  simple interprocess messaging syst
ii  debconf [debconf-2.0]  1.5.27Debian configuration management sy
ii  evolution-common   2.28.0-2  architecture independent files for
ii  evolution-data-server  2.28.0-2  evolution database backend server
ii  gconf2 2.26.2-3  GNOME configuration database syste
ii  gnome-icon-theme   2.26.0-1  GNOME Desktop icon theme
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.28.0-1  The ATK accessibility toolkit
ii  libbluetooth3  4.42-2Library to use the BlueZ Linux Blu
ii  libbonobo2-0   2.24.2-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.2-1  The Bonobo UI library
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libcamel1.2-14 2.28.0-2  The Evolution MIME message handlin
ii  libdbus-1-31.2.16-2  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.82-1simple interprocess messaging syst
ii  libebackend1.2-0   2.28.0-2  Utility library for evolution data
ii  libebook1.2-9  2.28.0-2  Client library for evolution addre
ii  libecal1.2-7   2.28.0-2  Client library for evolution calen
ii  libedataserver1.2-11   2.28.0-2  Utility library for evolution data
ii  libedataserverui1.2-8  2.28.0-2  GUI utility library for evolution 
ii  libegroupwise1.2-132.28.0-2  Client library for accessing group
ii  libenchant1c2a 1.4.2-3.3 a wrapper library for various spel
ii  libexchange-storage1.2 2.28.0-2  Client library for accessing Excha
ii  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.9-5   FreeType 2 font engine, shared lib
ii  libgconf2-42.26.2-3  GNOME configuration database syste
ii  libgdata-google1.2-1   2.28.0-2  Client library for accessing Googl
ii  libgdata1.2-1  2.28.0-2  Client library for accessing Googl
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.22.0-1  The GLib library of C routines
ii  libgnome-desktop-2-11  2.26.1-1  Utility library for loading .deskt
ii  libgnome-pilot22.0.15-2.4Support libraries for gnome-pilot
ii  libgnome2-02.26.0-1  The GNOME library - runtime files
ii  libgnomecanvas2-0  2.26.0-1  A powerful object-oriented display
ii  libgnomeui-0   2.24.2-1  The GNOME libraries (User Interfac
ii  libgnomevfs2-0 1:2.24.1-4GNOME Virtual File System (runtime
ii  libgtk2.0-02.18.0-1  The GTK+ graphical user interface 
ii  libgtkhtml-editor0 3.28.0-3  HTML rendering/editing library - e
ii  libgtkhtml3.14-19  3.28.0-3  HTML rendering/editing library - r
ii  libgweather1   2.28.0-1  GWeather shared library
ii  libhal10.5.13-3  Hardware Abstraction Layer - share
ii  libical0   0.43-3iCalendar library implementation i
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libldap-2.4-2  2.4.17-2  OpenLDAP libraries
ii  libnotify1 [libnotify1 0.4.5-1   sends desktop notifications to a n
ii  libnspr4-0d4.8-1 NetScape Portable Runtime Library
ii  libnss3-1d 3.12.3.1-1Network Security Service libraries
ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.26.0-1  Layout and rendering of internatio
ii  libpisock9 0.12.4-6  library for communicating with a P
ii  libpisync1 0.12.4-6  synchronization library for PalmOS
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libsoup2.4-1   2.28.0-1

Bug#549021: udev: After upgrade to 146-3, fuse device has group root

2009-09-30 Thread Itaï BEN YAACOV
Package: udev
Version: 146-3
Severity: normal



With udev 146-3, the /dev/fuse device is created root.root, rather than
root.fuse as it used to, making it unusable without root intervention.

Cheers,
Itai.


-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 8
lrwxrwxrwx 1 root root   19 May 25 09:17 025_libgphoto2.rules -> 
../libgphoto2.rules
-rw-r--r-- 1 root root 1195 Sep 28 15:51 70-persistent-cd.rules
-rw-r--r-- 1 root root  371 Sep 30 15:44 70-persistent-net.rules

-- /sys/:
/sys/dev
/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1/dev
/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2/dev
/sys/devices/pci:00/:00:01.0/:01:00.0/drm/card0/dev
/sys/devices/pci:00/:00:1d.0/usb2/2-0:1.0/usb_endpoint/usbdev2.1_ep81/dev
/sys/devices/pci:00/:00:1d.0/usb2/dev
/sys/devices/pci:00/:00:1d.0/usb2/usb_device/usbdev2.1/dev
/sys/devices/pci:00/:00:1d.0/usb2/usb_endpoint/usbdev2.1_ep00/dev
/sys/devices/pci:00/:00:1d.0/usbmon/usbmon2/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-0:1.0/usb_endpoint/usbdev3.1_ep81/dev
/sys/devices/pci:00/:00:1d.1/usb3/dev
/sys/devices/pci:00/:00:1d.1/usb3/usb_device/usbdev3.1/dev
/sys/devices/pci:00/:00:1d.1/usb3/usb_endpoint/usbdev3.1_ep00/dev
/sys/devices/pci:00/:00:1d.1/usbmon/usbmon3/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-0:1.0/usb_endpoint/usbdev4.1_ep81/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.0/0003:046D:C517.0001/hidraw/hidraw0/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.0/input/input4/event4/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.0/usb_endpoint/usbdev4.2_ep81/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/0003:046D:C517.0002/hidraw/hidraw1/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/input/input5/event5/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/input/input5/mouse1/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/usb/hiddev0/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/usb_endpoint/usbdev4.2_ep82/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/usb_device/usbdev4.2/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/usb_endpoint/usbdev4.2_ep00/dev
/sys/devices/pci:00/:00:1d.2/usb4/dev
/sys/devices/pci:00/:00:1d.2/usb4/usb_device/usbdev4.1/dev
/sys/devices/pci:00/:00:1d.2/usb4/usb_endpoint/usbdev4.1_ep00/dev
/sys/devices/pci:00/:00:1d.2/usbmon/usbmon4/dev
/sys/devices/pci:00/:00:1d.3/usb5/5-0:1.0/usb_endpoint/usbdev5.1_ep81/dev
/sys/devices/pci:00/:00:1d.3/usb5/dev
/sys/devices/pci:00/:00:1d.3/usb5/usb_device/usbdev5.1/dev
/sys/devices/pci:00/:00:1d.3/usb5/usb_endpoint/usbdev5.1_ep00/dev
/sys/devices/pci:00/:00:1d.3/usbmon/usbmon5/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-0:1.0/usb_endpoint/usbdev1.1_ep81/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.0/input/input3/event3/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.0/usb_endpoint/usbdev1.2_ep87/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.0/video4linux/video0/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/audio1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/controlC1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/dsp1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/mixer1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/pcmC1D0c/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/usb_device/usbdev1.2/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/usb_endpoint/usbdev1.2_ep00/dev
/sys/devices/pci:00/:00:1d.7/usb1/dev
/sys/devices/pci:00/:00:1d.7/usb1/usb_device/usbdev1.1/dev
/sys/devices/pci:00/:00:1d.7/usb1/usb_endpoint/usbdev1.1_ep00/dev
/sys/devices/pci:00/:00:1d.7/usbmon/usbmon1/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/adsp/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/audio/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/controlC0/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/dsp/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/mixer/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/pcmC0D0c/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/pcmC0D0p/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/pcmC0D1c/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/pcmC0D2c/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/pcmC0D3c/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/pcmC0D4p/dev
/sys/devices/pci:00/:00:1f.1/ide0/0.0/block/hda/dev
/sys/devices/pci:00/:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/dev
/sys/devices/pci:00/:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda1/dev
/sys/devices/pci:00/:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda4/dev

Bug#549258: libgnome2-0: Menu icons gone after upgrade to 2.28.0-1

2009-10-01 Thread Itaï BEN YAACOV
Package: libgnome2-0
Version: 2.28.0-1
Severity: normal


Hello,

After upgrading to 2.28.0-1, SOME menu icons disappear from the main
gnome menu : all icons in the system menu, and icons for the
last three entries in the shortcuts menu.  Also, in iceweasel, in the
search engines area, the icon corresponding to the current search engine
is there all right, but in the popup allowing to choose the search engine
all the icons are gone.

Downgrading to 2.26.0-1 brings them back

Any idea why ?

Cheers,
Itai.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libgnome2-0 depends on:
ii  gvfs   1.4.0-2   userspace virtual filesystem - ser
ii  libaudiofile0  0.2.6-7   Open-source version of SGI's audio
ii  libbonobo2-0   2.24.2-1  Bonobo CORBA interfaces library
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libesd-alsa0 [libesd0] 0.2.41-5  Enlightened Sound Daemon (ALSA) - 
ii  libgconf2-42.26.2-3  GNOME configuration database syste
ii  libglib2.0-0   2.22.1-1  The GLib library of C routines
ii  libgnome2-common   2.28.0-1  The GNOME library - common files
ii  libgnomevfs2-0 1:2.24.1-4GNOME Virtual File System (runtime
ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpopt0   1.14-4lib for parsing cmdline parameters

libgnome2-0 recommends no packages.

libgnome2-0 suggests no packages.

-- no debconf information



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



Bug#541712: libdbus-glib-1-2: Since 0.82-1, nm-connection-editor fails to modify system connections

2009-08-15 Thread Itaï BEN YAACOV
Package: libdbus-glib-1-2
Version: 0.82-1
Severity: normal


Since libdbus-glib-1-2 was upgraded to 0.82-1, nm-connection-editor fails
to modify system connections.  Instead of asking for root password it
does nothing and prints

** (nm-connection-editor:12150): WARNING **: Caught error: Method 
"ObtainAuthorization" with signature "suu" on interface 
"org.freedesktop.PolicyKit.AuthenticationAgent" doesn't exist

Downgrading libdbus-glib-1-2 to 0.80 solves the problem.

(see bug #540421 filed against network-manager-gnome, I do not know
how to reassign bugs..)

Cheers,
Itai BEN YAACOV.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libdbus-glib-1-2 depends on:
ii  libc6 2.9-24 GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.16-2   simple interprocess messaging syst
ii  libglib2.0-0  2.20.4-1   The GLib library of C routines

libdbus-glib-1-2 recommends no packages.

libdbus-glib-1-2 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#541712: Since 0.82-1, nm-connection-editor fails to modify system connections

2009-09-23 Thread Itaï BEN YAACOV
Package: libdbus-glib-1-2
Version: 0.82-1
Severity: normal


On the upstream bug page (https://bugs.freedesktop.org/show_bug.cgi?id=23297)
there are patches which are supposed to solve this.  I personally checked
that the second one does indeed do the trick (by now it is crossed out,
newer patches should probably be better).  While waiting for new upstream
intergrating this, can you release a version with this applied ?

Cheers,
Itai.



-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libdbus-glib-1-2 depends on:
ii  libc6 2.9-26 GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.16-2   simple interprocess messaging syst
ii  libglib2.0-0  2.22.0-1   The GLib library of C routines

libdbus-glib-1-2 recommends no packages.

libdbus-glib-1-2 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#538153: virtualbox-ose: Superfluous dependency on python2.4 ?

2009-07-23 Thread Itaï BEN YAACOV
Package: virtualbox-ose
Version: 3.0.2-dfsg-1
Severity: minor


virtualbox-ose now depends on both python2.4 and python2.5 .  Are both
necessary ?


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages virtualbox-ose depends on:
ii  adduser3.110 add and remove users and groups
ii  debconf [debconf-2.0]  1.5.27Debian configuration management sy
ii  libc6  2.9-21GNU C Library: Shared libraries
ii  libcurl3   7.19.5-1  Multi-protocol file transfer libra
ii  libgcc11:4.4.0-11GCC support library
ii  libsdl1.2debian1.2.13-4+b1   Simple DirectMedia Layer
ii  libssl0.9.80.9.8k-3  SSL shared libraries
ii  libstdc++6 4.4.0-11  The GNU Standard C++ Library v3
ii  libx11-6   2:1.2.2-1 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxml22.7.3.dfsg-2  GNOME XML library
ii  libxmu62:1.0.4-1 X11 miscellaneous utility library
ii  libxslt1.1 1.1.24-2  XSLT processing library - runtime 
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  python 2.5.4-2   An interactive high-level object-o
ii  python2.4  2.4.6-2   An interactive high-level object-o
ii  python2.5  2.5.4-1   An interactive high-level object-o
ii  zlib1g 1:1.2.3.3.dfsg-14 compression library - runtime

Versions of packages virtualbox-ose recommends:
ii  libgl1-mesa-glx [l 7.5-2 A free implementation of the OpenG
ii  virtualbox-ose-mod 3.0.0-dfsg-1+2.6.30-1 VirtualBox modules for Linux (kern
ii  virtualbox-ose-qt  3.0.2-dfsg-1  x86 virtualization solution - Qt b

Versions of packages virtualbox-ose suggests:
pn  virtualbox-guest-additions (no description available)
ii  virtualbox-ose-source   3.0.2-dfsg-1 x86 virtualization solution - kern

-- 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#550683: udev missing when coming back from runlevel 1

2009-10-12 Thread Itaï BEN YAACOV
Package: udev
Version: 146-5
Severity: normal


When going to runlevel one with "telinit 1" udev is stopped.  On
coming back, it is not started again.  Results vary from failing
wireless network to complete system unusability (e.g., when gdm
starts X and the radeon driver requires some firmware).

Cheers,
Itai.


-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 8
lrwxrwxrwx 1 root root   19 May 25 09:17 025_libgphoto2.rules -> 
../libgphoto2.rules
-rw-r--r-- 1 root root 1195 Sep 28 15:51 70-persistent-cd.rules
-rw-r--r-- 1 root root  371 Sep 30 15:44 70-persistent-net.rules

-- /sys/:
/sys/dev
/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1/dev
/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2/dev
/sys/devices/pci:00/:00:01.0/:01:00.0/drm/card0/dev
/sys/devices/pci:00/:00:1d.0/usb2/2-0:1.0/usb_endpoint/usbdev2.1_ep81/dev
/sys/devices/pci:00/:00:1d.0/usb2/dev
/sys/devices/pci:00/:00:1d.0/usb2/usb_device/usbdev2.1/dev
/sys/devices/pci:00/:00:1d.0/usb2/usb_endpoint/usbdev2.1_ep00/dev
/sys/devices/pci:00/:00:1d.0/usbmon/usbmon2/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-0:1.0/usb_endpoint/usbdev3.1_ep81/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-2/3-2:1.0/usb_endpoint/usbdev3.2_ep02/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-2/3-2:1.0/usb_endpoint/usbdev3.2_ep81/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-2/3-2:1.0/usb_endpoint/usbdev3.2_ep82/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-2/3-2:1.1/usb_endpoint/usbdev3.2_ep03/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-2/3-2:1.1/usb_endpoint/usbdev3.2_ep83/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-2/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-2/usb_device/usbdev3.2/dev
/sys/devices/pci:00/:00:1d.1/usb3/3-2/usb_endpoint/usbdev3.2_ep00/dev
/sys/devices/pci:00/:00:1d.1/usb3/dev
/sys/devices/pci:00/:00:1d.1/usb3/usb_device/usbdev3.1/dev
/sys/devices/pci:00/:00:1d.1/usb3/usb_endpoint/usbdev3.1_ep00/dev
/sys/devices/pci:00/:00:1d.1/usbmon/usbmon3/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-0:1.0/usb_endpoint/usbdev4.1_ep81/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.0/0003:046D:C517.0001/hidraw/hidraw0/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.0/input/input4/event4/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.0/usb_endpoint/usbdev4.2_ep81/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/0003:046D:C517.0002/hidraw/hidraw1/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/input/input5/event5/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/input/input5/mouse1/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/usb/hiddev0/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/4-2:1.1/usb_endpoint/usbdev4.2_ep82/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/usb_device/usbdev4.2/dev
/sys/devices/pci:00/:00:1d.2/usb4/4-2/usb_endpoint/usbdev4.2_ep00/dev
/sys/devices/pci:00/:00:1d.2/usb4/dev
/sys/devices/pci:00/:00:1d.2/usb4/usb_device/usbdev4.1/dev
/sys/devices/pci:00/:00:1d.2/usb4/usb_endpoint/usbdev4.1_ep00/dev
/sys/devices/pci:00/:00:1d.2/usbmon/usbmon4/dev
/sys/devices/pci:00/:00:1d.3/usb5/5-0:1.0/usb_endpoint/usbdev5.1_ep81/dev
/sys/devices/pci:00/:00:1d.3/usb5/dev
/sys/devices/pci:00/:00:1d.3/usb5/usb_device/usbdev5.1/dev
/sys/devices/pci:00/:00:1d.3/usb5/usb_endpoint/usbdev5.1_ep00/dev
/sys/devices/pci:00/:00:1d.3/usbmon/usbmon5/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-0:1.0/usb_endpoint/usbdev1.1_ep81/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.0/input/input3/event3/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.0/usb_endpoint/usbdev1.2_ep87/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.0/video4linux/video0/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/audio1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/controlC1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/dsp1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/mixer1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/1-1:1.2/sound/card1/pcmC1D0c/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/usb_device/usbdev1.2/dev
/sys/devices/pci:00/:00:1d.7/usb1/1-1/usb_endpoint/usbdev1.2_ep00/dev
/sys/devices/pci:00/:00:1d.7/usb1/dev
/sys/devices/pci:00/:00:1d.7/usb1/usb_device/usbdev1.1/dev
/sys/devices/pci:00/:00:1d.7/usb1/usb_endpoint/usbdev1.1_ep00/dev
/sys/devices/pci:00/:00:1d.7/usbmon/usbmon1/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/adsp/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/audio/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/controlC0/dev
/sys/devices/pci:00/:00:1e.2/sound/card0/dsp/d

Bug#463373: xkb-data: Patch resolving the issue

2008-05-01 Thread Itaï BEN YAACOV
Package: xkb-data
Version: 1.2~cvs.20080501.1-1
Followup-For: Bug #463373


I attach a patch with which alts_toggle works again.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- no debconf information
Index: xkb-data/symbols/group
===
--- xkb-data.orig/symbols/group 2007-09-26 13:43:48.0 +0200
+++ xkb-data/symbols/group  2008-04-08 23:34:40.0 +0200
@@ -232,12 +232,12 @@
 xkb_symbols "ctrls_toggle" {
   virtual_modifiers LControl, RControl;
 key  {
-   type[Group1]="PC_RCONTROL_LEVEL2",
+   type[Group1]="PC_CONTROL_LEVEL2",
symbols[Group1]= [ NoSymbol,ISO_Prev_Group ],
virtualMods= LControl
 };
 key  {
-   type[Group1]="PC_LCONTROL_LEVEL2",
+   type[Group1]="PC_CONTROL_LEVEL2",
symbols[Group1]= [ NoSymbol,ISO_Next_Group ],
virtualMods= RControl
 };
@@ -248,12 +248,12 @@
 xkb_symbols "alts_toggle" {
   virtual_modifiers LAlt, RAlt;
 key  {
-   type[Group1]="PC_RALT_LEVEL2",
+   type[Group1]="PC_ALT_LEVEL2",
symbols[Group1]= [ NoSymbol,ISO_Prev_Group ],
virtualMods= LAlt
 };
 key  {
-   type[Group1]="PC_LALT_LEVEL2",
+   type[Group1]="PC_ALT_LEVEL2",
symbols[Group1]= [ NoSymbol,ISO_Next_Group ],
virtualMods= RAlt
 };


Bug#483683: xkb-data: "grp:alts_toggle" correction patch

2008-05-30 Thread Itaï BEN YAACOV
Package: xkb-data
Version: 1.3-1
Severity: normal
Tags: patch



-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- no debconf information



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



Bug#483687: xkb-data: "grp:alts_toggle" correction patch

2008-05-30 Thread Itaï BEN YAACOV
Package: xkb-data
Version: 1.3-1
Severity: normal
Tags: patch



I attach a patch for correcting a problem with "grp:alts_toggle" and 
"grp:ctrls_toggle" options.  This problem is present ever since version 1.1.





-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- no debconf information

*** build/xkb/xkeyboard-config-1.3/debian/patches/repair_toggle.diff
Index: xkb-data/symbols/group
===
--- xkb-data.orig/symbols/group 2007-09-26 13:43:48.0 +0200
+++ xkb-data/symbols/group  2008-04-08 23:34:40.0 +0200
@@ -232,12 +232,12 @@
 xkb_symbols "ctrls_toggle" {
   virtual_modifiers LControl, RControl;
 key  {
-   type[Group1]="PC_RCONTROL_LEVEL2",
+   type[Group1]="PC_CONTROL_LEVEL2",
symbols[Group1]= [ NoSymbol,ISO_Prev_Group ],
virtualMods= LControl
 };
 key  {
-   type[Group1]="PC_LCONTROL_LEVEL2",
+   type[Group1]="PC_CONTROL_LEVEL2",
symbols[Group1]= [ NoSymbol,ISO_Next_Group ],
virtualMods= RControl
 };
@@ -248,12 +248,12 @@
 xkb_symbols "alts_toggle" {
   virtual_modifiers LAlt, RAlt;
 key  {
-   type[Group1]="PC_RALT_LEVEL2",
+   type[Group1]="PC_ALT_LEVEL2",
symbols[Group1]= [ NoSymbol,ISO_Prev_Group ],
virtualMods= LAlt
 };
 key  {
-   type[Group1]="PC_LALT_LEVEL2",
+   type[Group1]="PC_ALT_LEVEL2",
symbols[Group1]= [ NoSymbol,ISO_Next_Group ],
virtualMods= RAlt
 };



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



Bug#470038: afuse 0.2 + sshfs extremely slow

2008-03-08 Thread Itaï BEN YAACOV
Package: afuse
Version: 0.2-1
Severity: normal


I use sshfs over afuse for a long time.  At start-up I run the following
useful little script, then everything works very nicely (or at least,
used to):

#! /bin/sh

mountpoint=$HOME/.afuse

fusermount -u -z $mountpoint
killall -9 afuse sshfs ssh
afuse $mountpoint \
  -o mount_template="sshfs %r:/ %m -C \
 -o reconnect -o idmap=user -o workaround=rename" \
  -o unmount_template="fusermount -z -u %m"


Since the upgrade to 0.2, accessing the mounted remotes becomes slow to
the point of making them altogether unusable (and even causing on one
occasion loss of data).  Reverting to 0.1.1 solves everything.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages afuse depends on:
ii  libc6 2.7-9  GNU C Library: Shared libraries
ii  libfuse2  2.7.2-1Filesystem in USErspace library

afuse recommends no packages.

-- no debconf information



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



Bug#568896: linux-image-2.6.32-2-amd64 segfaults 32bit executables

2010-02-08 Thread Itaï BEN YAACOV
Package: linux-2.6
Version: 2.6.32-7
Severity: normal


I run an amd64 installation, using 32bit solely in order to run skype.
With linux-image-2.6.32-2-amd64 32bit exectutables segfault
immediately, e.g. :

strace skype
execve("/usr/bin/skype", ["skype"], [/* 37 vars */]) = 0
[ Process PID=2766 runs in 32 bit mode. ]
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++
Erreur de segmentation

strace /lib32/ld-linux.so.2
execve("/lib32/ld-linux.so.2", ["/lib32/ld-linux.so.2"], [/* 37 vars */]) = 0
[ Process PID=2778 runs in 32 bit mode. ]
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++
Erreur de segmentation

This error does not appear in earlier kernels (2.6.32-1-amd64
and 2.6.32-trunk-amd64).

Any idea why ?

All the best,
Itai.

-- Package-specific info:
** Version:
Linux version 2.6.32-2-amd64 (Debian 2.6.32-7) (da...@debian.org) (gcc version 
4.3.4 (Debian 4.3.4-6) ) #1 SMP Thu Feb 4 01:59:06 UTC 2010

** Command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.32-2-amd64 
root=UUID=ad22ee96-9f5d-4294-9373-08a81de4b442 ro quiet

** Not tainted

** Kernel log:
[   14.678378] uhci_hcd :00:1d.1: irq 22, io base 0xff60
[   14.678438] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[   14.678443] usb usb3: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   14.678446] usb usb3: Product: UHCI Host Controller
[   14.678449] usb usb3: Manufacturer: Linux 2.6.32-2-amd64 uhci_hcd
[   14.678452] usb usb3: SerialNumber: :00:1d.1
[   14.678554] usb usb3: configuration #1 chosen from 1 choice
[   14.678607] hub 3-0:1.0: USB hub found
[   14.678618] hub 3-0:1.0: 2 ports detected
[   14.678701]   alloc irq_desc for 18 on node -1
[   14.678704]   alloc kstat_irqs on node -1
[   14.678711] uhci_hcd :00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[   14.678721] uhci_hcd :00:1d.2: setting latency timer to 64
[   14.678725] uhci_hcd :00:1d.2: UHCI Host Controller
[   14.678737] uhci_hcd :00:1d.2: new USB bus registered, assigned bus 
number 4
[   14.678776] uhci_hcd :00:1d.2: irq 18, io base 0xff40
[   14.678833] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   14.678837] usb usb4: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   14.678840] usb usb4: Product: UHCI Host Controller
[   14.678843] usb usb4: Manufacturer: Linux 2.6.32-2-amd64 uhci_hcd
[   14.678845] usb usb4: SerialNumber: :00:1d.2
[   14.678955] usb usb4: configuration #1 chosen from 1 choice
[   14.678997] hub 4-0:1.0: USB hub found
[   14.679006] hub 4-0:1.0: 2 ports detected
[   14.679077] uhci_hcd :00:1d.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[   14.679087] uhci_hcd :00:1d.3: setting latency timer to 64
[   14.679092] uhci_hcd :00:1d.3: UHCI Host Controller
[   14.679104] uhci_hcd :00:1d.3: new USB bus registered, assigned bus 
number 5
[   14.679132] uhci_hcd :00:1d.3: irq 23, io base 0xff20
[   14.679180] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[   14.679184] usb usb5: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[   14.679187] usb usb5: Product: UHCI Host Controller
[   14.679189] usb usb5: Manufacturer: Linux 2.6.32-2-amd64 uhci_hcd
[   14.679192] usb usb5: SerialNumber: :00:1d.3
[   14.679278] usb usb5: configuration #1 chosen from 1 choice
[   14.679324] hub 5-0:1.0: USB hub found
[   14.679333] hub 5-0:1.0: 2 ports detected
[   14.862257] Adding 3903752k swap on /dev/sda5.  Priority:-1 extents:1 
across:3903752k 
[   14.910820] usb 1-2: New USB device found, idVendor=046d, idProduct=08ca
[   14.910825] usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=2
[   14.910829] usb 1-2: SerialNumber: 2AA4EC95
[   14.910960] usb 1-2: configuration #1 chosen from 1 choice
[   14.981929] loop: module loaded
[   14.997016] Linux video capture interface: v2.00
[   15.089186] uvcvideo: Found UVC 1.00 device  (046d:08ca)
[   15.105132] input: UVC Camera (046d:08ca) as 
/devices/pci:00/:00:1d.7/usb1/1-2/1-2:1.0/input/input3
[   15.105218] usbcore: registered new interface driver uvcvideo
[   15.105226] USB Video Class driver (v0.1.0)
[   15.138741] usbcore: registered new interface driver snd-usb-audio
[   15.316020] usb 4-1: new full speed USB device using uhci_hcd and address 2
[   15.459712] EXT4-fs (sda6): mounted filesystem with ordered data mode
[   15.554898] usb 4-1: New USB device found, idVendor=0a12, idProduct=0001
[   15.554904] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   15.555036] usb 4-1: configuration #1 chosen from 1 choice
[   15.767115] Bluetooth: Core ver 2.15
[   15.767202] NET: Registered protocol family 31
[   15.767206] Bluetooth: HCI device and connection manager initialized
[   15.767209] Bluetooth: HCI socket layer initialized
[   15.787669] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   15.787905] usbcore: registered new interface driver btusb
[   15.796027] usb 4-2: new low speed USB device u

Bug#608802: ghostscript: version 8.71~dfsg2-6.1 breaks preview-latex-style

2011-01-03 Thread Itaï BEN YAACOV
Package: ghostscript
Version: 8.71~dfsg2-6.1
Severity: normal


Upgrading from 8.71~dfsg2-6 to 8.71~dfsg2-6.1 breaks preview-latex-style
under auctex - no preview images are generated.  Downgrading to 8.71~dfsg2-6
resolves the problem.

Follows a typical error message from the ghostscript compilation of a
preview image:

gs -dOutputFile\=\(_region_.prv/tmp40084pH/pr1-812.png\) -q -dSAFER -dNOPAUSE 
-DNOPLATFONTS -dPrinted -dTextAlphaBits\=4 -dGraphicsAlphaBits\=4 -dH.S -dH.A 
-dH.V -sDEVICE\=png16m -r115.33x115.538
GS>{DELAYSAFER{.setsafe}if}stopped pop/.preview-BP currentpagedevice/BeginPage 
get dup null eq{pop{pop}bind}if def<>setpagedevice/preview-do{[count 3 roll save]3 1 roll dup length 0 
eq{pop}{setpagedevice}{ifelse .runandhide}stopped{handleerror quit}if aload pop 
restore}bind def [(_region_.prv/tmp40084pH/preview.ps)(r)file]aload exch dup 0 
setfileposition 358533()/SubFileDecode filter cvx .runandhide aload pop dup dup 
358533 setfileposition 126()/SubFileDecode filter cvx<<>>preview-do
Error: /typecheck in --setfileposition--
Operand stack:
   --nostringval--   (_region_.prv/tmp40084pH/preview.ps)   (r)   (r)   (r)   
361382   361382   361382   361280   361280   361280   361160   361160   361160  
 361058   361058   361058   360956   360956   360956   360645   360645   360645 
  481491   481491   481491   481359   481359   481359   481201   481201   
481201   480981   480981   480981   480874   480874   480874   480713   480713  
 480713   480484   480484   480484   480293   480293   480293   480115   480115 
  480115   479779   479779   479779   479616   479616   479616   479510   
479510   479510   479382   479382   479382   479254   479254   479254   479112  
 479112   479112   478970   478970   478970   478802   478802   478802   478652 
  478652   478652   478514   478514   478514   478376   478376   478376   
478219   478219   478219   478069   478069   478069   477963   477963   477963  
 477128   477128   477128   477005   477005   477005   476839   476839   476839 
  476694   476694   476694   476569   476569   476
 569   476431   476431   476431   476293   476293   476293   476168   476168   
476168   475984   475984   475984   475859   475859   475859   475731   475731  
 475731   475568   475568   475568   475445   475445   475445   475314   475314 
  475314   475183   475183   475183   475007   475007   475007   474815   
474815   474815   474694   474694   474694   474552   474552   474552   474410  
 474410   474410   474295   474295   474295   474172   474172   474172   473818 
  473818   473818   473703   473703   473703   473510   473510   473510   
473368   473368   473368   473240   473240   473240   473051   473051   473051  
 472893   472893   472893   472701   472701   472701   472566   472566   472566 
  472374   472374   472374   472239   472239   472239   472050   472050   
472050   471916   471916   471916   471727   471727   471727   471618   471618  
 471618   471473   471473   471473   471312   471312   471312   471206   471206 
  471206   471083   471083   471083   470974   47
 0974   470974   470835   470835   470835   470697   470697   470697   470539   
470539   470539   470378   470378   470378   470250   470250   470250   470122  
 470122   470122   46   46   46   469890   469890   469890   469759 
  469759   469759   469628   469628   469628   469519   469519   469519   
469377   469377   469377   469235   469235   469235   469129   469129   469129  
 468987   468987   468987   468845   468845   468845   468683   468683   468683 
  468577   468577   468577   468471   468471   468471   468326   468326   
468326   468155   468155   468155   468024   468024   468024   467876   467876  
 467876   467649   467649   467649   467469   467469   467469   467363   467363 
  467363   467257   467257   467257   467103   467103   467103   466997   
466997   466997   466886   466886   466886   466780   466780   466780   466637  
 466637   466637   466492   466492   466492   466367   466367   466367   466201 
  466201   466201   466039   466039   466039   4
 65930   465930   465930   465756   465756   465756   465590   465590   465590  
 465347   465347   465347   465107   465107   465107   464889   464889   464889 
  464783   464783   464783   464612   464612   464612   464377   464377   
464377   464245   464245   464245   464011   464011   464011   463839   463839  
 463839   463694   463694   463694   463520   463520   463520   463377   463377 
  463377   463211   463211   463211   463045   463045   463045   462904   
462904   462904   462664   462664   462664   462484   462484   462484   462351  
 462351   462351   462245   462245   462245   462032   462032   462032   461887 
  461887   461887   461753   461753   461753   461545   461545   461545   
461383   461383   461383   461175   461175   461175   461044   461044   461044  
 460899   460899   460899   460741   460741   460741   460579   460579   460579 
  460400   460400   460400   460246   460246  

Bug#612985: libglib2.0-0: glib 2.28 and g_file_query_default_handler

2011-02-18 Thread Itaï BEN YAACOV
Package: libglib2.0-0
Version: 2.28.0-1
Severity: normal

My two bits of extra info.
First, this is clearly a problem in 2.28.0, downgrading to 2.24
(from squeeze) solves the issue.  Looking bit deeper in
gvfs-open, the problem is in g_file_query_default_handler.

Now here is an extra bit which I haven't seen reported yet.
Assume I launch

gvfs-open http://www.google.fr

Then it runs iceweasel (default - no other browsers installed)
correctly, even though I configured a personalised script, as in
earlier reports, whcih is annoying.  However, lauching :

gvfs-open http://www.ingdirect.fr

I get

gvfs-open : http://www.ingdirect.fr : erreur d'ouverture d'un emplacement : 
Erreur HTTP : Connection terminated unexpectedly

Going back to gvfs-open, our problematic g_file_query_default_handler
simply returns NULL.  Clicking on the same link from, say, evolution,
has the funnier effect of putting evolution in an infinite loop.

I did not venture to debug g_file_query_default_handler...

All the best,
I.

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

Kernel: Linux 2.6.37-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libglib2.0-0 depends on:
ii  libc6   2.11.2-11Embedded GNU C Library: Shared lib
ii  libpcre38.12-2   Perl 5 Compatible Regular Expressi
ii  libselinux1 2.0.96-1 SELinux runtime shared libraries
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages libglib2.0-0 recommends:
ii  libglib2.0-data   2.28.0-1   Common files for GLib library
ii  shared-mime-info  0.90-1 FreeDesktop.org shared MIME databa

libglib2.0-0 suggests no packages.

-- debconf-show failed



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



Bug#520706: nvidia-kernel-source: It is a KERNEL_SOURCE vs KERNEL_OUTPUT issue

2009-04-06 Thread Itaï BEN YAACOV
Package: nvidia-kernel-source
Version: 180.29-1
Severity: normal


After looking for several complicated solutions I found a relatively easy one -
(after copying the Makefile_32.cpu file of course)
you just need to set the KERNEL_SOURCES to the -common directory and
KERNEL_OUTPUT to the -686 (in my case) directory.
For example, I did something ugly like defining KCOM to the -common dir and 
then modifying the debian/rules file to 

IGNORE_CC_MISMATCH=1 CC="$(CC)" $(MAKE) -C $(CURDIR)/$(dirname) -f Makefile 
SYSSRC=$(KCOM) KERNEL_OUTPUT=$(KSRC) $(KPKG_EXTRAV_ARG) 
KBUILD_PARAMS=$(KBUILD_PARAMS) module;

the debian/rules file can probably be modified more intelligently to figure the 
-common dir from the
flavoured headers dir by itself.  In any case, this worked for me...


Cheers,
Itai.







-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.29-1-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages nvidia-kernel-source depends on:
ii  debhelper 7.2.7  helper programs for debian/rules
ii  dpatch2.0.31 patch maintenance system for Debia
ii  make  3.81-5 The GNU version of the "make" util
ii  sed   4.1.5-8The GNU sed stream editor

Versions of packages nvidia-kernel-source recommends:
ii  devscripts2.10.47scripts to make the life of a Debi
ii  kernel-package11.017 A utility for building Linux kerne
pn  nvidia-glx (no description available)

nvidia-kernel-source 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#553058: should at least suggest python-coherence

2009-11-10 Thread Itaï BEN YAACOV
Package: totem-plugins
Version: 2.28.2-3
Severity: normal


Hello,

Could you please at least lower the dependency level to Recommends ?

Thanks,
Itai.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages totem-plugins depends on:
ii  libatk1.0-0 1.28.0-1 The ATK accessibility toolkit
ii  libavahi-client30.6.25-1 Avahi client library
ii  libavahi-common30.6.25-1 Avahi common library
ii  libavahi-glib1  0.6.25-1 Avahi glib integration library
ii  libbluetooth3   4.56-2   Library to use the BlueZ Linux Blu
ii  libc6   2.10.1-6 GNU C Library: Shared libraries
ii  libcairo2   1.8.8-2  The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.16-2 simple interprocess messaging syst
ii  libdbus-glib-1-20.82-2   simple interprocess messaging syst
ii  libepc-1.0-20.3.10-2 Easy Publish and Consume library -
ii  libepc-ui-1.0-2 0.3.10-2 Easy Publish and Consume library -
ii  libfontconfig1  2.6.0-4  generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgalago3  0.5.2-2  Galago presence library
ii  libgdata6   0.5.0-1  Library for accessing GData webser
ii  libglib2.0-02.22.2-2 The GLib library of C routines
ii  libgtk2.0-0 2.18.3-1 The GTK+ graphical user interface 
ii  liblircclient0  0.8.3-5  infra-red remote control support -
ii  libpango1.0-0   1.26.0-1 Layout and rendering of internatio
ii  libsoup2.4-12.28.1-3 an HTTP library implementation in 
ii  libtrackerclient0   0.6.95-3 metadata database, indexer and sea
ii  libx11-62:1.2.2-1X11 client-side library
ii  libxml2 2.7.6.dfsg-1 GNOME XML library
ii  libxtst62:1.0.3-1X11 Testing -- Resource extension 
ii  python  2.5.4-2  An interactive high-level object-o
ii  python-beautifulsoup3.1.0.1-2error-tolerant HTML parser for Pyt
ii  python-feedparser   4.1-14   Universal Feed Parser for Python
ii  python-gconf2.28.0-1 Python bindings for the GConf conf
ii  python-gdata1.1.1-1  Google Data Python client library
ii  python-gdbm 2.5.2-1.1GNU dbm database support for Pytho
ii  python-gobject  2.20.0-1 Python bindings for the GObject li
ii  python-gst0.10  0.10.17-1generic media-playing framework (P
ii  python-gtk2 2.16.0-1 Python bindings for the GTK+ widge
ii  python-httplib2 0.5.0-1  comprehensive HTTP client library 
ii  python-rdflib   2.4.2-1  RDF library containing an RDF trip
ii  python-support  1.0.4automated rebuilding support for P
ii  python-xdg  0.17-0.1 Python library to access freedeskt
ii  totem   2.28.2-3 A simple media player for the GNOM

Versions of packages totem-plugins recommends:
ii  gnome-settings-daemon 2.28.1-1   daemon handling the GNOME session 

Versions of packages totem-plugins suggests:
pn  gromit (no description available)

-- 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#876754: kupfer: Recommend introspection wnck

2017-09-25 Thread Itaï BEN YAACOV
Package: kupfer
Version: 0+v319-2
Severity: minor

Dear Maintainer,

The new kupfer shoud recommend gir1.2-wnck-3.0 in place of python3-wnck .
I also think that it is really python3-cairo it uses, and not
python3-gi-cairo, but this does not affect functionality.

Yours,
Itaï.


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages kupfer depends on:
ii  gir1.2-gtk-3.03.22.21-1
ii  gir1.2-keybinder-3.0  0.3.1-1
ii  python3   3.5.3-3
ii  python3-dbus  1.2.4-1+b2
ii  python3-gi-cairo  3.24.1-3
ii  python3-xdg   0.25-4

Versions of packages kupfer recommends:
pn  python3-wnck  
ii  yelp  3.22.0-1

Versions of packages kupfer suggests:
pn  gir1.2-appindicator3-0.1  
pn  python3-setproctitle  

-- no debconf information


Bug#952870: radicale: Since 2.1.11-8 radicale cannot be started by non-root

2020-03-01 Thread Itaï BEN YAACOV
Package: radicale
Version: 2.1.11-8
Severity: important

Dear Maintainer,

Changes to the logging configuration in 2.1.11-8 make it impossible to start
by an ordinary user, who cannot write to /var/log/radicale (and probably
does not want to, either).

Cheers,
Itaï.


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

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

Versions of packages radicale depends on:
ii  adduser  3.118
ii  init-system-helpers  1.57
ii  lsb-base 11.1.0
ii  python3  3.7.5-3
ii  python3-radicale 2.1.11-7

Versions of packages radicale recommends:
ii  ssl-cert  1.0.39

Versions of packages radicale suggests:
pn  apache2 
pn  apache2-utils   
pn  libapache2-mod-proxy-uwsgi  
ii  python3-bcrypt  3.1.7-2
ii  python3-passlib 1.7.2-1
pn  uwsgi   
pn  uwsgi-plugin-python3

-- no debconf information


Bug#951973: auctex: FTBFS: configure: error: Cannot find the texmf directory!

2020-03-11 Thread Itaï BEN YAACOV
Package: auctex
Followup-For: Bug #951973

Dear Maintainer,

This is due to /usr/bin/kpsetool having been moved to texlive-extra-utils.
Build-Depends on the later will solve it I believe.

Cheers,
Itaï.


Bug#896844: auctex: Preview latex doesn't work - fixed upstream.

2020-03-11 Thread Itaï BEN YAACOV
Package: auctex
Followup-For: Bug #896844

Hello,

For this reason I have been maintaining my own version of auctex at

http://math.univ-lyon1.fr/homes-www/begnac/debian/begnac/

Not being a Debian I cannot / do not know how to file an NMU.

Incidentally, I emailed the maintainer (Davide).  To whether he was still
maintaining this package I got a single word « Yes ».  As to when this bug
is going to be fixed, no reply.

Cheers,
Itaï.


Bug#941847: libenchant1c2a: Wrong dependency

2019-10-06 Thread Itaï BEN YAACOV
Package: libenchant1c2a
Version: 1.6.0-11.2
Severity: normal

Dear Maintainer,

Unavailable dependency "hunspell-directory" should be "hunspell-dictionary".

Cheers,
Itaï.


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

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

Versions of packages libenchant1c2a depends on:
ii  hunspell-en-us 1:2018.04.16-1
ii  libaspell150.60.7-3
ii  libc6  2.29-2
ii  libgcc11:9.2.1-8
ii  libglib2.0-0   2.62.0-3
ii  libhunspell-1.7-0  1.7.0-2+b1
ii  libstdc++6 9.2.1-8
ii  zlib1g 1:1.2.11.dfsg-1+b1

Versions of packages libenchant1c2a recommends:
ii  enchant  1.6.0-11.2

Versions of packages libenchant1c2a suggests:
pn  libenchant-voikko  

-- no debconf information


Bug#939028: ITP: syncevolution -- Sync personal information data via SyncML/CalDAV/CardDAV

2019-08-31 Thread Itaï BEN YAACOV
Package: wnpp
Severity: wishlist
Owner: Itaï BEN YAACOV 

* Package name: syncevolution
  Version : 1.5.3
  Upstream Author : 
* URL : http://www.syncevolution.org
* License : LGPL 2.1 ou 3 (choice given)
  Programming Lang: C++
  Description : Sync personal information data via SyncML/CalDAV/CardDAV

 SyncEvolution synchronizes contact, calendar and task items via SyncML and
 CalDAV/CardDAV with other servers or devices. It uses the Evolution Data Server
 to sync PIM data in Evolution, but a plain file storage is also supported.
 Data exchange can happen via HTTP(S) and Bluetooth. Full, one-way and
 incremental synchronization of items are supported. SyncEvolution can act as
 a SyncML/DAV client and SyncML server.


Package was removed due to qt4 dependency by a non-essential part.
Debian maintainer Tino Mettler  non-responsive.
Propose to repackage without the parts that depend on qt4 (possibly
move them to qt5 later?).

In any case, I use this package on a daily basis.

Not a Debian developer (but have experience with Debian packaging).
Need a sponsor.

Cheers,
Itaï.


Bug#935239: ftp.debian.org: Package does not depend on qt4

2019-08-25 Thread Itaï BEN YAACOV
Package: ftp.debian.org
Followup-For: Bug #935239

Hello,

I do not understand why this is being removed. In any case the subject
line is wrong -- the package does not use qt4 (the ui package, which I
do not use, depends on gtk3).

The only similar issue I could see was bug #890170 -- dependence on
python-gobject, which Debian wants out.  If this is the case,
removing a useful package (for me at least) is a bit extreme?  If the
maintainer has gone silent, I am perfectly willing to do the trivial
modifications and forward them to someone who has upload rights.

Cheers,
Itaï


Bug#998161: closed by Debian FTP Masters (reply to Christian Marillat ) (Bug#998161: fixed in gourmand 1.0.0-3)

2021-12-05 Thread Itaï BEN YAACOV
Hi,

Looks like the same bug persists in gourmand.

...
File "/usr/lib/python3/dist-packages/gourmand/backends/db.py", line
759, in fetch_len
return table.count().execute().fetchone()[0]
AttributeError: 'Table' object has no attribute 'count'

Chhers,
Itaï

Le dimanche 05 décembre 2021 à 19:03 +, Debian Bug Tracking System
a écrit :
> This is an automatic notification regarding your Bug report
> which was filed against the gourmet package:
> 
> #998161: gourmet: Fails to run with sqlalchemy 1.4.23, due to removal
> of FromClause.count()
> 
> It has been closed by Debian FTP Masters
>  (reply to Christian Marillat
> ).
> 
> 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 Debian FTP
> Masters  (reply to Christian
> Marillat ) by
> replying to this email.
> 
> 



Bug#998161: gourmet: Fails to run with sqlalchemy 1.4.23, due to removal of FromClause.count()

2021-10-31 Thread Itaï BEN YAACOV
Package: gourmet
Version: 1.0.1-2
Severity: grave
Tags: upstream
Justification: renders package unusable

Dear Maintainer,

gourmet fails to run with python3-sqlalchemy v 1.4.23 (in sid).
Reason : removal of FromClause.count() (which was already deprecated in v 1.3).
This is an upstream problem, of course. A quick look in 

https://github.com/kirienko/gourmet/tree/master/src/gourmet

suggests this has not yet been corrected.

Cheers,
Itaï



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

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

Versions of packages gourmet depends on:
ii  gir1.2-gtk-3.0   3.24.30-3
ii  python3  3.9.2-3
ii  python3-argcomplete  1.12.3-0.1
ii  python3-bs4  4.10.0-2
ii  python3-gi   3.42.0-1+b1
ii  python3-gst-1.0  1.18.5-1
ii  python3-lxml 4.6.3+dfsg-1
ii  python3-pil  8.3.2-1
ii  python3-reportlab3.6.1-1
ii  python3-requests 2.25.1+dfsg-2
ii  python3-sqlalchemy   1.4.23+ds1-2
ii  python3-toml 0.10.2-1

Versions of packages gourmet recommends:
pn  kpython3-gtkspellcheck  
pn  python3-pyglet  

Versions of packages gourmet suggests:
pn  python3-ebooklib  

-- no debconf information


Bug#916125: hunspell: "hunspell -D" does not print loaded dictionary

2018-12-10 Thread Itaï BEN YAACOV
Package: hunspell
Version: 1.7.0-2
Severity: normal
Tags: patch upstream

Dear Maintainer,

Commit 27829f0 which pplies to version 1.7.0 makes "hunspell -D" without files 
quit early.
Too early to print the loaded dictionary, making "hunspell -D" not perform as 
expexted, and
breaking eacs flyspell.

Reverting the commit, or moving the leave logic a little later, solves this.

cheers,
Itaï.

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages hunspell depends on:
ii  hunspell-en-gb [hunspell-dictionary] 1:6.1.3-1
ii  hunspell-es [hunspell-dictionary]1:6.1.3-1
ii  hunspell-fr-classical [hunspell-dictionary]  1:6.3-1
ii  hunspell-he [hunspell-dictionary]1:6.1.3-1
ii  libc62.28-2
ii  libgcc1  1:8.2.0-12
ii  libhunspell-1.7-01.7.0-2
ii  libncursesw6 6.1+20181013-1
ii  libreadline7 7.0-5
ii  libstdc++6   8.2.0-12
ii  libtinfo66.1+20181013-1

hunspell recommends no packages.

Versions of packages hunspell suggests:
ii  unzip  6.0-21

-- no debconf information
Description: 
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 hunspell (1.7.0-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Exit little less early on -D with no file args
Author: Itaï BEN YAACOV 

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: , 
Bug: 
Bug-Debian: https://bugs.debian.org/
Bug-Ubuntu: https://launchpad.net/bugs/
Forwarded: 
Reviewed-By: 
Last-Update: 2018-12-10

--- hunspell-1.7.0.orig/src/tools/hunspell.cxx
+++ hunspell-1.7.0/src/tools/hunspell.cxx
@@ -2066,9 +2066,6 @@ int main(int argc, char** argv) {
 gettext(
 "AVAILABLE DICTIONARIES (path is not mandatory for -d 
option):\n"));
 search(path, NULL, NULL);
-if (-1 == arg_files) {
-  exit(0);
-}
   }
 
   if (!privdicname)
@@ -2116,6 +2113,10 @@ int main(int argc, char** argv) {
 exit(1);
   }
 
+  if (showpath && -1 == arg_files) {
+exit(0);
+  }
+
   /* open the private dictionaries */
   if (HOME) {
 buf.assign(HOME);


Bug#1016731: dictionaries-common: Badly generated /var/cache/dictionaries-common/emacsen-ispell-dicts.el for Hebrew

2022-08-06 Thread Itaï BEN YAACOV
Package: dictionaries-common
Version: 1.28.15
Severity: normal

Dear Maintainer,

With hunspell-he installed, starting emacs I get the following error message :

Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
Error while loading 50dictionaries-common: Invalid read syntax: "] in a list"

Without that package, no problem.
The origin seems to be in the file 
/var/cache/dictionaries-common/emacsen-ispell-dicts.el , that contains the 
following lines :

(add-to-list 'debian-hunspell-only-dictionary-alist
  '("hebrew"
 
"[a-zA-Z\327\231\327\225\327\224\327\220\327\242\327\227\327\233\327\247\327\251\327\241\327\226\327\223\327\222\327\221\327\250\327\240\327\236\327\230\327\246\327\252\327\244\327\235\327\243\327\232\327\245\327\237\327\234]"
 
"[^a-zA-Z\327\231\327\225\327\224\327\220\327\242\327\227\327\233\327\247\327\251\327\241\327\226\327\223\327\222\327\221\327\250\327\240\327\236\327\230\327\246\327\252\327\244\327\235\327\243\327\232\327\245\327\237\327\234]"
 "[אבגדהוזחטיכלמנסעפצקרשתםןךףץ'"]"
 nil
 ("-d" "he_IL")
 nil
 utf-8))

You will notice the unescaped " in the fifth line, followed indeed by the  
character ] ...
Since the file is generated by perl (if I understand correctly, it is generated 
by /usr/share/perl5/Debian/DictionariesCommon.pm), this is where I stopped 
digging.  

Can that perl script be repaired so as to escape double quotes when appropriate 
?

Cheers,
Itaï.


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

Kernel: Linux 5.18.0-2-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages dictionaries-common depends on:
ii  debconf [debconf-2.0]  1.5.79
ii  emacsen-common 3.0.4
ii  libtext-iconv-perl 1.7-7+b2

dictionaries-common recommends no packages.

Versions of packages dictionaries-common suggests:
ii  hunspell  1.7.0-4
pn  wordlist  

-- debconf information:
  dictionaries-common/debconf_database_corruption:
  dictionaries-common/default-ispell:
* dictionaries-common/default-wordlist:
  dictionaries-common/invalid_debconf_value:
  dictionaries-common/old_wordlist_link: true
  dictionaries-common/ispell-autobuildhash-message:
  dictionaries-common/selecting_ispell_wordlist_default:


Bug#968804: RFS: auctex/12.2-1 [NMU] [RC] -- integrated document editing environment for TeX etc.

2020-08-21 Thread Itaï BEN YAACOV
Package: sponsorship-requestsSeverity: important
Dear mentors,
I am looking for a sponsor for my package "auctex":
 * Package name: auctex   Version : 12.2-1   Upstream Author : 
General discussion about AUCTeX  * URL : 
https://www.gnu.org/software/auctex/
 * License : preserve-notice, permissive, GFDL-NIV-1.3, GPL-3+, 
tobeclarified, publicdomain, MIT * Vcs : 
https://salsa.debian.org/salve/auctex   Section : tex
It builds those binary packages:
  preview-latex-style - extraction of elements from LaTeX documents as graphics 
 auctex - integrated document editing environment for TeX etc.
To access further information about this package, please visit the following 
URL:
  https://mentors.debian.net/package/auctex/
Alternatively, one can download the package with dget using this command:
  dget -x https://mentors.debian.net/debian/pool/main/a/auctex/auctex_12.2-1.dsc
Changes since the last upload:
 auctex (12.2-1) unstable; urgency=medium .   * Non-maintainer upload.   * New 
upstream version 12.2 (Closes: #896844).   * Remove autogen.sh from 
debian/rules, removed from upstream.   * Add Build-Depends on 
texlive-extra-utils, fixses FTBFS (Closes: #951973)   * Remove a few more 
files when cleaning.   * Fix double doc and info installation.   * Create 
debian/not-installed.   * Disable error on no previews.   * Deactivate mark on 
preview section.   * Improve TeX-arg-insert-right-brace-maybe.   * Improve 
preview-gs-transact.
Regards,--  Itaï BEN YAACOV



Bug#968805: RFS: auctex/12.2-1 [NMU] [RC] -- integrated document editing environment for TeX etc.

2020-08-21 Thread Itaï BEN YAACOV
Package: sponsorship-requests
Severity: important

I am looking for a sponsor for my package "auctex":

 * Package name: auctex
   Version : 12.2-1
   Upstream Author : General discussion about AUCTeX 
 * URL : https://www.gnu.org/software/auctex/
 * License : preserve-notice, permissive, GFDL-NIV-1.3, GPL-3+, 
tobeclarified, publicdomain, MIT
 * Vcs : https://salsa.debian.org/salve/auctex
   Section : tex

It builds those binary packages:

  preview-latex-style - extraction of elements from LaTeX documents as graphics
  auctex - integrated document editing environment for TeX etc.

To access further information about this package, please visit the following 
URL:

  https://mentors.debian.net/package/auctex/

Alternatively, one can download the package with dget using this command:

  dget -x https://mentors.debian.net/debian/pool/main/a/auctex/auctex_12.2-1.dsc

Changes since the last upload:

 auctex (12.2-1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * New upstream version 12.2 (Closes: #896844).
   * Remove autogen.sh from debian/rules, removed from upstream.
   * Add Build-Depends on texlive-extra-utils, fixses FTBFS (Closes:
 #951973)
   * Remove a few more files when cleaning.
   * Fix double doc and info installation.
   * Create debian/not-installed.
   * Disable error on no previews.
   * Deactivate mark on preview section.
   * Improve TeX-arg-insert-right-brace-maybe.
   * Improve preview-gs-transact.

Regards,
--
  Itaï BEN YAACOV


Bug#968237: ITP: auctex-12 -- AUCTeX version 12, LaTeX environment for Emacs

2020-08-11 Thread Itaï BEN YAACOV
Package: wnpp
Severity: wishlist
Owner: Itaï BEN YAACOV 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: auctex-12
  Version : 12.2
  Upstream Author : GNU Project
* URL : https://www.gnu.org/software/auctex/
* License : GPL v3
  Description : AUCTeX version 12, LaTeX environment for Emacs

Hello,

This is not truly an ITP but a request for guidance.
auctex v11.91 already exists in Debian, and has not been updated since
2018 despite bug reports requesting that.  Specifically, the preview-latex
feature no longer works due to changes in ghostscript, which is solved in
upstream.

The relevant bug #896844 was filed in Apr 2018, the maintainer said "I'll
work on it" and nothing ever happened since, depite numerous follow-ups to
the bug.  I tried to contact him directly in early 2020, getting no useful
reply, except that he considers that he is still maintaining the package.

I am not a Debian developper, but am able to package (in fact I have packaged
auctex v12 for personal use).

What should / can be done in this case ?

Cheers,
Itaï


Bug#1003805: python3-numpy: depends on two different Python versions

2023-12-09 Thread Itaï BEN YAACOV
Package: python3-numpy
Version: 1:1.24.2-2
Followup-For: Bug #1003805

Dear Maintainer,

I second this request.  By a quick survey of other « python3- » packages 
installed on my
system, they all depend on python3:any (and not on python3.##:any).  This means 
that *SOME*
version of python3 will be installed, which, in almost all cases, is enough. 
Usually, it will
be the current default version: today, 3.11 on sid, and when that bumps up to 
3.12, then on
most systems, all python3-xxx packages will switch to 3.12 in a manner 
essentially transparent
to the user.
If the user absoultely wants to use 3.12 today, there is nothing that prevents 
him or her to
install python3.12 manually, and all python3- packages will also 
byte-compile to that
automatically.
On the other hand, with the hard Depends: of python3-numpy, the user is simply 
unable to
decide NOT to isntall python3.12 , and this is indeed annoying to some.

So, I request that you reduce the dependence to python3:any alone, as for other 
python3-
packages.

Yours,
Itaï.




-- System Information:
Debian Release: trixie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 6.5.0-5-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages python3-numpy depends on:
ii  libatlas3-base [liblapack.so.3]  3.10.3-13
ii  libblas3 [libblas.so.3]  3.11.0-2
ii  libc62.37-13
ii  liblapack3 [liblapack.so.3]  3.11.0-2
ii  python3  3.11.6-1
ii  python3-pkg-resources68.1.2-2
ii  python3.11   3.11.7-1
ii  python3.12   3.12.1-1

python3-numpy recommends no packages.

Versions of packages python3-numpy suggests:
ii  gcc 4:13.2.0-2
pn  gfortran
ii  python3-dev 3.11.6-1
pn  python3-pytest  

-- no debconf information


Bug#1063319: easyeffects: Please lower calf-plugins dependency to Recommends

2024-02-05 Thread Itaï BEN YAACOV
Package: easyeffects
Version: 7.1.4-1
Severity: wishlist

Dear Maintainer,

Easyeffects works quite well without calf-plugins.  In my case, I just
use the equaliser from lsp-plugins-lv2, with an empty replacement package
for calf-plugins, and can report ill effects.  So I do not think a hard
dependency is justified.

In addition, calf-plugins pulls in obsolete library gtk2 (this is of
course an issue with that package, and not with easyeffects).

Thanks in advance,
Itaï.


-- System Information:
Debian Release: trixie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 6.6.13-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages easyeffects depends on:
ii  calf-plugins 1:0
ii  dconf-gsettings-backend [gsettings-backend]  0.40.0-4+b1
ii  libadwaita-1-0   1.4.2-1+b1
ii  libbs2b0 3.1.0+dfsg-7
ii  libc62.37-15
ii  libcairo21.18.0-1+b1
ii  libebur128-1 1.2.6-1+b1
ii  libfftw3-double3 3.3.10-1
ii  libfftw3-single3 3.3.10-1
ii  libgcc-s114-20240201-3
ii  libglib2.0-0 2.78.3-2
ii  libgsl27 2.7.1+dfsg-6
ii  libgtk-4-1   4.12.5+ds-2
ii  liblilv-0-0  0.24.22-1
ii  libpango-1.0-0   1.51.0+ds-4
ii  libpipewire-0.3-01.0.3-1
ii  libsamplerate0   0.2.2-4
ii  libsigc++-3.0-0  3.6.0-1
ii  libsndfile1  1.2.2-1
ii  libsoundtouch1   2.3.2+ds1-1
ii  libspeexdsp1 1.2.1-1
ii  libstdc++6   14-20240201-3
ii  libtbb12 2021.11.0-2
ii  libzita-convolver4   4.0.3-2

Versions of packages easyeffects recommends:
ii  lsp-plugins-lv2  1.2.14-1
pn  mda-lv2  
pn  zam-plugins  

easyeffects suggests no packages.

-- no debconf information


Bug#1092481: sqlalchemy: Please create a sqlalchemy-1.4 package based on the 1.4 branch, with versioned "Provides"

2025-01-08 Thread Itaï BEN YAACOV
Hi,

Of course, I understand your position, but have no idea if such a
package exists.

I merely use gourmand, and would hate to see it disappear from Debian, 
which I expect will happen if the present situation persists.  I do
not 
maintain gourmand, maybe the maintainer can tell us what
he thinks would be a good solution.

It just felt reasonable to keep an older version in Debian given the
API break
and the fact that the 1.4 is still being maintained.  As I said, it
required very
little work on my part to create such a package locally.

Cheers,
Itaï



Le mercredi 08 janvier 2025 à 14:15 +0100, Piotr Ożarowski a écrit :
> [Itaï BEN YAACOV, 2025-01-08]
> > Source: sqlalchemy
> > Version: 2.0.32+ds1-1
> > Severity: wishlist
> > 
> > Dear Maintainer,
> > 
> > Package gourmand is uninstallable at the moment, since it depends
> > on
> > sqlalchemy version 1.4 (upstream does not seem to have plans to
> > port
> > to version 2).  If one installs an old version of sqlalchemy with
> > gourmand, then automated upgrade of sqlalchemy breaks gourmand.
> > 
> > Not a good situation, that will surely have to be resolved before
> > release.
> 
> Is there at least one other package in such situation?
> If not, as a temporary solution, I'd suggest bundling SA1.4 inside
> gourmand's package
> 


Bug#1092481: sqlalchemy: Please create a sqlalchemy-1.4 package based on the 1.4 branch, with versioned "Provides"

2025-01-08 Thread Itaï BEN YAACOV
Source: sqlalchemy
Version: 2.0.32+ds1-1
Severity: wishlist

Dear Maintainer,

Package gourmand is uninstallable at the moment, since it depends on
sqlalchemy version 1.4 (upstream does not seem to have plans to port
to version 2).  If one installs an old version of sqlalchemy with
gourmand, then automated upgrade of sqlalchemy breaks gourmand.

Not a good situation, that will surely have to be resolved before release.

Personally, I downloaded the latest 1.4 source package (ver 1.4.47)
and modified it to replace sqlalchemy by sqlalchemy-1.4 everywhere, and
added to python3-sqlalchemy-1.4:

Provides: python3-sqlalchemy (= 1.4.47)

It seems to work quite well for me.  Since other users of gourmand, and
possibly of other packages, may find themselves in a similar situation,
would you consider doing the same with an official package?

Yours,
Itaï

-- System Information:
Debian Release: trixie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 6.12.8-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled


Bug#1101028: lsp-plugins-jack: No UI for lsp-plugins-jack since removal of lsp-plugins-r3d-glx

2025-03-22 Thread Itaï BEN YAACOV
Package: lsp-plugins-jack
Version: 1.2.21-1
Severity: important

Dear Maintainer,

The lsp-plugins-jack plugins no longer dislay their natice UI
windows, making them uncontrollable and thus unusable (to me).

More detail: changelog says that lsp-plugins-r3d-glx was removed
since obsolete, but I believe this is wrong.
More specifically, the problem is with the explicit FEATURES line
in debian/rules:

$(MAKE) config FEATURES='clap jack ladspa lv2 vst2 vst3 xdg' \

running make config without any options will show an additional
feature "ui".  Replacing the above line with

$(MAKE) config FEATURES='ui clap jack ladspa lv2 vst2 vst3 xdg' \

(or probably just removing the explicit FEATURES list) will build
the r3d-glx library.  Having done so, and reinstated the old
debian/control fire with lsp-plugins-r3d-glx solved the UI problem
for me.

Many thanks for maintaining this useful package.

Yours,
Itaï


-- System Information:
Debian Release: trixie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 6.12.19-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages lsp-plugins-jack depends on:
ii  libc6 2.41-6
ii  libjack-jackd2-0 [libjack-0.125]  1.9.22~dfsg-4
ii  libsndfile1   1.2.2-2+b1
ii  libstdc++614.2.0-19

lsp-plugins-jack recommends no packages.

lsp-plugins-jack suggests no packages.

-- no debconf information