Arch Hurd: Recently opened tasks http://bugs.archhurd.org/ 2010-09-01T08:24:42Z FS#20: [tmux] broken 2010-09-01T08:24:42Z 2010-09-01T08:24:42Z
tmux is broken
Alexander Preisinger http://bugs.archhurd.org/:20
FS#19: Typo in /arch/setup installation script prevents installation 2010-08-31T22:55:17Z 2010-08-31T22:55:17Z
From the 2010-08-25 LiveCD, /arch/setup:130 reads:

ans=0

It should read:

ans1=0
Mike Burrell http://bugs.archhurd.org/:19
FS#18: [filesystem] /etc/services missing 2010-08-28T10:56:44Z 2010-08-28T10:56:44Z

This file is needed by a lot of daemons and even glibc looks it up.

You can also split filesystem to got iana-etc, like in arch linux.
Alexander Preisinger http://bugs.archhurd.org/:18
FS#17: [glibc] gtk applications aren't working anymore wtih the new glibc 2010-08-23T20:57:17Z 2010-08-20T20:20:26Z
All gtk applications stopped working with the new glibc from testing.

I tried rebuilding gtk2, atk and building new applications, like leafpad, but nothing helps.
Alexander Preisinger http://bugs.archhurd.org/:17
FS#16: [gnumach-userleveldrivers] filesystems conflicts with gnumach 2010-08-28T00:33:27Z 2010-08-14T17:47:14Z
The gnumach-userleveldrivers package files are conflicting with the files from gnumach.

To solve that problem I added
conflicts=('gnumach')
to the PKGBUILD
A rebuild is needed asap, because that package is already in extra.
Alexander Preisinger http://bugs.archhurd.org/:16
FS#15: [tcl] does not build 2010-08-26T09:36:46Z 2010-08-05T19:18:12Z
The package tcl 8.5.8 does not build.

An error occurs in the unix/tclUnixPort.h file at the line 619.

I tested building it in Arch Linux and it works.

EDIT: It is due to some glibc changes.
Alexander Preisinger http://bugs.archhurd.org/:15
FS#14: Xorg very very slow 2010-08-23T23:30:10Z 2010-07-18T08:46:33Z
hi,
in my archhurd in qemu-kvm...
after some trouble, I start Xorg

- passing to qemu: -vga std
- without xorg.conf

but openbox o twm are very very very slow... keyboard and mouse...
it is unusable

in #hurd suggest to me to apply:
submitted-sysvshm.diff (glibc headers)

thanks
sacarde http://bugs.archhurd.org/:14
FS#13: [initscripts] rc.shutdown runs as non root user in login prompt 2010-08-15T15:28:19Z 2010-07-18T06:44:36Z
The login prompt is a funny thing in Hurd, you can actually run commands, cat files, etc :P

Executing reboot will run rc.shutdown and print the corresponding messages as if root were there current user. But finally when /sbin/internal_reboot is run it fails because of insufficient privileges.

At the login some kind of *unnamed* guest user is active so whoami fails and the script continues. Using id reveals that the uid is 2^32 (or (unsigned int) -1). The following patch drops the usage of whoami.

diff --git a/rc.shutdown b/rc.shutdown
index 0a77615..bac471d 100644
--- a/rc.shutdown
+++ b/rc.shutdown
@@ -6,7 +6,7 @@
. /etc/rc.conf
. /etc/rc.d/functions

-if [ `whoami` != "root" ]; then
+if [ `id -u` -ne 0 ]; then
echo "Only superuser can do this"
exit 1
fi

(the diff avobe has an extra leading space on each line)
Diego Martin Nieto Cid http://bugs.archhurd.org/:13
FS#12: [gcc] No gcc-ada package 2010-07-04T13:32:32Z 2010-07-04T13:32:32Z
There is no gcc-ada package. The problem is that gcc-ada requires itself to build. The cross-compiling required needs to be done when somebody finds the time.
Matthias Lanzinger http://bugs.archhurd.org/:12
FS#11: glibc is missing ldconfig 2010-08-12T22:27:06Z 2010-06-22T18:32:07Z
ldconfig is not built by our glibc PKGBUILDs as of now.
Some errors in install scripts that use ldconfig may occur too.
Matthias Lanzinger http://bugs.archhurd.org/:11