Estimated read time: 1 minutes
Estimated read time: 1 minutes
probably this is known, but i've just figured out how to get rid of grep when i use
foo |grep ... |sed ...the magic command is
foo |sed -n '/^match/s/foo/bar/p'
if we're at it, you can even get rid of sed if you use bash and just want to do simple replaces like 1.0 -> 1_0:
$ pkgver=1.0 $ echo ${pkgver//./_} 1_0_0
two intereting tricks remained. the first is about deleting from a pattern to an another one (including both line)
$ echo -e 'a\nb\nc\nd\ne' a b c d e $ echo -e 'a\nb\nc\nd\ne' |sed /b/,/d/d a e
the last one is about deleting to the end of the file from a pattern:
$ echo -e 'a\nb\nc\nd\ne' |sed '/c/,$d' a b
ok, that's all for today :)
(other nice tricks here)
Estimated read time: 1 minutes
Estimated read time: 1 minutes
Estimated read time: 1 minutes
Estimated read time: 1 minutes
sudo makepkg -R
:)
Estimated read time: 1 minutes
desco's shot: http://www.bluelion.hu/stuff/ooo-x86_64.png
download: http://ftp.frugalware.org/pub/other/people/vmiklos/frugalware-x86_64/
source: http://ftp.frugalware.org/pub/other/people/vmiklos/source/openoffice.org-devel/
also there is a little problem with make install in the FB, more details here
note: yes, you have to install the langpacks with pacman -d, this will be fixed later
Estimated read time: 1 minutes
- you need m162 to apply the ooo-build patches, but in that milestone the "fpicker module dependency" is missing, but it is already fixed in upstream. so let's start to make a patch
- you need to download the cvs:
cvs -d:pserver:anoncvs@anoncvs.services.openoffice.org:/cvs co -r SRC680_m162 OpenOffice
- then find the last change to the critical file:
cvs diff -r 1.6 -u automation/prj/build.lst
- using this patch, the build is still running atm :)
Estimated read time: 1 minutes
Estimated read time: 1 minutes
lgee proposed to hold a small "real life" announcement party for developers after 0.4 is released. so yesterday, one day after the release, five of the Hungarian devs met each other :)
janny made some shots, you can look at them here.
who is who: ironiq (on the right side), janny (on the left side), vmiklos, voroskoi and lgee.