Bug#465451: Could not find module `XMonad.StackSet'

2008-02-12 Thread Rubén Porras
Package: xmonad
Version: 0.6-2
Severity: important

After installing xmonad 0.6 and testing it with the default template
configuration file, I get this error:

Error detected while loading xmonad configuration file:
/home/foo/.xmonad/xmonad.hs

xmonad.hs:13:17:
Could not find module `XMonad.StackSet':
  it is not a module in the current program, or in any known package.

Please check the file for errors.

lw-pc002% less /home/foo/.xmonad/xmonad.hs

which is strange, because StackSet is provided by the core and not the
extensions.
I can use xmonad, but not configure it.

Is the config file wrong?
--
-- xmonad example config file.
--
-- A template showing all available configuration hooks,
-- and how to override the defaults in your own xmonad.hs conf file.
--
-- Normally, you'd only override those defaults you care about.
--
 
import XMonad
import System.Exit
 
import qualified XMonad.StackSet as W
import qualified Data.Mapas M
 
-- The preferred terminal program, which is used in a binding below and by
-- certain contrib modules.
--
myTerminal  = urxvt
 
-- Width of the window border in pixels.
--
myBorderWidth   = 1
 
-- modMask lets you specify which modkey you want to use. The default
-- is mod1Mask (left alt).  You may also consider using mod3Mask
-- (right alt), which does not conflict with emacs keybindings. The
-- windows key is usually mod4Mask.
--
myModMask   = mod1Mask
 
-- The mask for the numlock key. Numlock status is masked from the
-- current modifier status, so the keybindings will work with numlock on or
-- off. You may need to change this on some systems.
--
-- You can find the numlock modifier by running xmodmap and looking for a
-- modifier with Num_Lock bound to it:
--
--  $ xmodmap | grep Num
--  mod2Num_Lock (0x4d)
--
-- Set numlockMask = 0 if you don't have a numlock key, or want to treat
-- numlock status separately.
--
myNumlockMask   = mod2Mask
 
-- The default number of workspaces (virtual screens) and their names.
-- By default we use numeric strings, but any string may be used as a
-- workspace name. The number of workspaces is determined by the length
-- of this list.
--
-- A tagging example:
--
--  workspaces = [web, irc, code ] ++ map show [4..9]
--
myWorkspaces= [1,2,3,4,5,6,7,8,9]
 
-- Border colors for unfocused and focused windows, respectively.
--
myNormalBorderColor  = #dd
myFocusedBorderColor = #ff
 
-- Default offset of drawable screen boundaries from each physical
-- screen. Anything non-zero here will leave a gap of that many pixels
-- on the given edge, on the that screen. A useful gap at top of screen
-- for a menu bar (e.g. 15)
--
-- An example, to set a top gap on monitor 1, and a gap on the bottom of
-- monitor 2, you'd use a list of geometries like so:
--
--  defaultGaps = [(18,0,0,0),(0,18,0,0)] -- 2 gaps on 2 monitors
--
-- Fields are: top, bottom, left, right.
--
myDefaultGaps   = [(0,0,0,0)]
 

-- Key bindings. Add, modify or remove key bindings here.
--
myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
 
-- launch a terminal
[ ((modMask .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
 
-- launch dmenu
, ((modMask,   xK_p ), spawn exe=`dmenu_path | dmenu`  eval \exec $exe\)
 
-- launch gmrun
, ((modMask .|. shiftMask, xK_p ), spawn gmrun)
 
-- close focused window 
, ((modMask .|. shiftMask, xK_c ), kill)
 
 -- Rotate through the available layout algorithms
, ((modMask,   xK_space ), sendMessage NextLayout)
 
--  Reset the layouts on the current workspace to default
, ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
 
-- Resize viewed windows to the correct size
, ((modMask,   xK_n ), refresh)
 
-- Move focus to the next window
, ((modMask,   xK_Tab   ), windows W.focusDown)
 
-- Move focus to the next window
, ((modMask,   xK_j ), windows W.focusDown)
 
-- Move focus to the previous window
, ((modMask,   xK_k ), windows W.focusUp  )
 
-- Move focus to the master window
, ((modMask,   xK_m ), windows W.focusMaster  )
 
-- Swap the focused window and the master window
, ((modMask,   xK_Return), windows W.swapMaster)
 
-- Swap the focused window with the next window
, ((modMask .|. shiftMask, xK_j ), windows W.swapDown  )
 
-- Swap the focused window with the previous window
, ((modMask .|. shiftMask, xK_k ), windows W.swapUp)
 
-- Shrink the master area
, ((modMask,   xK_h ), sendMessage Shrink)
 
-- Expand the master area
, ((modMask,   xK_l ), sendMessage Expand)
 
-- Push window back into tiling
, ((modMask,   xK_t ), withFocused $ windows . W.sink)
 
-- Increment the 

Bug#465230: cannot install package

2008-02-11 Thread Rubén Porras
2008/2/11, Joachim Breitner [EMAIL PROTECTED]:
 Hi,

 Am Montag, den 11.02.2008, 17:15 +0100 schrieb Rubén Porras:
  2008/2/11, Joachim Breitner [EMAIL PROTECTED]:
   Hi,
  
   sorry for the bug, it was a little mistake with the dependencies. Fixed
   version is being uploaded.
  
   If you have trouble removing the package, try to remove
   the /lib/dpkg/info/libghc6-xmonad-contrib-dev.postrm file before trying
   to remove it, it might help.
  
 
  I think they are still wrong, there is no xmonad-contrib-0.6 provided
  by the xmonad-contrib source package.

 Note that the referred xmonad-contrib-0.6 is not a Debian package but a
 haskell (ghc-pkg) package...


Which is not available.  And I can't do anything but remove the
packages with a --force-all option. Is there any way te fake ghc-pkg
on this matter? Because installing
libghc6-x11-dev_1.4.1-0.nomeata3_i386.deb does not solve the problem.

cheers.


Bug#465230: cannot install package

2008-02-11 Thread Rubén Porras
2008/2/11, Joachim Breitner [EMAIL PROTECTED]:
 Hi,

 sorry for the bug, it was a little mistake with the dependencies. Fixed
 version is being uploaded.

 If you have trouble removing the package, try to remove
 the /lib/dpkg/info/libghc6-xmonad-contrib-dev.postrm file before trying
 to remove it, it might help.


I think they are still wrong, there is no xmonad-contrib-0.6 provided
by the xmonad-contrib source package.

The output now is:

(Reading database ... 189883 files and directories currently installed.)
Preparing to replace libghc6-xmonad-contrib-dev 0.6-1 (using
.../libghc6-xmonad-contrib-dev_0.6-2_i386.deb) ...
ghc-pkg: cannot find package xmonad-contrib-0.6
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
ghc-pkg: cannot find package xmonad-contrib-0.6
dpkg: error processing /tmp/libghc6-xmonad-contrib-dev_0.6-2_i386.deb
(--install):
 subprocess new pre-removal script returned error exit status 1
Reading package info from stdin ... done.
ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 /tmp/libghc6-xmonad-contrib-dev_0.6-2_i386.deb



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



Bug#465230: cannot install package

2008-02-11 Thread Rubén Porras
Package: libghc6-xmonad-contrib-dev
Version: 0.6-1
Severity: serious

Setting up libghc6-xmonad-contrib-dev (0.6-1) ...
Reading package info from stdin ... done.
ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
dpkg: error processing libghc6-xmonad-contrib-dev (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libghc6-xmonad-contrib-prof:
 libghc6-xmonad-contrib-prof depends on libghc6-xmonad-contrib-dev; however:
  Package libghc6-xmonad-contrib-dev is not configured yet.
dpkg: error processing libghc6-xmonad-contrib-prof (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libghc6-xmonad-contrib-dev
 libghc6-xmonad-contrib-prof
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up libghc6-xmonad-contrib-dev (0.6-1) ...
Reading package info from stdin ... done.
ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
dpkg: error processing libghc6-xmonad-contrib-dev (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libghc6-xmonad-contrib-prof:
 libghc6-xmonad-contrib-prof depends on libghc6-xmonad-contrib-dev; however:
  Package libghc6-xmonad-contrib-dev is not configured yet.
dpkg: error processing libghc6-xmonad-contrib-prof (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libghc6-xmonad-contrib-dev
 libghc6-xmonad-contrib-prof



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



Bug#452244: hplip: depends on sysv-rc

2007-11-21 Thread Rubén Porras
Package: hplip
Version: 2.7.10-2
Severity: normal

hplip depends on sysv-rc. It is therefore not installable in systems with
a different boot method (like file-rc).

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

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to
de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash


Bug#452244: hplip: depends on sysv-rc

2007-11-21 Thread Rubén Porras

 I see that file-rc doesn't feature high on popcon and there hasn't been
 much
 activity, the last upload was in Jul 06.

 If you have some suggestions for how to enable hplip to work with file-rc,
 please file them with this bug report.  But for now I think it is low
 priority against the work required for hplip.


Which feature  from  sysv-rc  and not fount in file-rc is needed? I can also
find it out. But I guess you already know ;)


Bug#452244: hplip: depends on sysv-rc

2007-11-21 Thread Rubén Porras
I think that I you don't know if it would work with file-rc, you shoudn't
depend on sysv-rc.

apt-cache rdepends sysv-rc file-rc
file-rc
Reverse Depends:
  festival
  sysvinit
  sysv-rc
  sysv-rc
  rcconf
  festival
  bum
sysv-rc
Reverse Depends:
  upstart-compat-sysv
  hplip
  hplip
  sysv-rc-bootsplash
  insserv
 |festival
 |sysvinit
  sysv-rc-conf
  runit-run
  rcconf
  kde-guidance
  insserv
  initscripts
  file-rc
 |festival
  bum
  bpalogin

The only package with a rdepend on sysv-rc and not file-rc is bpalogin, and
it also has a bug report on it (#431478). I think that you should not depend
on sysv-rc neither on file-rc.

Do you agree to make the change?


Bug#412525: gnome-panel: Recent Documents disapears when accesing unaccesible document

2007-02-26 Thread Rubén Porras

Package: gnome-panel
Version: 2.14.3-4
Severity: normal

$ smbmount  //.../.../BBB /mnt/AAA/ -o username=XXX
Password:
$ oowriter /mnt/AAA/foo.sxw
$ sudo umount  /mnt/AAA

* now try to access the document through the 'Recent Documents' functions in
the panel.
* oowriter starts, but can not find the file

The result is that the whole 'Recent Documents' menu is empty. Then again:

$ smbmount  //.../.../BBB /mnt/AAA/ -o username=XXX
$ oowriter /mnt/AAA/foo.sxw

Now the Recent Documents' menu is full, whith foo.sxw inclusive, so I
suposse, that the  list was
not cleared, but for a reason, it was not shown any more.


-- System Information:
Debian Release: 4.0
 APT prefers testing
 APT policy: (900, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages gnome-panel depends on:
ii  gnome-about 2.14.3-1 The GNOME about box
ii  gnome-control-center1:2.14.2-6   utilities to configure the
GNOME d
ii  gnome-desktop-data  2.14.3-1 Common files for GNOME 2
desktop a
ii  gnome-menus 2.16.1-3 an implementation of the
freedeskt
ii  gnome-panel-data2.14.3-4 common files for GNOME 2 panel
ii  libart-2.0-22.3.17-1 Library of functions for 2D
graphi
ii  libatk1.0-0 1.12.4-2 The ATK accessibility toolkit
ii  libbonobo2-02.14.0-3 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.14.0-5 The Bonobo UI library
ii  libc6   2.3.6.ds1-11 GNU C Library: Shared libraries
ii  libcairo2   1.2.4-4  The Cairo 2D vector graphics
libra
ii  libecal1.2-61.6.3-4  Client library for evolution
calen
ii  libedataserver1.2-7 1.6.3-4  Utility library for evolution
data
ii  libedataserverui1.2-6   1.6.3-4  GUI utility library for
evolution
ii  libgconf2-4 2.16.0-3 GNOME configuration database
syste
ii  libglade2-0 1:2.6.0-4library to load .glade files at
ru
ii  libglib2.0-02.12.4-2 The GLib library of C routines
ii  libgnome-desktop-2  2.14.3-1 Utility library for loading
.deskt
ii  libgnome-menu2  2.16.1-3 an implementation of the
freedeskt
ii  libgnome2-0 2.16.0-2 The GNOME 2 library - runtime
file
ii  libgnomeui-02.14.1-2 The GNOME 2 libraries (User
Interf
ii  libgnomevfs2-0  1:2.14.2-6   GNOME virtual file-system
(runtime
ii  libgtk2.0-0 2.8.20-5 The GTK+ graphical user
interface
ii  liborbit2   1:2.14.3-0.1 libraries for ORBit2 - a CORBA
ORB
ii  libpanel-applet2-0  2.14.3-4 library for GNOME 2 panel
applets
ii  libpango1.0-0   1.14.8-5 Layout and rendering of
internatio
ii  libwnck18   2.14.3-1 Window Navigator Construction
Kit
ii  libx11-62:1.0.3-5X11 client-side library
ii  libxau6 1:1.0.1-2X11 authorisation library
ii  menu-xdg0.2.3freedesktop.org menu compliant
win

Versions of packages gnome-panel recommends:
ii  evolution-data-server 1.6.3-4evolution database backend
server
ii  gnome-applets 2.14.3-4   Various applets for GNOME 2
panel
ii  gnome-session 2.14.3-5   The GNOME 2 Session Manager

-- no debconf information


Bug#347528: can't load plugin libevolution-mail.so

2006-01-11 Thread Rubén Porras
Package: evolutionVersion: 2.4.2.1-1Severity: normal$ evolution(evolution:23958): e-utils-WARNING **: can't load plugin '/usr/lib/evolution/2.4/components/libevolution-mail.so: undefined symbol: WriteFacexb'
adding hook target 'source'Setting up initial mail treeaddressbook_migrate (0.0.0)