Re: [arch-general] Packages getting smaller?

2012-04-14 Thread Muhammed Uluyol
It looks like they are being compressed with upx. Muhammed Uluyol On Sat, Apr 14, 2012 at 12:08 PM, Victor Silva vfbsi...@gmail.com wrote: My guess is they are shipping less embedded libs. Em 14 de abril de 2012 14:02, Brendan Long s...@brendanlong.com escreveu: It's just strange

Re: [arch-general] xinitrc.d framework

2011-02-09 Thread Muhammed Uluyol
I think it would be better if it was more like rc.conf by using an array and a function that went through that array. It looks simple enough, maybe something like exec_xinitd_scripts() { if [[ $XINITD_SCRIPTS ]]; then for ((i=0; i ${#XINITD_SCRIPTS[@]}; i++)); do

Re: [arch-general] Udisks, uuid and very stange mount

2010-10-15 Thread Muhammed Uluyol
What's wrong with using uuids? If it's really bugging you you could use something like #!/bin/bash while true; do for dev in /media/*; do sdname=$(blkid -U ${dev##*/} [[ ! -e /media/$sdname ]] ln -s $dev /media/$sdname done done Something that used inotify would work

Re: [arch-general] Udisks, uuid and very stange mount

2010-10-15 Thread Muhammed Uluyol
Forgot, you'd probably want a 'sleep 1' or 'sleep 2' in there.

Re: [arch-general] Gallium by default for radeon?

2010-08-08 Thread Muhammed Uluyol
Does this enable r600g? I think it would be great for r300g to be used by default but r600g is not there yet.

Re: [arch-general] makepkg patch - generate .SRCINFO file when running --source

2010-07-27 Thread Muhammed Uluyol
Why not make new arrays? i686depends, x86_64depends, i686source, etc. On Tue, Jul 27, 2010 at 8:51 AM, vlad v...@uni-bonn.de wrote: On Tue, Jul 27, 2010 at 03:38:10PM +0200, Jakob Gruber wrote: On Tuesday 27 July 2010 15:25:56 vlad wrote: Hello list, Here is a patch against makepkg

Re: [arch-general] [arch-dev-public] Let's agree on a common coding style

2010-02-13 Thread Muhammed Uluyol
On Sat, Feb 13, 2010 at 4:05 PM, Dieter Plaetinck die...@plaetinck.be wrote: what do you mean context? it only depends on whether the first character after the variablename is a valid character in a variablename or not.  if it's valid, use braces. if it isn't, no need for braces. Arrays can't

Re: [arch-general] A suggestion for the devs regarding rebuilds

2010-02-08 Thread Muhammed Uluyol
http://wiki.archlinux.org/index.php/The_Arch_Way#Code-correctness_over_convenience

Re: [arch-general] A suggestion for the devs regarding rebuilds

2010-02-08 Thread Muhammed Uluyol
So *who* creates the symlink from libfoo.so - libfoo.so.1.2.3 ? It's either pacman or ldconfig called by pacman. Unless you believe in little gremlins doing it while you sleep. It is created 'inside' of the package, not during the installation. $ bsdtar tzf libpng-1.4.0-2-x86_64.pkg.tar.gz

Re: [arch-general] A suggestion for the devs regarding rebuilds

2010-02-08 Thread Muhammed Uluyol
So what ? An update should create/adjust that symlink and it currently does. There's no problem with that. Just don't delete the old *.so, that's all I ask. Patch pacman, build your version, and add pacman to IgnorePkg

Re: [arch-general] Multiple Kernels

2010-02-01 Thread Muhammed Uluyol
And if you really need to downgrade the kernel or another package just do it with pacman -U /var/cache/pacman/pkg/packagename-oldversion. I know this is the No.1 hint but this solution is not very well from my view because instead the hardidsk getting bigger and bigger it sounds unlogical to