[Bug 1904601] Re: lftp 4.8.1 crashes upon exit

2020-11-22 Thread Nicolás Alvarez
I applied the mentioned commit (8ac64e9d66) and tried several commands
under valgrind (including the exact one that was failing in production
servers), it appears it does fix the problem. But I wouldn't call it an
exhaustive test :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1904601

Title:
  lftp 4.8.1 crashes upon exit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lftp/+bug/1904601/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1904601] Re: lftp 4.8.1 crashes upon exit

2020-11-22 Thread Nicolás Alvarez
In my particular case, it *started* crashing after upgrading from
4.8.1-1ubuntu0.1 to 4.8.1-1ubuntu0.2.

With 4.8.1-1ubuntu0.1:
lftp -e 'connect sftp://10.0.2.2 -u nicolas,password42;ls /tmp;exit' # OK
lftp -e 'connect sftp://10.0.2.2 -u nicolas,password42;ls /tmp/ssltest;exit' # 
crash
lftp -e 'get gnu/glibc/nss_db-2.2.tar.gz;exit' ftp.gnu.org # crash, this was 
the LP:1902832 testcase

With 4.8.1-1ubuntu0.2:
lftp -e 'connect sftp://10.0.2.2 -u nicolas,password42;ls /tmp;exit' # crash 
(regression)
lftp -e 'connect sftp://10.0.2.2 -u nicolas,password42;ls /tmp/ssltest;exit' # 
crash
lftp -e 'get gnu/glibc/nss_db-2.2.tar.gz;exit' ftp.gnu.org # OK (fixed)

However, I think the first case worked on 0.1 out of sheer memory-layout
chance, because valgrind shows errors on both versions.

What makes it crash or not may even depend on the length of the output
(and thus the contents of the remote server). And I have sometimes seen
"lftp: RateLimit.cc:30: void RateLimit::AddXfer(int): Assertion
`xfer_number>=0' failed." and other times only "Segmentation fault". But
valgrind should reliably show that corruption happened whether it
crashes in practice or not.

With 4.8.1-1ubuntu0.1:
$ valgrind lftp -e 'connect sftp://10.0.2.2 -u nicolas,longpassword42;ls 
/tmp;exit'
[trim directory listing]
==4276== Invalid read of size 4
==4276==at 0x2184B0: RateLimit::~RateLimit() (in /usr/bin/lftp)
==4276==by 0x218B18: xmap_p::~xmap_p() (in /usr/bin/lftp)
==4276==by 0x6224160: __run_exit_handlers (exit.c:108)
==4276==by 0x6224259: exit (exit.c:139)
==4276==by 0x6202BFD: (below main) (libc-start.c:344)
==4276==  Address 0x8053cd0 is 16 bytes inside a block of size 88 free'd
==4276==at 0x4C3323B: operator delete(void*) (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==4276==by 0x218B25: xmap_p::~xmap_p() (in /usr/bin/lftp)
==4276==by 0x6224160: __run_exit_handlers (exit.c:108)
==4276==by 0x6224259: exit (exit.c:139)
==4276==by 0x6202BFD: (below main) (libc-start.c:344)
==4276==  Block was alloc'd at
==4276==at 0x4C3217F: operator new(unsigned long) (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==4276==by 0x218A09: RateLimit::init(RateLimit::level_e, char const*) (in 
/usr/bin/lftp)
==4276==by 0x218A2C: RateLimit::init(RateLimit::level_e, char const*) (in 
/usr/bin/lftp)
==4276==by 0x211018: SFtp::Do() (in /usr/bin/lftp)
==4276==by 0x1A97C4: SMTask::ScheduleThis() (in /usr/bin/lftp)
==4276==by 0x1A99D0: SMTask::Schedule() (in /usr/bin/lftp)
==4276==by 0x16614C: Job::WaitDone() (in /usr/bin/lftp)
==4276==by 0x15CBE3: main (in /usr/bin/lftp)
==4276== 
==4276== Invalid read of size 8
==4276==at 0x2184B5: RateLimit::~RateLimit() (in /usr/bin/lftp)
==4276==by 0x218B18: xmap_p::~xmap_p() (in /usr/bin/lftp)
==4276==by 0x6224160: __run_exit_handlers (exit.c:108)
==4276==by 0x6224259: exit (exit.c:139)
==4276==by 0x6202BFD: (below main) (libc-start.c:344)
==4276==  Address 0x8053cc8 is 8 bytes inside a block of size 88 free'd
==4276==at 0x4C3323B: operator delete(void*) (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==4276==by 0x218B25: xmap_p::~xmap_p() (in /usr/bin/lftp)
==4276==by 0x6224160: __run_exit_handlers (exit.c:108)
==4276==by 0x6224259: exit (exit.c:139)
==4276==by 0x6202BFD: (below main) (libc-start.c:344)
==4276==  Block was alloc'd at
==4276==at 0x4C3217F: operator new(unsigned long) (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==4276==by 0x218A09: RateLimit::init(RateLimit::level_e, char const*) (in 
/usr/bin/lftp)
==4276==by 0x218A2C: RateLimit::init(RateLimit::level_e, char const*) (in 
/usr/bin/lftp)
==4276==by 0x211018: SFtp::Do() (in /usr/bin/lftp)
==4276==by 0x1A97C4: SMTask::ScheduleThis() (in /usr/bin/lftp)
==4276==by 0x1A99D0: SMTask::Schedule() (in /usr/bin/lftp)
==4276==by 0x16614C: Job::WaitDone() (in /usr/bin/lftp)
==4276==by 0x15CBE3: main (in /usr/bin/lftp)

The 4.8.1-1ubuntu0.2 valgrind trace appears to be the same.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1904601

Title:
  lftp 4.8.1 crashes upon exit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lftp/+bug/1904601/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 56369]

2020-02-23 Thread Nicolás Alvarez
Why did you mark this as fixed, rubi ortiz?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/56369

Title:
  akregator is not crash proof

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdepim/+bug/56369/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 208147] Re: Rarian does not index doc-base documents

2010-07-02 Thread Nicolás Alvarez
I believe this is the same bug: http://bugs.debian.org/546208

** Bug watch added: Debian Bug tracker #546208
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546208

** Also affects: rarian (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546208
   Importance: Unknown
   Status: Unknown

-- 
Rarian does not index doc-base documents
https://bugs.launchpad.net/bugs/208147
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 254037] Re: buildbot slave drops commands on the floor

2010-06-02 Thread Nicolás Alvarez
There's no such thing as 0.7.13.

-- 
buildbot slave drops commands on the floor
https://bugs.launchpad.net/bugs/254037
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 452213] Re: BOINC package needs updating

2010-04-25 Thread Nicolás Alvarez
Shouldn't you open a new bug, instead of reopening this every time there
is an upstream release?

-- 
BOINC package needs updating
https://bugs.launchpad.net/bugs/452213
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 381352] Re: gparted cannot get rid of 30kb head partition of an HFS disk formated in Mac OS X

2010-04-22 Thread Nicolás Alvarez
That first partition *is* the partition table (aka partition map),
that's why you can't remove it. The Apple partition map is unusual in
that it defines itself as one of the partitions on the disk.

If you delete it, you get Partition map has no partition map entry!,
which means the partition map lacks an entry referring to itself as the
first partition (because you deleted it).

I just toggled the bootable flag of it using the command-line parted
tool, and now it keeps saying Partition map has no partition map
entry! and not letting me toggle it back :/

-- 
gparted cannot get rid of 30kb head partition of an HFS disk formated in Mac OS 
X
https://bugs.launchpad.net/bugs/381352
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 469608] Re: BOINC does not start, memory buffer overflow

2010-02-28 Thread Nicolás Alvarez
Shouldn't this be closed? In all cases it was user error for starting
the daemon manually from $HOME. Mind you, it's not the users' fault,
it's because of the lacking documentation that should say one shouldn't
do that. But that's a *separate* bug.

-- 
BOINC does not start, memory buffer overflow
https://bugs.launchpad.net/bugs/469608
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 469608] Re: BOINC does not start, memory buffer overflow

2010-01-04 Thread Nicolás Alvarez
Never run the client by hand. If you do, never run the client in your
home directory; run it in a dedicated directory (that starts empty).

Starting BOINC on your home directory, if it didn't crash, it wouldn't
work anyway. It would think the entire contents of $HOME are disk space
used by BOINC and would probably reach the usage limit, so it wouldn't
get any work.

-- 
BOINC does not start, memory buffer overflow
https://bugs.launchpad.net/bugs/469608
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 410809] Re: Please include libcudart.so in the boinc package

2010-01-04 Thread Nicolás Alvarez
libcudart.so is proprietary code, it can't be included as part of the
boinc package.

Redistributing CUDA runtime libraries in Ubuntu is probably possible (in
the multiverse section), but I don't think it's the BOINC package
maintainers' job to do that...

-- 
Please include libcudart.so in the boinc package
https://bugs.launchpad.net/bugs/410809
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 294241] Re: boinc --show projects not working

2010-01-04 Thread Nicolás Alvarez
Robert, what you just did was starting the core client again, and
probably starting a whole new session, since the state isn't usually
kepy in $HOME. So it cluttered your $HOME with the new internal state
too :)

I wish 'boinc' was out of the $PATH. People keep running it by hand,
which is nearly always wrong.

To get information from a running client, you should use boinccmd.

-- 
boinc --show projects not working
https://bugs.launchpad.net/bugs/294241
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 452352] Re: Package lacks dependencies

2009-10-27 Thread Nicolás Alvarez
** Also affects: lcov (Debian)
   Importance: Undecided
   Status: New

-- 
Package lacks dependencies
https://bugs.launchpad.net/bugs/452352
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 461332] Re: console-kit-daemon crashed with SIGSEGV in g_str_hash()

2009-10-26 Thread Nicolás Alvarez
** Visibility changed to: Public

-- 
console-kit-daemon crashed with SIGSEGV in g_str_hash()
https://bugs.launchpad.net/bugs/461332
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 460729] [NEW] Typo in fdupes manpage

2009-10-25 Thread Nicolás Alvarez
Public bug reported:

Binary package hint: fdupes

On fdupes manpage, in the CAVEATS section, where it says otherwise,
fdupes uses interal routines for this purpose, the word internal is
mistyped.

ProblemType: Bug
Architecture: amd64
Date: Sun Oct 25 20:22:22 2009
Dependencies:
 libgcc1 1:4.2.4-1ubuntu4
 gcc-4.2-base 4.2.4-1ubuntu4
 libc6 2.7-10ubuntu5
DistroRelease: Ubuntu 8.04
NonfreeKernelModules: nvidia
Package: fdupes 1.40-4build1
PackageArchitecture: amd64
ProcEnviron:
 LANGUAGE=es_AR:es
 
PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=es_AR.UTF-8
 SHELL=/bin/bash
SourcePackage: fdupes
Uname: Linux 2.6.24-24-generic x86_64

** Affects: fdupes (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Typo in fdupes manpage
https://bugs.launchpad.net/bugs/460729
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 452352] [NEW] Package lacks dependencies

2009-10-15 Thread Nicolás Alvarez
Public bug reported:

Binary package hint: lcov

I tried running the 'genpng' tool included in the 'lcov' package, and it
printed the following message:

ERROR: required module GD.pm not found on this system (see
www.cpan.org).

It seemed strange that the module wasn't declared a dependency of lcov
so it would be automatically installed. So I started aptitude and looked
at lcov's dependencies (maybe libgd-gd2-perl was in Suggests).

I found that lcov doesn't depend on *anything*! Not even in perl,
despite being *written* in perl, or in gcov, which it surely requires.
There is absolutely nothing in the Depends, Recommends, and Suggests
lines.

I'm in Ubuntu Hardy. Although I used ubuntu-bug so I think there will be
detailed system info attached here...

ProblemType: Bug
Architecture: amd64
Date: Thu Oct 15 14:17:30 2009
Dependencies:
 
DistroRelease: Ubuntu 8.04
NonfreeKernelModules: nvidia
Package: lcov 1.5-2
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=es_AR:es
 
PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=es_AR.UTF-8
 SHELL=/bin/bash
SourcePackage: lcov
Uname: Linux 2.6.24-24-generic x86_64

** Affects: lcov (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Package lacks dependencies
https://bugs.launchpad.net/bugs/452352
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 288983] Re: hgpullsvn crashed with svn in _run_raw_command()

2009-10-14 Thread Nicolás Alvarez
I haven't used hgpullsvn in months. I agree with the closing :)

[By the way, I was unable to post a comment to this bug from
Konqueror...]

-- 
hgpullsvn crashed with svn in _run_raw_command()
https://bugs.launchpad.net/bugs/288983
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 414027] Re: dotty hangs with cpu spin for apt-cache dotty monodevelop graph

2009-08-30 Thread Nicolás Alvarez
*Never* finishes? How long did you wait?

-- 
dotty hangs with cpu spin for apt-cache dotty monodevelop graph
https://bugs.launchpad.net/bugs/414027
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 277840] Re: libasio-dev lacks dependency to libboost-date-time-dev

2009-08-19 Thread Nicolás Alvarez
No chance of backporting to hardy? Not the new version of asio, just the
package dependency fix...

-- 
libasio-dev lacks dependency to libboost-date-time-dev
https://bugs.launchpad.net/bugs/277840
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 347651] Re: boincmgr and boinccmd fail to authenticate - looking in wrong place

2009-04-11 Thread Nicolás Alvarez
Another confused user:

buzz-cp i'm trying to use the gui app
buzz-cp boincmgr
buzz-cp it gives me an error
MTughan What error?
buzz-cp well it just says Error in simple view
PovAddict prints that to console?
buzz-cp gui
PovAddict hmm
PovAddict post a screenshot?
PovAddict what Linux distro?
* PovAddict slaps Romulus with his /etc/init.d scripts
buzz-cp PovAddict: 
http://img149.imageshack.us/img149/5958/200904112013171440x900s.png
buzz-cp btw I am using Ubuntu 8.10
PovAddict BOINC installed from apt?
buzz-cp Yes
PovAddict the version from apt says pre-release? weird
buzz-cp ya
PovAddict try starting BOINC Manager from your desktop environment app 
launcher
PovAddict (like the K Menu on KDE, or the Applications menu on GNOME)
PovAddict instead of boincmgr on the console
buzz-cp using fluxbox, not in my menu
PovAddict ok
PovAddict then cd to /var/lib/boinc-client, and run boincmgr
buzz-cp oh
MTughan That file is where the boinc daemon looks for a connection password. 
The manager should pick it up automatically, but it only searches for the file 
in the current directory.
MTughan Hence why the manager has to/should be run from /var/lib/boinc-client.
buzz-cp awesome
buzz-cp I think I'm back on track
buzz-cp quick q tho: how to I run the command so that it is in the right path 
(i.e. to put in my ~/.fluxbox/menu file
PovAddict cd /var/lib/boinc-client  boincmgr

-- 
boincmgr and boinccmd fail to authenticate - looking in wrong place
https://bugs.launchpad.net/bugs/347651
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 358745] [NEW] monodoc-http should depend on xsp

2009-04-09 Thread Nicolás Alvarez
Public bug reported:

Binary package hint: monodoc

I installed monodoc-http. When run, it says:

The XSP web server is starting now. To view the monodoc pages, your
web browser will open http://localhost:21643/ now.


/usr/bin/monodoc-http: line 18: exec: xsp: not found

Installing mono-xsp seems to have fixed it. It should be a package
dependency.

ProblemType: Bug
Architecture: amd64
Date: Thu Apr  9 17:53:02 2009
DistroRelease: Ubuntu 8.04
NonfreeKernelModules: nvidia
Package: monodoc-http 1.2.6-1ubuntu2
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=es_AR:es
 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/X11R6/bin
 LANG=es_AR.UTF-8
 SHELL=/usr/bin/fish
SourcePackage: monodoc
Uname: Linux 2.6.24-23-generic x86_64

** Affects: monodoc (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
monodoc-http should depend on xsp
https://bugs.launchpad.net/bugs/358745
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 358745] Re: monodoc-http should depend on xsp

2009-04-09 Thread Nicolás Alvarez

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/25163996/Dependencies.txt

-- 
monodoc-http should depend on xsp
https://bugs.launchpad.net/bugs/358745
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 328477] Re: boinc manager password is empty by default

2009-03-23 Thread Nicolás Alvarez
This is a serious security bug. It allows any local user to run
arbitrary code under the 'boinc' user by attaching his own project.

-- 
boinc manager password is empty by default
https://bugs.launchpad.net/bugs/328477
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 72192] Re: No graphics (Show graphics grayed out or nothing happens)

2009-03-23 Thread Nicolás Alvarez
Isn't this fixed in 6.x? (The graphics get started by boincmgr, not
boinc_client, so they run as the local user, not 'boinc').

-- 
No graphics (Show graphics grayed out or nothing happens)
https://bugs.launchpad.net/bugs/72192
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315230] Re: Boinc manager does not work (connect: Operation now in progress)

2009-03-23 Thread Nicolás Alvarez
*** This bug is a duplicate of bug 297447 ***
https://bugs.launchpad.net/bugs/297447

** This bug has been marked a duplicate of bug 297447
   Error: can't open file '/RebootPending.txt' (error 2: No such file or 
directory)

-- 
Boinc manager does not work (connect: Operation now in progress)
https://bugs.launchpad.net/bugs/315230
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 48768] Re: boinc-manager startup program fails to log in

2009-03-23 Thread Nicolás Alvarez
Related, but not quite (since I suggest quite a different solution):
#347651

-- 
boinc-manager startup program fails to log in
https://bugs.launchpad.net/bugs/48768
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 347651] [NEW] boincmgr and boinccmd fail to authenticate - looking in wrong place

2009-03-23 Thread Nicolás Alvarez
Public bug reported:

Binary package hint: boinc-manager

Right after installing boinc-client and boinc-manager, running boinccmd
from a terminal makes it always say Authentication failure, unless
--passwd is given explicitly. Running boincmgr from a terminal (instead
of the program launcher menu) make it unable to connect too, unless the
password is given in the Connect to computer dialog.

Both of these problems go away if the commands are run from /var/lib
/boinc-client or /etc/boinc-client, which is what the BOINC Manager
program launcher does.

I think both programs should be modified to look in /etc/boinc-
client/gui_rpc_auth.cfg. Currently, they only look in the current
directory.

** Affects: boinc (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: boinc (Debian)
 Importance: Undecided
 Status: New

** Also affects: boinc (Debian)
   Importance: Undecided
   Status: New

-- 
boincmgr and boinccmd fail to authenticate - looking in wrong place
https://bugs.launchpad.net/bugs/347651
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 347651] Re: boincmgr and boinccmd fail to authenticate - looking in wrong place

2009-03-23 Thread Nicolás Alvarez
Note: I marked this bug as also affecting Debian, but I haven't reported
it separately to Debian bug tracker.

-- 
boincmgr and boinccmd fail to authenticate - looking in wrong place
https://bugs.launchpad.net/bugs/347651
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 298107] Re: boinc stalls after update

2009-03-23 Thread Nicolás Alvarez
** Changed in: boinc (Ubuntu)
   Status: Confirmed = Invalid

-- 
boinc stalls after update 
https://bugs.launchpad.net/bugs/298107
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 231843] Re: boinc manager don't update

2009-03-23 Thread Nicolás Alvarez
Well, dino99, does this bug still happen in 6.2.x? If not, then say so!

-- 
boinc manager don't update
https://bugs.launchpad.net/bugs/231843
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315125] Re: boincmgr disconnected from project and will not reconnect

2009-03-23 Thread Nicolás Alvarez
Your wrong terminology makes your report confusing (boincmgr never
connects to project servers).

Did you try opening boincmgr from the K menu (*not* by typing boincmgr
on a terminal)?

-- 
boincmgr disconnected from project and will not reconnect
https://bugs.launchpad.net/bugs/315125
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 311107] Re: package boinc need update in repo

2009-03-23 Thread Nicolás Alvarez
Please note 6.4 has issues with scheduling and work fetch, related to
the new GPU support. 6.6 made a lot of changes to improve the situation,
and (so far, being still in development) it got worse :)

I think it's more important to make sure we have the latest 6.2.x
version...

-- 
package boinc need update in repo
https://bugs.launchpad.net/bugs/311107
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 298107] Re: boinc stalls after update

2009-03-23 Thread Nicolás Alvarez
For the first part of the report, as I said: you aren't supposed to run
'boinc', it's already running (starts on boot), and you can't have
multiple instances running at the same time. And you'd cause big
problems if you stop the current instance and run it as ~$ boinc, since
that will fill your home directory with files related to BOINC
operations, and form a BOINC environment separate from the one in
/var/lib/boinc-client. So, never run 'boinc' by hand.

However I didn't read the whole report carefully. The authentication
problems really do exist. I opened #347651 giving a suggestion that, I
think, will finally get rid of the problem.

-- 
boinc stalls after update 
https://bugs.launchpad.net/bugs/298107
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 277840] Re: libasio-dev lacks dependency to libboost-date-time-dev

2009-03-19 Thread Nicolás Alvarez
I'm not sure what you mean with But libboost 1.34 doesn't have asio in
it!. boost-asio and asio are independent libraries (basically same code
but on different C++ namespaces and different header paths).

-- 
libasio-dev lacks dependency to libboost-date-time-dev
https://bugs.launchpad.net/bugs/277840
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 277840] Re: libasio-dev lacks dependency to libboost-date-time-dev

2009-03-19 Thread Nicolás Alvarez
http://blog.think-async.com/2008/05/boostasio-vs-asio.html

Boost.Asio uses the Boost.System library to provide support for error
codes, but *both* Asio and Boost.Asio depend on other Boost libraries
like regex and date_time.

-- 
libasio-dev lacks dependency to libboost-date-time-dev
https://bugs.launchpad.net/bugs/277840
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 316174] Re: All translations gone

2009-01-14 Thread Nicolás Alvarez
Even though I downgraded the packages I had upgraded, a few apps are
still appearing in English :/

I'll now try upgrading all (that is, including -base).

-- 
All translations gone
https://bugs.launchpad.net/bugs/316174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 316174] Re: All translations gone

2009-01-12 Thread Nicolás Alvarez
@Colin: The problem is not just that I installed the language-pack-es
and the -base package didn't automatically get marked for update. The
-base package doesn't show as an upgrade at all, so I can't even
manually mark it for upgrading. If I tell it to upgrade everything that
is available for upgrade, language-pack-es is updated to the empty
version but language-pack-es-base remains untouched. I have no idea why.

What I *can* do is going to the list of package versions in aptitude,
and marking the newest version number for installing (with +). But if I
press + on the package itself (and not on a specific version number),
it's not marked for upgrade. This did work for the non -base language-
pack packages.

Although I agree that the language packs should depend on the specific
version of the -base package they need.

-- 
All translations gone
https://bugs.launchpad.net/bugs/316174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 316174] Re: All translations gone

2009-01-11 Thread Nicolás Alvarez
1:8.04+20090105 doesn't even show in packages.ubuntu.org; how did I
manage to get it? :/

-- 
All translations gone
https://bugs.launchpad.net/bugs/316174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 316174] Re: All translations gone

2009-01-11 Thread Nicolás Alvarez
Changelog for language-pack-es 1:8.04+20090105 says just Initial
release. All previous changelog entries seem to have disappeared.

-- 
All translations gone
https://bugs.launchpad.net/bugs/316174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 316174] [NEW] All translations gone

2009-01-11 Thread Nicolás Alvarez
Public bug reported:

Binary package hint: language-pack-es

A few days ago I saw updates for language-pack-en, language-pack-es, and
the ones with -kde on the name. Aptitude said after installing, 22MB
will be freed or something like that. The old (installed) packages were
around 6MB and the new ones 22KB. I installed them, and now everything
shows in English.

Using Kubuntu hardy 64-bit. Old package version was 1:8.04+20080805, new
one 1:8.04+20090105.

Strangely, when I look at the available versions of language-pack-es-
base, 1:8.04+20090105 appears in the bottom of the list:

  --\ Versions
p1:8.04+20080415
i1:8.04+20080527.2
p1:8.04+20090105

However the -base packages aren't listed in Available upgrades.

** Affects: language-pack-es (Ubuntu)
 Importance: Undecided
 Status: New

-- 
All translations gone
https://bugs.launchpad.net/bugs/316174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 316174] Re: All translations gone

2009-01-11 Thread Nicolás Alvarez
I still don't know why I got the 20090105 package if it's in -proposed.
My /etc/apt/preferences is:

Package: *
Pin: release a=hardy-updates
Pin-Priority: 900

Package: *
Pin: release a=hardy-proposed
Pin-Priority: 400

Package: *
Pin: release a=hardy-backports
Pin-Priority: 300

which supposedly shows stuff from -proposed only if I explicitly ask for
it with aptitude -t hardy-proposed. I didn't use -t when upgrading...

Anyway, thanks for confirming. I have now downgraded the packages
manually. Good thing the problem was found in -proposed before it was
pushed to everybody :)

-- 
All translations gone
https://bugs.launchpad.net/bugs/316174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 313563] Re: insight-bin segfault when opening registers

2009-01-07 Thread Nicolás Alvarez
** Visibility changed to: Public

-- 
insight-bin segfault when opening registers
https://bugs.launchpad.net/bugs/313563
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 314180] [NEW] Typo in ntpdate manpage

2009-01-05 Thread Nicolás Alvarez
Public bug reported:

ntpdate package 1:4.2.4p4+dfsg-3ubuntu2 on Kubuntu 8.04.

When explaining the -o switch, the manpage says:

Specify the NTP version for outgoint packets as the integer

s/outgoint/outgoing/

** Affects: ntp (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Typo in ntpdate manpage
https://bugs.launchpad.net/bugs/314180
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 232461] Re: insight crashes when Preferences/Global is selected

2009-01-03 Thread Nicolás Alvarez
I get the same. A red window seems to briefly open before it crashes
too.

-- 
insight crashes when Preferences/Global is selected
https://bugs.launchpad.net/bugs/232461
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 301990] Re: boinc-client starts before nvidia kernel module is loaded and failed to detect CUDA devices

2008-12-19 Thread Nicolás Alvarez
The first official release supporting CUDA (6.4) was released *two days
ago*; see BOINC front page:

December 17, 2008
BOINC now supports computing using NVIDIA GPUs.

-- 
boinc-client starts before nvidia kernel module is loaded and failed to detect 
CUDA devices
https://bugs.launchpad.net/bugs/301990
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 301990] Re: boinc-client starts before nvidia kernel module is loaded and failed to detect CUDA devices

2008-12-18 Thread Nicolás Alvarez
Intrepid has 6.2.12. Were GPU-related changes back-ported?

-- 
boinc-client starts before nvidia kernel module is loaded and failed to detect 
CUDA devices
https://bugs.launchpad.net/bugs/301990
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 284805] Re: (boincmgr:23660): Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text()

2008-12-16 Thread Nicolás Alvarez
More exactly, it was fixed in revision 15574 of BOINC SVN.

-- 
(boincmgr:23660): Pango-WARNING **: Invalid UTF-8 string passed to 
pango_layout_set_text()
https://bugs.launchpad.net/bugs/284805
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 297447] Re: Error: can't open file '/RebootPending.txt' (error 2: No such file or directory)

2008-12-16 Thread Nicolás Alvarez
The RebootPending.txt file is created by the Windows installer. The
installer also sets things up so the file gets deleted on the next
reboot. If the file exists, BOINC Manager will show a message box saying
A reboot is required in order for BOINC to run properly. Please reboot
your computer and try again. and quit. That reboot is only needed on
Windows due to the way new user accounts are created; it's not needed on
other platforms.

Maybe the manager shouldn't check for that file on platforms other than
Windows; or maybe it should check for its existence in a different way
(instead of trying to open it), to avoid that error message on stderr.

Consider reporting upstream.

-- 
Error: can't open file '/RebootPending.txt' (error 2: No such file or directory)
https://bugs.launchpad.net/bugs/297447
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 298107] Re: boinc stalls after update

2008-12-16 Thread Nicolás Alvarez
You aren't supposed to run boinc --run_cpu_benchmarks; that will start a
new instance of the client. The client was already started by the init
script right after the installation.

The error you get is *because* you're running multiple clients.

-- 
boinc stalls after update 
https://bugs.launchpad.net/bugs/298107
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 298107] Re: boinc stalls after update

2008-12-16 Thread Nicolás Alvarez
I mean the [error] GUI RPC bind failed: 98 error.

-- 
boinc stalls after update 
https://bugs.launchpad.net/bugs/298107
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 226612] Re: Please provide meta package to install boinc-client and boinc-manager (boinc-manager confuses new users)

2008-12-16 Thread Nicolás Alvarez
The client shouldn't depend on the manager. It can be run on headless
machines.

The manager shouldn't depend on the client, for the same reason X apps
depend on X libraries but not on an X server: it's an uncommon but
completely valid use case to install only the manager on a computer, for
the purpose of controlling BOINC clients remotely.

The client currently suggests the manager, and the manager recommends
the client. If I remember correctly the definition of suggests and
recommends, this setup seems perfect. However, many APT frontends
don't automatically install recommended packages, or at least not by
default (need a setting change).

So I agree: the best way is a boinc meta-package that Depends: boinc-
client, boinc-manager.

-- 
Please provide meta package to install boinc-client and boinc-manager 
(boinc-manager confuses new users)
https://bugs.launchpad.net/bugs/226612
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 301990] Re: boinc-client starts before nvidia kernel module is loaded and failed to detect CUDA devices

2008-12-16 Thread Nicolás Alvarez
Hmm the boinc-client currently on Ubuntu seems old enough not to support
GPUs anyway, or does it?

-- 
boinc-client starts before nvidia kernel module is loaded and failed to detect 
CUDA devices
https://bugs.launchpad.net/bugs/301990
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 181838] Re: The projects keep running after the boinc-manager has been shut down.

2008-12-16 Thread Nicolás Alvarez
And after you turn off your screen, your computer still keeps running,
using electricity and making noise.

The manager is just a graphical tool to see what the client is doing.
Closing the manager isn't supposed to stop the projects.

-- 
The projects keep running after the boinc-manager has been shut down.
https://bugs.launchpad.net/bugs/181838
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 118939] Re: Apport does not get used for crashing KDE programs

2008-10-31 Thread Nicolás Alvarez
I'm a developer. I enabled apport manually. On many of the crashes I get
(which aren't that many because KDE3 and apport don't like each other),
I click cancel, because at the time I can't be bothered to write a
description of what I was doing before it crashed.

Unless there is a way to get the stackdump to get uploaded without
needing a launchpad account or any other kind of user input (= like
Microsoft's error reporting), apport shouldn't be enabled by default.

-- 
Apport does not get used for crashing KDE programs
https://bugs.launchpad.net/bugs/118939
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 288980] Re: hg crashed with EOFError in __iter__()

2008-10-25 Thread Nicolás Alvarez
Uh, yes I did, thanks! That was it... I was having problems running hg
convert (didn't work the way I expected it to work, didn't convert the
whole repository due to my directory structure). Once I upgraded to SVN
1.5 from hardy-backports, hg convert wouldn't run at all. That must have
been the crash apport grabbed.

-- 
hg crashed with EOFError in __iter__()
https://bugs.launchpad.net/bugs/288980
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 288977] [NEW] Typo in apport-cli manpage

2008-10-24 Thread Nicolás Alvarez
Public bug reported:

Binary package hint: apport

Very minor bug. apport-cli manpage, in the description of --file-bug,
says: This will automatically attach information about your operating
sytem[...]; should read system.

Kubuntu Hardy, apport package version 0.108.2.

** Affects: apport (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Typo in apport-cli manpage
https://bugs.launchpad.net/bugs/288977
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 288980] Re: hg crashed with EOFError in __iter__()

2008-10-24 Thread Nicolás Alvarez

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/18878157/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/18878158/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/18878159/ProcStatus.txt

** Attachment added: Traceback.txt
   http://launchpadlibrarian.net/18878160/Traceback.txt

** Visibility changed to: Public

-- 
hg crashed with EOFError in __iter__()
https://bugs.launchpad.net/bugs/288980
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 288983] Re: hgpullsvn crashed with svn in _run_raw_command()

2008-10-24 Thread Nicolás Alvarez

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/18878297/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/18878298/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/18878299/ProcStatus.txt

** Attachment added: Traceback.txt
   http://launchpadlibrarian.net/18878300/Traceback.txt

** Visibility changed to: Public

-- 
hgpullsvn crashed with svn in _run_raw_command()
https://bugs.launchpad.net/bugs/288983
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 118939] Re: Apport does not get used for crashing KDE programs

2008-10-24 Thread Nicolás Alvarez
How do I manually disable the KDE crash manager and use apport? (Hardy)

-- 
Apport does not get used for crashing KDE programs
https://bugs.launchpad.net/bugs/118939
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 278419] Re: Argentina is 1 hour ahead when it shouldn't

2008-10-20 Thread Nicolás Alvarez
Actually, I forgot to follow up here. The fix *did* work for me. I just
had to logout, and undo a stupid workaround I had used back when Ubuntu
entered DST when it shouldn't have (two weeks ago) and the updated
package took days to be released.

So what exactly is broken now (and fixed in Debian)? The provinces that
decided not to switch? And, if it's correct, why wasn't the Debian fix
sent back to upstream maintainers?

-- 
Argentina is 1 hour ahead when it shouldn't
https://bugs.launchpad.net/bugs/278419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 278419] Re: Argentina is 1 hour ahead when it shouldn't

2008-10-18 Thread Nicolás Alvarez
We're now in DST, but my clock didn't change.

This feels like 2007 all over again...

Skip all the useless testing and get the package updated as soon as
possible!

Testing here *is* useless. Come on, you can't render a machine
unbootable by changing timezone information. In this case it's more
harmful to delay the update than to send it without testing it enough.

-- 
Argentina is 1 hour ahead when it shouldn't
https://bugs.launchpad.net/bugs/278419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 91418] Re: Time not updated when daylight savings switch made

2008-10-18 Thread Nicolás Alvarez
Isn't it too late by then?

-- 
Time not updated when daylight savings switch made
https://bugs.launchpad.net/bugs/91418
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 278419] Re: Argentina is 1 hour ahead when it shouldn't

2008-10-16 Thread Nicolás Alvarez
Watch the tz-data mailing list, there is some not-completely-official-
but-good-enough information on what provinces will *not* use DST.

-- 
Argentina is 1 hour ahead when it shouldn't
https://bugs.launchpad.net/bugs/278419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 278419] Re: Argentina is 1 hour ahead when it shouldn't

2008-10-07 Thread Nicolás Alvarez
What the hell? I thought the fix REMOVED DST for this year!

Oct 19 is just a *rumor* from a news site *last year*.

-- 
Argentina is 1 hour ahead when it shouldn't
https://bugs.launchpad.net/bugs/278419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 278419] Re: Argentina is 1 hour ahead when it shouldn't

2008-10-07 Thread Nicolás Alvarez
Oh well, at least I got my correct clock back, and you have almost two
weeks to fix it correctly... (actually, are you coordinating with the
upstream maintainers of tzdata or just going on your own? I hate it when
distros fix bugs on their own without letting everyone else benefit from
the fix)

-- 
Argentina is 1 hour ahead when it shouldn't
https://bugs.launchpad.net/bugs/278419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 278419] Re: Argentina is 1 hour ahead when it shouldn't

2008-10-06 Thread Nicolás Alvarez
When will this get on Hardy? Should I workaround the bug by changing my
timezone to an explicit GMT-3? (I won't do it if the fix gets on Hardy
in an hour from now :P).

-- 
Argentina is 1 hour ahead when it shouldn't
https://bugs.launchpad.net/bugs/278419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 278419] Re: Argentina is 1 hour ahead when it shouldn't

2008-10-05 Thread Nicolás Alvarez
Quote from Debian bug report:
  Given this kind of thing happens every year, I think we should stop
  using max in the definition of the Argentinian timezone, and only use
  only to define the DST rules year by year instead of using the rule of
  the previous year.
 
 I agree.  Also, I'd like to note that last year, when the law was
 passed, it was explicitely said that the government would set the
 dates for 2008/2009 as they saw fit, whever they saw appropiate.  So,
 it should always have been only.  And it should keep being only,
 unless they state that whatever they decide is to be applied in the
 future.

-- 
Argentina is 1 hour ahead when it shouldn't
https://bugs.launchpad.net/bugs/278419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 277840] [NEW] libasio-dev lacks dependency to libboost-date-time-dev

2008-10-03 Thread Nicolás Alvarez
Public bug reported:

Binary package hint: libasio-dev

I installed libasio-dev, and included one of its headers from my
program. The compiler gave this error:

In file included from /usr/include/asio/impl/io_service.ipp:24,
 from /usr/include/asio/io_service.hpp:498,
 from /home/nicolas/src/test-server/server.h:11,
 from /home/nicolas/src/test-server/testserver.h:4,
 from /home/nicolas/src/test-server/testserver.cpp:1:
/usr/include/asio/detail/epoll_reactor.hpp:29:59: error: 
boost/date_time/posix_time/posix_time_types.hpp: No such file or directory

libasio-dev depends on libboost-dev but not on libboost-date-time-dev.

This is the only problem I actually stumbled upon (so far), but
include/asio/read_until.hpp is including boost/regex.hpp, which also in
a separate package in Ubuntu. That dependency is probably needed as
well.

** Affects: asio (Ubuntu)
 Importance: Undecided
 Status: New

-- 
libasio-dev lacks dependency to libboost-date-time-dev
https://bugs.launchpad.net/bugs/277840
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs