[Bug 2063973] Re: network-online.target is reached before netplan-configured interfaces are online

2024-04-28 Thread Lucas Nussbaum
I think I understood this.

I have a udev rule to force the NIC name to eno1, which is not the
driver's default (it is eno1np0). I did not regenerate the initramfs, so
that rule did not propagate there.

What happens is:
- initramfs is executed. The NIC is renamed to eno1np0 (driver's default).
- systemd starts
- it runs the netplan generator
- the netplan generator sees its configuration for eno1, but does not match it 
to eno1np0.
- as a consequence, it does not generate the symlink 
(/run/systemd/generator/network-online.target.wants/systemd-networkd-wait-online.service)
- udev kicks in, renames the NIC to eno1, but it's too late.

That behaviour is caused by debian/patches/lp2060311/0010-wait-online-
wait-for-existing-interfaces-only-and-do.patch. Removing that patch
returns to the previous behaviour.

There are two potential workarounds:
- regenerate the initramfs, so that it knows about the new name for the 
interface and names it correctly before systemd starts.
- help netplan match the real NIC with its configuration, for example 
specifying the MAC address.
```
---
network:
  version: 2
  renderer: networkd
  ethernets:
eno1:
  dhcp4: true
  match:
macaddress: 98:03:9b:b0:a7:76
```

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

Title:
  network-online.target is reached before netplan-configured interfaces
  are online

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2063973/+subscriptions


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

[Bug 2063973] Re: network-online.target is reached before netplan-configured interfaces are online

2024-04-27 Thread Lucas Nussbaum
It worked fine in Ubuntu 23.10: network-online.target is only reached
after eno1 is configured.

# journalctl -b |grep -e network -e grid5000.mount
Apr 28 00:23:06 localhost kernel: drop_monitor: Initializing network drop 
monitor service
Apr 28 00:23:06 localhost systemd[1]: Listening on systemd-networkd.socket - 
Network Service Netlink Socket.
Apr 28 00:23:08 localhost systemd[1]: Starting cloud-init-local.service - 
Initial cloud-init job (pre-networking)...
Apr 28 00:23:09 localhost systemd[1]: Finished cloud-init-local.service - 
Initial cloud-init job (pre-networking).
Apr 28 00:23:09 localhost systemd[1]: Reached target network-pre.target - 
Preparation for Network.
Apr 28 00:23:09 localhost systemd[1]: Starting systemd-networkd.service - 
Network Configuration...
Apr 28 00:23:09 localhost systemd-networkd[1157]: lo: Link UP
Apr 28 00:23:09 localhost systemd-networkd[1157]: lo: Gained carrier
Apr 28 00:23:09 localhost systemd-networkd[1157]: Enumeration completed
Apr 28 00:23:09 localhost systemd[1]: Started systemd-networkd.service - 
Network Configuration.
Apr 28 00:23:09 localhost systemd-networkd[1157]: eno1: Configuring with 
/run/systemd/network/10-netplan-eno1.network.
Apr 28 00:23:09 localhost systemd[1]: Reached target network.target - Network.
Apr 28 00:23:09 localhost systemd[1]: Starting 
systemd-networkd-wait-online.service - Wait for Network to be Configured...
Apr 28 00:23:09 localhost systemd-networkd[1157]: eno1: Link UP
Apr 28 00:23:09 localhost systemd-networkd[1157]: eno1: Gained carrier
Apr 28 00:23:10 localhost systemd-networkd[1157]: eno1: DHCPv4 address 
172.16.66.58/20, gateway 172.16.79.254 acquired from 172.16.79.107
Apr 28 00:23:11 localhost systemd-networkd[1157]: eno1: Gained IPv6LL
Apr 28 00:23:11 localhost systemd[1]: Finished 
systemd-networkd-wait-online.service - Wait for Network to be Configured.
Apr 28 00:23:12 localhost systemd[1]: Reached target network-online.target - 
Network is Online.
Apr 28 00:23:13 localhost systemd[1]: Mounting grid5000.mount - /grid5000...
Apr 28 00:23:13 localhost dbus-daemon[1182]: [system] Activating systemd to 
hand-off: service name='org.freedesktop.hostname1' 
unit='dbus-org.freedesktop.hostname1.service' requested by ':1.0' (uid=101 
pid=1157 comm="/lib/systemd/systemd-networkd" label="unconfined")
Apr 28 00:23:13 localhost systemd[1]: Starting networkd-dispatcher.service - 
Dispatcher daemon for systemd-networkd...
Apr 28 00:23:13 localhost networkd-dispatcher[1197]: No valid path found for 
iwconfig
Apr 28 00:23:13 localhost networkd-dispatcher[1197]: No valid path found for iw
Apr 28 00:23:13 localhost systemd[1]: Started networkd-dispatcher.service - 
Dispatcher daemon for systemd-networkd.
Apr 28 00:23:13 localhost systemd-networkd[1157]: eno1: DHCPv6 address 
2001:660:4406:500:3::3a/128 (valid for 23h 59min 59s, preferred for 14h 59min 
59s)
Apr 28 00:23:14 gros-58 systemd[1]: Reloading requested from client PID 1345 
(unit grid5000.mount)...
Apr 28 00:23:14 gros-58 systemd[1]: Mounted grid5000.mount - /grid5000.
Apr 28 00:23:22 gros-58 systemd[1541]: Listening on dirmngr.socket - GnuPG 
network certificate management daemon.

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

Title:
  network-online.target is reached before netplan-configured interfaces
  are online

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2063973/+subscriptions


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

[Bug 2063973] [NEW] network-online.target is reached before netplan-configured interfaces are online

2024-04-27 Thread Lucas Nussbaum
Public bug reported:

Hi,

Running Ubuntu 24.04 with netplan.io/netplan-generator 1.0-2ubuntu1.

I use a systemd unit to mount an NFS filesystem. That unit should only
be activated when the network is ready. However, it looks like network-
online.target is reached before netplan-configured interfaces are up, so
the unit triggers too early and sometimes fail (because it cannot
resolve the name of the remote server).

I configured netplan manually with:
```
# cat /etc/netplan/01-netcfg.yaml 
---
network:
  version: 2
  renderer: networkd
  ethernets:
eno1:
  dhcp4: true
```

I see the following during boot:

```
Apr 27 23:31:28 localhost systemd[1]: Starting systemd-networkd.service - 
Network Configuration...
Apr 27 23:31:28 localhost systemd-networkd[1190]: lo: Link UP
Apr 27 23:31:28 localhost systemd-networkd[1190]: lo: Gained carrier
Apr 27 23:31:28 localhost systemd-networkd[1190]: Enumeration completed
Apr 27 23:31:28 localhost systemd-networkd[1190]: eno1: Configuring with 
/run/systemd/network/10-netplan-eno1.network.
Apr 27 23:31:28 localhost systemd[1]: Started systemd-networkd.service - 
Network Configuration.
Apr 27 23:31:28 localhost systemd[1]: Reached target network.target - Network.
Apr 27 23:31:28 localhost systemd[1]: systemd-networkd-wait-online.service - 
Wait for Network to be Configured was skipped because of an unmet condition 
check 
(ConditionPathIsSymbolicLink=/run/systemd/generator/network-online.target.wants/systemd-networkd-wait-online.service).
Apr 27 23:31:28 localhost systemd[1]: Reached target network-online.target - 
Network is Online.
Apr 27 23:31:28 localhost systemd[1]: Reached target remote-fs-pre.target - 
Preparation for Remote File Systems.
Apr 27 23:31:28 localhost systemd[1]: Mounting grid5000.mount - /grid5000...
Apr 27 23:31:28 localhost systemd-networkd[1190]: eno1: Link UP
Apr 27 23:31:28 localhost systemd-networkd[1190]: eno1: Gained carrier
Apr 27 23:31:28 localhost systemd-networkd[1190]: eno1: DHCPv4 address 
172.16.66.53/20, gateway 172.16.79.254 acquired from 172.16.79.107
Apr 27 23:31:28 localhost systemd[1]: Starting networkd-dispatcher.service - 
Dispatcher daemon for systemd-networkd...
Apr 27 23:31:29 gros-53 systemd[1]: Starting rpc-statd.service - NFS status 
monitor for NFSv2/3 locking
Apr 27 23:31:29 gros-53 rpc.statd[1439]: Version 2.6.4 starting
Apr 27 23:31:29 gros-53 rpc.statd[1439]: Flags: TI-RPC
Apr 27 23:31:29 gros-53 rpc.statd[1439]: Failed to read /var/lib/nfs/state: 
Success
Apr 27 23:31:29 gros-53 rpc.statd[1439]: Initializing NSM state
Apr 27 23:31:29 gros-53 systemd[1]: Started rpc-statd.service - NFS status 
monitor for NFSv2/3 locking..
Apr 27 23:31:29 gros-53 mount[1441]: Created symlink 
/run/systemd/system/remote-fs.target.wants/rpc-statd.service → 
/usr/lib/systemd/system/rpc-statd.service.
Apr 27 23:31:29 gros-53 systemd[1]: Reloading requested from client PID 1441 
('systemctl') (unit grid5000.mount)...
Apr 27 23:31:29 gros-53 systemd[1]: Reloading...
Apr 27 23:31:30 gros-53 systemd[1]: Reloading finished in 194 ms.
Apr 27 23:31:30 gros-53 systemd[1]: Mounted grid5000.mount - /grid5000.
Apr 27 23:31:30 gros-53 nfsrahead[1497]: setting /grid5000 readahead to 128


The key message here seems to be:
Apr 27 23:31:28 localhost systemd[1]: systemd-networkd-wait-online.service - 
Wait for Network to be Configured was skipped because of an unmet condition 
check 
(ConditionPathIsSymbolicLink=/run/systemd/generator/network-online.target.wants/systemd-networkd-wait-online.service).
Why doesn't netplan generate that symlink? It seems it does generate it, but 
only later, when systemd reloads at 23:31:29 (according to 'stat' on the 
symlink).


It worked fine with Ubuntu 22.04:
"systemd[1]: Reached target Network is Online."
only appears after the interface got configured via DHCP.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: netplan.io 1.0-2ubuntu1
ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
Uname: Linux 6.8.0-31-generic x86_64
ApportVersion: 2.28.1-0ubuntu2
Architecture: amd64
CasperMD5CheckResult: pass
Date: Sat Apr 27 23:50:37 2024
InstallationDate: Installed on 2024-04-26 (1 days ago)
InstallationMedia: Ubuntu-Server 24.04 LTS "Noble Numbat" - Release amd64 
(20240423)
ProcEnviron:
 LANG=en_US.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm
 XDG_RUNTIME_DIR=
SourcePackage: netplan.io
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: netplan.io (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug noble

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

Title:
  network-online.target is reached before netplan-configured interfaces
  are online

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2063973/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com

[Bug 1508291] Re: FTBFS: undefined method `mock' for #

2016-08-28 Thread Lucas Nussbaum
builds fine now

** Changed in: yard (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  FTBFS: undefined method `mock' for
  #https://bugs.launchpad.net/ubuntu/+source/yard/+bug/1508291/+subscriptions

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


[Bug 1233801] Re: help me

2016-07-28 Thread Lucas Nussbaum
** Changed in: ruby-pg (Ubuntu)
   Status: New => Invalid

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

Title:
  help me

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ruby-pg/+bug/1233801/+subscriptions

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


[Bug 883508] Re: probleme d'installation d' ocamlbricks

2013-05-28 Thread Lucas Nussbaum
bug filed against the ubuntu ocamlbricks package, while the user
complains about marionnet_from_scratch.

** Changed in: ocamlbricks (Ubuntu)
   Status: New = Invalid

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

Title:
  probleme d'installation d' ocamlbricks

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

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


[Bug 816750] Re: mpich2 library needs recompile with gfortran 4.5

2011-12-20 Thread Lucas Nussbaum
i've just pinged #ubuntu-motu:
21:20  lucas could someone take a look at 
   https://bugs.launchpad.net/ubuntu/+source/mpich2/+bug/816750 ? I 
   don't have a lucid chroot, so I can't test, but this looks like 
a 
   simple rebuild is required for mpich2 on lucid.

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

Title:
  mpich2 library needs recompile with gfortran 4.5

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

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


[Bug 873912] Re: package ruby 4.8 failed to install/upgrade: ErrorMessage: dependency problems - leaving unconfigured

2011-12-20 Thread Lucas Nussbaum
If you can say: I've never installed any Ruby-related package from a
PPA, please reopen that bug, and I'll look into it. In the meantime,
I'm closing it, since chances that this is PPA-related are extremely
high.

** Changed in: ruby-defaults (Ubuntu)
   Status: New = Invalid

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

Title:
  package ruby 4.8 failed to install/upgrade: ErrorMessage: dependency
  problems - leaving unconfigured

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ruby-defaults/+bug/873912/+subscriptions

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


[Bug 884889] Re: internal:lib/rubygems/defaults:24: warning: statement not reached

2011-11-01 Thread Lucas Nussbaum
It's fixed in newer versions of the package

** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Fix Released

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

Title:
  internal:lib/rubygems/defaults:24: warning: statement not reached

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ruby1.9.1/+bug/884889/+subscriptions

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


[Bug 713388] Re: ugly warning message

2011-10-13 Thread Lucas Nussbaum
It's caused by the Debian-specific patch to change some rubygems features.
It's fixed in the 1.9.3 branch of the Debian package, so someone could backport 
the fix to the version Ubuntu uses.

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

Title:
  ugly warning message

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ruby1.9.1/+bug/713388/+subscriptions

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


[Bug 713388] Re: ugly warning message

2011-10-08 Thread Lucas Nussbaum
** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Fix Released

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

Title:
  ugly warning message

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ruby1.9.1/+bug/713388/+subscriptions

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


[Bug 706603] Re: gem1.9.1 doens't install executables on PATH

2011-10-08 Thread Lucas Nussbaum
** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Fix Released

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

Title:
  gem1.9.1 doens't install executables on PATH

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ruby1.9.1/+bug/706603/+subscriptions

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


[Bug 586087] Re: Luid: floating point operations seems not to match specification

2011-10-08 Thread Lucas Nussbaum
was reported upstream.

** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Invalid

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

Title:
  Luid: floating point operations seems not to match specification

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ruby1.9.1/+bug/586087/+subscriptions

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


[Bug 801294] Re: ruby1.9.1 package is really 1.9.2

2011-06-23 Thread Lucas Nussbaum
** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Won't Fix

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

Title:
  ruby1.9.1 package is really 1.9.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ruby1.9.1/+bug/801294/+subscriptions

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


[Bug 634703] Re: /usr/bin/ruby should use the alternatives system

2011-03-25 Thread Lucas Nussbaum
Fixed in version 4.7.

** Changed in: ruby-defaults (Ubuntu)
   Status: New = Fix Released

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

Title:
  /usr/bin/ruby should use the alternatives system

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


[Bug 732646] Re: ERROR NoMethodError: private method `gsub!' called for #Class:0x7f81065932e0

2011-03-25 Thread Lucas Nussbaum
not a bug in ruby1.8

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Invalid

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

Title:
  ERROR NoMethodError: private method `gsub!' called for
  #Class:0x7f81065932e0

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


[Bug 730540] Re: version 1.9.1 too old for rails3

2011-03-25 Thread Lucas Nussbaum
natty not affected

** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Fix Released

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

Title:
  version 1.9.1 too old for rails3

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


[Bug 653231] Re: p249 (shipped with 10.04) has known bug

2011-03-25 Thread Lucas Nussbaum
we can't upgrade to newer upstream releases in 10.04. use backports.

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Invalid

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

Title:
  p249 (shipped with 10.04) has known bug

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


[Bug 650916] Re: package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2011-03-25 Thread Lucas Nussbaum
not enough info to debug

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Invalid

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

Title:
  package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 2

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


[Bug 586087] Re: Luid: floating point operations seems not to match specification

2011-03-25 Thread Lucas Nussbaum
robbie, again, could you give us a pointer to the discussion on redmine
? Is this fixed in 1.9.2-p0 ?

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

Title:
  Luid: floating point operations seems not to match specification

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


[Bug 361139] Re: Hardy cgi fails to supply HTTP_IF_MODIFIED_SINCE

2011-03-25 Thread Lucas Nussbaum
fixed in recent rubies

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Fix Released

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

Title:
  Hardy cgi fails to supply HTTP_IF_MODIFIED_SINCE

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


[Bug 706603] Re: gem1.9.1 doens't install executables on PATH

2011-01-25 Thread Lucas Nussbaum
There's no easy way to add a directory to PATH.

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

Title:
  gem1.9.1 doens't install executables on PATH

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


[Bug 671815] Re: mpich2 conflicts mpd because of binary names

2011-01-07 Thread Lucas Nussbaum
fixed in natty

** Changed in: mpich2 (Ubuntu)
   Status: New = Fix Released

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

Title:
  mpich2 conflicts mpd because of binary names

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


[Bug 697971] Re: Ruby 1.8 packages do not use alternatives system

2011-01-05 Thread Lucas Nussbaum
** Changed in: ruby1.8 (Ubuntu)
   Status: New = Invalid

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

Title:
  Ruby 1.8 packages do not use alternatives system

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


Re: [Bug 671815] [NEW] mpich2 conflicts mpd because of binary names

2010-11-06 Thread Lucas Nussbaum
On 06/11/10 at 12:35 -, Simon Niechzial wrote:
 Public bug reported:
 
 Binary package hint: mpich2
 
 Description:  Ubuntu 10.10
 Release:  10.10
 
 mpich2:
   Installiert: (keine)
   Kandidat:1.2.1.1-4
   Versionstabelle:
  1.2.1.1-4 0
 
 Installation of mpich2 conflicts with an installed MPD (music player
 daemon) because they both include a binary /usr/bin/mpd. Would it be
 possible to rename / prefix one of those.

No, that would be too confusing for users. It could be fixed in 11.04
by switching to mpich2 1.3 (in Debian experimental) which no longer uses
mpd.

- Lucas

-- 
mpich2 conflicts mpd because of binary names
https://bugs.launchpad.net/bugs/671815
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


Re: [Bug 671815] [NEW] mpich2 conflicts mpd because of binary names

2010-11-06 Thread Lucas Nussbaum
On 06/11/10 at 09:20 -0500, Pavan Balaji wrote:
 Lucas,
 
 On 11/06/2010 07:45 AM, Lucas Nussbaum wrote:
 No, that would be too confusing for users. It could be fixed in 11.04
 by switching to mpich2 1.3 (in Debian experimental) which no longer uses
 mpd.
 
 Can the mpich2-1.3 binaries not be ported to older Debian versions?

As backports (not in the main official archive), yes, they could.

- Lucas

-- 
mpich2 conflicts mpd because of binary names
https://bugs.launchpad.net/bugs/671815
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 668870] Re: the ruby1.9.1 package installs ruby1.9.2

2010-11-01 Thread Lucas Nussbaum
1.9.1 is the library compatibility version, not the ruby version.

** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Fix Released

-- 
the ruby1.9.1 package installs ruby1.9.2
https://bugs.launchpad.net/bugs/668870
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 654503] Re: Ruby repo not found on apt-get update

2010-11-01 Thread Lucas Nussbaum
Fixed, apparently

** Changed in: ruby-defaults (Ubuntu)
   Status: New = Fix Released

-- 
Ruby repo not found on apt-get update
https://bugs.launchpad.net/bugs/654503
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 653231] Re: p249 (shipped with 10.04) has known bug

2010-11-01 Thread Lucas Nussbaum
Could you point to a specific changeset that we could backport ?

We can't just upgrade to a newer patchlevel, since that contains many
unrelated changes, and that's against Ubuntu policies.

-- 
p249 (shipped with 10.04) has known bug
https://bugs.launchpad.net/bugs/653231
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 586087] Re: Luid: floating point operations seems not to match specification

2010-11-01 Thread Lucas Nussbaum
Could you give us a pointer to the discussion on redmine ? Is this fixed
in 1.9.2-p0 ?

-- 
Luid: floating point operations seems not to match specification
https://bugs.launchpad.net/bugs/586087
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 489157] Re: rubygem1.9.1 zlib error

2010-11-01 Thread Lucas Nussbaum
libzip-ruby1.8 is a separate package. install it?

** Changed in: libgems-ruby (Ubuntu)
   Status: New = Invalid

-- 
rubygem1.9.1 zlib error
https://bugs.launchpad.net/bugs/489157
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 358312] Re: rubygems broken ( Jaunty )

2010-11-01 Thread Lucas Nussbaum
fixed in lucid and maverick, at least

** Changed in: libgems-ruby (Ubuntu)
   Status: New = Fix Released

-- 
rubygems broken ( Jaunty )
https://bugs.launchpad.net/bugs/358312
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 389948] Re: gem1.9 install the gems on /usr/lib/ruby/gems/1.9.0 instead of /var/lib/gems/1.9.0

2010-11-01 Thread Lucas Nussbaum
that's a decision made by the Debian maintainers to respect the Linux
File Hierarchy Standard.

** Changed in: libgems-ruby (Ubuntu)
   Status: New = Invalid

-- 
gem1.9 install the gems on /usr/lib/ruby/gems/1.9.0 instead of 
/var/lib/gems/1.9.0
https://bugs.launchpad.net/bugs/389948
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 270619] Re: gem command is failing to parse gem source index.

2010-11-01 Thread Lucas Nussbaum
unreproducible, no reply from submitter

** Changed in: libgems-ruby (Ubuntu)
   Status: Incomplete = Invalid

-- 
gem command is failing to parse gem source index.
https://bugs.launchpad.net/bugs/270619
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 255499] Re: package libruby1.9 1.9.0.2-5 failed to install/upgrade: Versuche, ?/usr/lib/ruby/1.9.0/rbconfig/datadir.rb? zu ?berschreiben, welches auch in Paket rubygems1.9 ist

2010-11-01 Thread Lucas Nussbaum
fixed in lucid and maverick, at least, so closing.

** Changed in: libgems-ruby (Ubuntu)
   Status: New = Fix Released

-- 
package libruby1.9 1.9.0.2-5 failed to install/upgrade: Versuche, 
?/usr/lib/ruby/1.9.0/rbconfig/datadir.rb? zu ?berschreiben, welches auch in 
Paket rubygems1.9 ist
https://bugs.launchpad.net/bugs/255499
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 653142] Re: can not install rubygems1.9.1 on 10.10RC

2010-11-01 Thread Lucas Nussbaum
** Changed in: libgems-ruby (Ubuntu)
   Status: New = Invalid

-- 
can not install rubygems1.9.1 on 10.10RC
https://bugs.launchpad.net/bugs/653142
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 499511] Re: GemCutter should be a source by default

2010-11-01 Thread Lucas Nussbaum
fixed in lucid and maverick, at least.

** Changed in: libgems-ruby (Ubuntu)
   Status: New = Fix Released

-- 
GemCutter should be a source by default
https://bugs.launchpad.net/bugs/499511
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 660518] Re: Ruby1.9.1 should not provide rubygems1.9.1

2010-10-14 Thread Lucas Nussbaum
Ruby 1.9.1 and 1.9.2 INCLUDES rubygems. That's why installing ruby 1.9.2
includes rubygems. It's an upstream decision, and there are complex
dependencies between Ruby and rubygems that make it hard to remove in
1.9.X.

** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Invalid

** Changed in: ruby1.9.1 (Ubuntu)
 Assignee: (unassigned) = Lucas Nussbaum (lucas)

-- 
Ruby1.9.1 should not provide rubygems1.9.1
https://bugs.launchpad.net/bugs/660518
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 660518] Re: Ruby1.9.1 should not provide rubygems1.9.1

2010-10-14 Thread Lucas Nussbaum
Please file this bug upstream.

-- 
Ruby1.9.1 should not provide rubygems1.9.1
https://bugs.launchpad.net/bugs/660518
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


Re: [Bug 654503] Re: Ruby repo not found on apt-get update

2010-10-04 Thread Lucas Nussbaum
On 04/10/10 at 11:32 -, Zygmunt Krynicki wrote:
 It seems you are using some custom PPAs and they are no longer valid.
 
 Could you please the 'maco.m/ruby' ppa and try again?

Could you please *disable*, I guess

- Lucas

-- 
Ruby repo not found on apt-get update
https://bugs.launchpad.net/bugs/654503
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


Re: [Bug 654503] Re: Ruby repo not found on apt-get update

2010-10-04 Thread Lucas Nussbaum
On 04/10/10 at 14:19 -, Sam wrote:
 I''ve not changed the PPAs in the sources.list file at all.
 
 What exactly is it you want me to do, sorry? Remove the sources with
 maco.m/ruby in them? :)

Yes

L.

-- 
Ruby repo not found on apt-get update
https://bugs.launchpad.net/bugs/654503
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 638164] Re: Sync ruby1.8 1.8.7.302-2 (main) from Debian unstable (main)

2010-09-23 Thread Lucas Nussbaum
No. ENOTIME on my side.

-- 
Sync ruby1.8 1.8.7.302-2 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/638164
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 611251] Re: ruby 1.9.1.429-1 don't builds on i386

2010-09-16 Thread Lucas Nussbaum
fixed in 1.9.2.0-1

** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Fix Released

-- 
ruby 1.9.1.429-1 don't builds on i386
https://bugs.launchpad.net/bugs/611251
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 638164] [NEW] Sync ruby1.8 1.8.7.302-2 (main) from Debian unstable (main)

2010-09-14 Thread Lucas Nussbaum
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu/ruby1.8
 status new
 importance wishlist
 subscribe ubuntu-sponsors
 done

Please sync ruby1.8 1.8.7.302-2 (main) from Debian unstable (main)

Both versions only include bugfixes. The first one includes a security
fix.

Changelog entries since current maverick version 1.8.7.299-2:

ruby1.8 (1.8.7.302-2) unstable; urgency=high

  * Add debian/patches/100901_threading_fixes.patch. Fixes threading
problems on Debian GNU/kFreeBSD exhibited by puppet.
Thanks to Petr Salinger and Aurélien Jarno. Closes: #595034

 -- Lucas Nussbaum lu...@lucas-nussbaum.net  Wed, 01 Sep 2010 12:08:48
+0200

ruby1.8 (1.8.7.302-1) unstable; urgency=high

  * New upstream release in the stable 1.8.7 branch (very minor changes only).
+ Fixes CVE-2010-0541.

 -- Lucas Nussbaum lu...@lucas-nussbaum.net  Mon, 16 Aug 2010 11:23:16
+0200

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.14 (GNU/Linux)

iD8DBQFMj5hA2hliNwI7P08RAnFUAJ43ngqtU1oJCaPD3pScXTugULL1vwCePvNz
Ns3r8n+7a8dKa8BhmHSpXgk=
=mx7J
-END PGP SIGNATURE-

** Affects: ruby1.8 (Ubuntu)
 Importance: Wishlist
 Status: New

-- 
Sync ruby1.8 1.8.7.302-2 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/638164
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 637222] [NEW] FFe: Sync ruby1.9.1 1.9.2.0-1 (universe) from Debian unstable (main)

2010-09-13 Thread Lucas Nussbaum
Public bug reported:

Please sync ruby1.9.1 1.9.2.0-1 (universe) from Debian unstable (main)

Explanation of FeatureFreeze exception:
The version of Ruby 1.9.X currently in maverick is an SVN snapshot. As stated
below in the Debian changelog, the snapshot was taken when ruby was already in
deep freeze, and all the changes that went in since then are bugfixes. I don't
see the point of keeping the svn snapshot in maverick.

Also, this version fixes Rubygems for Ruby 1.9.2. (No bug filed in launchpad
for that, see Debian RC bug #588125)

Changelog entries since current maverick version 1.9.2~svn28788-1:

ruby1.9.1 (1.9.2.0-1) unstable; urgency=high

  [ Lucas Nussbaum ]
  * New upstream release. The 1.9.2 branch was in deep freeze at the time of
the last snapshot, and all the changes between that snapshot and the
present final tarball are bugfixes, as shown by
svn log -r28788:HEAD http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_2
Also, it sounds much easier to support a released version on the long
term, rather than an SVN snapshot.
Also fixes CVE-2010-0541. Closes: #593298.
Could also improve kFreeBSD support as some changes are FreeBSD-related.
  * Add build-dependency on libyaml-dev to build psych, which is a new, faster
YAML library provided in Ruby 1.9.2.

  [ Daigo Moriwaki ]
  * debian/watch: support new URL for Ruby 1.9.2.
  * debian/rules: DEB_BUILD_OPTIONS=nordoc provides no-doc build for
build testing.
  * Merged rubygems1.9.1: this package used to be provided by the libgems-ruby
source package, but the version of rubygems provided by libgems-ruby is
incompatible with Ruby 1.9.2. Also, Rubygems is shipped as part of Ruby.
Closes: #588125

  [ Lucas Nussbaum ]
  * Provide a way to override Debian's disabling of gem update --system by
setting an environment variable. This is the same change as the one done
for libgems-ruby.

 -- Lucas Nussbaum lu...@lucas-nussbaum.net  Sat, 11 Sep 2010 08:38:44
+0200

** Affects: ruby1.9.1 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
FFe: Sync ruby1.9.1 1.9.2.0-1 (universe) from Debian unstable (main)
https://bugs.launchpad.net/bugs/637222
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 518122] Re: Please rebuild for newer version of ImageMagick

2010-09-05 Thread Lucas Nussbaum
Could you provide an example script that exhibits the problem?

-- 
Please rebuild for newer version of ImageMagick
https://bugs.launchpad.net/bugs/518122
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 518122] Re: Please rebuild for newer version of ImageMagick

2010-08-25 Thread Lucas Nussbaum
Checked on amd64, it works fine. I also rebuild all of the doc (188
different examples using RMagick), and everything looks fine.

-- 
Please rebuild for newer version of ImageMagick
https://bugs.launchpad.net/bugs/518122
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 599268] Re: This installation of RMagick was configured with ImageMagick 6.5.5 but ImageMagick 6.5.7-8 is in use. (RuntimeError)

2010-08-24 Thread Lucas Nussbaum
*** This bug is a duplicate of bug 518122 ***
https://bugs.launchpad.net/bugs/518122

** This bug has been marked a duplicate of bug 518122
   Please rebuild for newer version of ImageMagick

-- 
This installation of RMagick was configured with ImageMagick 6.5.5 but 
ImageMagick 6.5.7-8 is in use. (RuntimeError)
https://bugs.launchpad.net/bugs/599268
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 518122] Re: Please rebuild for newer version of ImageMagick

2010-08-24 Thread Lucas Nussbaum
Fixed in maverick

** Also affects: librmagick-ruby (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Changed in: librmagick-ruby (Ubuntu)
   Status: Confirmed = Fix Released

-- 
Please rebuild for newer version of ImageMagick
https://bugs.launchpad.net/bugs/518122
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 518122] Re: Please rebuild for newer version of ImageMagick

2010-08-24 Thread Lucas Nussbaum
This bug renders librmagick-ruby unusable in lucid. It was fixed in maverick 
since a newer was synced from Debian, hence rebuilt.
Rebuilding the package against the version of imagemagick in lucid is enough to 
fix the bug, though a more long-term solution would be better to prevent it 
from happening again. Debian bug about that: #591419.

Test case:
apt-get install ruby1.8 librmagick-ruby
# ruby1.8 -e require 'RMagick'
/usr/lib/ruby/1.8/x86_64-linux/RMagick2.so: This installation of RMagick was 
configured with ImageMagick 6.5.5 but ImageMagick 6.5.7-8 is in use. 
(RuntimeError)
from /usr/lib/ruby/1.8/RMagick.rb:11
from -e:1:in `require'
from -e:1

Patch (uploaded to lucid-proposed):
diff -u librmagick-ruby-2.11.1/debian/changelog 
librmagick-ruby-2.11.1/debian/changelog
--- librmagick-ruby-2.11.1/debian/changelog
+++ librmagick-ruby-2.11.1/debian/changelog
@@ -1,3 +1,10 @@
+librmagick-ruby (2.11.1-1ubuntu0.1) lucid-proposed; urgency=low
+
+  * No-changes upload to build against the imagemagick version in Lucid, and
+avoid RMagick's version check. LP: #518122
+
+ -- Lucas Nussbaum lu...@lucas-nussbaum.net  Tue, 24 Aug 2010 10:56:24 +0200
+
 librmagick-ruby (2.11.1-1) unstable; urgency=low
 
   * New upstream release

-- 
Please rebuild for newer version of ImageMagick
https://bugs.launchpad.net/bugs/518122
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 546032] Re: [PATCH] tcsh-6.14.00-astron $COLUMNS $LINES not set

2010-08-06 Thread Lucas Nussbaum
fixed in the debian git tree

** Changed in: tcsh (Ubuntu)
   Status: Triaged = Fix Committed

-- 
[PATCH] tcsh-6.14.00-astron $COLUMNS $LINES not set
https://bugs.launchpad.net/bugs/546032
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 139537] Re: tcsh history file fails to save commands with ! properly

2010-08-06 Thread Lucas Nussbaum
fixed in debian git tree

** Changed in: tcsh (Ubuntu)
   Status: Confirmed = Fix Committed

-- 
tcsh history file fails to save commands with ! properly
https://bugs.launchpad.net/bugs/139537
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 96490] Re: Crash with autoexpand and no histchars

2010-08-06 Thread Lucas Nussbaum
fixed in debian git tree

** Changed in: tcsh (Ubuntu)
   Status: New = Fix Committed

-- 
Crash with autoexpand and no histchars
https://bugs.launchpad.net/bugs/96490
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 70763] Re: /etc/csh.login fails when ls command aliased

2010-08-06 Thread Lucas Nussbaum
Could someone propose a patch?

-- 
/etc/csh.login fails when ls command aliased
https://bugs.launchpad.net/bugs/70763
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 307462] Re: ruby is slow because of --enable-pthreads

2010-08-02 Thread Lucas Nussbaum
as a backport, maybe. but it clearly requires more testing before.

-- 
ruby is slow because of --enable-pthreads
https://bugs.launchpad.net/bugs/307462
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 612359] [NEW] Sync librestclient-ruby 1.6.0-1 (universe) from Debian unstable (main)

2010-08-01 Thread Lucas Nussbaum
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu/librestclient-ruby
 status new
 importance wishlist
 subscribe ubuntu-sponsors
 done

Please sync librestclient-ruby 1.6.0-1 (universe) from Debian unstable
(main)

Changelog entries since current maverick version 1.5.1-1:

librestclient-ruby (1.6.0-1) unstable; urgency=low

  * new upstream release.

 -- Lucas Nussbaum lu...@lucas-nussbaum.net  Wed, 14 Jul 2010 13:08:26
+0200

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.14 (GNU/Linux)

iD8DBQFMVd+C2hliNwI7P08RAly7AJ9ISxnniycgtDNUq8dkGH2Ji8x/WQCcCCif
OxYM+uiPGbv8Z2myQWHQNXA=
=l5wx
-END PGP SIGNATURE-

** Affects: librestclient-ruby (Ubuntu)
 Importance: Wishlist
 Status: New

-- 
Sync librestclient-ruby 1.6.0-1 (universe) from Debian unstable (main)
https://bugs.launchpad.net/bugs/612359
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 612016] [NEW] Sync ruby1.8 1.8.7.299-2 (main) from Debian unstable (main)

2010-07-31 Thread Lucas Nussbaum
Public bug reported:

Please sync ruby1.8 1.8.7.299-2 (main) from Debian unstable (main)

Changelog entries since current maverick version 1.8.7.299-1:

ruby1.8 (1.8.7.299-2) unstable; urgency=low

  * Convert from dpatch to quilt using dpatch2quilt.sh
  * Add patch 100730_disable_getsetcontext_on_nptl: disable getsetcontext on
NPTL. LP: #307462, Closes: #579229
  * Added 100730_verbose-tests.patch: run tests in verbose mode.
  * Run make test-all, but do not consider failures fatal for now.
  * Upgrade to Standards-Version: 3.9.1. No changes needed.
  * Deal with Ubuntu changing the GCC target to i686-linux-gnu: search
for libs in i486-linux too. LP: #611322.

 -- Lucas Nussbaum lu...@lucas-nussbaum.net  Fri, 30 Jul 2010 17:45:14
-0400

** Affects: ruby1.8 (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: ruby1.8 (Ubuntu)
   Importance: Undecided = Wishlist

-- 
Sync ruby1.8 1.8.7.299-2 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/612016
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 317206] Re: ruby1.8: pthreads kills performance

2010-07-31 Thread Lucas Nussbaum
Fixed in 1.8.7.299-2

** Changed in: ruby1.8 (Ubuntu)
   Status: Invalid = Fix Released

-- 
ruby1.8: pthreads kills performance
https://bugs.launchpad.net/bugs/317206
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


Re: [Bug 307462] Re: ruby is slow because of --enable-pthreads

2010-07-31 Thread Lucas Nussbaum
On 31/07/10 at 18:51 -, Dan Peterson wrote:
 Also fixes #317206?
 
 Thanks for sticking with this!

Yes! Marked as Fix Released.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
ruby is slow because of --enable-pthreads
https://bugs.launchpad.net/bugs/307462
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 561432] Re: Improper undefined method error

2010-07-30 Thread Lucas Nussbaum
fixed in 1.8.7.299-1

** Changed in: ruby1.8 (Ubuntu)
   Status: Incomplete = Fix Released

-- 
Improper undefined method error
https://bugs.launchpad.net/bugs/561432
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 600568] Re: Error message: super called outside of method

2010-07-30 Thread Lucas Nussbaum
1.8.7.299-1 landed in maverick.

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Fix Released

-- 
Error message: super called outside of method
https://bugs.launchpad.net/bugs/600568
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 580661] Re: wrong socket handling in http.rb fixed upstream

2010-07-30 Thread Lucas Nussbaum
Fixed in 1.8.7.299-1

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Fix Released

-- 
wrong socket handling in http.rb fixed upstream
https://bugs.launchpad.net/bugs/580661
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 556415] Re: ruby-1.8 hangs on start

2010-07-30 Thread Lucas Nussbaum
Unreproducible here. Does it still happen?

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Invalid

-- 
ruby-1.8 hangs on start
https://bugs.launchpad.net/bugs/556415
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 603683] Re: package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-28 Thread Lucas Nussbaum
ok, closing :-)

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Invalid

-- 
package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/603683
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 603683] Re: package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-21 Thread Lucas Nussbaum
It shouldn't be empty. Can you replace it with an executable file with:
#!/bin/sh

exit 0

in it ?

-- 
package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/603683
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 603683] Re: package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-19 Thread Lucas Nussbaum
What's the content of /var/lib/dpkg/info/libruby1.8.postinst ? is there
something strange in it? What happens if you run that script manually?

-- 
package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/603683
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 603683] Re: package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-12 Thread Lucas Nussbaum
You use a Geode CPU, which is not supported by maverick. Are you sure
that you are installing the package in lucid, not maverick ?

-- 
package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/603683
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


Re: [Bug 603683] Re: package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-12 Thread Lucas Nussbaum
On 12/07/10 at 08:03 -, David Nelson wrote:
 Hi, :-)
 
 I've got Ubuntu 10.04, and this is a Core 2 duo...

Ah, I misread the dmesg output.

You should try to dpkg --purge the package, clean the apt cache, and
reinstall it.

Since you seem to be the only one affected, it's likely to be caused by
a corrupted file somewhere.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/603683
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 589550] Re: package libruby1.8 1.8.7.249-2 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 2

2010-07-04 Thread Lucas Nussbaum
unreproducible. If it was a real issue, other people would probably have
encountered it.

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Invalid

-- 
package libruby1.8 1.8.7.249-2 failed to install/upgrade: ErrorMessage: 
subprocess installed post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/589550
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 600568] Re: Error message: super called outside of method

2010-07-04 Thread Lucas Nussbaum
Fixed with ruby1.8 1.8.7.299-1, but it is not yet in ubuntu

-- 
Error message: super called outside of method
https://bugs.launchpad.net/bugs/600568
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 529313] Re: user probes do not compiler because of missing linux/utrace.h file

2010-07-04 Thread Lucas Nussbaum
systemtap requires utrace support in the kernel to trace user apps.
That's not available in the vanilla (and in the Ubuntu) kernel

** Changed in: systemtap (Ubuntu)
   Status: Confirmed = Invalid

-- 
user probes do not compiler because of missing linux/utrace.h file
https://bugs.launchpad.net/bugs/529313
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


Re: [Bug 307462] Re: ruby is slow because of --enable-pthreads

2010-06-10 Thread Lucas Nussbaum
On 10/06/10 at 21:22 -, Mark Carey wrote:
 Lucas Nussbaum wrote on 2010-04-27:
  On the other hand, lots of people are not that unhappy with the state of
  Ruby in Debian/Ubuntu.
 
 Argument from silence doesn't really hold much weight.  The pthreads
 issue is longstanding known issue in the ruby community.  The refusal of
 ubuntu to address it caused many ubuntu users to go build our own ruby,
 which I've done on any system where I cared about ruby performance for
 the last 3 years or so.  I'm only speaking up now because I'm trying to
 be a better community member, what ever that means.
 
  It would be better if the energy spent on REE would be spent on
  improving Ruby 1.8 or 1.9... But anyway. 
 
 Actually all of the patches were submitted back upstream, but ruby-core
 are very slow to move.

Could you point to the redmine bugs describing the patches?
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
ruby is slow because of --enable-pthreads
https://bugs.launchpad.net/bugs/307462
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 591575] Re: rubygems1.8 does not work - apppears misconfigured

2010-06-09 Thread Lucas Nussbaum
Not really: we can't guess which dependencies are required to build the
gem you want to built.

ruby1.8-dev is already a Suggest for rubygems1.8, which sounds
reasonable: if you want to install a non-native gem, you don't need it.

For me, the situation is fine, and it is the responsibility of the
rubygems user to install the correct build dependencies. So marking as
Invalid.

** Changed in: libgems-ruby (Ubuntu)
   Status: New = Invalid

-- 
rubygems1.8 does not work - apppears misconfigured
https://bugs.launchpad.net/bugs/591575
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 330785] Re: Please upgrade to new upstream version 0.60.1

2010-06-09 Thread Lucas Nussbaum
I just synced it from debian to maverick

** Changed in: libopengl-ruby (Ubuntu)
   Status: Incomplete = Fix Released

-- 
Please upgrade to new upstream version 0.60.1
https://bugs.launchpad.net/bugs/330785
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 591575] Re: rubygems1.8 does not work - apppears misconfigured

2010-06-09 Thread Lucas Nussbaum
That's unfortunately more a rubygems problem,because it should be more
verbose about those problems.

Another fix to this specific issue would be to package ruby-debug...

-- 
rubygems1.8 does not work - apppears misconfigured
https://bugs.launchpad.net/bugs/591575
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 583333] Re: Missing package dependency (on openmpi-bin)

2010-06-05 Thread Lucas Nussbaum
fine, marking this won't fix, since it's not possible to fix it with the
current mpi-defaults packaging.

** Changed in: hpcc (Ubuntu)
   Status: New = Won't Fix

-- 
Missing package dependency (on openmpi-bin)
https://bugs.launchpad.net/bugs/58
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 534795] Re: Rubygems1.8 is not up to date (needs to be 1.3.6)

2010-06-05 Thread Lucas Nussbaum
fixed by syncing 1.3.6-2 from Debian.

** Changed in: libgems-ruby (Ubuntu)
   Status: New = Fix Released

-- 
Rubygems1.8 is not up to date (needs to be 1.3.6)
https://bugs.launchpad.net/bugs/534795
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 588259] Re: package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-06-01 Thread Lucas Nussbaum
try to dpkg --purge ruby1.8, apt-get clean, and re-install it, maybe.
Exec format error looks like a corrupted file or something badly wrong
on your system.

-- 
package libruby1.8 1.8.7.249-2 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/588259
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 584025] Re: Crashes on Invalid Server Certificate

2010-06-01 Thread Lucas Nussbaum
** Changed in: feed2imap (Ubuntu)
   Status: New = Fix Released

-- 
Crashes on Invalid Server Certificate 
https://bugs.launchpad.net/bugs/584025
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 583333] Re: Missing package dependency (on openmpi-bin)

2010-06-01 Thread Lucas Nussbaum
hpcc doesn't require openmpi-bin to run: you can run it from another machien 
(where openmpi-bin is installed).
Also, the current packaging with mpi-defaults makes it a bit hard to add a 
Suggests or a Recommends on openmpi-bin, unfortunately.

** Changed in: hpcc (Ubuntu)
   Status: New = Invalid

-- 
Missing package dependency (on openmpi-bin)
https://bugs.launchpad.net/bugs/58
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 570254] Re: incorrect symlink in mpich2 package

2010-06-01 Thread Lucas Nussbaum
** Changed in: mpich2 (Ubuntu)
   Status: New = Fix Released

-- 
incorrect symlink in mpich2 package
https://bugs.launchpad.net/bugs/570254
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 566822] Re: .pc file problem on limpi2ch

2010-06-01 Thread Lucas Nussbaum
Fixed in 1.2.1.1-3

** Changed in: mpich2 (Ubuntu)
   Status: New = Fix Released

-- 
.pc file problem on limpi2ch
https://bugs.launchpad.net/bugs/566822
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 357348] Re: Error with jcode under ruby 18.7.72

2010-06-01 Thread Lucas Nussbaum
this is a jcode bug, not a ruby one.

** Package changed: ruby-defaults (Ubuntu) = ruby1.8 (Ubuntu)

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Invalid

-- 
Error with jcode under ruby 18.7.72
https://bugs.launchpad.net/bugs/357348
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


Re: [Bug 584025] [NEW] Crashes on Invalid Server Certificate

2010-05-22 Thread Lucas Nussbaum
On 21/05/10 at 22:17 -, artistoex wrote:
 Public bug reported:
 
 Binary package hint: feed2imap
 
 I use feed2imap with an IMAP server, whose certificate is invalid.  This 
 causes feed2imap exit with the following message (actual username and server 
 replace by ...):
 F, [2010-05-22T00:12:14.184913 #10894] FATAL -- : Error while connecting to 
 imaps://username:PASSWORD@server, exiting: SSL_connect returned=1 errno=0 
 state=SSLv3 read server certificate B: certificate verify failed

This is fixed in version 1.0-1.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
Crashes on Invalid Server Certificate 
https://bugs.launchpad.net/bugs/584025
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


Re: [Bug 570254] Re: incorrect symlink in mpich2 package

2010-05-22 Thread Lucas Nussbaum
Fixed in Debian unstable with version 1.2.1.1-4.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
incorrect symlink in mpich2 package
https://bugs.launchpad.net/bugs/570254
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 581792] Re: package rubygems1.9.1 1.3.5-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-05-18 Thread Lucas Nussbaum
ruby isn't managed via alternatives in the Debian package. It is likely
that you broke your system by installing third-party packages or
something. You are on you own, sorry.

** Changed in: libgems-ruby (Ubuntu)
   Status: New = Invalid

-- 
package rubygems1.9.1 1.3.5-1ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/581792
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 509392] Re: Fix WEBrick's Escape Sequence Injection vulnerability

2010-05-18 Thread Lucas Nussbaum
** Changed in: ruby1.9.1 (Ubuntu)
   Status: Confirmed = Fix Released

-- 
Fix WEBrick's Escape Sequence Injection vulnerability
https://bugs.launchpad.net/bugs/509392
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 515360] Re: rake rails:freeze:gems doesn't work

2010-05-18 Thread Lucas Nussbaum
wrong package. please report against the rails package, providing a lot
more info. (like your rake, rails and rubygems packages versions).

** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Invalid

-- 
rake rails:freeze:gems doesn't work
https://bugs.launchpad.net/bugs/515360
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 511355] Re: segfault while executing require 'tk'

2010-05-18 Thread Lucas Nussbaum
Hi,

I cannot reproduce this with version 1.9.1.378-3 (in lucid): require
'tk' doesn't cause a segfault.

Please provide more information if you can still reproduce that bug.

** Changed in: ruby1.9.1 (Ubuntu)
   Status: New = Fix Released

-- 
segfault while executing require 'tk'
https://bugs.launchpad.net/bugs/511355
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 139537] Re: tcsh history file fails to save commands with ! properly

2010-05-17 Thread Lucas Nussbaum
will be fixed in the next Debian upload.

-- 
tcsh history file fails to save commands with ! properly
https://bugs.launchpad.net/bugs/139537
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 96490] Re: Crash with autoexpand and no histchars

2010-05-17 Thread Lucas Nussbaum
will be fixed in the next Debian upload.

-- 
Crash with autoexpand and no histchars
https://bugs.launchpad.net/bugs/96490
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 551585] Re: tcsh holds wrong history for nested loops.

2010-05-12 Thread Lucas Nussbaum
Thanks for the report. Forwarded upstream as
http://bugs.gw.com/view.php?id=99

** Bug watch added: Global Wire Oy Mantis #99
   http://bugs.gw.com/view.php?id=99

-- 
tcsh holds wrong history for nested loops. 
https://bugs.launchpad.net/bugs/551585
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 480455] Re: [MASTER] update-alternatives: error: alternative mpiexec can't be master: it is a slave of mpirun

2010-05-04 Thread Lucas Nussbaum
Bruno, could you try to explain how you got there? Was it when trying to
upgrade from karmic to lucid? Did you have all available updates for
karmic installed?

-- 
[MASTER] update-alternatives: error: alternative mpiexec can't be master: it is 
a slave of mpirun
https://bugs.launchpad.net/bugs/480455
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


Re: [Bug 480455] Re: [MASTER] update-alternatives: error: alternative mpiexec can't be master: it is a slave of mpirun

2010-05-02 Thread Lucas Nussbaum
On 02/05/10 at 06:08 -, Bruno Rocha Coutinho wrote:
 I'm using Lucid and got the opporite messge:
 
 Processing triggers for man-db ...
 Setting up openmpi-bin (1.4.1-2) ...
 update-alternatives: error: alternative mpiexec can't be slave of mpirun: it 
 is a master alternative.
 dpkg: error processing openmpi-bin (--configure):
  subprocess installed post-installation script returned error exit status 2
 Errors were encountered while processing:
  openmpi-bin
 E: Sub-process /usr/bin/dpkg returned an error code (1)

Could you run:
dpkg -l |grep mpi
and post the output on this bug report?

That should not happen, so I'd like to know which versions of MPI you
have installed.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
[MASTER] update-alternatives: error: alternative mpiexec can't be master: it is 
a slave of mpirun
https://bugs.launchpad.net/bugs/480455
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


Re: [Bug 307462] Re: ruby is slow because of --enable-pthreads

2010-04-27 Thread Lucas Nussbaum
On 26/04/10 at 17:54 -, Brian Takita wrote:
 I do want a good solution, however, it seems the ruby  debian community
 are often at odds. I somewhat understand why it is so difficult to
 reconcile.

Some people on the Ruby side like to throw fuel on the fire, which
doesn't help. But in general, I think that we have a pretty good
understanding of our disagreements. The situation is very complex, and
users always seem to think that there's a simple solution. But it's easy
to solve 80% of the problems, very much harder to solve the remaining
20%.

 The thing I'm worried about is that I do not use the ubuntu/debian ruby
 stack at all, because it simply does not do what I want it to do. I
 can't use it. I'm sorry, but that is the truth. I think that a number of
 other developers agree with me too.

On the other hand, lots of people are not that unhappy with the state of
Ruby in Debian/Ubuntu.

 Using the REE package is not a slight for the maintainers of the Ruby
 package. MRI is slow, and REE fixes some of the slowness. I just wanted
 to share because others may want a faster version of Ruby that is .deb
 packaged.

It would be better if the energy spent on REE would be spent on
improving Ruby 1.8 or 1.9... But anyway. There are currently plans to
provide a way to support several ruby versions at the same time, with
all the libraries available for all implementations. It might make sense
to package REE at this point (or just apply the patches to a special
ruby1.8 build).

 Maybe RVM (Ruby version manager) will be a good solution. You can have a
 RVM package using the ruby with --enable-pthreads to keep compatibility
 with tk, and have a streamlined version of ruby (no pthreads MRI or REE)
 for general development. Maybe a rule that the number of packages that
 depend on the streamlined version of ruby should be limited?

Are you aware that RVM messes with your .bash* to achieve what it wants
to do?
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
ruby is slow because of --enable-pthreads
https://bugs.launchpad.net/bugs/307462
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


Re: [Bug 307462] Re: ruby is slow because of --enable-pthreads

2010-04-27 Thread Lucas Nussbaum
On 26/04/10 at 18:03 -, Brian Takita wrote:
  I don't want to be locked into the debian world when it comes to Ruby.
 
 Not to say that the debian process cannot be improved. It certainly can.
 PPA's work great, for example. Maybe a PPA can be part of the solution.

PPAs are not available for Debian. Canonical management said they didn't
have the resources to provide it. And on the Debian side, we apparently
don't feel that it is too important, since we already have Debian
experimental to provide packages that are not really ready for Debian
unstable.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
ruby is slow because of --enable-pthreads
https://bugs.launchpad.net/bugs/307462
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 307462] Re: ruby is slow because of --enable-pthreads

2010-04-26 Thread Lucas Nussbaum
Brian, please stop being such an asshole. You are totally free to use
REE, but then don't come here spamming the ruby1.8 bug reports with
insults to the Debian Ruby maintainers (I am one of those, btw).

-- 
ruby is slow because of --enable-pthreads
https://bugs.launchpad.net/bugs/307462
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


Re: [Bug 566822] [NEW] .pc file problem on limpi2ch

2010-04-20 Thread Lucas Nussbaum
On 19/04/10 at 18:20 -, Pavan Balaji wrote:
 
 This has already been fixed in the MPICH2 trunk a while ago: 
 http://trac.mcs.anl.gov/projects/mpich2/changeset/5845/mpich2/trunk
 
 But it looks like this hasn't been pushed to the stable 1.2.x series. 
 I'll back port it shortly. But you are welcome to pull the patch 
 directly as well.

Thanks, will do that.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |

-- 
.pc file problem on limpi2ch
https://bugs.launchpad.net/bugs/566822
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 498758] Re: can't install ri on ubuntu 9.10 (broken dependency)

2010-03-23 Thread Lucas Nussbaum
Closing. This is caused by people having security updates enabled for
main but not for universe.

** Changed in: ruby1.8 (Ubuntu)
   Status: New = Fix Released

-- 
can't install ri on ubuntu 9.10 (broken dependency)
https://bugs.launchpad.net/bugs/498758
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 173715] Re: tcsh gives two prompts on setenv |printenv

2010-03-12 Thread Lucas Nussbaum
Fixed in 6.17.00-2 (in Debian, will be in Lucid)

** Changed in: tcsh (Ubuntu)
   Status: New = Fix Released

-- 
tcsh gives two prompts on setenv |printenv
https://bugs.launchpad.net/bugs/173715
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


  1   2   3   4   >