Re: [gentoo-user] binary packages: how to ...

2020-07-15 Thread Ashley Dixon
On Wed, Jul 15, 2020 at 09:29:03AM -0500, Matt Connell (Gmail) wrote:
> On Wed, 2020-07-15 at 12:13 +0200, n952162 wrote:
> > Is there an open-source way to view the contents of a rar archive?
> 
> The p7zip package, if compiled with the "rar" USE flag, can handle
> this, in case you have it already.

This forces the "unRAR" LICENSE on p7zip, as opposed to the Lesser GPL:

app-arch/p7zip ebuild:
LICENSE="LGPL-2.1 rar? ( unRAR )"

Unfortunately, as [1] describes, this licence is non-free and GPL-incompatible.
The full text is at `$(q -Ce PORTDIR)/licenses/unRAR`, for your viewing
displeasure.

[1] https://fedoraproject.org/wiki/Licensing:Unrar

-- 

Ashley Dixon
suugaku.co.uk

2A9A 4117
DA96 D18A
8A7B B0D2
A30E BF25
F290 A8AA



signature.asc
Description: PGP signature


Re: [gentoo-user] cleaning /var/lib/portage/world

2017-08-16 Thread Arve Barsnes
On 16 August 2017 at 13:32, Francisco Ares <fra...@gmail.com> wrote:

> But, after backing up the original "world" file and replacing with the one
> built by the script, things don't work as expected, as a lot of packages
> were orphaned, by checking with "depclean".
>
> Anyone could tell me what did I miss?
>

You're probably getting false positives from equery, as you haven't taken
USE flags into consideration.

An example:
# equery d unrar
app-arch/rar-5.5.0_p20170811 (all_sfx ? app-arch/unrar)
app-emulation/winetricks-20170614 (rar ? app-arch/unrar)

I don't have the USE="rar" set on winetricks, so although it is correct
that rar would keep unrar available, since I have USE="all_sfx" set, your
script will make the wrong choice if I don't have rar installed.

Cheers,
Arve


Re: [gentoo-user] cleaning /var/lib/portage/world

2017-08-16 Thread Francisco Ares
2017-08-16 10:40 GMT-03:00 Arve Barsnes <arve.bars...@gmail.com>:

> On 16 August 2017 at 13:32, Francisco Ares <fra...@gmail.com> wrote:
>
>> But, after backing up the original "world" file and replacing with the
>> one built by the script, things don't work as expected, as a lot of
>> packages were orphaned, by checking with "depclean".
>>
>> Anyone could tell me what did I miss?
>>
>
> You're probably getting false positives from equery, as you haven't taken
> USE flags into consideration.
>
> An example:
> # equery d unrar
> app-arch/rar-5.5.0_p20170811 (all_sfx ? app-arch/unrar)
> app-emulation/winetricks-20170614 (rar ? app-arch/unrar)
>
> I don't have the USE="rar" set on winetricks, so although it is correct
> that rar would keep unrar available, since I have USE="all_sfx" set, your
> script will make the wrong choice if I don't have rar installed.
>
> Cheers,
> Arve
>

Good point!  Back to work.

Thanks,
Francisco


Re: [gentoo-user] binary packages: how to ...

2020-07-15 Thread Matt Connell (Gmail)
On Wed, 2020-07-15 at 17:14 +0100, Ashley Dixon wrote:
> This forces the "unRAR" LICENSE on p7zip

Good point.  It should be noted that app-arch/unrar (suggested
elsewhere in the thread) and some other packages for working with rar
achives also require accepting this license.

It seems that in order to un-rar something in a fully free-software-
compatible way, I believe options are limited to using a programming
language library.  dev-python/rarfile is available under the ISC
license, which is listed as GPL compatible.




Re: [gentoo-user] using torrent

2008-03-03 Thread Dan Cowsill
On Mon, Mar 3, 2008 at 3:00 PM, b.n. [EMAIL PROTECTED] wrote:
 Gavin Seddon ha scritto:

  Hi,
   I have a couple of dvd's as torrent files.Will someone explain how to
   create the dvd's since I have found noclear help on the www.  I inst.
   ktorrent but it hs no help.

  Just open the torrent files with ktorrent (File - Open) and let the
  program download the torrents.

  m.


 --
  gentoo-user@lists.gentoo.org mailing list



After downloading your dvds with your bittorrent client of choice (I
prefer Azureus, memory hog that it is), you will usually have to
extract them.  Typically, dvd images (isos) are compressed for better
data integrity into between 40 and 70 rar files.  You'd need the unrar
utility (emerge unrar) to extract them.  At that point, iirc, you
should be able to run unrar -x first archive file and you'll get
your iso.

Now load it up into k3b or your burning program of choice and burn!

-- 
Dan Cowsill
http://www.danthehat.net
-- 
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] cleaning /var/lib/portage/world

2017-08-16 Thread Neil Bothwick
On Wed, 16 Aug 2017 13:23:28 -0300, Francisco Ares wrote:

> 2017-08-16 10:40 GMT-03:00 Arve Barsnes <arve.bars...@gmail.com>:
> 
> > On 16 August 2017 at 13:32, Francisco Ares <fra...@gmail.com> wrote:
> >  
> >> But, after backing up the original "world" file and replacing with
> >> the one built by the script, things don't work as expected, as a lot
> >> of packages were orphaned, by checking with "depclean".
> >>
> >> Anyone could tell me what did I miss?
> >>  
> >
> > You're probably getting false positives from equery, as you haven't
> > taken USE flags into consideration.
> >
> > An example:
> > # equery d unrar
> > app-arch/rar-5.5.0_p20170811 (all_sfx ? app-arch/unrar)
> > app-emulation/winetricks-20170614 (rar ? app-arch/unrar)
> >
> > I don't have the USE="rar" set on winetricks, so although it is
> > correct that rar would keep unrar available, since I have
> > USE="all_sfx" set, your script will make the wrong choice if I don't
> > have rar installed.

> Good point!  Back to work.

emerge -cpv cat/pkg will tell you whether the package can be removed or
if it is needed by something else. It will take a while to run it for
every atom in @world but it will give reliable results, as determined by
portage.


-- 
Neil Bothwick

Nostalgia isn't what it used to be.


pgpY_5dk45BkU.pgp
Description: OpenPGP digital signature


Re: [gentoo-user] binary packages: how to ...

2020-07-15 Thread Neil Bothwick
On Wed, 15 Jul 2020 12:13:44 +0200, n952162 wrote:

> Is there an open-source way to view the contents of a rar archive?

app-arch/unrar


-- 
Neil Bothwick

Hospitality:  making your guests feel like they're at home, even if you
wish they were.


pgpkfH9jgNB0Z.pgp
Description: OpenPGP digital signature


Re: [gentoo-user] binary packages: how to ...

2020-07-15 Thread Ashley Dixon
On Wed, Jul 15, 2020 at 07:52:27PM +0200, David Haller wrote:
>  dev-python/rarfile/rarfile-3.1.ebuild 
> RDEPEND="compressed? ( || ( app-arch/unrar app-arch/rar ) )"
> 

This USE-flag strikes me as slightly nondescript:

$ ash-euses rarfile:compressed
dev-python/rarfile:compressed - Enables the module to support compressed v3
archives by calling the app-arch/unrar.

Does this mean that rarfile is compatible with  pre-version#3  archives  without
the `compressed` flag ?  Regardless, the point remains that RAR is a proprietary
format, which inevitably is locked to similarly proprietary (or non-free to some
extent) software.  According to [1] and [2], there does exist an  attempt  at  a
GPL'd implementation of RAR, however its development has since  ceased,  and  it
only supports up to v2 archives.

It seems like every reasonably modern archiving software supporting RAR does  so
via E. Roshal's `unrar`, disallowing the creation of a RAR-creation utility [3].

[1] 
https://en.wikipedia.org/wiki/RAR_(file_format)#Third-party_software_for_extracting_RAR_files
[2] http://www.unrarlib.org/
[3] https://en.wikipedia.org/wiki/PeaZip#Third-party_technologies

-- 

Ashley Dixon
suugaku.co.uk

2A9A 4117
DA96 D18A
8A7B B0D2
A30E BF25
F290 A8AA



signature.asc
Description: PGP signature


[gentoo-user] emerge problem after sync today

2017-07-12 Thread Danny YUE
Hi all,

I encountered a problem after `emerge --sync` today.

When I ran `emerge -auDNU @world`, it told me something strange
following the list of upgradable software:

Would you like to merge these packages? [Yes/No] 
>>> Verifying ebuild manifests
!!! A file is not listed in the Manifest: 
'/usr/portage/app-arch/unrar/unrar-5.4.5.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/sys-apps/less/less-494.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/dev-python/sip/sip-4..ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/dev-python/pillow/pillow-4.2.1.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/dev-python/sphinx/sphinx-1.3.1-r2.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/www-servers/nginx/nginx-1.13.0.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/app-text/podofo/podofo-0.9.6_pre20170508-r1.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/dev-lang/vala/vala-0.32.1.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/sys-libs/db/db-4.8.30-r2.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/sys-libs/db/db-4.8.30-r2.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/net-dns/bind-tools/bind-tools-9.11.0_p3.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/dev-lang/php/php-5.6.30.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/app-admin/apache-tools/apache-tools-2.4.25.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/app-text/dos2unix/dos2unix-7.3.5.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/media-libs/harfbuzz/harfbuzz-1.4.6-r1.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/dev-cpp/gtkmm/gtkmm-2.24.5.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/app-text/calibre/calibre-3.1.1-r2.ebuild'
!!! A file is not listed in the Manifest: 
'/usr/portage/gnome-base/gnome-keyring/gnome-keyring-3.20.1.ebuild'

Then I checked unrar ebuild directory. I found that Manifest file is
empty.

The problem did not disappear after I purged /usr/portage and redo
`emerge --sync`. So I suspect this is an error in the upstream
repository.


This is really strange. Any idea?


Danny



Re: [gentoo-user] Extracting XP drivers from an .exe

2008-01-03 Thread Grant
  Can anyone think of a way to extract the XP 64-bit drivers I know are
  in an .exe file from that file?  I've run the executable inside of
  vmware running 32-bit XP but I'm sure the installed drivers are
  32-bit.

 If you are lucky and the file is an exe archive it might be possible
 to unrar or unzip it just like any other archive. If it is in a
 propietary format you might need to use a windows installation
 to use it's contents.

Unfortunately running the archive on 32-bit Windows starts the
installation routine and trying unzip errors.

- Grant
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Extracting XP drivers from an .exe

2008-01-03 Thread Jesús Guerrero
On Thu, 3 Jan 2008 11:20:14 -0800
Grant [EMAIL PROTECTED] wrote:

 Can anyone think of a way to extract the XP 64-bit drivers I know are
 in an .exe file from that file?  I've run the executable inside of
 vmware running 32-bit XP but I'm sure the installed drivers are
 32-bit.

If you are lucky and the file is an exe archive it might be possible
to unrar or unzip it just like any other archive. If it is in a 
propietary format you might need to use a windows installation
to use it's contents.
-- 
Jesús Guerrero [EMAIL PROTECTED]
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] binary packages: how to ...

2020-07-15 Thread David Haller
Hello,

On Wed, 15 Jul 2020, Matt Connell (Gmail) wrote:
>It seems that in order to un-rar something in a fully free-software-
>compatible way, I believe options are limited to using a programming
>language library.  dev-python/rarfile is available under the ISC
>license, which is listed as GPL compatible.

 dev-python/rarfile/rarfile-3.1.ebuild 
RDEPEND="compressed? ( || ( app-arch/unrar app-arch/rar ) )"


-dnh

-- 
Microsoft DNS service terminates abnormally when it recieves a response
to a DNS query that was never made.  Fix Information: Run your DNS
service on a different platform.-- bugtraq



Re: [gentoo-user] Create mutli-file .zip archives from the command line?

2008-01-13 Thread Jesús Guerrero
On Sun, 13 Jan 2008 15:59:04 +0100
Renat Golubchyk [EMAIL PROTECTED] wrote:

 Hi!
 
 On Sun, 13 Jan 2008 14:21:30 + Stroller
 [EMAIL PROTECTED] wrote:
  What I thought to do was to break the .iso into a multi-part .zip  
  archive, transfer the separate files over to the Windows PC and then  
  unzip them back into the original big file using Explorer's built-in  

The problem is that fat32 can't handle files that are larger than
4gb-1byte. So, will still be unable to unzip or unrar that iso image.

Unzip would just stop with an error when it reaches that limit. This
is a technical limitation of fat32 itself. There is nothing unzip or
unrar could do about this. Fat32 just can't index more than 2^32
(4294967296) bytes. It uses 32 bits to index a given file, and any
number above that (well, above 4294967295, since we start at 0) just
doesn't fit into a 32 bits word. Which means that fat32 can't handle
it.

You have many other alternatives: use ntfs or even ext3/2. I know that
there are drivers to use these filesystems on windows, I don't know
how good or bad they are, though. :)

-- 
Jesús Guerrero [EMAIL PROTECTED]
--
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] Extracting XP drivers from an .exe

2008-01-03 Thread Jesús Guerrero
On Thu, 3 Jan 2008 12:30:08 -0800
Grant [EMAIL PROTECTED] wrote:

   Can anyone think of a way to extract the XP 64-bit drivers I know are
   in an .exe file from that file?  I've run the executable inside of
   vmware running 32-bit XP but I'm sure the installed drivers are
   32-bit.
 
  From man cabextract:
 
  cabextract - program to extract files from Microsoft cabinet (.cab) archives
 
 Unfortunately not a cabinet file either.
 
 - Grant
 -- 
 [EMAIL PROTECTED] mailing list
 

If there is no cabinet, you can try unrar x and unzip on it.

Some exe's are just zip or rar files, but if that doesn't work
I don't think you will be able to get the contents without an 64
bit windows installation.

-- 
Jesús Guerrero [EMAIL PROTECTED]
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Extracting XP drivers from an .exe

2008-01-03 Thread Grant
Can anyone think of a way to extract the XP 64-bit drivers I know are
in an .exe file from that file?  I've run the executable inside of
vmware running 32-bit XP but I'm sure the installed drivers are
32-bit.
  
   From man cabextract:
  
   cabextract - program to extract files from Microsoft cabinet (.cab) 
   archives
 
  Unfortunately not a cabinet file either.
 
  - Grant
  --
  [EMAIL PROTECTED] mailing list
 

 If there is no cabinet, you can try unrar x and unzip on it.

 Some exe's are just zip or rar files, but if that doesn't work
 I don't think you will be able to get the contents without an 64
 bit windows installation.

When I execute the .exe file on 32-bit windows it starts a real
installation routine though.  I guess I'm out of luck.

- Grant
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Create mutli-file .zip archives from the command line?

2008-01-13 Thread Florian Philipp

On Sun, 2008-01-13 at 16:13 +0100, Jesús Guerrero wrote:
 On Sun, 13 Jan 2008 15:59:04 +0100
 Renat Golubchyk [EMAIL PROTECTED] wrote:
 
  Hi!
  
  On Sun, 13 Jan 2008 14:21:30 + Stroller
  [EMAIL PROTECTED] wrote:
   What I thought to do was to break the .iso into a multi-part .zip  
   archive, transfer the separate files over to the Windows PC and then  
   unzip them back into the original big file using Explorer's built-in  
 
 The problem is that fat32 can't handle files that are larger than
 4gb-1byte. So, will still be unable to unzip or unrar that iso image.
[...]
 You have many other alternatives: use ntfs or even ext3/2. I know that
 there are drivers to use these filesystems on windows, I don't know
 how good or bad they are, though. :)
 
 -- 

Ext2 is supposed to be on the same level with fat32 in terms of speed
and stability. It doesn't care much about own and mod but that's it.

AFAIK there is no ext3 driver,yet. But you can still mount these as
ext2.

Reiserfs is readonly.


signature.asc
Description: This is a digitally signed message part


Re: [gentoo-user] Unpacking a .exe file

2009-09-09 Thread Jesús Guerrero
On Wed, 9 Sep 2009 22:23:43 +0100, Mick michaelkintz...@gmail.com wrote:
 Hi All,
 
 I seem to be having problems unpacking a particular wireless driver.  I
 tried 
 both unzip and cabextract and neither will do the deed:
 ===
  $ unzip -l wg511v2_3_2.exe 
 Archive:  wg511v2_3_2.exe
   End-of-central-directory signature not found.  Either this file is not
   a zipfile, or it constitutes one disk of a multi-part archive.  In the
   latter case the central directory and zipfile comment will be found on
   the last disk(s) of this archive.
 note:  wg511v2_3_2.exe may be a plain executable, not an archive
 unzip:  cannot find zipfile directory in one of wg511v2_3_2.exe or
 wg511v2_3_2.exe.zip, and cannot find wg511v2_3_2.exe.ZIP,
period.
 
 $ cabextract -l wg511v2_3_2.exe 
 wg511v2_3_2.exe: no valid cabinets found
 
 All done, errors in processing 1 file(s)
 ===
 
 Last time I used cabextract (more than a couple of years now) I don't
 recall 
 having such problems.  How can I troubleshoot this, or how else can I
 extract 
 the .sys files from in there?

The files can be compressed with whatever algorithm. So you can
still try unrar and many others. Failing that, you can still
try to extract it using wine.

-- 
Jesús Guerrero



[gentoo-user] Re: Kernel Modules

2011-06-10 Thread Nikos Chantziaras

On 06/10/2011 10:08 PM, Dale wrote:

Paul Hartman wrote:

See Pandu's latest message in this thread. Once you enable it like he
showed, it'll work like this:

# eselectpressed tab twice here
bashcomp boost ctags fontconfig java-vm
locale news pager python usage
visual
binutils --brief editor help kernel
mesa --no-colour pinentry rc
version wxwidgets
blas cblas env java-nsplugin lapack
modules opengl profile ruby vi
xvmc



Oh. Oh!!! NEATO. Now to remember I can do this the next time I can't
remember the name of a module. lol

Double neato ! It works after each option too.


Well, it's called bash completion and works pretty much for everything 
that has a completion file.  It needs app-shells/bash-completion to be 
installed.  There's a also global USE flag called bash-completion.


And also an eselect module called bashcomp, where you can enable this 
feature for specific tools and packages.  eselect bashcomp list shows 
the packages that support this.  For example, try ls --tabtab and 
you get a list options.  Or gcc, or unrar, or...





Re: [gentoo-user] Create mutli-file .zip archives from the command line?

2008-01-13 Thread Stroller


On 13 Jan 2008, at 15:13, Jesús Guerrero wrote:

On Sun, 13 Jan 2008 14:21:30 + Stroller
[EMAIL PROTECTED] wrote:

What I thought to do was to break the .iso into a multi-part .zip
archive, transfer the separate files over to the Windows PC and then
unzip them back into the original big file using Explorer's built-in


The problem is that fat32 can't handle files that are larger than
4gb-1byte. So, will still be unable to unzip or unrar that iso image.


I believe you're mistaken in the direct cause of my problem. I'm  
using NTFS on the Windows XP machine.


The file is the same size in bytes (8056211212) on the destination XP  
machine as it is on the Samba host, but the md5sums (using Sumemr  
Properties under XP) don't match.


The reason I mentioned 4gb is kinda off-topic here, but I've had  
problems in the past running BitTorrent on Linux box, saving files to  
a directory which was samba mounted from another Linux box. I assumed  
that there was some kind of 4gb limitation of SMB - and a friend  
remarked the same problems (using a Mac) - but googling does not seem  
to support this.


Thanks to the other posters for their excellent suggestions - I'll  
try them later today  report back.


Stroller.
--
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] Create mutli-file .zip archives from the command line?

2008-01-13 Thread Stroller


On 13 Jan 2008, at 16:45, Jesús Guerrero wrote:

...
The problem is that fat32 can't handle files that are larger than
4gb-1byte. So, will still be unable to unzip or unrar that iso  
image.


I believe you're mistaken in the direct cause of my problem. I'm
using NTFS on the Windows XP machine.
...


Well, that is new info.

If you are using ntfs then the issue is not the one I suspected.


Well, it didn't occur to mention NTFS vs FAT32 in my original post  
because it didn't occur to me that anyone might use FAT32 these days  
(except for portable devices, of course).



... I'd blame the wireless
connection, but if the problem is only with that file, then that  
should

not the be proble either.


At the time of posting this morning I had no way to say whether or  
not I could reproduce the problem - this Windows PC gets switched on  
perhaps once every 3 months, and the original file took so long  
copying (over two hours yesterday) that I left it running overnight.


I started another copy going this morning before I made my original  
post on this subject, and when I come back to the machine this  
evening it seems to have finished successfully - that is to say the  
md5sum matches up.


So I apologise to the list for wasting it's time, but having said  
that I know I'm going to want to split  recombine files cross- 
platform again sometime in the future, so I will remember this thread  
for reference. I won't go through making on line posts saying  
thanks! great idea! in reply to everyone who posted, but I'd like  
to thank everyone who has replied to my question. (For the record  
Renat Golubchyk's suggestion of split/copy was top of my list until I  
read Florian Philipp's reply, which is obviously pretty much exactly  
what I had in mind in the first place (and therefore requiring no  
additional thinking, always a priority); I am thankful to Jens for  
pointing me at portableapps.com)


Stroller.
--
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] Bash completion annoyance: escapes directory variables.

2009-01-17 Thread Stroller


On 17 Jan 2009, at 13:23, Jean-Baptiste Mestelan wrote:

...
Now, I am unsure whether this is a feature, but:
when I tab-complete 'cd ' followed  an environment variable, bash
insists on escaping this variable.

ex: cd $TAB - cd \$
Which means I end up typing for example
# cd \$DOC
and this is not resolved right.

If the variable path is not preceded by 'cd ' , bash completes it OK,
without escaping them.


A system here does the same thing, another across town behaves  
correctly.


(I don't actually have $DOC set on either, but `cd /` and then use  
autocomplete to `cd $HOME`, which is set.)


I don't know much about this, but I wonder if it may be related to  
some of Gentoo's 3rd-party Bash-completion features?



WORKING SYSTEM:

$ eselect bashcomp list
Available completions:
  [1]   eselect
  [2]   genlop *
  [3]   vim
  [4]   xxd
$


NON-WORKING SYSTEM:

$ eselect bashcomp list
Available completions:
  [1]   bash-completion-config
  [2]   bitkeeper
  [3]   bittorrent
  [4]   cksfv
  [5]   clisp
  [6]   dsniff
  [7]   freeciv
  [8]   gcl
  [9]   gentoo *
  [10]  gkrellm
  [11]  gnatmake
  [12]  harbour
  [13]  hg
  [14]  isql
  [15]  larch
  [16]  lilypond
  [17]  lisp
  [18]  mailman
  [19]  mcrypt
  [20]  modules
  [21]  mtx
  [22]  p4
  [23]  povray
  [24]  ri
  [25]  sbcl
  [26]  sitecopy
  [27]  snownews
  [28]  svk
  [29]  unace *
  [30]  unrar *
$


You might also check bash-completion USE flags.

Stroller.





Re: [gentoo-user] Re: Kernel Modules

2011-06-10 Thread Dale

Nikos Chantziaras wrote:

On 06/10/2011 10:08 PM, Dale wrote:

Paul Hartman wrote:

See Pandu's latest message in this thread. Once you enable it like he
showed, it'll work like this:

# eselectpressed tab twice here
bashcomp boost ctags fontconfig java-vm
locale news pager python usage
visual
binutils --brief editor help kernel
mesa --no-colour pinentry rc
version wxwidgets
blas cblas env java-nsplugin lapack
modules opengl profile ruby vi
xvmc



Oh. Oh!!! NEATO. Now to remember I can do this the next time I can't
remember the name of a module. lol

Double neato ! It works after each option too.


Well, it's called bash completion and works pretty much for everything 
that has a completion file.  It needs app-shells/bash-completion to 
be installed.  There's a also global USE flag called bash-completion.


And also an eselect module called bashcomp, where you can enable this 
feature for specific tools and packages.  eselect bashcomp list 
shows the packages that support this.  For example, try ls 
--tabtab and you get a list options.  Or gcc, or unrar, or...




This is one of those, 'I have heard of this but didn't know what is was' 
things.  I did set the USE flag and updated the needed things, -N and 
all, but this is pretty darn cool.


I notice a really long list of things when I do this:

eselect bashcomp list

Is there a way to just enable them all?  Is there some that should NOT 
be enabled, maybe for good reason?


Thanks.

Dale

:-)  :-)



Re: [gentoo-user] Create mutli-file .zip archives from the command line?

2008-01-13 Thread Jesús Guerrero
On Sun, 13 Jan 2008 16:34:01 +
Stroller [EMAIL PROTECTED] wrote:

 
 On 13 Jan 2008, at 15:13, Jesús Guerrero wrote:
  On Sun, 13 Jan 2008 14:21:30 + Stroller
  [EMAIL PROTECTED] wrote:
  What I thought to do was to break the .iso into a multi-part .zip
  archive, transfer the separate files over to the Windows PC and then
  unzip them back into the original big file using Explorer's built-in
 
  The problem is that fat32 can't handle files that are larger than
  4gb-1byte. So, will still be unable to unzip or unrar that iso image.
 
 I believe you're mistaken in the direct cause of my problem. I'm  
 using NTFS on the Windows XP machine.
 
 The file is the same size in bytes (8056211212) on the destination XP  
 machine as it is on the Samba host, but the md5sums (using Sumemr  
 Properties under XP) don't match.
 
 The reason I mentioned 4gb is kinda off-topic here, but I've had  
 problems in the past running BitTorrent on Linux box, saving files to  
 a directory which was samba mounted from another Linux box. I assumed  
 that there was some kind of 4gb limitation of SMB - and a friend  
 remarked the same problems (using a Mac) - but googling does not seem  
 to support this.

Well, that is new info.

If you are using ntfs then the issue is not the one I suspected. I
know nothing about samba+big files, I did never use it with big files,
but I haven't hear of such a problem before. I'd blame the wireless
connection, but if the problem is only with that file, then that should
not the be proble either.

Anyway, I don't know if the winxp builtin feature supports multi
part zip files, so I would bet that using split+copy would be the 
easiest thing to do. You can still compress it into a single zip file
before splitting it, that way you might save some bandwidth (or not,
since most of the dvd contents is already compressed via codecs
anyway).

-- 
Jesús Guerrero [EMAIL PROTECTED]
--
gentoo-user@lists.gentoo.org mailing list



[gentoo-user] Re: Questions about optimal mplayer settings

2012-12-24 Thread Bruce Hill
On Wed, Dec 19, 2012 at 03:38:15PM +0100, Florian Philipp wrote:
 Am 19.12.2012 00:20, schrieb Walter Dnes:
  1) In the past couple of days I finally figured out what I was doing
  wrong with hardware acceleration (causing lack thereof) with an onboard
  Intel GPU in my HTPC machine.  I've applied the same fix to my desktop.
  mplayer now has 5 video output modes that actually show a picture...
  
  xv  X11/Xv
 
 This doesn't use any GPU features. Good compatibility but otherwise not
 recommended.
 
  gl_nosw OpenGL no software rendering
 
 Same as gl just that it fails when you have driver issues that prevent
 it from using the GPU. More like a debugging tool.
 
  x11 X11 ( XImage/Shm )
 
 Practically outdated.
 
  gl  OpenGL
 
 Recommended. Should work okay without further tuning but offers a lot of
 them. Just play around.
 
  gl2 X11 (OpenGL) - multiple textures version
 
 Unmaintained. Use gl.
 
  
  Which one has the best playback ability?  Is there a test program or a
  torture test video file I can use for testing?
  
  
  2) When I start up mplayer, the diagnostics include...
  MMX2 supported but disabled
  
  There is no mmx2 in the USE flags or in /proc/cpuinfo
  
 
 That should be USE=mmxext. No clue what's its name in cpuinfo but
 since you are running something newer than a P3 it should be a safe bet.
 
 PS: Have to tried mplayer2? It's mostly compatible but offers no
 mencoder support but you can install mplayer to get that. It has better
 threading support and some other minor improvements.
 
 Regards,
 Florian Philipp

Which mplayer are you talking about? Your USE flags and info don't match my 
portage:

mingdao@workstation ~ $ emerge -pv mplayer

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild  N ] media-plugins/live-2012.01.07  0 kB
[ebuild  N ] app-arch/unrar-4.2.3  0 kB
[ebuild  N ] media-libs/libdca-0.0.5-r2  USE=-debug -oss -static-libs 0 kB
[ebuild  N ] media-libs/xvid-1.3.2  USE=threads -examples -pic 0 kB
[ebuild  N ] dev-libs/libcdio-0.83  USE=cxx -cddb -minimal -static-libs 0 
kB
[ebuild  N ] media-libs/libdv-1.0.0-r2  USE=sdl -debug -static-libs -xv 0 
kB
[ebuild  N ] x11-libs/libXScrnSaver-1.2.2  USE=-static-libs 0 kB
[ebuild  N ] media-libs/libtheora-1.1.1  USE=encode -doc -examples 
-static-libs 0 kB
[ebuild  N ] media-libs/speex-1.2_rc1  USE=sse -ogg -static-libs 0 kB
[ebuild  N ] media-video/mplayer-1.1-r1  USE=3dnow 3dnowext X a52 alsa 
cdio dts dv dvd dvdnav enca encode faad iconv jpeg jpeg2k libass live mmx 
mmxext mp3 network opengl osdmenu png quicktime rar real rtc sdl shm speex sse 
sse2 theora toolame tremor truetype twolame unicode vorbis x264 xscreensaver xv 
xvid -aalib (-altivec) (-aqua) -bidi -bindist -bl -bluray -bs2b -cddb 
-cdparanoia -cpudetection -debug -dga -directfb -doc -dvb -dxr3 -faac -fbcon 
-ftp -ggi -gif -gsm -ipv6 -jack -joystick -ladspa -libcaca -libmpeg2 -lirc -lzo 
-mad -md5sum -mng -nas -nut -openal -oss -pnm -pulseaudio -pvr -radio -rtmp 
-samba -ssse3 -tga -v4l -vdpau (-vidix) (-win32codecs) -xanim -xinerama -xvmc 
-zoran VIDEO_CARDS=-mga -s3virge -tdfx 0 kB

Total: 10 packages (10 new), Size of downloads: 0 kB
mingdao@workstation ~ $ grep mmx /proc/cpuinfo 
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb 
rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid 
aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy 
abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt cpb hw_pstate npt lbrv 
svm_lock nrip_save pausefilter
-- 
Happy Penguin Computers   ')
126 Fenco Drive   ( \
Tupelo, MS 38801   ^^
supp...@happypenguincomputers.com
662-269-2706 662-205-6424
http://happypenguincomputers.com/

Don't top-post: http://en.wikipedia.org/wiki/Top_post#Top-posting



Re: [gentoo-user] alsa-headers dont know what they want...

2006-10-28 Thread Meino Christian Cramer
From: Bo Ørsted Andresen [EMAIL PROTECTED]
Subject: Re: [gentoo-user] alsa-headers dont know what they want...
Date: Sat, 28 Oct 2006 12:31:56 +0200

 On Saturday 28 October 2006 03:37, Meino Christian Cramer wrote:
   I do an
 
 eix-sync  emerge --pretend --tree --verbose --update --deep world
 
   on a regular basis.
 
   Each time the alsa-headers are offered for update.
 
   If alsa-headers 1.0.13 are installed, alsa-headers 1.0.12 are offered
   for update.
 
   If alsa-headers 1.0.12 are installed, alsa-headers 1.0.13 are offered
   for update.
 
   Seems to be an endless story.
 
   How can I stop them ?
 
 You should know about now, that we need to see the output of the above 
 command 
 in order answer that one. Preferably show it when you have 
 alsa-headers-1.0.13 and emerge wants to downgrade. Also alsa-headers 
 don't want anything. Something else is pulling in the lower version...
 
 -- 
 Bo Andresen

Hi Bo!

 I have looked through all my logs and found the following:

Script started on Wed Oct 25 13:54:08 2006
These are the packages that would be merged, in reverse order:

These are the packages that would be merged, in reverse order:

Calculating world dependencies... done!
[ebuild U ] x11-libs/qt-4.1.4-r2 [4.1.4] USE=cups gif jpeg opengl png zlib 
-accessibility -debug -doc -examples -firebird -mng -mysql -nas -nis -odbc 
-postgres -sqlite -xinerama 0 kB
[nomerge  ] media-sound/alsa-driver-1.0.12  USE=oss -debug -doc
[ebuild UD]  media-sound/alsa-headers-1.0.12 [1.0.13] 0 kB

Then, next time:

These are the packages that would be merged, in reverse order:

Calculating world dependencies... done!
[nomerge  ] media-plugins/gst-plugins-alsa-0.10.4
[nomerge  ]  media-libs/alsa-lib-1.0.13  USE=-debug -doc
[ebuild U ]   media-sound/alsa-headers-1.0.13 [1.0.12] 0 kB

Then, next time:

These are the packages that would be merged, in reverse order:

Calculating world dependencies... done!
[nomerge  ] media-sound/alsa-driver-1.0.12  USE=oss -debug -doc
[ebuild UD]  media-sound/alsa-headers-1.0.12 [1.0.13] 0 kB

Then next time:

These are the packages that would be merged, in reverse order:

Calculating world dependencies... done!
[ebuild U ] app-misc/screen-4.0.3 [4.0.2-r5] USE=pam -debug -multiuser 
-nethack (-selinux) 820 kB
[ebuild U ] sys-apps/net-tools-1.60-r12 [1.60-r11] USE=nls -static 102 kB
[nomerge  ] media-plugins/gst-plugins-alsa-0.10.4
[nomerge  ]  media-libs/alsa-lib-1.0.13  USE=-debug -doc
[ebuild U ]   media-sound/alsa-headers-1.0.13 [1.0.12] 0 kB

Then next time:

These are the packages that would be merged, in reverse order:

These are the packages that would be merged, in reverse order:

Calculating world dependencies... done!
[nomerge  ] media-sound/alsa-driver-1.0.12  USE=oss -debug -doc
[ebuild UD]  media-sound/alsa-headers-1.0.12 [1.0.13] 0 kB

Then next time:

These are the packages that would be merged, in reverse order:

Calculating world dependencies... done!
[nomerge  ] dev-dotnet/gtk-sharp-2.8.0  USE=-doc
[ebuild U ]  dev-lang/mono-1.1.13.8.1 [1.1.13.6] USE=X nptl 17,342 kB
[ebuild U ] app-arch/unrar-3.6.8 [3.6.7] 122 kB
[nomerge  ] media-plugins/gst-plugins-alsa-0.10.4
[nomerge  ]  media-libs/alsa-lib-1.0.13  USE=-debug -doc
[ebuild U ]   media-sound/alsa-headers-1.0.13 [1.0.12] 0 kB
[nomerge  ]  media-libs/gst-plugins-base-0.10.8  USE=X alsa esd oss xv 
-debug
[nomerge  ]   dev-libs/glib-2.10.3  USE=-debug -doc -hardened
[nomerge  ]sys-libs/glibc-2.4-r3  USE=nls nptl nptlonly -build 
-glibc-compat20 -glibc-omitfp -hardened (-multilib) -profile (-selinux)
[ebuild U ] sys-libs/timezone-data-2006n [2006g] 336 kB

Then next time:

These are the packages that would be merged, in reverse order:

Calculating world dependencies... done!
[nomerge  ] dev-util/gtk-doc-1.6-r1  USE=-debug -doc -emacs
[nomerge  ]  app-text/openjade-1.3.2-r1
[ebuild U ]   app-text/opensp-1.5.2-r1 [1.5.1] USE=nls -doc% 1,485 kB
[ebuild U ] media-sound/alsa-driver-1.0.13 [1.0.12] USE=oss -debug -doc 0 
kB
[nomerge  ] x11-terms/xterm-218  USE=truetype -Xaw3d -paste64 -toolbar 
-unicode
[nomerge  ]  sys-libs/libutempter-1.1.4.1
[nomerge  ]   app-arch/rpm2targz-9.0-r3
[nomerge  ]x11-apps/xinit-1.0.2-r6  USE=-debug -minimal
[nomerge  ] x11-apps/xsm-1.0.1  USE=-debug -xprint
[ebuild U ]  net-misc/netkit-rsh-0.17-r7 [0.17-r6] USE=pam 0 kB

(last was included for the sake of completeness)



Each time I submitted the command:

eix-sync  emerge --pretend --tree --verbose --update --deep world

and, after checking the the output the command:

emerge -1 --verbose --update --deep world

(yes, I know, there are more efficient ways to do that tasks...)


Sorry for my german English which generates thing like ...headers
wants... and such. My English is far from perfect.

Kind regards,
mcc



-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Comparison between 32 bit and 64 bit

2012-08-13 Thread Frank Steinmetzger
Hey there

As I mentioned in an earlier thread, I switched from 32 to 64 bit after some
convinction work done by the ML and a friend.  In order to justify the switch
for myself, I made some performance comparisons.  

So, in case anyone is interested, here are my results.

The only thing I don't really like is of course the increased RAM usage.
While the old installation took 400 MB of RAM after Login to KDE (Akonadi is
a hog), it now takes 500.  The memory meter now stands always at least at 50%
(3 GB available).  I will have to tune down multitasking a bit.



The following items first display the command excuted (denoted by $), and then
the output of time for the command; first for 32 bit and then 64 bit.

All tests were done on my Core 2 Duo laptop (T7200, max. 2GHz) fixed at 1 GHz
and with 3 GB of RAM.  This is not a theoretical benchmark, but rather about
stuff I usually to do in my every-day computing.  I excluded compiling,
because it involves more than just crunching.

Resulting observation: there seems to be an inherent increase of about 10%
in memory throughput.  I was most surprised by the performance of lilypond
and blender, two computing-intensive applications I tend to use regularly.
I wanted to do a framerate comparison of the Java-based CPU hog Minecraft,
but didn't get around to it.


All the following tasks were done in ramdisk to rule out HDD hindrance.



$ 7z b (7zip's own benchmark function, abridged output)

32 bit  |   64 bit
===
RAM size:3037 MB|   RAM size:3013 MB
RAM usage:425 MB|   RAM usage:425 MB
|  
Dict  Compressing  | Decomp.|   Dict  Compressing   | Decomp.
  Speed Rating | Speed Rating   | Speed Rating  | Speed Rating
   KB/s   MIPS |  KB/s   MIPS   |  KB/s   MIPS  |  KB/s   MIPS
|  
22:1487   1446 | 19039   1719   |   22:1612   1568  | 20974   1893
23:1443   1470 | 19049   1744   |   23:1612   1642  | 20758   1900
24:1499   1612 | 18854   1749   |   24:1591   1711  | 20292   1883
25:1489   1700 | 18611   1750   |   25:1584   1809  | 20030   1884
--
Avr:  1557   1740   | 16821890
Tot:  1649  | 1786



Various compressions of the High Voltage SID collection version 56
(41356 files, 1416 folders, total dir size 307.676k according to du -s).

Extract:
$ unrar x hvsc.rar
real0m38.582s   0m38.763s
user0m36.031s   0m36.190s
sys 0m2.523s0m2.496s
--- neglibible

Repack witz p7zip, resulting archive size 54.8 MB:
$ 7za a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on hvsc.7z C64Music/  /dev/null
real3m0.530s2m41.780s
user5m22.359s   4m55.810s
sys 2m2.973s0m3.144s
--- 1/9 faster

Extract from 7z:
$ 7z x hvsc.7z
real0m24.541s   0m21.437s
user0m19.302s   0m16.929s
sys 0m4.403s0m4.472s
--- 1/10 faster

Simple taring of the directory:
$ tar cf hvsc.tar C64Music/
real0m1.334s0m1.226s
user0m0.297s0m0.304s
sys 0m1.020s0m0.872s
--- ~1/10 faster

XZing the tar, resulting archive size 54.2 MB:
$ xz -k -z hvsc.tar
real6m26.383s   4m31.747s
user6m23.375s   4m30.969s
sys 0m2.733s0m0.728s
--- ~1/3 faster

XZing with --extreme option (about 4% smaller archive):
$ xz -e -k -z hvsc.tar
real15m37.732s  10m39.348s
user15m36.592s  10m38.900s
sys 0m0.977s0m0.456s
--- ~1/3 faster

Packing in squashfs:
$ mksquashfs C64Music/ hvsc.sqfs
real0m57.380s   0m44.697s
user1m45.136s   1m20.377s
sys 0m9.059s0m6.116s
--- ~1/4 faster



Some memory shuffling:
$ dd if=/dev/urandom of=random bs=1M count=500
real2m0.306s   1m49.348s
user0m0.003s   0m0.000s
sys 2m0.292s   1m49.315s
--- 1/12 faster

$ cp random r2
real0m1.069s   0m0.917s
user0m0.000s   0m0.004s
sys 0m1.067s   0m0.908s
--- 1/10 faster



Compile Bach's Christmas Oratorio, Tenor part, 16 pages A5:
$ lilypond wo.ly
real0m31.430s  0m23.737s
user0m30.711s  0m23.129s
sys 0m0.717s   0m0.592s
--- 1/3 faster

Compile Oratorio de Noël by Saint-Saëns, 4 voices, 16 pages A4:
$ lilypond noel.lyk
real0m41.575s  0m26.494s
user0m41.177s  0m25.870s
sys 0m0.390s   0m0.604s
--- 1/3 faster



Optimising a PNG (photo of Orion nebula, 1400x1050 pixel):
$ optipng -o9 Orion.png
real0m23.491s  0m21.337s
user0m23.465s  0m21.281s
sys 0m0.027s   0m0.008s
--- 1/10 faster


Encoding a video file to x264 (1280x960, 1600 frames, no sound):
First pass:
$ mencoder bike.flv -ovc x264 -x264encopts bitrate=2000:pass=1 -nosound -o 
/dev/null
real1m57.379s  1m44.500s
user3m48.048s  3m19.728s
sys 0m0.837s   0m0.796s
--- 1/8 faster

Re: [gentoo-user] Comparison between 32 bit and 64 bit

2012-08-13 Thread Volker Armin Hemmann
Am Montag, 13. August 2012, 20:55:23 schrieb Frank Steinmetzger:
 Hey there
 
 As I mentioned in an earlier thread, I switched from 32 to 64 bit after some
 convinction work done by the ML and a friend.  In order to justify the
 switch for myself, I made some performance comparisons.
 
 So, in case anyone is interested, here are my results.
 
 The only thing I don't really like is of course the increased RAM usage.
 While the old installation took 400 MB of RAM after Login to KDE (Akonadi is
 a hog), it now takes 500.  The memory meter now stands always at least at
 50% (3 GB available).  I will have to tune down multitasking a bit.
 
 
 
 The following items first display the command excuted (denoted by $), and
 then the output of time for the command; first for 32 bit and then 64 bit.
 
 All tests were done on my Core 2 Duo laptop (T7200, max. 2GHz) fixed at 1
 GHz and with 3 GB of RAM.  This is not a theoretical benchmark, but rather
 about stuff I usually to do in my every-day computing.  I excluded
 compiling, because it involves more than just crunching.
 
 Resulting observation: there seems to be an inherent increase of about 10%
 in memory throughput.  I was most surprised by the performance of lilypond
 and blender, two computing-intensive applications I tend to use regularly.
 I wanted to do a framerate comparison of the Java-based CPU hog Minecraft,
 but didn't get around to it.
 
 
 All the following tasks were done in ramdisk to rule out HDD hindrance.
 
 
 
 $ 7z b (7zip's own benchmark function, abridged output)
 
 32 bit  |   64 bit
 ===
 RAM size:3037 MB|   RAM size:3013 MB
 RAM usage:425 MB|   RAM usage:425 MB
 
 Dict  Compressing  | Decomp.|   Dict  Compressing   | Decomp.
   Speed Rating | Speed Rating   | Speed Rating  | Speed Rating
KB/s   MIPS |  KB/s   MIPS   |  KB/s   MIPS  |  KB/s   MIPS
 
 22:1487   1446 | 19039   1719   |   22:1612   1568  | 20974   1893
 23:1443   1470 | 19049   1744   |   23:1612   1642  | 20758   1900
 24:1499   1612 | 18854   1749   |   24:1591   1711  | 20292   1883
 25:1489   1700 | 18611   1750   |   25:1584   1809  | 20030   1884
 --
 Avr:  1557   1740   | 16821890
 Tot:  1649  | 1786
 
 
 
 Various compressions of the High Voltage SID collection version 56
 (41356 files, 1416 folders, total dir size 307.676k according to du -s).
 
 Extract:
 $ unrar x hvsc.rar
 real0m38.582s   0m38.763s
 user0m36.031s   0m36.190s
 sys 0m2.523s0m2.496s
 --- neglibible
 
 Repack witz p7zip, resulting archive size 54.8 MB:
 $ 7za a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on hvsc.7z C64Music/ 
 /dev/null real3m0.530s2m41.780s
 user5m22.359s   4m55.810s
 sys 2m2.973s0m3.144s
 --- 1/9 faster
 
 Extract from 7z:
 $ 7z x hvsc.7z
 real0m24.541s   0m21.437s
 user0m19.302s   0m16.929s
 sys 0m4.403s0m4.472s
 --- 1/10 faster
 
 Simple taring of the directory:
 $ tar cf hvsc.tar C64Music/
 real0m1.334s0m1.226s
 user0m0.297s0m0.304s
 sys 0m1.020s0m0.872s
 --- ~1/10 faster
 
 XZing the tar, resulting archive size 54.2 MB:
 $ xz -k -z hvsc.tar
 real6m26.383s   4m31.747s
 user6m23.375s   4m30.969s
 sys 0m2.733s0m0.728s
 --- ~1/3 faster
 
 XZing with --extreme option (about 4% smaller archive):
 $ xz -e -k -z hvsc.tar
 real15m37.732s  10m39.348s
 user15m36.592s  10m38.900s
 sys 0m0.977s0m0.456s
 --- ~1/3 faster
 
 Packing in squashfs:
 $ mksquashfs C64Music/ hvsc.sqfs
 real0m57.380s   0m44.697s
 user1m45.136s   1m20.377s
 sys 0m9.059s0m6.116s
 --- ~1/4 faster
 
 
 
 Some memory shuffling:
 $ dd if=/dev/urandom of=random bs=1M count=500
 real2m0.306s   1m49.348s
 user0m0.003s   0m0.000s
 sys 2m0.292s   1m49.315s
 --- 1/12 faster
 
 $ cp random r2
 real0m1.069s   0m0.917s
 user0m0.000s   0m0.004s
 sys 0m1.067s   0m0.908s
 --- 1/10 faster
 
 
 
 Compile Bach's Christmas Oratorio, Tenor part, 16 pages A5:
 $ lilypond wo.ly
 real0m31.430s  0m23.737s
 user0m30.711s  0m23.129s
 sys 0m0.717s   0m0.592s
 --- 1/3 faster
 
 Compile Oratorio de Noël by Saint-Saëns, 4 voices, 16 pages A4:
 $ lilypond noel.lyk
 real0m41.575s  0m26.494s
 user0m41.177s  0m25.870s
 sys 0m0.390s   0m0.604s
 --- 1/3 faster
 
 
 
 Optimising a PNG (photo of Orion nebula, 1400x1050 pixel):
 $ optipng -o9 Orion.png
 real0m23.491s  0m21.337s
 user0m23.465s  0m21.281s
 sys 0m0.027s   0m0.008s
 --- 1/10 faster
 
 
 Encoding a video file to x264 (1280x960, 1600 frames, no sound):
 First pass:
 $ mencoder bike.flv -ovc x264 -x264encopts bitrate=2000:pass=1 -nosound -o
 /dev/null real

Re: [gentoo-user] Re: evince - Error printing to PDF

2013-04-18 Thread Joseph

On 04/18/13 17:25, Alan McKinnon wrote:

On 18/04/2013 14:34, Hartmut Figge wrote:

Stroller:

On 18 April 2013, at 02:12, Joseph wrote:



I have uninstalled cups-pdf and when I go any program print there is still option: 
Print to file except that now 'Save to folder by default is empty field, before if I 
remember was a user home directory.


Well, I would have assumed that cups-pdf would be necessary for printing to PDF, but I 
would like to see a screenshot of this default empty field.


I have not installed cups-pdf and don't use evince for printing. But i
have tested the problem. After pressing File-Print... this window opens

http://www.triffids.de/pub/screenshot/ev130418.png

Pressing 'Print' in this window results in the the error window unless
the field 'Name:' with the prefilled value output.pdf is deleted and
manually replaced by e.g. output.pdf. *g*




The console error is regarding invalid UTF-8 strings in filenames.

I'm betting the cause is idiotic filename munging by evince or one of
the lower libraries involved, which makes it a bug.


--
Alan McKinnon
alan.mckin...@gmail.com


Here is a list of 149 packaged that I emerged one of them is responsible for 
implementation of that Print to File in Print window
Can somebody help give me a hint which one it might be?

By the way meld-1.7.0 is buggy don't use it, 1.6.0 works OK


 dev-python/python-exec-0.3.1 to /
 app-admin/apache-tools-2.2.24 to /
 app-admin/eselect-1.3.4 to /
 app-admin/eselect-python-2008 to /
 app-arch/libarchive-3.1.2-r1 to /
 app-arch/unrar-4.2.4 to /
 app-text/docbook-xsl-stylesheets-1.78.0 to /
 app-text/iso-codes-3.40 to /
 app-text/poppler-0.22.2-r2 to /
 app-text/poppler-data-0.4.6 to /
 app-text/rarian-0.8.1-r2 to /
 dev-db/sqlite-3.7.15.2 to /
 dev-java/icedtea-bin-6.1.12.4 to /
 dev-lang/lua-5.1.5 to /
 dev-lang/php-5.4.13 to /
 dev-lang/python-2.7.3-r3 to /
 dev-lang/python-3.2.3-r2 to /
 dev-lang/spidermonkey-1.8.5-r4 to /
 dev-libs/atk-2.6.0 to /
 dev-libs/dbus-glib-0.100.2 to /
 dev-libs/libcroco-0.6.8 to /
 dev-libs/libIDL-0.8.14 to /
 dev-libs/libx86-1.1-r3 to /
 dev-libs/libxml2-2.9.0-r2 to /
 dev-libs/libxslt-1.1.28-r1 to /
 dev-libs/mpc-1.0.1 to /
 dev-libs/nettle-2.6 to /
 dev-libs/nspr-4.9.5 to /
 dev-libs/vala-common-0.18.1 to /
 dev-perl/DBI-1.623.0 to /
 dev-perl/IO-Socket-SSL-1.840.0 to /
 dev-perl/Net-SSLeay-1.520.0 to /
 dev-python/dbus-python-1.1.1-r1 to /
 dev-python/numpy-1.6.2-r2 to /
 dev-python/pycairo-1.10.0-r4 to /
 dev-python/pygobject-2.28.6-r53 to /
 dev-python/pygtk-2.24.0-r3 to /
 dev-util/dialog-1.2.20121230 to /
 dev-util/meld-1.7.0 to /
 dev-vcs/git-1.8.1.5 to /
 gnome-base/gnome-common-3.6.0 to /
 gnome-base/gsettings-desktop-schemas-3.6.1 to /
 gnome-base/gvfs-1.12.3-r1 to /
 gnome-base/librsvg-2.36.4 to /
 gnome-base/orbit-2.14.19-r2 to /
 media-libs/alsa-lib-1.0.26-r1 to /
 media-libs/audiofile-0.3.5 to /
 media-libs/libcanberra-0.30-r1 to /
 media-sound/alsa-utils-1.0.26-r2 to /
 media-video/ffmpeg-0.10.6 to /
 net-analyzer/nmap-6.25 to /
 net-libs/gnutls-2.12.23 to /
 net-misc/asterisk-11.2.2 to /
 net-misc/curl-7.29.0-r1 to /
 net-misc/rdate-1.4-r4 to /
 net-print/cups-1.5.2-r4 to /
 perl-core/Archive-Tar-1.900.0 to /
 perl-core/CGI-3.630.0 to /
 perl-core/Compress-Raw-Bzip2-2.60.0 to /
 perl-core/Compress-Raw-Zlib-2.60.0 to /
 perl-core/CPAN-Meta-2.120.921 to /
 perl-core/CPAN-Meta-Requirements-2.122.0 to /
 perl-core/CPAN-Meta-YAML-0.8.0 to /
 perl-core/digest-base-1.170.0 to /
 perl-core/Digest-MD5-2.520.0 to /
 perl-core/Digest-SHA-5.820.0 to /
 perl-core/Encode-2.470.0 to /
 perl-core/ExtUtils-CBuilder-0.280.205 to /
 perl-core/ExtUtils-Install-1.540.0 to /
 perl-core/ExtUtils-MakeMaker-6.640.0 to /
 perl-core/ExtUtils-Manifest-1.610.0 to /
 perl-core/File-Spec-3.400.0 to /
 perl-core/IO-Compress-2.60.0 to /
 perl-core/IPC-Cmd-0.780.0 to /
 perl-core/MIME-Base64-3.130.0 to /
 perl-core/Module-Build-0.400.300 to /
 perl-core/Module-CoreList-2.800.0 to /
 perl-core/Module-Load-0.240.0 to /
 perl-core/Module-Load-Conditional-0.540.0 to /
 perl-core/Module-Metadata-1.0.11 to /
 perl-core/Params-Check-0.360.0 to /
 perl-core/Parse-CPAN-Meta-1.440.400 to /
 perl-core/Scalar-List-Utils-1.270.0 to /
 perl-core/Storable-2.390.0 to /
 perl-core/Sys-Syslog-0.320.0 to /
 perl-core/Test-Harness-3.260.0 to /
 perl-core/Time-Local-1.230.0 to /
 perl-core/version-0.990.100 to /
 sci-calculators/galculator-2.1 to /
 sys-apps/kmod-12-r1 to /
 sys-apps/man-pages-3.47 to /
 sys-apps/portage-2.1.11.55 to /
 sys-apps/sysvinit-2.88-r4 to /
 sys-apps/texinfo-4.13-r2 to /
 sys-apps/util-linux-2.22.2 to /
 sys-devel/autoconf-2.69 to /
 sys-devel/automake-1.12.6 to /
 sys-devel/gcc-4.5.4 to /
 sys-devel/gettext-0.18.2 to /
 sys-fs/udisks-1.0.4-r5 to /
 sys-kernel/gentoo-sources-3.7.10 to /
 sys-kernel/linux-headers-3.7 to /
 sys-libs/timezone-data-2012j to /
 sys-power/upower-0.9.20-r2 to /
 sys-process/procps-3.3.4 to /
 virtual/perl-Archive-Tar-1.900.0 to /
 virtual/perl-CGI-3.630.0

[gentoo-user] User eix-sync permissions problem

2014-02-10 Thread Stroller
 denied (13)
rsync: mkstemp 
/usr/portage/app-admin/webalizer/.webalizer-2.23.08.ebuild.mLnrsH failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/alien/.ChangeLog.5E4S1V failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/alien/.Manifest.aDuzBa failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/alien/.alien-8.89.ebuild.ze0Lbp failed: 
Permission denied (13)
app-arch/bloscpack/
rsync: mkstemp /usr/portage/app-arch/cpio/.ChangeLog.Qn71LD failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/cpio/.Manifest.YRg1mS failed: Permission 
denied (13)
rsync: mkstemp /usr/portage/app-arch/cpio/.cpio-2.11-r1.ebuild.CYR7X6 failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/lz4/.ChangeLog.difwzl failed: Permission 
denied (13)
rsync: mkstemp /usr/portage/app-arch/lz4/.Manifest.SmhVaA failed: Permission 
denied (13)
rsync: mkstemp /usr/portage/app-arch/lz4/.lz4-0_p106-r1.ebuild.knGwMO failed: 
Permission denied (13)
rsync: mkstemp 
/usr/portage/app-arch/lz4/files/.lz4-0_p106-cflags.patch.1q68n3 failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/tar/.ChangeLog.AnfA0h failed: Permission 
denied (13)
rsync: mkstemp /usr/portage/app-arch/tar/.Manifest.8jA2Dw failed: Permission 
denied (13)
rsync: mkstemp /usr/portage/app-arch/tar/.tar-1.27.1-r1.ebuild.wF6whL failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/unrar/.ChangeLog.AlIuVZ failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/unrar/.Manifest.ZPygAe failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-arch/unrar/.unrar-5.0.14.ebuild.yO9hft 
failed: Permission denied (13)
rsync: mkstemp /usr/portage/app-backup/bacula/.ChangeLog.zeAEUH failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-backup/bacula/.Manifest.elusCW failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-backup/bacula/.bacula-5.2.13-r2.ebuild.fEFQkb 
failed: Permission denied (13)
rsync: mkstemp /usr/portage/app-cdr/qpxtool/.ChangeLog.0PKn6p failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-cdr/qpxtool/.Manifest.FoLYRE failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-cdr/qpxtool/.qpxtool-0.7.2.ebuild.gptBDT 
failed: Permission denied (13)
rsync: recv_generator: mkdir /usr/portage/app-crypt/ssdeep failed: Permission 
denied (13)
*** Skipping any contents from this failed directory ***
rsync: mkstemp /usr/portage/app-crypt/gnupg/.ChangeLog.qxmhr8 failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/gnupg/.Manifest.YAcvin failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/gnupg/.gnupg-1.4.16.ebuild.PxVX9B 
failed: Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/scrypt/.ChangeLog.FMsg2Q failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/scrypt/.Manifest.xkHzU5 failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/scrypt/.metadata.xml.tjiTMk failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/seahorse/.ChangeLog.3uVdFz failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/seahorse/.Manifest.Pru7xO failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/seahorse/.seahorse-3.10.2.ebuild.rLe9q3 
failed: Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/signing-party/.ChangeLog.KB1pki failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-crypt/signing-party/.Manifest.QhwOdx failed: 
Permission denied (13)
rsync: mkstemp 
/usr/portage/app-crypt/signing-party/.signing-party-1.1.5.ebuild.25mq7L 
failed: Permission denied (13)
app-crypt/ssdeep/
rsync: mkstemp /usr/portage/app-dicts/myspell-de-alt/.ChangeLog.Mned50 
failed: Permission denied (13)
rsync: mkstemp /usr/portage/app-dicts/myspell-de-alt/.Manifest.Rq502f failed: 
Permission denied (13)
rsync: mkstemp 
/usr/portage/app-dicts/myspell-de-alt/.myspell-de-alt-20120929.ebuild.QolP0u 
failed: Permission denied (13)
rsync: mkstemp /usr/portage/app-dicts/myspell-pt/.ChangeLog.YILGYJ failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-dicts/myspell-pt/.Manifest.kuGyWY failed: 
Permission denied (13)
rsync: mkstemp 
/usr/portage/app-dicts/myspell-pt/.myspell-pt-20120420.ebuild.5x2qUd failed: 
Permission denied (13)
rsync: delete_file: unlink(app-doc/gnucash-docs/gnucash-docs-2.4.1.ebuild) 
failed: Permission denied (13)
rsync: mkstemp /usr/portage/app-dicts/verbiste/.ChangeLog.rr3yXs failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-dicts/verbiste/.Manifest.mtyI0H failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-dicts/verbiste/.verbiste-0.1.38.ebuild.y1sS3W 
failed: Permission denied (13)
rsync: mkstemp /usr/portage/app-doc/csound-manual/.ChangeLog.Su556b failed: 
Permission denied (13)
rsync: mkstemp /usr/portage/app-doc/csound-manual/.Manifest.b3Vjar failed: 
Permission denied (13)
rsync: mkstemp 
/usr/portage/app-doc/csound-manual/.csound-manual-6.01.ebuild.buSCeG failed: 
Permission

[gentoo-user] now in blocked packages hell. =\

2016-03-06 Thread Alan Grimes
I guess I deserve congratulations for graduating from useflag hell. Now
I'm in blocked packages hell. I tried to cure it by uninstalling things
but now I've hit two packages that I consider to be high-priority...
though I've started using a windows 7 machine to access my cannon
camera.


Clearly, it is inconceivable that there is any possibility of updating
any package on this system until these two packages are uninstalled. =\
I mean, simply isolating the conflicting part of the package tree and
updating everything that isn't affected by those packages makes no sense
whatsoever and is a computationally intractable problem



tortoise ~ # ./pretendupdate 

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild  N ] dev-db/lmdb-0.9.18:0/0.9.18::gentoo  USE="-static-libs"
136 KiB
[ebuild  N ] media-libs/libuninameslist-20091231::gentoo  556 KiB
[ebuild  N ] net-libs/http-parser-2.6.1:0/2.6.1::gentoo 
USE="-static-libs" ABI_X86="32 (64) (-x32)" 48 KiB
[ebuild U  ] net-wireless/wireless-regdb-20160208::gentoo
[20140529::gentoo] 16 KiB
[ebuild U  ] app-arch/unrar-5.3.11::gentoo [5.3.9::gentoo] 219 KiB
[ebuild U  ] net-analyzer/traceroute-2.0.22::gentoo [2.0.21::gentoo]
USE="-static" 68 KiB
[ebuild U  ] sys-libs/efivar-0.23::gentoo [0.21::gentoo] 66 KiB
[ebuild U  ] dev-cpp/glog-0.3.4::gentoo [0.3.3-r1::gentoo]
USE="gflags -static-libs {-test} -unwind" ABI_X86="32 (64) (-x32)" 511 KiB
[ebuild U  ] net-misc/tor-0.2.8.1_alpha::gentoo [0.2.7.6::gentoo]
USE="seccomp -bufferevents -libressl -scrypt (-selinux) -stats -systemd
{-test} -tor-hardening -transparent-proxy -web" 4,904 KiB
[ebuild U  ] sys-fs/fuse-2.9.5::gentoo [2.9.4::gentoo]
USE="-examples -static-libs" 552 KiB
[ebuild  N ] sys-libs/slang-2.3.0::gentoo  USE="pcre png readline
zlib -cjk -static-libs" ABI_X86="32 (64) (-x32)" 1,498 KiB
[ebuild  N ] net-dialup/ppp-scripts-0::gentoo  2 KiB
[ebuild  N ] dev-qt/qtpaths-5.5.1-r1:5::gentoo  USE="-debug {-test}"
0 KiB
[ebuild U  ] dev-perl/IO-Socket-SSL-2.24.0::gentoo [2.12.0::gentoo]
USE="-idn" 205 KiB
[ebuild U  ] dev-perl/HTML-Parser-3.720.0::gentoo
[3.710.0-r1::gentoo] USE="{-test}" 89 KiB
[ebuild U  ] dev-perl/Net-HTTP-6.90.0::gentoo [6.60.0::gentoo]
USE="-minimal%" 18 KiB
[ebuild U  ] dev-perl/HTTP-Message-6.110.0::gentoo
[6.60.0-r1::gentoo] USE="{-test%}" 59 KiB
[ebuild U  ] dev-perl/HTTP-Cookies-6.10.0::gentoo [6.0.1-r1::gentoo]
0 KiB
[ebuild U  ] dev-perl/HTTP-Negotiate-6.10.0::gentoo
[6.0.1-r1::gentoo] 0 KiB
[ebuild  N ] net-misc/socat-1.7.3.1::gentoo  USE="ipv6 readline ssl
tcpd" 478 KiB
[ebuild U  ] dev-libs/libzip-1.1.2:0/4::gentoo [1.0.1:0/0::gentoo]
USE="-static-libs" 447 KiB
[ebuild  N ] app-text/htmltidy-20090325-r1::gentoo  USE="-debug -doc
-static-libs" 387 KiB
[ebuild U  ] sys-process/htop-2.0.0-r1::gentoo [1.0.3-r1::gentoo]
USE="unicode -openvz -vserver (-oom%)" 463 KiB
[ebuild U  ] media-libs/babl-0.1.16::gentoo [0.1.14::gentoo]
USE="(-altivec)" CPU_FLAGS_X86="mmx sse sse2" 714 KiB
[ebuild U  ] x11-apps/xrandr-1.5.0::gentoo [1.4.3::gentoo] 179 KiB
[ebuild U  ] dev-util/debhelper-9.20160115::gentoo
[9.20151225::gentoo] USE="{-test}" LINGUAS="-de -es -fr" 327 KiB
[ebuild U  ] dev-perl/libwww-perl-6.150.0::gentoo [6.50.0::gentoo]
USE="ssl" 139 KiB
[ebuild  N ] net-libs/libndp-1.5::gentoo  ABI_X86="32 (64) (-x32)"
330 KiB
[ebuild  N ] dev-qt/qtgraphicaleffects-5.5.1-r1:5::gentoo 
USE="-debug {-test}" 13,994 KiB
[ebuild  N ] kde-frameworks/kf-env-3:5::gentoo  0 KiB
[ebuild U  ] dev-cpp/eigen-3.2.8-r2:3::gentoo [3.2.7:3::gentoo]
USE="openmp%* (-altivec) -debug -doc {-test%}" CPU_FLAGS_X86="sse2%*
sse3%* -sse4_1% -sse4_2% -ssse3%" 1,134 KiB
[ebuild U  ] net-libs/libssh-0.7.3:0/4::gentoo [0.7.2:0/4::gentoo]
USE="server sftp zlib -debug -doc -examples -gcrypt -gssapi -libressl
-pcap -ssh1 -static-libs {-test}" ABI_X86="32 (64) (-x32)" 343 KiB
[ebuild  N ] kde-apps/kdeartwork-wallpapers-15.08.3-r1:5::gentoo 
USE="-debug" 0 KiB
[ebuild  N ] kde-apps/kde-wallpapers-15.08.3-r1:5::gentoo 
USE="minimal -debug" 0 KiB
[ebuild  NS] kde-apps/libkexiv2-15.12.1:5::gentoo
[15.08.3:4/15.08::gentoo] USE="xmp -debug" 64 KiB
[ebuild U  ] media-libs/taglib-1.10::gentoo [1.9.1-r2::gentoo]
USE="asf mp4 -debug -examples {-test}" ABI_X86="32 (64) (-x32)" 0 KiB
[ebuild  N ] kde-plasma/plasma-workspace-wallpapers-5.5.5:5::gentoo 
44,841 KiB
[ebuild  N ] kde-frameworks/breeze-icons-5.19.0:5/5.19::gentoo 
USE="{-test}" 1,490 KiB
[ebuild  N ] dev-libs/libgit2-

[gentoo-user] Could not link test program to Python

2016-01-02 Thread Hung Dang

Hi,

I could not update my system because of "Could not link test program to 
Python ..." error. I have attached the build log with this email and you 
can find the output of emerge --info command below. Please let me know 
if you have any suggestion?


Thanks a lot,
Hung

Portage 2.2.26 (python 3.4.3-final-0, 
default/linux/amd64/13.0/desktop/plasma/systemd, gcc-5.3.0, 
glibc-2.22-r1, 4.2.5-gentoo-i920 x86_64)

=
System uname: 
Linux-4.2.5-gentoo-i920-x86_64-Intel-R-_Core-TM-_i7_CPU_920_@_2.67GHz-with-gentoo-2.2

KiB Mem:24678796 total,   6067472 free
KiB Swap:  0 total, 0 free
Timestamp of repository gentoo: Fri, 01 Jan 2016 06:00:01 +
sh bash 4.3_p42
ld GNU ld (Gentoo 2.25.1 p1.1) 2.25.1
app-shells/bash:  4.3_p42::gentoo
dev-java/java-config: 2.2.0::gentoo
dev-lang/perl:5.22.1::gentoo
dev-lang/python:  2.7.11-r1::gentoo, 3.3.5-r7::gentoo, 
3.4.3-r7::gentoo, 3.5.1-r2::gentoo

dev-util/cmake:   3.4.1::gentoo
dev-util/pkgconfig:   0.29::gentoo
sys-apps/baselayout:  2.2::gentoo
sys-apps/openrc:  0.19.1::gentoo
sys-apps/sandbox: 2.10-r1::gentoo
sys-devel/autoconf:   2.13::gentoo, 2.69-r1::gentoo
sys-devel/automake:   1.11.6-r1::gentoo, 1.13.4::gentoo, 
1.14.1::gentoo, 1.15-r1::gentoo

sys-devel/binutils:   2.25.1-r1::gentoo
sys-devel/gcc:4.9.3::gentoo, 5.3.0::gentoo
sys-devel/gcc-config: 1.8::gentoo
sys-devel/libtool:2.4.6-r1::gentoo
sys-devel/make:   4.1-r1::gentoo
sys-kernel/linux-headers: 4.3::gentoo (virtual/os-headers)
sys-libs/glibc:   2.22-r1::gentoo
Repositories:

gentoo
location: /usr/portage
sync-type: rsync
sync-uri: rsync://rsync.gentoo.org/gentoo-portage
priority: -1000

ROKO__
location: /var/lib/layman/ROKO__
masters: gentoo
priority: 50

ACCEPT_KEYWORDS="amd64 ~amd64"
ACCEPT_LICENSE="*"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-march=native -O2 -pipe"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc 
/usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d 
/etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release 
/etc/php/apache2-php5.5/ext-active/ /etc/php/apache2-php5.6/ext-active/ 
/etc/php/cgi-php5.5/ext-active/ /etc/php/cgi-php5.6/ext-active/ 
/etc/php/cli-php5.5/ext-active/ /etc/php/cli-php5.6/ext-active/ 
/etc/revdep-rebuild /etc/sandbox.d /etc/terminfo 
/etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d 
/etc/texmf/web2c"

CXXFLAGS="-march=native -O2 -pipe"
DISTDIR="/usr/portage/distfiles"
EMERGE_DEFAULT_OPTS="--quiet-build=y"
FCFLAGS="-O2 -pipe"
FEATURES="assume-digests binpkg-logs collision-protect 
config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync 
metadata-transfer news parallel-fetch preserve-libs protect-owned 
sandbox sfperms splitdebug strict unknown-features-warn unmerge-logs 
unmerge-orphans userfetch userpriv usersandbox usersync xattr"

FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="http://distfiles.gentoo.org;
LANG="en_US.utf8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
MAKEOPTS="-j7"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times 
--omit-dir-times --compress --force --whole-file --delete --stats 
--human-readable --timeout=180 --exclude=/distfiles --exclude=/local 
--exclude=/packages"

PORTAGE_TMPDIR="/tmp/"
USE="X a52 aac acl acpi alsa amd64 apache2 asyncns bazaar berkdb blas 
bluetooth boost branding bzip2 cairo caps cdda cdr clang cli cmake 
colord corefonts cracklib crypt cups curl cxx dbus declarative djvu dri 
dts dvd dvdr emacs emboss encode equalizer exif extraengine fam fftw 
firefox flac fontconfig fortran fpm ftp fuse gd gdbm gif git glamor glib 
gphoto2 gpm graphviz gtk gtk3 gudev hdf5 iconv icu imagemagick 
introspection ios ipv6 jpeg jpeg2k json kde kipi lapack latex lcms ldap 
legacy-systray libatomic libav libmpv libnotify libxml2 lldb llvm lua 
luajit lximage lxqt lzma lzo mad mediawiki mercurial minizip mkv mmx 
mmxext mng modules mongodb mp3 mp4 mpeg mtp multilib mysql ncurses 
networkmanager nls nptl ogg opencl opengl openmp orc pam pango pcre pdf 
pdo phonon php plasma plugins png policykit postproc postscript ppds ptp 
ptp2 pulseaudio python qml qt3support qt4 qt5 rar readline script sdl 
seccomp semantic-desktop session skype sound spell sql sqlite sqlite3 
sse sse2 ssl ssse3 startup-notification svg systemd tbb tcpd threads 
tiff truetype udev udisks unicode unrar upower usb v4l video vorbis vpn 
wav wavpack webkit webp webrtc-aec widgets wma wmf wxwidgets x264 x265 
xattr xcb xcomposite xft xinerama xml xmlr

[gentoo-user] KDE update revdep-rebuild.sh fail

2018-04-02 Thread Daniel Frey
 with link time reference
symbol _ZTI26QPlatformIntegrationPlugin, version Qt_5 not defined in
file libQt5Gui.so.5 with link time reference
symbol _ZTV13QPlatformMenu, version Qt_5 not defined in file
libQt5Gui.so.5 with link time reference
symbol _ZTV15QPlatformCursor, version Qt_5 not defined in file
libQt5Gui.so.5 with link time reference
symbol _ZTV16QPlatformMenuBar, version Qt_5 not defined in file
libQt5Gui.so.5 with link time reference
symbol _ZTV17QPlatformMenuItem, version Qt_5 not defined in file
libQt5Gui.so.5 with link time reference
symbol _ZTV24QPlatformNativeInterface, version Qt_5 not defined in file
libQt5Gui.so.5 with link time reference)
[ 100% ]
 * Generated new 3_broken.rr
 * Assigning files to packages
 *-> media-gfx/exiv2-0.26_p20171104
media-gfx/ebdftopcf-2
media-gfx/graphite2-1.3.10
media-gfx/xsane
 *   /usr/lib64/qt5/plugins/platforms/KWinQpaPlugin.so -> kde-plasma/kwin
 * Generated new 4_raw.rr and 4_owners.rr
 * Cleaning list of packages to rebuild
 * Generated new 4_pkgs.rr
 * Assigning packages to ebuilds
 * Generated new 4_ebuilds.rr
 * Evaluating package order
 * Generated new 5_order.rr
 * All prepared. Starting rebuild
emerge --complete-graph=y --oneshot   app-accessibility/at-spi2-atk:2
app-accessibility/at-spi2-core:2 app-admin/eselect:0
app-admin/killproc:0 app-admin/lib_users:0 app-admin/logrotate:0
app-admin/perl-cleaner:0 app-admin/sudo:0 app-admin/syslog-ng:0
app-arch/bzip2:0/1 app-arch/cabextract:0 app-arch/cpio:0 app-arch/gcab:0
app-arch/gzip:0 app-arch/libarchive:0/13 app-arch/p7zip:0
app-arch/rpm2targz:0 app-arch/snappy:0/1 app-arch/tar:0
app-arch/unrar:0/5 app-arch/unzip:0 app-arch/xz-utils:0 app-arch/zip:0
app-cdr/cdrdao:0 app-cdr/cdrtools:0 app-cdr/dvd+rw-tools:0
app-crypt/gcr:0/1 app-crypt/gnupg:0 app-crypt/gpgme:1/11
app-crypt/libsecret:0 app-crypt/mhash:0 app-crypt/mit-krb5:0
app-crypt/p11-kit:0 app-crypt/pinentry:0 app-crypt/qca:2
app-crypt/rhash:0 app-dicts/myspell-en:0 app-doc/doxygen:0
app-doc/xmltoman:0 app-editors/vim:0 app-editors/vim-core:0
app-emulation/vmware-tools:0 app-emulation/wine-desktop-common:0
app-emulation/wine-gecko:2.47 app-emulation/wine-mono:4.6.4
app-emulation/wine-vanilla:2.0.3 app-eselect/eselect-cdparanoia:0
app-eselect/eselect-ctags:0 app-eselect/eselect-fontconfig:0
app-eselect/eselect-lib-bin-symlink:0 app-eselect/eselect-mesa:0
app-eselect/eselect-mpg123:0 app-eselect/eselect-notify-send:0
app-eselect/eselect-opencl:0 app-eselect/eselect-opengl:0
app-eselect/eselect-pinentry:0 app-eselect/eselect-python:0
app-eselect/eselect-qtgraphicssystem:0 app-eselect/eselect-ruby:0
app-eselect/eselect-vi:0 app-eselect/eselect-wine:0
app-eselect/eselect-wxwidgets:0 app-i18n/uchardet:0 app-misc/c_rehash:0
app-misc/ca-certificates:0 app-misc/editor-wrapper:0 app-misc/gtypist:0
app-misc/media-player-info:0 app-misc/mime-types:0 app-misc/pax-utils:0
app-office/libreoffice:0 app-portage/cpuid2cpuflags:0
app-portage/elt-patches:0 app-portage/genlop:0 app-portage/gentoolkit:0
app-portage/layman:0 app-portage/portage-utils:0 app-shells/bash:0
app-text/build-docbook-catalog:0 app-text/docbook-dsssl-stylesheets:0
app-text/docbook-sgml-dtd:3.0 app-text/docbook-xml-dtd:4.1.2
app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.3
app-text/docbook-xml-dtd:4.4 app-text/docbook-xml-dtd:4.5
app-text/docbook-xsl-stylesheets:0 app-text/enchant:0
app-text/fbreader:0 app-text/ghostscript-gpl:0
app-text/gnome-doc-utils:0 app-text/hunspell:0/1.6 app-text/iso-codes:0
app-text/libabw:0 app-text/libebook:0 app-text/libetonyek:0
app-text/libexttextcat:0 app-text/liblangtag:0 app-text/libmspub:0
app-text/libmwaw:0 app-text/libodfgen:0 app-text/libpaper:0
app-text/libspectre:0 app-text/libstaroffice:0 app-text/libwpd:0.10
app-text/libwpg:0.3 app-text/libwps:0 app-text/mupdf:0/1.11
app-text/mythes:0 app-text/openjade:0 app-text/opensp:0 app-text/po4a:0
app-text/poppler:0/73 app-text/poppler-data:0 app-text/qpdf:0/18
app-text/scrollkeeper-dtd:1.0 app-text/sgml-common:0 app-text/xmlto:0
app-text/yelp-tools:0 app-vim/gentoo-syntax:0 app-vim/vim-spell-en:0
dev-cpp/atkmm:0 dev-cpp/cairomm:0 dev-cpp/clucene:1 dev-cpp/gconfmm:0
dev-cpp/glibmm:2 dev-cpp/gtest:0 dev-cpp/gtkmm:2.4 dev-cpp/gtkmm:3.0
dev-cpp/libcmis:0.5 dev-cpp/libglademm:2.4 dev-cpp/pangomm:1.4
dev-db/mariadb:0/18 dev-db/mysql-init-scripts:0 dev-db/sqlite:3
dev-db/unixODBC:0 dev-lang/luajit:2 dev-lang/nasm:0 dev-lang/orc:0
dev-lang/perl:0/5.24 dev-lang/python:2.7 dev-lang/python:3.4/3.4m
dev-lang/python:3.5/3.5m dev-lang/python-exec:2 dev-lang/ruby:2.2
dev-lang/ruby:2.3 dev-lang/spidermonkey:0/mozjs185 dev-lang/swig:0
dev-lang/vala:0.36 dev-lang/yasm:0 dev-libs/appstream-glib:0/8
dev-libs/apr:1 dev-libs/apr-util:1 dev-libs/atk:0
dev-libs/boost:0/1.65.0 dev-libs/crossguid:0 dev-libs/crypto++:0/5.6
dev-libs/dbus-glib:0 dev-libs/double-conversion:0/1 dev-libs/elfutils:0
dev-libs/expat:0 dev-libs/fribidi:0 dev-libs/glib:2 dev-libs/gmp:0/10.4
dev-libs/gobject-introspection:0 dev-libs/gobject-introspection-co