Bug#829588: org-mode: freemind exporter not activated/installed

2016-07-04 Thread Arnaud Legrand

Hi,

Le 04/07/2016 15:38, Sébastien Delafond a écrit :

Yeah, it's in contrib/, and as such not enabled by
default. README.Debian does explain how to enable those without being
root, though.


Oh right, indeed. I wasn't aware of this. This works perfectly. You can 
close it if you like.



However, seeing how #728621 and #610699 revolve around the same idea,
I'm starting to wonder if the default behavior expected from end users
shouldn't be to make contrib/ directly available by default.


If it is already shipped, you may want to make sure that the minimal 
effort is needed to benefit from it. After all, even old emacs users 
like me are emacs-configuration newbie... :)


Thanks for you work anyway.

Best,

Arnaud



Bug#829588: org-mode: freemind exporter not activated/installed

2016-07-04 Thread Arnaud Legrand

Package: org-mode
Version: 8.3.4-1
Severity: normal

Dear Maintainer,

  the /usr/share/org-mode/lisp/ox-freemind.el exporter shipped with
org-mode is not installed in /usr/share/emacs24/site-lisp/org-mode. As
a consequence a (require 'ox-freemind) fails and does not allow to
easily benefit from this exporter. Once a symbolic link is done, the
require works like a charm and allows the freemind option to appear
when exporting.

Thanks for your work,

   Arnaud Legrand

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

Kernel: Linux 4.2.0-1-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
Init: systemd (via /run/systemd/system)

Versions of packages org-mode depends on:
ii  emacs24 24.5+1-4
ii  emacsen-common  2.0.8

Versions of packages org-mode recommends:
ii  texlive-generic-recommended  2015.20151116-1
ii  texlive-latex-recommended2015.20151116-1

Versions of packages org-mode suggests:
ii  ditaa  0.10+ds1-1
ii  org-mode-doc   8.3.4-1
ii  texlive-fonts-recommended  2015.20151116-1
ii  texlive-latex-extra2015.20151116-1

-- no debconf information



Bug#441222: New upstream version available

2007-09-07 Thread Arnaud Legrand
Package: xournal
Version: 0.3.3-1
Severity: wishlist

Hi, 

  a new upstream version was released in August and in September. It
adds many nice features (e.g. a text tool) that should close other
open bugs...

Thanks for your time,

   Arnaud

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

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

Versions of packages xournal depends on:
ii  gs  8.56.dfsg.1-1.1  Transitional package
ii  gs-esp [gs] 8.15.3.dfsg.1-1  The Ghostscript PostScript interpr
ii  gs-gpl [gs] 8.56.dfsg.1-1.1  The GPL Ghostscript PostScript int
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libglib2.0-02.12.13-1The GLib library of C routines
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented display
ii  libgnomeprint2.2-0  2.18.0-2 The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-02.18.0-2 GNOME 2.2 print architecture User 
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libpango1.0-0   1.16.5-1 Layout and rendering of internatio
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.29.dfsg-1GNOME XML library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  xpdf-reader 3.02-1.1 Portable Document Format (PDF) sui
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

xournal recommends no packages.

-- debconf-show failed


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



Bug#358174: ]] in comments screw up flex's generated C code

2006-03-21 Thread Arnaud Legrand
Package: flex
Version: 2.5.33-2
Severity: normal

Hi,

  the new flex has a weird behavior when some ]] appear in comments. Here is
a small example to illustrate the problem:

%option noyywrap

%{
#include stdio.h
int num_lines = 0, num_chars = 0; /* Some comment: ]] */
%}

%%
\n++num_lines; ++num_chars;
. ++num_chars;

%%
int main(int argc, char *argv[]) {
  yylex(); 
  printf( # of lines = %d, # of chars = %d\n,
  num_lines, num_chars );
  return 0;
}

Apply flex to this simple C code and you'll get an uncompilable code.

surf:/tmp $ cmake A
flex -o A.c A.l
gcc -Wall -Wunused -Wpointer-arith -Wchar-subscripts -Wcomment -Wformat 
-Wwrite-strings -Wno-unused-function -Werror -o A A.c
A.c:460: Error: erreur: syntax error before ']' token
In file included from A.c:469:
/usr/include/unistd.h:942: Error: erreur: syntax error before '__delta'
make: *** [A] Erreur 1

The corresponding C code looks like that:

#include stdio.h
int num_lines = 0, num_chars = 0; /* Some comment:  */
#line 460 A.c
]]

#define INITIAL 0

However, if you put a space between the two ], it works perfectly.

surf:/tmp $ cmake A
flex -o A.c A.l
gcc -Wall -Wunused -Wpointer-arith -Wchar-subscripts -Wcomment -Wformat 
-Wwrite-strings -Wno-unused-function -Werror -o A A.c

The corresponding C code looks like that:

#include stdio.h
int num_lines = 0, num_chars = 0; /* Some comment: ] ] */
#line 460 A.c

#define INITIAL 0

So I don't know exactly where the problem comes from in flex but this
definitely doesn't look like a normal behavior to me.

Cheers,

   Arnaud

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=fr_FR.ISO-8859-1, LC_CTYPE=fr_FR.ISO-8859-1 (charmap=ISO-8859-1)

Versions of packages flex depends on:
ii  debconf [debconf-2.0] 1.4.71 Debian configuration management sy
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  m41.4.4-1a macro processing language

Versions of packages flex recommends:
ii  gcc [c-compiler]  4:4.0.2-2  The GNU C compiler
ii  gcc-3.3 [c-compiler]  1:3.3.6-12 The GNU C compiler
ii  gcc-3.4 [c-compiler]  3.4.5-3The GNU C compiler
ii  gcc-4.0 [c-compiler]  4.0.2-10   The GNU C compiler

-- debconf-show failed


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



Bug#323269: horde2: errors on login attempts: Only variable references should be returned by reference in...

2005-10-03 Thread Arnaud Legrand

Hi,

A few days ago, Ola Lundqvist wrote:


Thanks a lot for the information. If you have a patch available I would
be really happy. :)


It'd have been faster to perform the changes directly by yourself as it was
only minor modifications... Anyway here's the script to build the patch
along with the patch. I tried it on my computer and it worked perfectly
fine.

  surf:~ $ ./horde2_build_patch.sh
  surf:~ $ cd /
  surf:/ $ sudo patch -p0  /tmp/debian/crappy_files.patch
  Password:
  patching file usr/share/horde2/lib/Token.php
  patching file usr/share/horde2/lib/Category.php
  patching file usr/share/horde2/lib/VFS.php
  patching file usr/share/horde2/lib/Cache.php
  patching file usr/share/horde2/lib/SessionHandler.php
  patching file usr/share/horde2/kronolith/lib/Driver.php

Regards,

  Arnaud Legrand

--
Beware of bugs in the above code; I have only proved it correct, not tried
it.
   -- D.E.Knuth

horde2_build_patch.sh
Description: Bourne shell script
--- usr/share/horde2/lib/Token.php.bak  2005-10-03 11:41:12.0 +0200
+++ usr/share/horde2/lib/Token.php  2005-10-03 11:41:12.0 +0200
@@ -78,7 +78,7 @@ class Token {
 }
 $class = 'Token_' . $driver;
 if (class_exists($class)) {
-return new $class($params);
+$res = new $class($params); return $res;
 } else {
 return PEAR::raiseError('Class definition of ' . $class . ' not 
found.');
 }
--- usr/share/horde2/lib/Category.php.bak   2005-10-03 11:41:12.0 
+0200
+++ usr/share/horde2/lib/Category.php   2005-10-03 11:41:12.0 +0200
@@ -130,7 +130,7 @@ class Category {
 }
 $class = 'Category_' . $driver;
 if (class_exists($class)) {
-return new $class($params);
+$res = new $class($params); return $res;
 } else {
 return PEAR::raiseError('Class definition of ' . $class . ' not 
found.');
 }
--- usr/share/horde2/lib/VFS.php.bak2005-10-03 11:41:12.0 +0200
+++ usr/share/horde2/lib/VFS.php2005-10-03 11:41:12.0 +0200
@@ -77,7 +77,7 @@ class Horde_VFS {
 }
 $class = 'Horde_VFS_' . $driver;
 if (class_exists($class)) {
-return new $class($params);
+$res = new $class($params); return $res;
 } else {
 return PEAR::raiseError('Class definition of ' . $class . ' not 
found.');
 }
--- usr/share/horde2/lib/Cache.php.bak  2005-10-03 11:41:12.0 +0200
+++ usr/share/horde2/lib/Cache.php  2005-10-03 11:41:12.0 +0200
@@ -59,7 +59,7 @@ class Cache {
 }
 $class = 'Cache_' . $driver;
 if (class_exists($class)) {
-return new $class($params);
+$res = new $class($params); return $res;
 } else {
 return PEAR::raiseError('Class definition of ' . $class . ' not 
found.');
 }
--- usr/share/horde2/lib/SessionHandler.php.bak 2005-10-03 11:41:12.0 
+0200
+++ usr/share/horde2/lib/SessionHandler.php 2005-10-03 11:41:12.0 
+0200
@@ -56,7 +56,7 @@ class SessionHandler {
 
 $class = 'SessionHandler_' . $driver;
 if (class_exists($class)) {
-return new $class($params);
+$res = new $class($params); return $res;
 } else {
 return PEAR::raiseError('Class definition of ' . $class . ' not 
found.');
 }
--- usr/share/horde2/kronolith/lib/Driver.php.bak   2005-10-03 
11:41:12.0 +0200
+++ usr/share/horde2/kronolith/lib/Driver.php   2005-10-03 11:41:12.0 
+0200
@@ -68,7 +68,7 @@ class Kronolith_Driver {
 include_once dirname(__FILE__) . '/Driver/' . $driver . '.php';
 $class = 'Kronolith_Driver_' . $driver;
 if (class_exists($class)) {
-return new $class($params);
+$res = new $class($params); return $res;
 } else {
 Horde::fatal(new PEAR_Error(sprintf(_(Unable to load the 
definition of %s.), $class)), __FILE__, __LINE__);
 }


Bug#323269: horde2: errors on login attempts: Only variable references should be returned by reference in...

2005-09-29 Thread Arnaud Legrand

Hi

  I'm running debian unstable and have the 2.2.8-3 version of horde2. I
still have some messages like Only variable references should be returned
by reference. I solved the issue by doing the same modifications as Lionel
Elie Mamane did in his patch but on the following places:

/usr/share/horde2/kronolith/lib/Driver.php line 71
/usr/share/horde2/mnemo/lib/Driver.php line 64

I think you should consider doing the same in your next release. For your
information, the deprecated construct return new $class($params); also
appear in the following files:

/usr/share/horde2/lib/Token.php
/usr/share/horde2/lib/Category.php
/usr/share/horde2/lib/VFS.php
/usr/share/horde2/lib/Cache.php
/usr/share/horde2/lib/SessionHandler.php

Cheers,

Arnaud


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