Bug#1018747: fixed - gimp-gap recommends mplayer that is (finally) in bookworm

2023-04-15 Thread Alexis PM
mplayer is (finally) in bookworm: Bug 1005899 is fixed.

[2023-02-13] mplayer 2:1.5+svn38408-1 MIGRATED to testing  
https://tracker.debian.org/news/1420921/mplayer-215svn38408-1-migrated-to-testing/

So Bug#1018747 is fixed and gimp-gap can be returned to bookworm



Bug#385085: allow non-US-ASCII characters in the GECOS field

2023-01-10 Thread Alexis PM
In the current stable, the following message which appears to be an error 
currently is showed.

chfn -f "Mr.Högberg" myuser
chfn: name with non-ASCII characters: 'Mr.Högberg'

In my humble opinion, I think that this type of message should not appear when 
UTF-8 is currently widely implemented in Debian.

Thank you very much!



Bug#1013933: Keep xsane out of Debian releases

2022-12-08 Thread Alexis PM
Please consider reducing the severity of the bug to allow the inclusion of 
xsane in the next stable release.

xsane has no equivalent software available. Its GUI allows you to use advanced 
features of SANE not available graphically in other GUIs.

xsane is usable in the currently packaged version (removed in testing due to 
this bug). It does not have any bug that prevent me from using it on a daily 
basis.

At https://popcon.debian.org/by_inst xsane is ranked 2346, by comparison sane 
is ranked 7457.

Its development is low in the last years, the last commit is from 6 months ago 
( https://gitlab.com/sane-project/frontend/xsane ), but this is not a reason to 
remove a software that is useful, usable, popular and no equivalent available.

Thank you very much.



Bug#993632: Replace x11-utils dependency by a range of options that includes zenity and kdialog

2021-09-05 Thread Alexis PM
 Hello

>> In order to avoid unnecessary dependencies, please consider replacing
>> the strict x11-tools dependency with a range of options including
>> zenity and kdialog. > thunderbird-wrapper-helper.sh already supports zenity 
>> and kdialog,
>> only the package dependency declaration needs to be modified.
>
> well, the named helper script has a fallback to use xmessage that is
> needed in environments there no DE is installed and kdialog and zenity
> isn't available. Like users which only use a tiling manager, e.g. on i3.

But changing the dependency declaration from 'x11-utils' to 'x11-utils | zenity 
| kdialog' makes a tiling manager user have to have x11-utils (or zenity or 
kdialog) installed and allows a user of xfce+zenity or lxde+zenity to not have 
to install x11-utils.

> Currently the dependency on this package is still required.
> 
> Dropping x11-utils isn't gain that much.

The problem with the x11-utils package is that it is not just xmessage, but 
populates the system and the menu with a dozen additional programs including a 
display information utility for X, an X event displayer, a glyph displayer, two 
X font browsers/selectors/displayers, xkill, an X client displayer,... For 
anyone setting up a desktop with a few carefully chosen applications, having to 
install the full suite of applications 'x11-utils' is counterintuitive.

Thank you.

  

Bug#993632: Replace x11-utils dependency by a range of options that includes zenity and kdialog

2021-09-03 Thread Alexis PM
Package: thunderbird
Version: 1:78.13.0-1
Severity: normal

Hello

In order to avoid unnecessary dependencies, please consider replacing the 
strict x11-tools dependency with a range of options including zenity and 
kdialog. 
thunderbird-wrapper-helper.sh already supports zenity and kdialog, only the 
package dependency declaration needs to be modified.

Thank you very much.



Bug#987896: GUI drawing error due to Dsun.java2d.opengl=true

2021-05-01 Thread Alexis PM
Package: sweethome3d
Version: 6.1.2+dfsg-2
Severity: grave
Justification: package unusable

Widespread GUI drawing errors (entire sections of the window appear black when 
interacting with GUI elements hovering the mouse, clicking on buttons, pulling 
down menus,...) make sweethome3d unusable. This happens both on my laptop and 
inside a QEMU virtual machine on another computer.

The simple solution is delete
-Dsun.java2d.opengl=true
in
/usr/share/sweethome3d/sweethome3d.sh

If you want to keep the "-Dsun.java2d.opengl" option with value "true" for 
those computers where this option is not problematic (I don't know how to 
identify it) then a "if" conditional is necessary for JAVA_ARGS in 
/usr/share/sweethome3d/sweethome3d.sh. If in doubt, it is best to delete it 
from the file.

Best regards.

PS: java --version
openjdk 11.0.9.1 2020-11-04
OpenJDK Runtime Environment (build 11.0.9.1+1-post-Debian-1deb10u2)
OpenJDK Server VM (build 11.0.9.1+1-post-Debian-1deb10u2, mixed mode, sharing)

dpkg -l | grep -Ei 'default-jre|sweethome'
ii  default-jre  2:1.11-71  
i386 Standard Java or Java compatible Runtime   

ii  default-jre-headless 2:1.11-71  
i386 Standard Java or Java compatible Runtime (headless)

ii  sweethome3d  6.1.2+dfsg-2   all 
 Interior 2D design application with 3D preview 



Bug#986041: imagej script bug in a system with no swap

2021-03-28 Thread Alexis PM
Package: imagej
Version: 1.52j-1
Severity: important

Hello

In a system with no swap:

$ free
total used free shared buff/cache available
Mem: 508080 56612 69872 368 381596 437904
Swap: 0 0 0

The imagej script:
# max memory allocation is 1800MB on 32bit java and 4000 on 64bit java
elif [[ `uname` == 'Linux' ]] ; then
if [[ `uname -m` == 'x86_64' ]] ; then
java_path="${ij_path}/jre64/bin/java"
max_mem=`free | awk 'NR == 2 {fmem=int($2 / 1024); if (fmem < 4000) {print 
fmem} else {print 4000}}'`
free_mem=`free | awk 'NR == 3 {fmem=int($4 / 1024); if (fmem < 4000) {print 
fmem} else {print 4000}}'`
mem=${free_mem}/3*2
if (( $mem > $default_mem || $mem < $min_mem )) ; then mem=$default_mem ; fi
else
java_path="${ij_path}/jre/bin/java"
max_mem=`free | awk 'NR == 2 {fmem=int($2 / 1024); if (fmem < 1800) {print 
fmem} else {print 1800}}'`
free_mem=`free | awk 'NR == 3 {fmem=int($4 / 1024); if (fmem < 1800) {print 
fmem} else {print 1800}}'`
mem=${free_mem}/3*2
if (( $mem > $default_mem || $mem < $min_mem )) ; then mem=$default_mem ; fi
fi
fi

This results in:
java_path = /jre/bin/java
max_mem = 496
free_mem = 0
mem = 0/3*2

Due to the "0" value:
(( 0 > 4000 || 0 < 16 ))
mem=4000

and as the system does not have so much RAM the final result is:

Error occurred during initialization of VM
Could not reserve enough space for 4096000KB object heap



Thank you very much.



Bug#986038: imagej currently has an undeclared and substitutable dependency

2021-03-28 Thread Alexis PM
Package: imagej
Version: 1.52j-1
Severity: important

Hello

The /usr/bin/imagej script uses:
   if [ -z "$JAVA_HOME" ] ; then
  JAVA_HOME=`/usr/sbin/update-java-alternatives -l | grep openjdk | grep 
$(dpkg-architecture -q DEB_TARGET_ARCH) | sort | tail -1 | tr -s ' ' | cut -d' 
' -f 3`
   fi
but 'dpkg-architecture' is in 'dpkg-dev' package which is not declared as a 
'dependency' of the 'imagej' package.

In order to avoid adding unnecessary or easily replaceable dependencies, it 
seems that a good solution could be to replace
$(dpkg-architecture -q DEB_TARGET_ARCH)
with
dpkg --print-architecture

Thank you very much!



Bug#986035: GPRename Spanish translation

2021-03-28 Thread Alexis PM
Package: gprename
Version: 20140325-1
Severity: normal

Hello

I attach a full GPRename Spanish translation. The current (really old) official 
Spanish translation is remarkably incomplete and means that a Spanish speaker 
sees half of the things in the GPRename window in English, making it largely 
unusable if you don't know English.

I report this bug against the Buster version in the hope that it will be fixed 
also in the Buster branch, but the exact same bug occurs with the current 
testing/sid version ( 20201214-0.1 ) which has the same Spanish translation.

I have submitted this same translation file to the upstream ( 
https://sourceforge.net/p/gprename/mailman/message/37250062 ), but considering 
the long time between release by the upstream developers plus the delay of 
Debian packaging itself, if it is not implemented directly in Debian it will 
take years to have this translation available in Debian.

Thank you very much!
msgid ""
msgstr ""
"Project-Id-Version: GPRename\n"
"Last-Translator: Alexis Puente Montiel \n"
"Report-Msgid-Bugs-To: Alexis Puente Montiel \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

msgid "ALL UPPERCASE"
msgstr "TODO MAYÚSCULAS"

msgid "About"
msgstr "Acerca de"

msgid "Add numbers starting at"
msgstr "Añadir números a partir de"

msgid "After the numbers"
msgstr "Después de los números"

msgid "Automatic preview"
msgstr "Previsualización automática"

msgid ""
"Automatic preview: This option will be turned off automatically if there's "
"more than 10,000 files or directories listed."
msgstr ""
"Previsualización automática: Esta opción será desactivada automáticamente si hay "
"más de 10.000 archivos o carpetas listados."

msgid ""
"Backreferences with Regular expression cannot be use as $1 is considered a "
"Perl variable."
msgstr ""
"Las retro-referencias con expresiones regulares no pueden usarse porque $1 "
"se considera una variable Perl."

msgid "Before the numbers"
msgstr "Antes de los números"

msgid "Cannot rename because it already exist."
msgstr "No puede renombrarse porque ya existe."

msgid "Cannot rename because the filename is too long."
msgstr "No puede renombrarse porque el nombre de archivo es demasiado largo."

msgid "Case Change"
msgstr "Mayúsculas / Minúsculas"

msgid "Case sensitive"
msgstr "Sensible a mayúsculas / minúsculas"

msgid "Clear"
msgstr "Limpiar"

msgid "Contents"
msgstr "Contenido"

msgid "Delete between"
msgstr "Eliminar entre las posiciones"

msgid "Directories"
msgstr "Carpetas"

msgid "Directory"
msgstr "Carpeta"

msgid "Disable security check"
msgstr "Desactivar la comprobación de seguridad"

msgid ""
"Disable security check: If used, this can delete files after renaming, only "
"use this when you rename case on a VFAT (Windows) partition."
msgstr ""
"Desactivar la comprobación de seguridad: Si se usa, puede eliminarse archivos después de renombrar, "
"solo usarlo para renombrar entre mayúsculas y minúsculas en una partición VFAT (Windows)."

msgid "Files"
msgstr "Archivos"

msgid "Filter"
msgstr "Filtro"

msgid "Fullscreen"
msgstr "Pantalla completa"

msgid "Insert"
msgstr "Insertar"

msgid "Insert / Delete"
msgstr "Insertar / Eliminar"

msgid "Insert before the numbers"
msgstr "Insertar antes"

msgid "Keep existing names"
msgstr "Mantener los nombres existentes"

msgid "Name"
msgstr "Nombre"

msgid "New name"
msgstr "Nuevo nombre"

msgid "No"
msgstr "No"

msgid "Numerical"
msgstr "Numérico"

msgid "Only The First Letter And After"
msgstr "Solo la primera letra y después de"

msgid "Only the first letter and after"
msgstr "Solo la primera letra y después de"

msgid "Only show files or directories that contains"
msgstr "Solo mostrar los archivos o carpetas que contienen"

msgid "Only the first letter"
msgstr "Solo la primera letra"

msgid "Quit"
msgstr "Cerrar"

msgid "Refre_sh"
msgstr "Refre_scar"

msgid "Regular expression"
msgstr "Expresión regular"

msgid "Remember last directory"
msgstr "Recordar la última carpeta"

msgid "Replace"
msgstr "Sustituir"

msgid "Replace / Remove"
msgstr "Sustituir / Eliminar"

msgid "Selected"
msgstr "Seleccionado"

msgid "Show contents of subdirectories"
msgstr "Mostrar el contenido de las subcarpetas"

msgid "Show hidden files"
msgstr "Mostrar los archivos ocultos"

msgid "Show path"
msgstr "Mostrar ruta"

msgid "The log file is over 1M, you should clear it from the Options menu."
msgstr ""
"El archivo de registro es mayor de 1 MiB, debería borrarlo desde el menú"
"Opciones."

msgid "To specify the end, use a negative number or a high number."
msgstr "Para especificar el final, use un número negativo o un número elevado."

msgid "Trim spaces"
msgstr "Recortar los espacios"

msgid ""
"Trim spaces: Automatically trim double spaces to only one and remove spaces "
"at the beginning or end of the names."
msgstr ""
"Recortar los espacios: Automáticamente recortar los espacios dobles a espacios únicos "
"y 

Bug#984799: scilab-full-bin for armhf and i386

2021-03-08 Thread Alexis PM
Package: scilab-full-bin
Version: 6.1.0+dfsg1-7
Severity: wishlist

In Debian 11 Bullseye (current testing) and Sid, scilab-full-bin is not 
available for armhf and i386, but in Debian 10 Buster is avaible.

Perhaps this is due to the limited number of architectures supported by 
libjogl2-java: bug #926069 relate to #887140 

But upstream, a downloadable package is available for i386, view  
https://www.scilab.org/download/6.1.0
This makes me think that it might be possible to package it for the missing 
architectures, even if it is by disabling some feature (libjogl2-java support?) 
when compiling.

Thanks!



Bug#967614: lxrandr: depends on deprecated GTK 2

2021-01-24 Thread Alexis PM
Associated bug that could provide a solution:

https://bugs.debian.org/839013



Bug#967608: lxdm: depends on deprecated GTK 2

2021-01-24 Thread Alexis PM
Associated bug that could provide a solution:

https://bugs.debian.org/839013



Bug#967686: pcmanfm: depends on deprecated GTK 2

2021-01-24 Thread Alexis PM
 Associated bug that could provide a solution:

https://bugs.debian.org/839013

  

Bug#919785: Yad new version available

2019-01-19 Thread Alexis PM
Package: yad
Version: 0.40.0-1


A new version 0.40.3 was released January 20, 2018, view  
https://github.com/v1cont/yad/releases/

Additionally new translations have been added to the repository as Spanish ( 
https://github.com/v1cont/yad/blob/master/po/es.po ) but not included in the 
0.40.3 release.

Please, consider packing it with all avaible translations. Thank you! 




Miscelánea Natural http://www.miscelaneanatural.org

Anfibios de Asturias http://www.anfibiosdeasturias.org

HackLab Pica Pica http://www.picahack.org
Actividades de informática con software libre http://eslibreasturias.rf.gd



Bug#737038: [scratch] Crash on every sound play

2016-06-04 Thread Alexis PM
Package: scratch
Version: 1.4.0.6~dfsg1-4

Followup-For: Bug #737038 


Dear Maintainer, 


I can confirm this behaviour also on my system too.

Best regards



Bug#818352: scilab-full-bin Java dependency

2016-03-16 Thread Alexis PM
Package: scilab-full-bin

Version: 5.3.3-10
Severity: wishlist

The package 'scilab-full-bin' has as Java dependency strictly 'default-jre', 
which in Wheezy point to openjdk-6-jre. This requires that I need to install 
'openjdk-6' to use scilab on my machine where I have installed only 'openjdk-7' 
and I run properly many Java-based applications as 'libreoffice' or 'pdfsam'.

In Wheezy, other Java-based applications have less strict Java dependency, for 
example 'pdfsam' has as Java dependency openjdk-6-jre or java2-runtime, a 
virtual package provided by default-jre, gcj-4.6-jre, gcj-4.7-jre, gcj-jre, 
openjdk-6-jre, openjdk-7-jre. libreoffice-base has as Java dependencies a wide 
range of options, included  java5-runtime, a virtual package provided by 
default-jre, gcj-4.6-jre, gcj-4.7-jre, gcj-jre, openjdk-6-jre, openjdk-7-jre.


I propose, if possible (I do not know if the policy of versions in 'stable' 
allow this), a new version of scilab-full-bin in Wheezy what incorporate as 
Java dependency option java5-runtime or java6-runtime (or perhaps 
java2-runtime).
Thanks!



Bug#818350: imagej dependences

2016-03-16 Thread Alexis PM
Package: imagej
Version: 1.46a-1
Severity: wishlist

In Wheezy, the package 'imagej' has as dependencies 'openjdk-6-jre' or 
'sun-java6-jre'. 
This requires that I need to install 'openjdk-6' to use 'imagej' on my machine 
where I have installed only 'openjdk-7' and I run properly many Java-based 
applications as 'libreoffice' or 'pdfsam'.
libreoffice-base has as Java dependencies a wide range of options, included  
java5-runtime, a virtual package provided by default-jre, gcj-4.6-jre, 
gcj-4.7-jre, gcj-jre, openjdk-6-jre, openjdk-7-jre.
pdfsam has as Java dependencies openjdk-6-jre or java2-runtime, a virtual 
package provided by default-jre, gcj-4.6-jre, gcj-4.7-jre, gcj-jre, 
openjdk-6-jre, openjdk-7-jre.
In my Wheezy, I installed Wheezy's imagej forcing dependencies (see below) and 
it seems to work well, so seems unnecessary to install 'openjdk-6' in addition 
to 'openjdk-7'.I propose, if possible (I do not know if the policy of versions 
in 'stable' allow this), a new version of imagej in Wheezy what incorporate as 
Java dependency option java5-runtime or java6-runtime (or perhaps 
java2-runtime).
Thanks!



root@picapc:/tmp# dpkg -l | grep ^ii | grep openjdk
ii  openjdk-7-jdk:amd64   7u95-2.6.4-1~deb7u1    
amd64    OpenJDK Development Kit (JDK)
ii  openjdk-7-jre:amd64   7u95-2.6.4-1~deb7u1    
amd64    OpenJDK Java runtime, using Hotspot JIT
ii  openjdk-7-jre-headless:amd64  7u95-2.6.4-1~deb7u1    
amd64    OpenJDK Java runtime, using Hotspot JIT (headless)
root@picapc:/tmp# dpkg -i --force-depends imagej_1.46a-1_all.deb
Seleccionando el paquete imagej previamente no seleccionado.
(Leyendo la base de datos ... 315630 ficheros o directorios instalados 
actualmente.)
Desempaquetando imagej (de imagej_1.46a-1_all.deb) ...
dpkg: imagej: problemas de dependencias, pero se configurará de todas formas
 tal y como se solicitó:
 imagej depende de openjdk-6-jre | sun-java6-jre; sin embargo:
  El paquete `openjdk-6-jre' no está instalado.
  El paquete `sun-java6-jre' no está instalado.

Configurando imagej (1.46a-1) ...
Procesando disparadores para desktop-file-utils ...
Procesando disparadores para menu ...
Procesando disparadores para man-db ...

Bug#814890: Please REMOVE this report bug

2016-02-16 Thread Alexis PM
Please REMOVE this report bug (814890).

I created a new bug report ( 814896: 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=814896 ) with a properly 
formatted header (814890 report has "unknown package" header error) and more 
detailed text.

My sincerest apologies for the inconvenience.

Thanks!



Bug#814896: r-cran-rcmdr missing dependences

2016-02-16 Thread Alexis PM
Package: r-cran-rcmdr
Version: 1.8-4-1
Severity: important

In Wheezy, Rcmdr package (r-cran-rcmdr) claims as dependencies some CRAN 
packages that are not in Wheezy: sem, leaps, e1071, aplpack.

Test: In a R terminal, execute:
library("Rcmdr")
A error window appears what notify "Missing the following packages what Rcmdr 
needs: sem, leaps, e1071, aplpack"


If you select "No install", Rcmdr runs but I have not thoroughly tested if 
everything works correctly.

The Rcmdr menu entry doesn't work: nothing appears. If you manually run in a 
terminal the "Exec" line of the '/usr/share/applications/Rcmdr.desktop' file, 
the above mentioned (a error window appears what notify about missing packages) 
occurs.

The system is a Debian GNU/Linux Wheezy, updated as of today.

Thanks!



Bug#814890: r-cran-rcmdr missing dependences

2016-02-16 Thread Alexis PM
Package: r-cran-rcmdrVersion: 1.8-4-1Severity: important
In Wheezy, Rcmdr package (r-cran-rcmdr) requires as dependencies some CRAN 
packages that are not in Wheezy: sem, leaps, e1071, aplpack.
Test: In a R terminal, execute: library("Rcmdr")A error window appears what 
notify "Missing the following packages what Rcmdr needs: sem, leaps, e1071, 
aplpack"
The only way to execute Rcmdr is accessing to install these packages from CRAN 
repositories, but a official Debian package should be functional without 
installing software outside of the official Debian repositories.
The Rcmdr menu entry doesn't work, I suppose for this same reason.

The system is a Debian GNU/Linux Wheezy, updated as of today.

Thanks!


Bug#786725: APT change the names of some packages when downloading

2015-05-24 Thread Alexis PM
Package: apt
Version: 0.9.7.9+deb7u7_i386Severity: normal

In Wheezy, APT change the names of some packages when downloading, introducing 
'1%3a' or '2%3a' or '6%3a' after the first undescore (_) in the name of the 
package, but only in some packages - but allways in the same packages and I can 
not find the pattern. It can be seen using both with 'apt-get install 
[package]'  (and after looking in /var/cache/apt/archives ) both with 'apt-get 
-d install [package]'. This renaming may affect if for example those packets 
are used to generate a local repository.
For example, the package iceweasel-l10n-es-ar_31.7.0esr-1~deb7u1_all.deb ( 
http://security.debian.org/debian-security/pool/updates/main/i/iceweasel/iceweasel-l10n-es-ar_31.7.0esr-1~deb7u1_all.deb
 ) when is download by  'apt-get install [package]'  in /var/cache/apt/archives 
 or in-situ directory by 'apt-get -d install [package]' is renamed as 
'iceweasel-l10n-es-ar_1%3a31.7.0esr-1~deb7u1_all.deb'
Affected packages:
bash-completion_1%3a2.0-1_all.deb
bind9-host_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u4_i386.deb
cdrdao_1%3a1.2.3-0.3_i386.deb
cifs-utils_2%3a5.5-1_i386.deb
cryptsetup_2%3a1.4.3-4_i386.deb
cryptsetup-bin_2%3a1.4.3-4_i386.deb
geeqie_1%3a1.0-10.1_i386.deb
geeqie-common_1%3a1.0-10.1_all.deb
genisoimage_9%3a1.1.11-2_i386.deb
gir1.2-vte-2.90_1%3a0.32.2-1_i386.deb
gqview_1%3a1.0-10.1_all.deb
gsfonts_1%3a8.11+urwcyr1.0.7~pre44-4.2_all.deb
iceweasel-l10n-en-gb_1%%3a31.7.0esr-1~deb7u1_all.deb
iceweasel-l10n-es-ar_1%3a31.7.0esr-1~deb7u1_all.deb
iceweasel-l10n-es-cl_1%3a31.7.0esr-1~deb7u1_all.deb
iceweasel-l10n-es-es_1%3a31.7.0esr-1~deb7u1_all.deb
iceweasel-l10n-es-mx_1%3a31.7.0esr-1~deb7u1_all.deb
libavcodec53_6%3a0.8.17-1_i386.deb
libavdevice53_6%3a0.8.17-1_i386.deb
libavfilter2_6%3a0.8.17-1_i386.deb
libavformat53_6%3a0.8.17-1_i386.deb
libav-tools_6%3a0.8.17-1_i386.deb
libavutil51_6%3a0.8.17-1_i386.deb
libbind9-80_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u4_i386.deb
libbluray1_1%3a0.2.2-1_i386.deb
libcap2_1%3a2.22-1.2_i386.deb
libcryptsetup4_2%3a1.4.3-4_i386.deb
libcrystalhd3_1%3a0.0~git20110715.fdd2f19-9_i386.deb
libdevmapper-event1.02.1_2%3a1.02.74-8_i386.deb
libdns88_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u4_i386.deb
libglade2-0_1%3a2.6.4-1_i386.deb
libglib-perl_3%3a1.260-1_i386.deb
libgnomevfs2-0_1%3a2.24.4-2_i386.deb
libgnomevfs2-common_1%3a2.24.4-2_all.deb
libgnomevfs2-extra_1%3a2.24.4-2_i386.deb
libgtk2-perl_2%3a1.244-1+deb7u1_i386.deb
libgtkmm-2.4-1c2a_1%3a2.24.2-1_i386.deb
libio-pty-perl_1%3a1.08-1+b2_i386.deb
libisc84_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u4_i386.deb
libisccc80_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u4_i386.deb
libisccfg82_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u4_i386.deb
liblwres80_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u4_i386.deb
libmodplug1_1%3a0.8.8.4-3+deb7u1+git20130828_i386.deb
libmpcdec6_2%3a0.1~r459-4_i386.deb
libnetpbm10_2%3a10.0-15+b1_i386.deb
libnspr4-0d_2%3a4.9.2-1+deb7u2_i386.deb
libnspr4_2%3a4.9.2-1+deb7u2_i386.deb
libnss3-1d_2%3a3.14.5-1+deb7u4_i386.deb
libnss3_2%3a3.14.5-1+deb7u4_i386.deb
libnss-winbind_2%3a3.6.6-6+deb7u5_i386.deb
libopenal1_1%3a1.14-4_i386.deb
libopenal-data_1%3a1.14-4_all.deb
liborbit2_1%3a2.14.19-0.1_i386.deb
liborc-0.4-0_1%3a0.4.16-2_i386.deb
libpam-winbind_2%3a3.6.6-6+deb7u5_i386.deb
libpcre3_1%3a8.30-5_i386.deb
libqtcore4_4%3a4.8.2+dfsg-11_i386.deb
libqtgui4_4%3a4.8.2+dfsg-11_i386.deb
libsensors4_1%3a3.3.2-2+deb7u1_i386.deb
libsmbclient_2%3a3.6.6-6+deb7u5_i386.deb
libsvga1_1%3a1.4.3-33_i386.deb
libswscale2_6%3a0.8.17-1_i386.deb
libupnp6_1%3a1.6.17-1.2_i386.deb
libvte-2.90-9_1%3a0.32.2-1_i386.deb
libvte-2.90-common_1%3a0.32.2-1_all.deb
libvte9_1%3a0.28.2-5_i386.deb
libvte-common_1%3a0.28.2-5_all.deb
libwbclient0_2%3a3.6.6-6+deb7u5_i386.deb
libx11-xcb1_2%3a1.5.0-1+deb7u2_i386.deb
libx264-123_2%3a0.123.2189+git35cf912-1_i386.deb
libxcursor1_1%3a1.1.13-1+deb7u1_i386.deb
libxi6_2%3a1.6.1-1+deb7u1_i386.deb
libxinerama1_2%3a1.1.2-1+deb7u1_i386.deb
libxml-twig-perl_1%3a3.39-1_all.deb
libxss1_1%3a1.2.2-1_i386.deb
libxtst6_2%3a1.2.1-1+deb7u1_i386.deb
libxv1_2%3a1.0.7-1+deb7u1_i386.deb
libxvidcore4_2%3a1.3.2-9_i386.deb
libxvmc1_2%3a1.0.7-1+deb7u2_i386.deb
libxxf86dga1_2%3a1.1.3-2+deb7u1_i386.deb
libxxf86vm1_1%3a1.1.2-1+deb7u1_i386.deb
lm-sensors_1%3a3.3.2-2+deb7u1_i386.deb
mc_3%3a4.8.3-10_i386.deb
mc-data_3%3a4.8.3-10_all.deb
mplayer_2%3a1.0~rc4.dfsg1+svn34540-1+deb7u1_i386.deb
netpbm_2%3a10.0-15+b1_i386.deb
ntfs-3g_1%3a2012.1.15AR.5-2.1_i386.deb
ntfsprogs_1%3a2012.1.15AR.5-2.1_all.deb
opencubicplayer_1%3a0.1.21-1.1_i386.deb
opencubicplayer-doc_1%3a0.1.21-1.1_all.deb
openssh-client_1%3a6.0p1-4+deb7u2_i386.deb
openssh-server_1%3a6.0p1-4+deb7u2_i386.deb
python-numpy_1%3a1.6.2-1.2_i386.deb
python-vte_1%3a0.28.2-5_i386.deb
reiserfsprogs_1%3a3.6.21-1_i386.deb
samba-common_2%3a3.6.6-6+deb7u5_all.deb
samba-common-bin_2%3a3.6.6-6+deb7u5_i386.deb
smbclient_2%3a3.6.6-6+deb7u5_i386.deb
winbind_2%3a3.6.6-6+deb7u5_i386.deb
wodim_9%3a1.1.11-2_i386.deb
xarchiver_1%3a0.5.2+20090319+dfsg-4.1_i386.deb
xserver-xorg_1%3a7.7+3~deb7u1_i386.deb

Bug#733241: nouveau breaks Xsession with a NVIDIA Corporation GF108

2013-12-27 Thread Alexis PM
Package: xserver-xorg-video-nouveau
Version: 1:1.0.1-5
X-Debbugs-CC: llangr...@hotmail.com

The
 PC has two cards: NVIDIA Corporation GF108 [GeForce GT 430] [10de:0de1]
 (rev a1) and 3Dfx Interactive, Inc. Voodoo Banshee [121a:0003] (rev 
03). The full lspci output is attached at the end of this email.

In
 a Debian 6, the nouveau driver is not installed in the default 
installation and the Xsession works. In Debian 7, the nouveau driver is 
installed by default and the Xsession doesn't work: the system boots, 
but at the moment when KDM or GDM should start, the only thing that the 
screen shows is only the mouse pointer as a cross. You can do Ctrl Alt 
Fx to operate in real console... but if you move the mouse pointer, it 
moves but Ctrl Alt Fx stops working and you only can do a force 
poweroff or reboot. The only solution is a apt-get purge nouveau* to 
force to use the generic driver, and then the Xsession works (is not KDM
 or GDM specific bug). 

Thank you very much!




roberto@debian:~$ lspci -nn
00:00.0 Host bridge [0600]: Advanced Micro Devices [AMD] nee ATI RS690 Host 
Bridge [1002:7910]
00:02.0
PCI bridge [0604]: Advanced Micro Devices [AMD] nee ATI RS690 PCI to 
PCI Bridge (PCI Express Graphics Port 0) [1002:7913]
00:07.0 PCI bridge [0604]: Advanced Micro Devices [AMD] nee ATI RS690 PCI to 
PCI Bridge (PCI Express Port 3) [1002:7917]
00:12.0 SATA controller [0106]: Advanced Micro Devices [AMD] nee ATI SB600 
Non-Raid-5 SATA [1002:4380]
00:13.0 USB controller [0c03]: Advanced Micro Devices [AMD] nee ATI SB600 USB 
(OHCI0) [1002:4387]
00:13.1 USB controller [0c03]: Advanced Micro Devices [AMD] nee ATI SB600 USB 
(OHCI1) [1002:4388]
00:13.2 USB controller [0c03]: Advanced Micro Devices [AMD] nee ATI SB600 USB 
(OHCI2) [1002:4389]
00:13.3 USB controller [0c03]: Advanced Micro Devices [AMD] nee ATI SB600 USB 
(OHCI3) [1002:438a]
00:13.4 USB controller [0c03]: Advanced Micro Devices [AMD] nee ATI SB600 USB 
(OHCI4) [1002:438b]
00:13.5 USB controller [0c03]: Advanced Micro Devices [AMD] nee ATI SB600 USB 
Controller (EHCI) [1002:4386]
00:14.0 SMBus [0c05]: Advanced Micro Devices [AMD] nee ATI SBx00 SMBus 
Controller [1002:4385] (rev 14)
00:14.1 IDE interface [0101]: Advanced Micro Devices [AMD] nee ATI SB600 IDE 
[1002:438c]
00:14.2 Audio device [0403]: Advanced Micro Devices [AMD] nee ATI SBx00 Azalia 
(Intel HDA) [1002:4383]
00:14.3 ISA bridge [0601]: Advanced Micro Devices [AMD] nee ATI SB600 PCI to 
LPC Bridge [1002:438d]
00:14.4 PCI bridge [0604]: Advanced Micro Devices [AMD] nee ATI SBx00 PCI to 
PCI Bridge [1002:4384]
00:18.0
Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
HyperTransport Technology Configuration [1022:1100]
00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
Address Map [1022:1101]
00:18.2 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
DRAM Controller [1022:1102]
00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
Miscellaneous Control [1022:1103]
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GF108 [GeForce GT 
430] [10de:0de1] (rev a1)
01:00.1 Audio device [0403]: NVIDIA Corporation GF108 High Definition Audio 
Controller [10de:0bea] (rev a1)
02:00.0
Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168] (rev 
01)
03:06.0 VGA compatible controller [0300]: 3Dfx Interactive, Inc. Voodoo Banshee 
[121a:0003] (rev 03)
roberto@debian:~$


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



Bug#722190: Only channel left is heard when headphones are used

2013-09-09 Thread Alexis PM
Please, close the bug.

The headphones have a physical failure in the cable connection.

Thanks!



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



Bug#722190: Only channel left is heard when headphones are used

2013-09-08 Thread Alexis PM
Package: alsa-base
Version: 1.0.25+3~deb7u1
Severity: normal
X-Debbugs-CC: xiuxiu...@coincidance.net


In Wheezy with KDE (all packages are updated and all are official Debian 
packages), when I use headphones (minijack output), only 1 channel (channel 
left) is heard, but the 2 channels are heard if I disconnect the headphones and 
use the speakers. 

This soundcard works fine in Squeeze (in other partition of the computer).

Audio packages installed: alsa-base alsa-oss alsa-tools alsa-tools-gui 
alsa-utils alsamixergui libpulse0 libpulse-mainloop-glib0 (all in Wheezy 
versions) (pulseaudio is not installed)

In alsamixergui all channels are to maximum.

# lspci | grep Audio
00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition Audio 
Controller (rev 02)

# alsactl init
Found hardware: HDA-Intel SigmaTel STAC9221 A1 
HDA:83847680,106b0a00,00103401 0x8384 0x7680
Hardware is initialized using a generic method

If I do speaker-test -Dplug:front -c2 I hear the two channels alternately 
when I use spakers, but when I use headphones I hear only silence when is 
testing the the right channel

$ speaker-test -Dplug:front -c2

speaker-test 1.0.25

Playback device is plug:front
Stream parameters are 48000Hz, S16_LE, 2 channels
Using 16 octaves of pink noise
Rate set to 48000Hz (requested 48000Hz)
Buffer size range from 64 to 16384
Period size range from 32 to 8192
Using max buffer size 16384
Periods = 4
was set period_size = 4096
was set buffer_size = 16384
 0 - Front Left
 1 - Front Right




Thank you very much



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



Bug#698558: pcmanfm in Squeeze doesn't have a menu option for search files or folders

2013-01-20 Thread Alexis PM
Package: pcmanfm
Version: 0.9.7-1
Severity: normal
X-Debbugs-CC: xiuxiu...@coincidance.net


In Squeeze, pcmanfm (version 0.9.7-1) doesn't have a menu option for search 
files and folders. In the old stable Lenny, pcmanfm in 0.5 version have a menu 
option in Tools  Find files.

The system is a Debian GNU/Linux Squeeze, updated as of today.

Thanks!



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



Bug#605505: In OOo, the first slide is not shown in the presentation view

2010-11-30 Thread Alexis PM
Package: openoffice.org-impress
Version: 1:3.2.1-6~bpo50+1

When one creates a new presentation, the first slide that you create, not 
seen in the presentation view mode F5 (the second diapostiva and following 
yes they are viewed). By not seen I mean that instead of viewing the 
slide, one is black. If you moves back - forward with the arrow keys in 
the F5 view, you get to see the first slide within problems.

This bug has a strangely arbitrary behavior. Sometimes (and only 
sometimes), just create the first slide and advance to F5 view the slide 
is seen, but it's only out of F5 view, return to the edit view, and again 
return to F5 view mode (without changing anything) and the slide not seen.

I have found that this problem occurs in OOo 3.0, 3.1 and 3.2. Asking 
colleagues, it seems that the problem is also present in OOo 2.4 (the 
entire series OOo 2.x? I do not know). 

I think the bug has not been reported due to strangely arbitrary behavior 
(making it difficult to reproduce), and because the trick of moving 
quickly back - forward with the arrow keys in order to get out of an 
awkward situation.

My system is a Debian Lenny, with security updates up to date, with 
Backports OOo.

Thanks!






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



Bug#605332: In OOo 3.2 special paste don't work

2010-11-29 Thread Alexis PM
tag 605332

 De: Rene Engelhard r...@debian.org
 Asunto: Re: In OOo 3.2 special paste don't work
 Para: Andres Cimmarusti acimmaru...@gmail.com
 CC: alexispm_stellal...@yahoo.es, 605...@bugs.debian.org, 
 debian-backpo...@lists.debian.org
 Fecha: lunes, 29 de noviembre, 2010 21:35
 # fix version tracking. mark as found
 as 3.2.1-6
 # as it's the base of the backport
 notfound 605332 1:3.2.1-6~bpo50+1
 found 605332 1:3.2.1-6
 # but it's not reproducible - based on below comment
 tag 605332 + unreproducible
 thanks
 
 Alex, ice that you wrot ehere (you still wrote bug,
 though..), but why did you not
 keep the bug in the loop (there's X-Debbugs-Cc for Ccing
 stuff from the initial
 report of a bug), so that discussions get recorded there?.
 Adding the Cc now.

Sorry, I do not quite understand that you tell me. I strive to meet the BTS 
protocol, but I'm lost with these details. My apologies.

 
 Hi,
 
 On Sun, Nov 28, 2010 at 06:21:05PM -0500, Andres Cimmarusti
 wrote:
  On Sun, Nov 28, 2010 at 5:41 PM, Alexis PM alexispm_stellal...@yahoo.es
 wrote:
   Package: openoffice.org-writer
   Version: 1:3.2.1-6~bpo50+1
  
   The Special Paste don't work, either via menu
 (Edit Paste Special) or key
   combination (Ctrl Alt V). The Special paste
 window does not appear. This
   bug has appeared in the 3.2 version, the previous
 3.0 and 3.1 version work
   well.
  
   I use Debian Lenny, and the Backports OOo. I know
 that the Debian BTS does
   not support backports, but I guess this error is
 also present in OOo Squeeze
   (Squeeze both Backports like OOo uses
 OpenOffice.org 3.2.1), although this
   point I can not confirm. I can not say anything
 about Sid OOo.
  
  
  I'm using Squeeze. I tried reproducing your issue but
 the window is
  correctly displayed. Also the default hot key for this
 feature is
 
 Thanks for that info.
 

Thanks

 Grüße/Regards,
 
 René
 -- 
  .''`.  René Engelhard -- Debian GNU/Linux Developer
  : :' : http://www.debian.org | http://people.debian.org/~rene/
  `. `'  r...@debian.org |
 GnuPG-Key ID: D03E3E70
    `-   Fingerprint: E12D
 EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70
 






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



Bug#605120: OpenOffice.org Impress 3.2 problems with Presentationview mode

2010-11-29 Thread Alexis PM

tag 605120

 De: Rene Engelhard r...@debian.org
 Asunto: Re: Bug#605120: OpenOffice.org Impress 3.2 problems with 
 Presentationview mode
 Para: alexispm_stellal...@yahoo.es, 605...@bugs.debian.org
 CC: cont...@bigs.debian.org
 Fecha: lunes, 29 de noviembre, 2010 22:09
 forwarded 605120 http://qa.openoffice.org/issues/show_bug.cgi?id=112422
 retitle 605120 graphics cut in transitions
 tag 605120 + upstream
 found 605120 1:3.2.1-1
 tag 605120 fixed-upstream
 tag 605120 + moreinfo
 thanks
 
 On Sat, Nov 27, 2010 at 03:41:55PM +, Alexis PM wrote:
  When you open a presentation made with OOo Impress 3.0
 or 3.1, I can modify it without problems in normal view
 mode, but in view presentation mode (F5), the graphics
 (lines, embedded images ,...) are partially cut.
  If I export the presentation in .pps, .ppt, .sdd or
 another, the problem remains, unless exported in .sxi (OOo
 1.x format) but in this case I lose the effects of
 transitions.
  Creating a new presentation (File New) and paste a
 slide in particular, the graphics partially cut problem
 remains.
  As an example: http://www.aportes.venenux.org/usuarios/Alexis/prueba.odp
 
 Just talked with upstream:
 
 21:52 thorsten aha!
 21:52 thorsten http://qa.openoffice.org/issues/show_bug.cgi?id=112422
 21:52 thorsten commit:
 5f6ad06a7e16785f1d0b411650c838618662f8d6
 
 Which is:
 
 commit 5f6ad06a7e16785f1d0b411650c838618662f8d6
 Author: Andre Fischer a...@openoffice.org
 Date:   Fri Jul 2 11:06:25 2010 +0200
 
     impress193: #i112422# Applied patch that
 fixes clipping error.
  
 Which means this also is fixed in OOo 3.3 upstream, that
 explains why LibO also works.
 
 Will try to backport it, for reference the patch is like
 this.
 
 r...@frodo:~/LibreOffice/libreoffice-3-3/build/clone/impress$
 git diff
 5f6ad06a7e16785f1d0b411650c838618662f8d6~1..5f6ad06a7e16785f1d0b411650c838618662f8d6
 diff --git a/slideshow/source/engine/slide/layer.cxx
 b/slideshow/source/engine/slide/layer.cxx
 index 1dca809..a41a000 100644
 --- a/slideshow/source/engine/slide/layer.cxx
 +++ b/slideshow/source/engine/slide/layer.cxx
 @@ -36,6 +36,8 @@
  #include basegfx/range/b2dpolyrange.hxx
  #include basegfx/matrix/b2dhommatrix.hxx
  #include basegfx/polygon/b2dpolypolygon.hxx
 +#include basegfx/polygon/b2dpolypolygontools.hxx
 +#include basegfx/polygon/b2dpolypolygoncutter.hxx
 
  #include layer.hxx
 
 @@ -288,7 +290,9 @@ namespace slideshow
              
    // clipping, and render each shape that
 intersects with
              
    // the calculated update area
              
    ::basegfx::B2DPolyPolygon aClip(
 maUpdateAreas.solveCrossovers() );
 -
 +               
 aClip = ::basegfx::tools::stripNeutralPolygons(aClip);
 +               
 aClip = ::basegfx::tools::stripDispensablePolygons(aClip,
 false);
 +
              
    // actually, if there happen to be shapes
 with zero
              
    // update area in the maUpdateAreas
 vector, the
              
    // resulting clip polygon will be empty.
 
 

Thank you very much

  I have also found that creating a new presentation
 (File New), the first slide that is created, not seen in
 Layout view mode (F5)!
 
 This on the other hand upstream does not have an idea
 about. Let's use this bug for the first, fixed bug (see? now
 it
 makes problems that you reported two bugs in one)
 

Sorry. As I said before, I thought it was the same bug, not two different. If I 
can send this second bug as a new bug report, or another solution, you just 
tell me.

 Grüße/Regards,
 
 René
 -- 
  .''`.  René Engelhard -- Debian GNU/Linux Developer
  : :' : http://www.debian.org | http://people.debian.org/~rene/
  `. `'  r...@debian.org |
 GnuPG-Key ID: D03E3E70
    `-   Fingerprint: E12D
 EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70
 






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



Bug#605120: OpenOffice.org Impress 3.2 problems with Presentationview mode

2010-11-28 Thread Alexis PM
tag 605120 + moreinfo
thanks

--- El sáb, 27/11/10, Rene Engelhard r...@debian.org escribió:

 De: Rene Engelhard r...@debian.org
 Asunto: Re: Bug#605120: OpenOffice.org Impress 3.2 problems with 
 Presentationview mode
 Para: Alexis PM alexispm_stellal...@yahoo.es, 605...@bugs.debian.org
 Fecha: sábado, 27 de noviembre, 2010 23:41
 [ please wrap your lines. Your
 webmail is not a argument, there's
 something like the enter key also on your keyboard ]
 
 Hi,
 
 On Sat, Nov 27, 2010 at 10:24:42PM +, Alexis PM wrote:
  Ok. I say, the problem (in Backports OOo 3.2) isn't to
 see the lines, but some lines cut in the presentation view
 mode (in the slide example, this is particularly evident in
 the last line displayed, is cut off by half in the
 presentation mode F5).
 
 Yeah, I guessed, I have eyes which can see the difference
 from what is showed in the
 edit, thanks :)

Using the .deb that were stored in my /var/cache/apt, I reinstalled the 
previous OOo 3.0 and 3.1 of Backports, giving no problem whatsoever. The 
lines / images cut bug must have been introduced in OOo 3.2.

 
  I mean better. I make a new presentation, and the
 first slide write any text as a title, for example. Change
 the slide design (by default, when creating a
 presentation, the design of the slide is blank slide) and
 to go to presentation view mode (F5), and... all is black,
 and when pressed again, there is already typical Press to
 end the presentation).
 
 Hmm, true... But it doesn't happen all the times with all
 layouts. Weird.
 Besides that, this bug report now is a mess because you
 ciolated the one bug, one report
 principle..

I thought it was the same mistake and wanted to avoid creating two bug 
reports for the same bug, but ...

 
 But it's bad, yes ... :/. What wonders me is why noone
 found it before...

I have found that the error was *already* present in OOo 3.1. 
If in the presentation mode (F5) moves forward - back with the arrow keys,
you get to see the slides black ... but this is a trick, not a solution.

 
 Grüße/Regards,
 
 René
 






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



Bug#605332: In OOo 3.2 special paste don't work

2010-11-28 Thread Alexis PM
Package: openoffice.org-writer
Version: 1:3.2.1-6~bpo50+1

The Special Paste don't work, either via menu (Edit Paste Special) or key
combination (Ctrl Alt V). The Special paste window does not appear. This 
bug has appeared in the 3.2 version, the previous 3.0 and 3.1 version work 
well.

I use Debian Lenny, and the Backports OOo. I know that the Debian BTS does 
not support backports, but I guess this error is also present in OOo Squeeze 
(Squeeze both Backports like OOo uses OpenOffice.org 3.2.1), although this 
point I can not confirm. I can not say anything about Sid OOo.

Thanks







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



Bug#605120: OpenOffice.org Impress 3.2 problems with Presentationview mode

2010-11-27 Thread Alexis PM
Package: openoffice.org-impress
Version: 1:3.2.1-6~bpo50+1

When you open a presentation made with OOo Impress 3.0 or 3.1, I can modify it 
without problems in normal view mode, but in view presentation mode (F5), the 
graphics (lines, embedded images ,...) are partially cut.
If I export the presentation in .pps, .ppt, .sdd or another, the problem 
remains, unless exported in .sxi (OOo 1.x format) but in this case I lose the 
effects of transitions.
Creating a new presentation (File New) and paste a slide in particular, the 
graphics partially cut problem remains.
As an example: http://www.aportes.venenux.org/usuarios/Alexis/prueba.odp

I have also found that creating a new presentation (File New), the first slide 
that is created, not seen in Layout view mode (F5)!

My system is a Debian Lenny, with security updates up to date, with Backports 
OOo.







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



Bug#605120: OpenOffice.org Impress 3.2 problems with Presentationview mode

2010-11-27 Thread Alexis PM
tag 605120 + moreinfo
thanks

 De: Rene Engelhard r...@debian.org
 Asunto: Re: Bug#605120: OpenOffice.org Impress 3.2 problems with 
 Presentationview mode
 Para: alexispm_stellal...@yahoo.es, 605...@bugs.debian.org
 CC: cont...@bugs.debian.org
 Fecha: sábado, 27 de noviembre, 2010 16:53
 notfound 605120 1:3.2.1-6~bpo50+1
 found 605120 1:3.2.1-6
 tag 605120 + moreinfo
 thanks
 
 On Sat, Nov 27, 2010 at 03:41:55PM +, Alexis PM wrote:
  Package: openoffice.org-impress
  Version: 1:3.2.1-6~bpo50+1
 
 This BTS is *not* for bugs on bpo versions.
 
 Does that also happen with squeeze/sids version?


If this bug tracking system isn't for backports, which is?

Because the package in Backports is the same as in Squeeze (but compiled for 
Lenny), so I guess that the bug pointed also be present at Squeeze (though I do 
not use testing and therefore I can not confirm it), so I think it is important 
also to pay attention to bugs in Backports.

 
  When you open a presentation made with OOo Impress 3.0
 or 3.1, I can modify it without problems in normal view
 mode, but in view presentation mode (F5), the graphics
 (lines, embedded images ,...) are partially cut.
  If I export the presentation in .pps, .ppt, .sdd or
 another, the problem remains, unless exported in .sxi (OOo
 1.x format) but in this case I lose the effects of
 transitions.
  Creating a new presentation (File New) and paste a
 slide in particular, the graphics partially cut problem
 remains.
  As an example: http://www.aportes.venenux.org/usuarios/Alexis/prueba.odp
  
  I have also found that creating a new presentation
 (File New), the first slide that is created, not seen in
 Layout view mode (F5)!
  
  My system is a Debian Lenny, with security updates up
 to date, with Backports OOo.
 
 Even if that was confirmed, we're in a hard freeze for
 squeeze (and thus for OOo 3.2.1, which the backport
 you use is from). So this won't be fixed anymore, given
 that it's not a release- critical bug.

That isn't a critical bug and Squeeze is in hard freeze, but OOo is a important 
package for desktop users and it is a important bug (OOo Impress is a 
presentation software and this bug seriously affects usability of the software).

 
 It would also be interesting whether LibreOffice 3.3 is
 affected, too...
 
 Grüße/Regards,
 
 René
 -- 
  .''`.  René Engelhard -- Debian GNU/Linux Developer
  : :' : http://www.debian.org | http://people.debian.org/~rene/
  `. `'  r...@debian.org |
 GnuPG-Key ID: D03E3E70
    `-   Fingerprint: E12D
 EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70
 






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



Bug#605120: OpenOffice.org Impress 3.2 problems with Presentationview mode

2010-11-27 Thread Alexis PM
tag 605120 + moreinfo
thanks

 De: Rene Engelhard r...@debian.org
 Asunto: Re: Bug#605120: OpenOffice.org Impress 3.2 problems with 
 Presentationview mode
 Para: Alexis PM alexispm_stellal...@yahoo.es, 605...@bugs.debian.org
 CC: cont...@bugs.debian.org
 Fecha: sábado, 27 de noviembre, 2010 22:11
 tag 605120 + moreinfo
 thanks
 
 [ would you please wrap your lines at a sane amount? Like
 at 72 chars max.? ]

I wish I could help in this regard, but the webmail does not allow that (or at 
least I think so)

 
 Hi,

Hello

 
 On Sat, Nov 27, 2010 at 09:03:19PM +, Alexis PM wrote:
  tag 605120 + moreinfo
 
 Why? This just says it needs more info, which you didn't
 provide.

I try to provide the information I can, but I do not know (like when you ask 
me whether the bug is also in Squeeze) is also information ;)

 
   This BTS is *not* for bugs on bpo versions.
   
   Does that also happen with squeeze/sids version?
  
  
  If this bug tracking system isn't for backports, which
 is?
 
 Mailing debian-backpo...@lists.d.o,
 as bpo doesn't have a BTS.

Ok, I send copy of this email to the Backports mailing list

 
  Because the package in Backports is the same as in
 Squeeze
 
 nope. squeeze is 2 versions ahead ;)

Ok. Would be nice to keep synchronized with the Backports packages with Testing.

 
  (but compiled for Lenny), so I guess that the bug
 pointed also be present at Squeeze
 
 Maybe, yes. My question was more aimed at wanting to know
 whether it also happens
 there because I don't run OOo 3.2.1 anymore... (but LibO,
 see below)

Maybe, but I don't use Testing.

 
  (though I do not use testing and therefore I can not
 confirm it), so I think it is important also to pay
 attention to bugs in Backports.
 
 didn't say it is not (if you read the ml archive I actually
 fixed a bug based
 on a report from bpo). If I didn't pay attention at all I
 would not want
 more info :)

Ok. My focus is entirely on helping to fix the bug (I often use OOo and the 
last update in Backports to version 3.2 has annoyed me), but questions as if 
the bug is also Squeeze or Sid, I can not answer.

 
   Even if that was confirmed, we're in a hard
 freeze for
   squeeze (and thus for OOo 3.2.1, which the
 backport
   you use is from). So this won't be fixed anymore,
 given
   that it's not a release- critical bug.
  
  That isn't a critical bug and Squeeze is in hard
 freeze, but OOo is a important package for desktop users and
 it is a important bug (OOo Impress is a presentation
 software and this bug seriously affects usability of the
 software).
 
 Yeah, but as you say it's not critical, so...
 
   It would also be interesting whether LibreOffice
 3.3 is
   affected, too...
 
 And this isn't answered (which the moreinfo was about). If
 we had a fix there,
 we could backport it if the release team would approve
 it...

I did not answer the question because I can not answer. I use Debian stable, 
and do not find it possible to install and test Sid Libre/Open Office within 
dependencies issues.
For this reason, I offered a link to a sample presentation ( 
http://www.aportes.venenux.org/usuarios/Alexis/prueba.odp ), so if you use Sid 
with OOo 3.3 you could easily check whether the bug also exists there.

 
 Grüße/Regards,
 
 René
 






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



Bug#605120: OpenOffice.org Impress 3.2 problems with Presentationview mode

2010-11-27 Thread Alexis PM
tag 605120
thanks

 De: Rene Engelhard r...@debian.org
 Asunto: Re: Bug#605120: OpenOffice.org Impress 3.2 problems with 
 Presentationview mode
 Para: alexispm_stellal...@yahoo.es, 605...@bugs.debian.org
 CC: cont...@bugs.debian.org
 Fecha: sábado, 27 de noviembre, 2010 22:42
 tag 605120 + confirmed
 fixed 605120 libreoffice/1:3.3.0~beta3-2
 thanks
 
 On Sat, Nov 27, 2010 at 03:41:55PM +, Alexis PM wrote:
  When you open a presentation made with OOo Impress 3.0
 or 3.1, I can modify it without problems in normal view
 mode, but in view presentation mode (F5), the graphics
 (lines, embedded images ,...) are partially cut.
  If I export the presentation in .pps, .ppt, .sdd or
 another, the problem remains, unless exported in .sxi (OOo
 1.x format) but in this case I lose the effects of
 transitions.
  Creating a new presentation (File New) and paste a
 slide in particular, the graphics partially cut problem
 remains.
  As an example: http://www.aportes.venenux.org/usuarios/Alexis/prueba.odp
 
 Can confirm. (In a amd64 sid chroot with this file).
 Seems it works in LibreOffice (sid main system)

Ok. I say, the problem (in Backports OOo 3.2) isn't to see the lines, but some 
lines cut in the presentation view mode (in the slide example, this is 
particularly evident in the last line displayed, is cut off by half in the 
presentation mode F5).

 
  I have also found that creating a new presentation
 (File New), the first slide that is created, not seen in
 Layout view mode (F5)!
 
 ? You mean you craete a slide, add anything there - is
 not shown? Works here. (in said chroot)

I mean better. I make a new presentation, and the first slide write any text as 
a title, for example. Change the slide design (by default, when creating a 
presentation, the design of the slide is blank slide) and to go to 
presentation view mode (F5), and... all is black, and when pressed again, there 
is already typical Press to end the presentation).

 
 Grüße/Regards,
 
 René

Thank you very much!


 -- 
  .''`.  René Engelhard -- Debian GNU/Linux Developer
  : :' : http://www.debian.org | http://people.debian.org/~rene/
  `. `'  r...@debian.org |
 GnuPG-Key ID: D03E3E70
    `-   Fingerprint: E12D
 EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70
 






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



Bug#529335: ekiga require plugins-v4l2 in some webcams, but support v4l2 don't include in dependences

2009-05-18 Thread Alexis PM
Package: ekiga
Version: 2.0.12-1+nmu1
Severity: normal

***
(System: Debian lenny  5.0.1)
Error message Your video driver don't support v4l
My Laptop Integrated Webcam require v4l2
Solution: Install    libpt-1.11.2-plugins-v4l2

*Package Ekiga: Dependences must include package libpt-1.11.2-plugins-v4l2