Re: [gentoo-user] List of Epic FAIL

2015-04-17 Thread Andreas K. Huettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Am Freitag, 17. April 2015, 06:18:47 schrieb Alan Grimes:
> Here's a numbered list of failed packages after SECOND emptytree
> rebuild; machine has not been rebooted since previous post; Reboot
> scheduled due to video driver version bump.

[snip]

Could you please stop posting messages that don't actually contain any 
information but only complaints?

> #1; long standing failure related to custom container classes.

No context, no error message, not understandable.

> #2,   /usr/lib64/libX11.so.6: error adding symbols: DSO missing from
> command line

The full command line and error message please, otherwise it didn't happen. 
(*Which* symbols are missing?)

[Same for some other items.]

> #8,#16; INTERNAL COMPILER ERROR!! (recently RMA'd some RAM, new ram
> had a 1-bit intermittent failure in 32GB, jacked voltage and hoped was
> good...)

Well, seems it isn't. These are the two memory-intensive packages in the list.

- -- 

Andreas K. Huettel
Gentoo Linux developer 
dilfri...@gentoo.org
http://www.akhuettel.de/

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0

iQJ8BAEBCgBmBQJVMYpLXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ0RkJDMzI0NjNBOTIwMDY5MTQ2NkMzNDBF
MTM4NkZEN0VGNEI1Nzc5AAoJEOE4b9fvS1d5LzsP/A0DM3t2GAra6p4xImvLyWgs
QtP4wOBq1ALumkHhvLiaRpQWy/lZjL9ABjIXFBGF+PuxaVUde49s48jUUcdjRR+6
t8KXdgDSRcthD9ylmSCe+59aEQha2eLS2cKI6vpif7+2DyhYEM9Hodd1E/WzRufC
aFO+8qe51CaFbyOOUqA5QKf4+tYq8OG+DUga9S3TytGhozBlXQgMJxznW8Gk4jaS
S3tnc2eRE1TtlhiBqLyjPq0skTAeJ5ti4CjdRKW/wsSKu2NPXRsvUhzSZCN7SIrQ
u3FmLkzSAwljriX3MIKkgC0G4bphBVpR0c5EXI9PhbME0sY4pCxpJ3MHg76rJGHx
aFDKoPLX4jdZ/pn/X44lZmonPTNNLwKXtGt9HB2b/EQnrCA08yI850EzNRdVPZkI
SePmZddt8GcHJ4h/kf5V4DeSa1wkhdkQ3i1m9Ps7zfVdBxRMnK+ppJ1B0U7GHKE2
YaDIZaOZZoSB3Zp7GNjCqz3ExMpyAMkIT2e4KDYSTjtPC7yug+NYtbrUJ6iCRDpp
NNezBmKatM5jrOiyVwdaJOR445q2wXlNbXhYoVPZqZSRnNjfwnY6R7VfFr5UoqTF
pRh06aJ+af0b/M5cqDQ740kk+Phvb9k05aJWARo4XBdjBrFU6jv734AB6WQ3C4vW
VHiuvJai+RYhCRvD9KPj
=1ox0
-END PGP SIGNATURE-



Re: [gentoo-user] grep -lr ignoring subdirs that start with dot (.)?

2015-04-17 Thread covici
Todd Goodman  wrote:

> * Tanstaafl  [150417 16:58]:
> > Hi all,
> > 
> > Ok, this is driving me crazy...
> > 
> > I want to be able to quickly search an entire users Maildir for an email
> > containing a certain string, but output just the filenames WITH THE
> > DATE/TIMEs...
> > 
> > So, from the target users top level Maildir:
> > 
> > grep -lr  * | xargs ls -lt
> > 
> > ^^^ appears to work, and does return results for the cur and new
> > subdirs, but seems to be ignoring the rest of the Maildirs. Maybe it has
> > something to do with the fact that they start with dots (ie, .Sent,
> > .Trash, etc)??
> > 
> > Anyone have any idea why the above doesn't search them all?
> > 
> > Thanks
> 
> Try?
> 
> grep -lr  * | xargs ls -lta
> 
> Maybe?

Better use the find command with -exec grep  and its arguments.  You
will probably need  -H if you want to know the filename.  The difference
is that find only ignores . and .., but does go over other things
beginning with . 

-- 
Your life is like a penny.  You're going to lose it.  The question is:
How do
you spend it?

 John Covici
 cov...@ccs.covici.com



Re: [gentoo-user] grep -lr ignoring subdirs that start with dot (.)?

2015-04-17 Thread Neil Bothwick
On Fri, 17 Apr 2015 16:57:49 -0400, Tanstaafl wrote:

> So, from the target users top level Maildir:
> 
> grep -lr  * | xargs ls -lt
> 
> ^^^ appears to work, and does return results for the cur and new
> subdirs, but seems to be ignoring the rest of the Maildirs. Maybe it has
> something to do with the fact that they start with dots (ie, .Sent,
> .Trash, etc)??
> 
> Anyone have any idea why the above doesn't search them all?

The shell expands * to the contents of the current directory, excluding
hidden files. It's not grep's doing it is the shell expansion that is
catching you out.

Since you want to search the entire contents f the current directory,
there is no need to pass grep a list of directories (especially not an
incomplete list), use "grep -lr ."


-- 
Neil Bothwick

Bug: (n.) any program feature not yet described to the marketing
department.


pgp7QJbs6sO6q.pgp
Description: OpenPGP digital signature


Re: [gentoo-user] grep -lr ignoring subdirs that start with dot (.)?

2015-04-17 Thread Todd Goodman
* Tanstaafl  [150417 16:58]:
> Hi all,
> 
> Ok, this is driving me crazy...
> 
> I want to be able to quickly search an entire users Maildir for an email
> containing a certain string, but output just the filenames WITH THE
> DATE/TIMEs...
> 
> So, from the target users top level Maildir:
> 
> grep -lr  * | xargs ls -lt
> 
> ^^^ appears to work, and does return results for the cur and new
> subdirs, but seems to be ignoring the rest of the Maildirs. Maybe it has
> something to do with the fact that they start with dots (ie, .Sent,
> .Trash, etc)??
> 
> Anyone have any idea why the above doesn't search them all?
> 
> Thanks

Try?

grep -lr  * | xargs ls -lta

Maybe?

Todd



[gentoo-user] grep -lr ignoring subdirs that start with dot (.)?

2015-04-17 Thread Tanstaafl
Hi all,

Ok, this is driving me crazy...

I want to be able to quickly search an entire users Maildir for an email
containing a certain string, but output just the filenames WITH THE
DATE/TIMEs...

So, from the target users top level Maildir:

grep -lr  * | xargs ls -lt

^^^ appears to work, and does return results for the cur and new
subdirs, but seems to be ignoring the rest of the Maildirs. Maybe it has
something to do with the fact that they start with dots (ie, .Sent,
.Trash, etc)??

Anyone have any idea why the above doesn't search them all?

Thanks



[gentoo-user] [OT] Morse decoder software with *NO* GI (commandline/ASCII-output)

2015-04-17 Thread Meino . Cramer
Hi,

does anyone know of a good morse decoding software, which does not
need a gui (it will be used on a small embedded Linux system) and
works reasonably good?

Thank you very much in advance for any help!
Best regards,
Meino





[gentoo-user] Re: crossdev i686-w64-mingw32 threads

2015-04-17 Thread James
Cor Legemaat  cor.za.net> writes:


> All the mingw-w64 windows builds have pthreads enabled and you can use
> std::thread and std::mutex, how can I enable that in the gentoo crossdev
> builds?

> Found https://github.com/niXman/mingw-builds and
> http://sourceforge.net/p/mingw/mailman/message/28014658/ but will I then
> need to edit the ebuild to get it working?

This might help:

https://wiki.gentoo.org/wiki//etc/portage/patches

if epatch-user does  not, then copy the ebuild to /usr/local/portage

and hack away at it, as you like. Repoman is your friend and companion
to the devmanual.


> Tried the pthread setup as explained on the wiki but then I can't use my
> class dynamically in a program if it is using pthread_mutex.

I'd ask on gentoo-dev or one of the irc channels.
Often I find  esoteric answers in the arch linux documents


good hunting,
James