[heads up] X snapshots now contain libxcb

2009-08-04 Thread Matthieu Herrb
Hi

X snapshots dated aug 3 and later are now built with XCB enabled.
So libxcb and all the other xcb libs are provided, and libX11 now
depends on it. Its major revision number has been incremented (it's now
libX11.so.12.0) to avoid mixing things.

You will have to wait a bit until binary packages for your favourite
architectures are updated to be able to really use them for new installs
or upgrade.
-- 
Matthieu Herrb



Re: [heads up] X snapshots now contain libxcb

2009-08-04 Thread Eugene Yunak
2009/8/4 Matthieu Herrb :
> Hi
>
> X snapshots dated aug 3 and later are now built with XCB enabled.
> So libxcb and all the other xcb libs are provided, and libX11 now
> depends on it. Its major revision number has been incremented (it's now
> libX11.so.12.0) to avoid mixing things.
>
> You will have to wait a bit until binary packages for your favourite
> architectures are updated to be able to really use them for new installs
> or upgrade.

Thanks for your work, that was a long awaited change for me!

-- 
The best the little guy can do is what
the little guy does right



/etc/rc: don't use tools from /usr in shutdown

2009-08-04 Thread Stuart Henderson
if /usr isn't mounted, the code to gracefully bring down carp
interfaces fails.

/etc/rc[182]: grep: not found
/etc/rc[182]: cut: not found

this version has the same effect and only relies on /sbin/ifconfig
and shell features.  ok?

Index: rc
===
RCS file: /cvs/src/etc/rc,v
retrieving revision 1.328
diff -u -p -r1.328 rc
--- rc  30 Jun 2009 15:30:24 -  1.328
+++ rc  4 Aug 2009 11:19:26 -
@@ -166,9 +166,10 @@ if [ X"$1" = X"shutdown" ]; then
echo /etc/rc.shutdown complete.
 
# bring carp interfaces down gracefully
-   ifconfig -a|grep '^carp.*:'|cut -f1 -d:|while read if
-   do
-   ifconfig $if down
+   ifconfig | while read if junk; do
+   case $if in
+   carp*:) ifconfig ${if%:} down ;;
+   esac
done
 
if [ X"${powerdown}" = X"YES" ]; then



Re: Free Sun Blade 100 to developer, you pay shipping

2009-08-04 Thread Edd Barrett
Hi,

On Tue, Aug 4, 2009 at 2:08 AM, Jack Woehr wrote:
> Stuart Henderson wrote:
>> On 2009/08/03 18:04, Jack Woehr wrote:
>>
>>> It's hard to imagine that anyone wants this :) but if OpenBSD
>>> developer wants a Sun Blade 100
>>> and will pay shipping it's yours.

Which graphics card does it have?

dmesg | grep fb

We are looking for an Elite3D, but AFAIK these didn't have a UPA port.

-- 
Best Regards

Edd Barrett
(Freelance software developer / technical writer / open-source developer)

http://students.dec.bournemouth.ac.uk/ebarrett



Re: [heads up] X snapshots now contain libxcb

2009-08-04 Thread Christiano Farina Haesbaert
That's great, thanks a lot, we can now have awesome 3 :-);



Re: [heads up] X snapshots now contain libxcb

2009-08-04 Thread David Coppa
On Tue, Aug 4, 2009 at 2:26 PM, Christiano Farina
Haesbaert wrote:
> That's great, thanks a lot, we can now have awesome 3 :-);

For awesome 3, we need also a working port of cmake 2.6.X

cheers,
David



Re: Free Sun Blade 100 to developer, you pay shipping

2009-08-04 Thread Jack Woehr

Edd Barrett wrote:


We are looking for an Elite3D, but AFAIK these didn't have a UPA port.

  

Nah, it just has the regular creator 2d card

--
Jack J. Woehr# B+'I know what "it" means well enough, when I find
http://www.well.com/~jax # a thing,' said the Duck: 'it's generally a frog or
http://www.softwoehr.com # a worm.'B; - Lewis Carroll, _Alice in Wonderland_



cwmrc(5)

2009-08-04 Thread Martin Toft
Because it is more consistent with the documentation for the other
options, and because e.g.

  autogroup 1 ``XTerm''

in .cwmrc doesn't work:

Index: cwmrc.5
===
RCS file: /cvs/xenocara/app/cwm/cwmrc.5,v
retrieving revision 1.25
diff -u -r1.25 cwmrc.5
--- cwmrc.5 17 May 2009 23:40:57 -  1.25
+++ cwmrc.5 4 Aug 2009 20:30:07 -
@@ -27,8 +27,8 @@
 The following options are accepted in the configuration file:
 .Pp
 .Bl -tag -width Ds -compact
-.It Ic autogroup Ar group Dq windowclass
-.It Ic autogroup Ar group Dq windowclass,windowname
+.It Ic autogroup Ar group Ar windowclass
+.It Ic autogroup Ar group Ar windowclass,windowname
 Control automatic window grouping, based on the class and/or name
 properties, where
 .Ar group



Re: /etc/rc: don't use tools from /usr in shutdown

2009-08-04 Thread reed
On Tue, 4 Aug 2009, Stuart Henderson wrote:

>   # bring carp interfaces down gracefully
> - ifconfig -a|grep '^carp.*:'|cut -f1 -d:|while read if
> - do
> - ifconfig $if down
> + ifconfig | while read if junk; do

Need -a for ifconfig?

> + case $if in
> + carp*:) ifconfig ${if%:} down ;;

Maybe be more precise:

carp[0-9]*)

(Like example in etc/rc.d/raidframeparity)

> + esac
>   done

Also I have been using full paths for some "sbin" tools (because I often 
use sudo on systems using default paths). But I see this rc script had 
that problem in first place.



Re: /etc/rc: don't use tools from /usr in shutdown

2009-08-04 Thread Philip Guenther
On Tue, Aug 4, 2009 at 6:00 PM,  wrote:
> On Tue, 4 Aug 2009, Stuart Henderson wrote:
>
>>   # bring carp interfaces down gracefully
>> - ifconfig -a|grep '^carp.*:'|cut -f1 -d:|while read if
>> - do
>> - ifconfig $if down
>> + ifconfig | while read if junk; do
>
> Need -a for ifconfig?

Please read ifconfig(8)


>> + case $if in
>> + carp*:) ifconfig ${if%:} down ;;
>
> Maybe be more precise:
>
> carp[0-9]*)
>
> (Like example in etc/rc.d/raidframeparity)

Are we talking about the same BSD?


>> + esac
>>   done
>
> Also I have been using full paths for some "sbin" tools (because I often
> use sudo on systems using default paths). But I see this rc script had
> that problem in first place.

1) You've been invoking /etc/rc by hand?  Really?
2) please read a dozen lines earlier in /etc/rc


Philip Guenther



Re: /etc/rc: don't use tools from /usr in shutdown

2009-08-04 Thread Theo de Raadt
> But I see this rc script had that problem in first place.

Pulease...



Re: /etc/rc: don't use tools from /usr in shutdown

2009-08-04 Thread reed
On Tue, 4 Aug 2009, r...@reedmedia.net wrote:

> Need -a for ifconfig?

Sorry all -- now I realize I was on the wrong list...