Re: [gentoo-user] revdep-rebuild (gawk) issues

2012-05-29 Thread Vaeth
On Tue, 29 May 2012, Rafa Griman wrote: gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ Your gawk is broken. This happens if you emerged gawk with current gcc and aggressive FLAGS like -DNDEBUG or -flto. Not sure whether it is a bug of gawk or gcc.

[gentoo-user] gawk and filefuncs

2010-09-03 Thread Al
Can anybody explain the Gentoo handling of filefuncs in the gawk package? Why isn't a simple patch used like in all other cases? Al

Re: [gentoo-user] revdep-rebuild (gawk) issues

2012-05-29 Thread Rafa Griman
Hi Vaeth :) On Tue, May 29, 2012 at 7:02 PM, Vaeth va...@mathematik.uni-wuerzburg.de wrote: On Tue, 29 May 2012, Rafa Griman wrote: gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ Your gawk is broken. This happens if you emerged gawk with current gcc and aggressive FLAGS like

Re: [gentoo-user] gawk and filefuncs

2010-09-03 Thread Al
I have a second issue. When compiling gawk on Cygwin, where is no windows kernel, the Gentoo version of filefuncs breaks. I have to Sure there is a windows kernel. The linux kernel is missing. Al

Re: [gentoo-user] gawk and filefuncs

2010-09-03 Thread Etaoin Shrdlu
On Fri, 3 Sep 2010 22:31:01 +0200 Al oss.el...@googlemail.com wrote: Can anybody explain the Gentoo handling of filefuncs in the gawk package? Why isn't a simple patch used like in all other cases? gawk provides dynamic extension modules. This is explained here: http://www.gnu.org/manual

Re: [gentoo-user] gawk and filefuncs

2010-09-03 Thread Al
The gawk source distribution comes with a number of such extensions in the (doh) extensions/ directory. filefuncs.c is such one extension, which demonstrate how to add stat() and chdir() capabilities to awk. The file is compiled into a .so file, which is then referenced from within gawk

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Tanstaafl
like (see the manpage) Even better, thanks Paul... watch -n1 ps aux --sort=-%cpu | gawk '{ if ( \$3 1.0 ) { print } }' does exactly what I want... Hmmm... is there an easy way to include the column headers? To build on Grant's suggestion: ps aux --sort %cpu | gawk 'NR==1; $3 0' Hmmm

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Paul Hartman
 wrote: And you can use the --sort options for ps to sort by cpu or anything you like (see the manpage) Even better, thanks Paul... watch -n1 ps aux --sort=-%cpu | gawk '{ if ( \$3  1.0 ) { print } }' does exactly what I want... Hmmm... is there an easy way to include the column headers

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-03 Thread Tanstaafl
On 2012-03-02 4:52 PM, Paul Hartman paul.hartman+gen...@gmail.com wrote: On Fri, Mar 2, 2012 at 3:23 PM, Tanstaafltansta...@libertytrek.org wrote: Attempt at incorporating your command into this: watch -n1 ps aux --sort=-%cpu | gawk 'NR==1; $3 0' it gives me a syntax error: Every 1.0s: ps

Re: [gentoo-user] gawk and filefuncs

2010-09-04 Thread Etaoin Shrdlu
. Since it's critical for Gentoo gawk, perhaps they didn't want to depend on gawk's source distribution suddenly removing that file or otherwise changing (and patches need to be maintained up-to-date against the original, while a standalone file does not need maintenance). But this is all just my

Re: [gentoo-user] gawk and filefuncs

2010-09-04 Thread Al
. Here is how I am building it and the whole context: http://en.gentoo-wiki.com/wiki/Prefix/Cygwin#gawk-3.1.7:_.5Bfilefuncs.so.0.0.1.5D_Error_1 emerge --oneshot gawk Note that building that file is by no means necessary for a working gawk. And, even if you built it, it wouldn't do anything unless

Re: [gentoo-user] revdep-rebuild (gawk) issues

2012-05-29 Thread Alan McKinnon
On Tue, 29 May 2012 22:56:07 +0200 Rafa Griman rafagri...@gmail.com wrote: Hi Vaeth :) On Tue, May 29, 2012 at 7:02 PM, Vaeth va...@mathematik.uni-wuerzburg.de wrote: On Tue, 29 May 2012, Rafa Griman wrote: gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ Your gawk

Re: [gentoo-user] revdep-rebuild (gawk) issues

2012-05-30 Thread Florian Philipp
: On Tue, 29 May 2012, Rafa Griman wrote: gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ Your gawk is broken. This happens if you emerged gawk with current gcc and aggressive FLAGS like -DNDEBUG or -flto. Not sure whether it is a bug of gawk or gcc. So it seems to be the CFLAGS

Re: [gentoo-user] revdep-rebuild (gawk) issues

2012-05-30 Thread Rafa Griman
:) On Tue, May 29, 2012 at 7:02 PM, Vaeth va...@mathematik.uni-wuerzburg.de wrote: On Tue, 29 May 2012, Rafa Griman wrote: gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ Your gawk is broken. This happens if you emerged gawk with current gcc and aggressive FLAGS like -DNDEBUG or -flto

[gentoo-user] revdep-rebuild (gawk) issues

2012-05-29 Thread Rafa Griman
Hi all :) New to this mailing list. I'm installing Gentoo and when I run revdep-rebuild I get the following error # revdep-rebuild * Configuring search environment for revdep-rebuild gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ gawk: cmd. line:3: error: Unmatched

[gentoo-user] init script dependency problem

2005-09-07 Thread A. Khattri
... [ ok ] [root:/etc]# /sbin/depscan.sh * Caching service dependencies ... gawk: /lib/rcscripts/awk/cachedepends.awk:72: fatal: extension: library `/lib/rcscripts/filefuncs.so': cannot call function `dlload' (/lib/rcscripts/filefuncs.so: undefined symbol: dlload) bash: /var/lib/init.d/depcache

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Paul Hartman
--sort=-%cpu | gawk '{ if ( \$3 1.0 ) { print } }' does exactly what I want... Hmmm... is there an easy way to include the column headers? To build on Grant's suggestion: ps aux --sort %cpu | gawk 'NR==1; $3 0'

Re: [gentoo-user] Converting shell globs to regular expressions

2023-04-13 Thread David M. Fellows
/Text-Glob do what you need? DaveF > >I am aware of Python's "fnmatch.translate()" function, but this -- of >course -- returns a Python style regular expression which I can't use >together with "grep" or "gawk". So using this function would requ

[gentoo-user] Converting shell globs to regular expressions

2023-04-13 Thread Dr Rainer Woitok
nction, but this -- of course -- returns a Python style regular expression which I can't use together with "grep" or "gawk". So using this function would require moving and converting the "grep" and "gawk" specific code from my Shell script into a

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Paul Hartman
On Fri, Mar 2, 2012 at 11:46 AM, Tanstaafl tansta...@libertytrek.org wrote: Does anyone know if there is a way to filter the output of ps aux to show only lines that have a value in the %CPU column higher than x - ie, 1.0, or 2.0, or something like that? ps aux | gawk '{ if ( $3 1.0 ) { print } }'

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Jason
On Fri, Mar 02, 2012 at 01:03:55PM -0500, Tanstaafl wrote: Also - would there be a way to get a running output (kind of like tailing a log)? watch -n1 ps aux | gawk '{ if ( \$3 1.0 ) { print } }'

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Tanstaafl
On 2012-03-02 1:12 PM, Jason gen...@lakedaemon.net wrote: On Fri, Mar 02, 2012 at 01:03:55PM -0500, Tanstaafl wrote: Also - would there be a way to get a running output (kind of like tailing a log)? watch -n1 ps aux | gawk '{ if ( \$3 1.0 ) { print } }' Perfect!!! Thanks so much guys!

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Tanstaafl
On 2012-03-02 2:33 PM, Paul Hartman paul.hartman+gen...@gmail.com wrote: And you can use the --sort options for ps to sort by cpu or anything you like (see the manpage) Even better, thanks Paul... watch -n1 ps aux --sort=-%cpu | gawk '{ if ( \$3 1.0 ) { print } }' does exactly what I want

Re: [gentoo-user] revdep-rebuild (gawk) issues

2012-05-29 Thread Rafa Griman
-rebuild  * Configuring search environment for revdep-rebuild gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space

Re: [gentoo-user] revdep-rebuild (gawk) issues

2012-05-29 Thread Rafa Griman
: gawk: cmd. line:3: error: Unmatched [ or [^: /[^[:space:]]/ Your gawk is broken. This happens if you emerged gawk with current gcc and aggressive FLAGS like -DNDEBUG or -flto. Not sure whether it is a bug of gawk or gcc. So it seems to be the CFLAGS :( As I said in my previous e-mail

Re: [gentoo-user] revdep-rebuild (gawk) issues

2012-05-29 Thread Alan McKinnon
On Tue, 29 May 2012 15:34:07 +0200 Rafa Griman rafagri...@gmail.com wrote: Hi all :) New to this mailing list. I'm installing Gentoo and when I run revdep-rebuild I get the following error # revdep-rebuild * Configuring search environment for revdep-rebuild gawk: cmd. line:3: error

[gentoo-user] OT: awk problem

2008-01-17 Thread Dirk Heinrichs
Hi, maybe one of you can sched some light on this. I want to match a sequence of two digits with awk, but the following doesn't work gawk '/([[:digit:]]){2}/' test_file while it works as expected when using egrep, like egrep ([[:digit:]]){2} test_file Leaving out the interval also works

[gentoo-user] Build Error with Emerging (2 of 16) dev-cpp/gconfmm-2.12.0

2007-01-17 Thread Shawn Singh
When running emerge -u -a -D world, one of the apps that gets installed is: dev-cpp/gconfmm-2.12.0 the error looks like its in the configure script ... checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles

Re: [gentoo-user] Build Error with Emerging (2 of 16) dev-cpp/gconfmm-2.12.0

2007-01-18 Thread Shawn Singh
-2.12.0 the error looks like its in the configure script ... checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no [SNIP] Is it really that hard to search bugs.gentoo.org instead? http://bugs.gentoo.org

Re: [gentoo-user] Successfully upgraded to new profile 23.0

2024-04-10 Thread Dr Rainer Woitok
:%M:%S %Z') before it calls "emerge" and calls the following little "gawk" programme after "emerge" has finished: gawk -v begin="$begin" ' ! P && /^>>> M/ { match($0," on ([^ ]+ [^ ]+ [^ ]+) for ",m

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Pandu Poluan
, 1.0, or 2.0, or something like that? ps aux | gawk '{ if ( $3 1.0 ) { print } }' Why would you use if? You can easily use this : ps aux | awk '$3 1.0 {print}' Rgds,

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Paul Hartman
aux | gawk '{ if ( \$3  1.0 ) { print } }' Perfect!!! Thanks so much guys! And you can use the --sort options for ps to sort by cpu or anything you like (see the manpage)

Re: [gentoo-user] wiki page(kernel/upgrade) command confusion: 'cat' and 'awk'

2022-01-14 Thread russian sky
u replace .* with .? Yes. Based on the explanation of '*' in the gawk manual, it's used to match zero/one/more times repeating of the preceding character which in turn doesn't match the default diff printing mode( >for removing, .*(=|Linux)/'.

Re: [gentoo-user] wiki page(kernel/upgrade) command confusion: 'cat' and 'awk'

2022-01-14 Thread Frank Steinmetzger
Am Fri, Jan 14, 2022 at 02:38:22PM + schrieb russian sky: > > I don’t quite follow. Do you mean the “.*”, so you replace .* with .? > Yes. Based on the explanation of '*' in the gawk manual, it's > used to match zero/one/more times repeating of the preceding character which >

Re: [gentoo-user] [solved] OT: awk problem

2008-01-17 Thread Dirk Heinrichs
Am Freitag, 18. Januar 2008 schrieb ext Dirk Heinrichs: maybe one of you can sched some light on this. I want to match a sequence of two digits with awk, but the following doesn't work gawk '/([[:digit:]]){2}/' test_file Seems I need the --posix option for this to work. Sorry for bothering

[gentoo-user] Can anyone tell me?

2008-03-01 Thread Chris Walters
is gawk, but can't be certain. I do know that the only way to fix the problem was to restore from backup, or to try re-installing again. I just want to know which packages are so unstable that I should mask them. TIA. Regards, Chris -BEGIN PGP SIGNATURE- iD8DBQFHyanyUx1jS

[gentoo-user] Re: mone on the KEYWORD USE front

2005-12-15 Thread Michael Mauch
unmasking and do it in /etc/portage/package.keywords or maybe in /etc/make.conf with `ACCEPT_KEYWORDS=~x86'. What about ACCEPT_KEYWORDS=~x86 emerge -p kde-meta and then copy the whole list to /etc/portage/package.keywords? ACCEPT_KEYWORDS=~x86 emerge -p kde-meta | gawk '/\[ebuild/ {sub

[gentoo-user] Bug in net.eth0?

2005-11-17 Thread Hareesh Nagarajan
The /etc/init.d/net.eth0 script does the following check: script status_IFACE=$(ifconfig ${1} 2${devnull} | gawk '$1 == UP {print up}') [...] if [[ ${status_IFACE} == up ]]; then einfo Keeping kernel configuration for ${IFACE} else ebegin Bringing ${IFACE} up via DHCP

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Tanstaafl
, 1.0, or 2.0, or something like that? ps aux | gawk '{ if ( $3 1.0 ) { print } }' Thanks Paul! Thats a huge help... Now if I could just get a constantly updated output of this (like tailing a live log), I'd be in heaven... ;) But if this is the best I can do, it is 1000 times better...

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Alan McKinnon
of ps aux to show only lines that have a value in the %CPU column higher than x - ie, 1.0, or 2.0, or something like that? ps aux | gawk '{ if ( $3 1.0 ) { print } }' Thanks Paul! Thats a huge help... Now if I could just get a constantly updated output of this (like tailing a live log

Re: [gentoo-user] Filter grep output of 'ps aux'

2012-03-02 Thread Paul Hartman
to show only lines that have a value in the %CPU column higher than x - ie, 1.0, or 2.0, or something like that? ps aux | gawk '{ if ( $3 1.0 ) { print } }' Why would you use if? You can easily use this : ps aux | awk '$3 1.0 {print}' because I don't know awk very well ;)

[gentoo-user] Re: emerge -e errors right after install

2013-08-16 Thread Michael Palimaka
On 16/08/2013 23:22, Francisco Ares wrote: 26892 Illegal instruction | $AWK -f $ac_tmp/subs.awk 31167 Illegal instruction | $AWK -f $tmp/subs.awk $tmp/out [...] I have built binary packages for sed and gawk, created in a machine with the same characteristics

Re: [gentoo-user] Re: emerge -e errors right after install

2013-08-16 Thread Francisco Ares
2013/8/16 Michael Palimaka kensing...@gentoo.org On 16/08/2013 23:22, Francisco Ares wrote: 26892 Illegal instruction | $AWK -f $ac_tmp/subs.awk 31167 Illegal instruction | $AWK -f $tmp/subs.awk $tmp/out [...] I have built binary packages for sed and gawk, created

Re: [gentoo-user] updating old box: segfaults with python

2014-01-08 Thread Mick
a fs corruption: if awk/gawk segfaults can you use a binary package from your local machine to see if the segfault goes away? -- Regards, Mick signature.asc Description: This is a digitally signed message part.

Re: [gentoo-user] Can anyone tell me?

2008-03-02 Thread Neil Bothwick
of the culprits is gawk, but can't be certain. I run two completely ~amd64 systems here and have very few problems. I do know that the only way to fix the problem was to restore from backup, or to try re-installing again. I just want to know which packages are so unstable that I should mask them. TIA

Re: [gentoo-user] emerge spamassassin: re2c failed...

2009-05-21 Thread Alan McKinnon
environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for bison... bison -y checking for x86_64-pc-linux-gnu-g++... x86_64-pc-linux-gnu-g++ checking for C++ compiler default output file name

[gentoo-user] pkg-config and qt4 in an ebuild

2005-12-04 Thread romildo
-gnu checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for x86_64-pc-linux-gnu-g++... x86_64-pc-linux-gnu-g++ checking for C++ compiler default output file name

Re: [gentoo-user] Pixie does not run.

2005-09-04 Thread Adrian
-c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for make-gcc... no checking for gcc... gcc checking for C compiler default output file name... configure: error: C compiler cannot create executables See `config.log

[gentoo-user] Compilation failed...mcs not found

2016-07-28 Thread Meino . Cramer
ir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --libdir=/usr/lib64 --enable-gui configure: loading site script /usr/share/config.site checking for a BSD-compatible install... /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c checking whether build environment is sane... yes checking f

[gentoo-user] app-misc/screen-4.6.2 fails

2017-12-08 Thread tuxic
. Good luck. >>> Source configured. >>> Compiling source in >>> /var/tmp/portage/app-misc/screen-4.6.2/work/screen-4.6.2 ... make -j6 comm.h term.h AWK=gawk CC="x86_64-pc-linux-gnu-gcc -march=native -O2 -pipe -D_GNU_SOURCE" srcdir=. sh ./comm.sh AWK=gawk s

[gentoo-user] Re: Converting shell globs to regular expressions

2023-04-15 Thread Nuno Silva
ibrary. > > I am aware of Python's "fnmatch.translate()" function, but this -- of > course -- returns a Python style regular expression which I can't use > together with "grep" or "gawk". So using this function would require > moving and conver

Re: [gentoo-user] Can anyone tell me?

2008-03-01 Thread Mark Knecht
system break, twice now, from a package upgrade - I think that one of the culprits is gawk, but can't be certain. I do know that the only way to fix the problem was to restore from backup, or to try re-installing again. I just want to know which packages are so unstable that I should

Re: [gentoo-user] Can anyone tell me?

2008-03-02 Thread Alan McKinnon
is gawk, but can't be certain. I do know that the only way to fix the problem was to restore from backup, or to try re-installing again. I just want to know which packages are so unstable that I should mask them. TIA. doesn't sound like a broken package to me. perhaps something

Re: [gentoo-user] OT: awk scripting

2006-03-24 Thread Cláudio Henrique
: cat list.txt | awk -F';' '{ print $2 }' and so on. I sugest you read awk and gawk man pages for more info. they are very complete. regards, claudio. On 3/24/06, Sascha Lucas [EMAIL PROTECTED] wrote: Hi list, I want the awk analogon for cut -f2-, which prints fields #2 to #n. Is this possible

Re: [gentoo-user] emerge --update - why doesn't it update my kde packages

2010-05-04 Thread David W Noon
--cut- #!/bin/sh eix -u | gawk '/^\[U\] / { print $2; }' | xargs -r emerge -v1uD exit $? ---cut---cutcut- I run it immediately after the main emerge, when I have rsync'ed the Portage tree. -- Regards, Dave [RLU #314465

[gentoo-user] Changing names of LOTS of files, adding to them actually.

2011-11-30 Thread Dale
to do this? I have room to copy them to another directory if needed. I would sort of actually prefer it that way since if it messes up, I got the originals at least. Sorry I'm not real good at gawk, sed and all those things. I suspect those will be used tho. I am familiar with | and grep

[gentoo-user] Re: Filter grep output of 'ps aux'

2012-03-02 Thread Grant Edwards
that have a value in the %CPU column higher than x - ie, 1.0, or 2.0, or something like that? ps aux | gawk '{ if ( $3 1.0 ) { print } }' Why would you use if? You can easily use this : ps aux | awk '$3 1.0 {print}' Why would you use {print}? You can easily use this: ps aux | awk '$3

Re: [gentoo-user] Re: Filter grep output of 'ps aux'

2012-03-02 Thread Pandu Poluan
anyone know if there is a way to filter the output of ps aux to show only lines that have a value in the %CPU column higher than x - ie, 1.0, or 2.0, or something like that? ps aux | gawk '{ if ( $3 1.0 ) { print } }' Why would you use if? You can easily use this : ps aux | awk

Re: [gentoo-user] Re: emerge -e errors right after install

2013-08-16 Thread Francisco Ares
built binary packages for sed and gawk, created in a machine with the same characteristics and configuration, and emerged those to the new machine. Even so, the errors keep coming. It could be an issue with faulty memory, or problem with glibc. Often though, illegal instruction is the result

Re: [gentoo-user] emerge spamassassin: re2c failed...

2009-05-21 Thread Alan McKinnon
for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for bison... bison -y checking for x86_64-pc-linux-gnu

[gentoo-user] C compiler cannot create executables

2005-05-27 Thread Colin
will be used. checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for powerpc-unknown-linux-gnu-strip... no checking for strip... strip checking whether to enable maintainer

[gentoo-user] Can't emerge ekiga

2007-06-01 Thread Mike Diehl
... /bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for perl... /usr/bin/perl checking for XML::Parser... configure: error: XML::Parser perl module is required for intltool !!! Please attach the following

Re: [gentoo-user] QA Notice: libdialog.la appears to contain PORTAGE_TMPDIR paths

2011-05-05 Thread Rafael Barrera Oro
for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk ... if i don't interrupt it just keep going, i think there is something seriously wrong with my system...

[gentoo-user] Re: QA Notice: libdialog.la appears to contain PORTAGE_TMPDIR paths

2011-05-05 Thread walt
## -- ## ## Configuring libtool 2.2.10 ## ## -- ## checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk ... if i don't

[gentoo-user] unable to compile gcc 4.5.3-r1

2011-09-02 Thread covici
checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for x86_64-pc-linux-gnu-gcc... /var/tmp/portage/sys-devel/gcc-4.5.3-r1/work/build/./gcc/xgcc -B/var/tmp/portage/sys-devel/gcc-4.5.3-r1/work/build/./gc\c/ -B/usr/x86_64-pc-linux-gnu/bin/ -B/usr/x86_64-pc-linux-gnu/lib

Re: [gentoo-user] unable to compile gcc 4.5.3-r1

2011-09-02 Thread Dale
-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for x86_64-pc-linux-gnu-gcc... /var/tmp/portage/sys-devel/gcc-4.5.3-r1/work/build/./gcc/xgcc -B/var/tmp/portage/sys-devel/gcc-4.5.3-r1/work/build/./gc\c/ -B/usr/x86_64-pc-linux-gnu/bin/ -B/usr

Re: [gentoo-user] unable to compile gcc 4.5.3-r1

2011-09-02 Thread covici
checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for x86_64-pc-linux-gnu-gcc... /var/tmp/portage/sys-devel/gcc-4.5.3-r1/work/build/./gcc/xgcc -B/var/tmp

Re: [gentoo-user] Changing names of LOTS of files, adding to them actually.

2011-11-30 Thread Dale
spaces, which means some fancy footwork with the \. Is there a way to do this? I have room to copy them to another directory if needed. I would sort of actually prefer it that way since if it messes up, I got the originals at least. Sorry I'm not real good at gawk, sed and all those things. I

Re: [gentoo-user] Compilation failed...mcs not found

2016-07-28 Thread Facundo Curti
.. > /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... /bin/mkdir -p > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking how to create a ustar tar ar

Re: [gentoo-user] Compilation failed...mcs not found

2016-07-28 Thread covici
checking for a BSD-compatible install... > /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... /bin/mkdir -p > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checki

[gentoo-user] ...again compile problems due to texinfo...

2017-06-28 Thread tuxic
>>> Source configured. >>> Compiling source in >>> /var/tmp/portage/app-misc/screen-4.6.0/work/screen-4.6.0 ... make -j6 comm.h term.h AWK=gawk CC="x86_64-pc-linux-gnu-gcc -march=native -O2 -pipe -D_GNU_SOURCE" srcdir=. sh ./comm.sh AWK=gawk srcdir=. sh ./term.sh ma

Re: [gentoo-user] emerge -quad --newuse @world

2018-01-29 Thread Dale
lib/portage/python3.5/ebuild-helpers/xattr/install -c > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... /bin/mkdir -p > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking whether make supports nested variable

Re: [gentoo-user] HOWTO: Freezing/unfreezing (groups of) processes

2021-02-05 Thread David Haller
quot; will >stop the process... > >/home/waltdnes/pm/palemoon/palemoon -new-instance -p slasdot > > Does "killall" have that ability to stop a process based on any >parameters in the command line? The following script does: ~/bin/pstop && ln -s pstop ~/bin/pc

Re: [gentoo-user] emerge spamassassin: re2c failed...

2009-05-21 Thread Jarry
build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for bison... bison -y checking for x86_64-pc-linux-gnu-g++... x86_64-pc-linux-gnu-g++ checking for C++ compiler default output file name

[gentoo-user] emerge xkeyboard-config-0.8 failed

2006-07-09 Thread Pascal Bourguignon
--disable-xkbcomp-symlink --with-xkb-rul\ es-symlink=xorg --build=i686-pc-linux-gnu checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific

[gentoo-user] Strangeness on a fresh install

2006-01-25 Thread Allan Spagnol Comar
-bin/3.3.5-20050130 ## --- ## ## Core tests. ## ## --- ## configure:1538: checking for a BSD-compatible install configure:1593: result: /bin/install -c configure:1604: checking whether build environment is sane configure:1647: result: yes configure:1680: checking for gawk

[gentoo-user] emerge -eav system failed building sandbox

2006-09-09 Thread Mark Knecht
: /usr/qt/3/bin ## --- ## ## Core tests. ## ## --- ## configure:1533: checking for a BSD-compatible install configure:1588: result: /bin/install -c configure:1599: checking whether build environment is sane configure:1642: result: yes configure:1707: checking for gawk configure:1723

[gentoo-user] Error while `emerge grub`

2011-06-08 Thread Pandu Poluan
install configure:2338: result: /usr/bin/install -c configure:2349: checking whether build environment is sane configure:2399: result: yes configure:2540: checking for a thread-safe mkdir -p configure:2579: result: /bin/mkdir -p configure:2592: checking for gawk configure:2608: found /usr/bin/gawk

Re: [gentoo-user] merge-usr and lib[ow]crypt*

2024-04-15 Thread Joost Roeleveld
thing" is a symbolic link anyway: home01 ~ # ls -l /bin/awk lrwxrwxrwx 1 root root 14 Dec 31 2022 /bin/awk -> ../usr/bin/awk home01 ~ # ls -l /usr/bin/awk lrwxrwxrwx 1 root root 4 Dec 31 2022 /usr/bin/awk -> gawk home01 ~ # ls -l /usr/bin/gawk -rwxr-xr-x 1 root root 682216 Feb 10 09:59 /usr

[gentoo-user] merge-usr and lib[ow]crypt*

2024-04-15 Thread Matthias Hanft
4' INFO: No problems found for '/lib64' So this seems OK? The "awk thing" is a symbolic link anyway: home01 ~ # ls -l /bin/awk lrwxrwxrwx 1 root root 14 Dec 31 2022 /bin/awk -> ../usr/bin/awk home01 ~ # ls -l /usr/bin/awk lrwxrwxrwx 1 root root 4 Dec 31 2022 /usr/bin/awk -> gawk home0

[gentoo-user] configure: error: C++ compiler cannot create executables

2009-04-07 Thread KH
--sysconfdir=/etc --localstatedir=/var/lib --build=i486-pc-linux-gnu checking if debugging code should be compiled... no checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk

Re: [gentoo-user] configure: error: C++ compiler cannot create executables

2009-04-07 Thread Justin
mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for i486-pc-linux-gnu-g++... i486-pc-linux-gnu-g++ checking for C++ compiler default output file name... configure: error: C++ compiler cannot create executables See `config.log' for more

[gentoo-user] emerge wvdial issues

2006-04-22 Thread maxim wexler
it balked at snip checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for xkbcomp... /usr/bin/xkbcomp checking for intltool = 0.30... 0.33 found

Re: [gentoo-user] emerge woes

2005-08-19 Thread maxim wexler
--enable-changeword configure: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used. checking for gawk... gawk checking for i686-pc-linux-gnu-gcc... i686-pc-linux-gnu-gcc checking for C compiler default output

Re: [gentoo-user] unable to compile gcc 4.5.3-r1

2011-09-02 Thread Blakawk
install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for x86_64-pc-linux-gnu-gcc... /var/tmp/portage/sys-devel/gcc-4.5.3-r1/work/build

Re: [gentoo-user] unable to compile gcc 4.5.3-r1

2011-09-02 Thread Pandu Poluan
environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for x86_64-pc-linux-gnu-gcc... /var/tmp/portage/sys-devel/gcc-4.5.3-r1/work/build/./gcc/xgcc -B/var/tmp/portage/sys-devel/gcc-4.5.3-r1/work

[gentoo-user] Problems while updateing screen (tool not monitor)

2015-11-14 Thread Meino . Cramer
Hi, screen refuses update due to an compilation error: Then type 'make' to make screen. Good luck. >>> Source configured. >>> Compiling source in >>> /var/tmp/portage/app-misc/screen-4.3.1-r1/work/screen-4.3.1 ... make -j6 comm.h term.h AWK=gawk CC="x86_64-pc

Re: [gentoo-user] Problems while updateing screen (tool not monitor)

2015-11-15 Thread J. Roeleveld
reen-4.3.1-r1/work/screen-4.3.1 ... >make -j6 comm.h term.h >AWK=gawk CC="x86_64-pc-linux-gnu-gcc -march=native -O2 -pipe -msse3 >-ggdb -D_GNU_SOURCE" srcdir=. sh ./comm.sh >AWK=gawk srcdir=. sh ./term.sh >make -j6 osdef.h >CPP="x86_64-pc-linux-gnu-gcc -E -DMAXWIN=10

Re: [gentoo-user] ...again compile problems due to texinfo...

2017-06-29 Thread tuxic
quot;Solved" was this by not building the docs via > > deinstallation of texinfo temporarily. > > > > No screen jumps over the edge and again texinfo seems > > to cause this: > > > >>>> Source configured. > >>>> Compiling source in > &

Re: [gentoo-user] ...again compile problems due to texinfo...

2017-06-29 Thread Mike Gilbert
of texinfo temporarily. > > No screen jumps over the edge and again texinfo seems > to cause this: > >>>> Source configured. >>>> Compiling source in >>>> /var/tmp/portage/app-misc/screen-4.6.0/work/screen-4.6.0 ... > make -j6 comm.h term.h >

Re: [gentoo-user] Can anyone tell me?

2008-03-01 Thread Dan Farrell
choose to put ACCEPT_KEYWORDS=~amd64 in your make.conf file? I have had my system break, twice now, from a package upgrade - I think that one of the culprits is gawk, but can't be certain. I do know that the only way to fix the problem was to restore from backup, or to try re

Re: [gentoo-user] Can anyone tell me?

2008-03-02 Thread Chris Walters
don't play nicely together, or mistakes | are made. The gawk problem one one such situation, where it depended on a | library in /usr/lib and broke any system with /usr on a separate | filesystem. It didn't require a reinstall to fix, I know because I was | hit by it and didn't reinstall

[gentoo-user] My recent problems have been strange...

2008-03-03 Thread Chris Walters
prevent the caching of service dependencies. Thus, I could not use emerge and several other tools. The strange part is that it happened four different times with four different packages. Three examples are texinfo, gawk and coreutils. What makes this problem more odd is that I could install those

Re: [gentoo-user] Automatic host switching [SOLVED]

2008-09-22 Thread Momesso Andrea
/hosts.backup' OLDHOST=`grep fandango $MYFILE | awk '{ print $1 }'` NEWHOST=`host fandango.dyndns.foo | gawk '{print $4}'` sed s/$OLDHOST/$NEWHOST/ $MYFILE /etc/hosts /root/scripts/hosts.home #!/bin/bash MYFILE='/etc/hosts.backup' OLDHOST=`grep fandango $MYFILE | awk '{ print $1 }'` NEWHOST=192.168.1.5 sed

Re: [gentoo-user] weird dependencies

2006-08-10 Thread Alexander Skwar
-apps/gawk-3.1.5-r2 [3.1.5-r1] USE=nls -build 0 kB , qt as a deep dependencie of gaim. You can't say that. Run emerge -pvu --deep --tree gaim to see, what's going on. Alexander Skwar -- BOFH Excuse #212: Of course it doesn't work. We've performed a software upgrade. -- gentoo-user

Re: [gentoo-user] emerge --update - why doesn't it update my kde packages

2010-05-04 Thread KH
it is: ---cut--- update_orphans.sh--cut- #!/bin/sh eix -u | gawk '/^\[U\] / { print $2; }' | xargs -r emerge -v1uD exit $? ---cut---cutcut- I run it immediately after the main emerge, when I have rsync'ed the Portage

Re: [gentoo-user] emerge --update - why doesn't it update my kde packages

2010-05-04 Thread Dale
update_orphans.sh. Here it is: ---cut--- update_orphans.sh--cut- #!/bin/sh eix -u | gawk '/^\[U\] / { print $2; }' | xargs -r emerge -v1uD exit $? ---cut---cutcut- I run it immediately after the main emerge, when I have rsync'ed

Re: [gentoo-user] emerge --update - why doesn't it update my kde packages

2010-05-04 Thread KH
Am 04.05.2010 21:41, schrieb Dale: ---cut--- update_orphans.sh--cut- #!/bin/sh eix -u | gawk '/^\[U\] / { print $2; }' | xargs -r emerge -v1uD exit $? ---cut---cutcut- I run it immediately after the main emerge

Re: [gentoo-user] irritating cron habit

2011-02-20 Thread Florian Philipp
an ip address so that your cron job also works when you configure your address statically. /sbin/ifconfig eth0 | grep -q '\inet' fetchmail ... should do the trick. Or even more general: gawk 'BEGIN{found=1} {if(found == 1 $2 ~ /^0+$/ $7 ~ /^0+$/) found=0} END{exit found}' /proc/net/route

Re: [gentoo-user] Why is KDE part of the system set?

2011-02-23 Thread Alex Schuster
know about? Is this unique to me? I have KDE installed by using the kde-meta but surely I'm not the only one that uses it. @system also pulls in some KDE stuff here. I don't have time to fully investigate this, after a short look it seems to me that gawk pulls in gettext, that needs git, git

  1   2   3   >