Re: [gentoo-user] Re: mount and exfat

2012-10-30 Thread Bill Kenworthy
On Tue, 2012-10-30 at 06:40 +0100, Francesco Talamona wrote:
 On Tuesday 30 October 2012, Bill Kenworthy wrote:
  Any idea how I can get the mount command to recognise exfat?  It
  works as root but not via fstab for users.
  
  bunyip ~ # mount /dev/sdc1 /mnt/tmp
  mount: unknown filesystem type 'exfat'
  bunyip ~ # mount.exfat /dev/sdc1 /mnt/tmp
  FUSE exfat 0.9.8
  bunyip ~ #
  
  
  BillK
 
 http://forums.debian.net/viewtopic.php?f=30t=85873
 
 Never used exfat myself, but I think you should include exfat-fuse in 
 fstab
 
 HTH
   Francesco
 

Ah, I was using exfat!

Seems like all the newer high capacity usb thumb drives are exfat so it
will become more common I am sure.

BillK






[gentoo-user] Jekyll on Gentoo using containers

2023-08-29 Thread Peter Humphrey
Hello list,

I'm trying to set a container up to run jekyll to build a blog, following a
suggestion at the bottom of https://github.com/gentoo-ev/www.gentoo.de.
This is my first foray into containers.

So far I've installed lxc and followed https://wiki.gentoo.org/wiki/LXC as far
as I can, but I'm now a bit stuck. Well, just stuck, actually.

Jekyll is installed, and I want to create a blog in ~/common/myblog.

First, do I need to  mount a FUSE file system? Where?

Next, I run

$ sudo /etc/init.d/docker start

...and get this:

$ cat /var/log/docker.log | cut -d \  -f 2- [to omit date & time]
level=info msg="Starting up"
level=error msg="failed to mount overlay: no such device" 
storage-driver=overlay2
level=error msg="exec: \"fuse-overlayfs\": executable file not found in $PATH" 
storage-driver=fuse-overlayfs
level=error msg="Failed to built-in GetDriver graph btrfs /var/lib/docker"
level=info msg="Loading containers: start."
level=warning msg="Could not load necessary modules for IPSEC rules: protocol 
not supported"
level=info msg="Default bridge (docker0) is assigned with an IP address 
172.17.0.0/16. Daemon option --bip can be used to set a preferred IP address"
level=info msg="Loading containers: done."
level=warning msg="WARNING: No blkio throttle.read_bps_device support"
level=warning msg="WARNING: No blkio throttle.write_bps_device support"
level=warning msg="WARNING: No blkio throttle.read_iops_device support"
level=warning msg="WARNING: No blkio throttle.write_iops_device support"
level=info msg="Docker daemon" commit=4ffc61430bbe6d3d405bdf357b766bf303ff3cc5 
graphdriver=vfs version=24.0.5
level=info msg="Daemon has completed initialization"
level=info msg="API listen on /var/run/docker.sock"

I assume lines 2 & 3 refer to a FUSE file system.

What is line 4 telling me to do?

I assme line 6 refers to IPv6, which is not used here.

What else do I need to do? As with much else Gentoo, it's hard to reach a
point where pertinent questions suggest themselves.

-- 
Regards,
Peter.






Re: [gentoo-user] Do I require static nodes?

2013-11-30 Thread Samuli Suominen

On 27/11/13 12:22, Daniel Pielmeier wrote:
 2013/11/27 Chris Stankevitz chrisstankev...@gmail.com
 mailto:chrisstankev...@gmail.com

 Hello,

 Portage recently told me this:

  * You need to add kmod-static-nodes to the sysinit runlevel for
  * kernel modules to have required static nodes!
  * Run this command:
  * rc-update add kmod-static-nodes sysinit

 Will you please help me parse this statement?

 Interpretation A:
  * You need to add kmod-static-nodes to the sysinit runlevel

 Interpretation B:
  * If your kernel modules require static nodes, then you need to add
  * kmod-static-nodes to the sysinit runlevel

 Q1: Is it A or B (or C...)?

 Q2: If it's B, then how do I determine whether or not my kernel
 modules require static nodes?


 I also had trouble to interpret the message and because I was lazy I
 just added the kmod-static-nodes to the sysinit runlevel.

 After searching a bit I found that this was added due to bug #477856,
 but reading this as well as the release notes for kmod I am still not
 sure if this is needed in any case or just if there is a modular
 kernel etc.

 I am cc'ing one of the kmod maintainers maybe he can explain what is
 meant exactly.

 @Samuli: You have added the elog message to kmod-14-r1. Can you please
 give some more information about when kmod-static-nodes is required to
 be in the sysinit runlevel? Thanks in advance.


If you have, for example, fuse as a kernel module, then you need
kmod-static-nodes in sysinit to get /dev/fuse and such
Also, if you have ALSA drivers like snd_seq_... as modules, then you
need kmod-static-nodes in sysinit to get /dev/snd/seq to appear with
correct permissions

So leaving kmod-static-nodes out, on a system that has modules, can be
dangerous because it's very hard to know offhand whatkind of /dev
entries the
modules will create, those two I mentioned are just the 2 most common
cases, there are hundreds of cases more

Adding it to sysinit runlevel on a system with modules is recommended
(if not even mandatory)

And adding it to sysinit runlevel on a system with NO modules whatsoever
is also safe, then the init script will simply do nothing and you can
ignore anykind
of [!!] it might print on boot

So you can leave it out, if you use static kernel with NO modules
whatsover, if you REALLY want to supress one [!!] cosmetic error during
boot that takes like
no time whatsover to the boot time

So basically... just always add it... It's automatically added for new
installs already...



Re: [gentoo-user] Re: Python 3.11 USE flags being flipped on

2023-12-26 Thread stefan11111

On 2023-12-16 09:47, Martin Vaeth wrote:

stefan1@shitposting.expert  wrote:

I have done the migration to python 3.12.
The problem is that portage is pulling in python 3.11.


A python version jump in gentoo is always a horrible work:
Many ebuilds have not been updated and pull in unnecessarily
python 3.11. If you use any of these packages, you need a patched
version of them in your overlay.

The list is not complete, even less if you have USE=python in
some packages.

The most notable package is www-client/firefox which is the only
one which actually *needs* 
Finally got to adding patched ebuilds to my overlay.
Everything works so far.
This got me wondering though, is there no way to fix this globally
via make.conf instead of adding patched ebuilds to my overlay?
--
Linux-gentoo-x86_64-Intel-R-_Core-TM-_i5-7400_CPU_@_3.00GHz

COMMON_FLAGS="-O3 -pipe -march=native -ftree-vectorize -ffast-math 
-funswitch-loops -fuse-linker-plugin -flto -fdevirtualize-at-ltrans 
-fno-plt -fno-semantic-interposition -fno-common -falign-functions=32 
-fgraphite-identity -floop-nest-optimize"


USE="-* git verify-sig rsync-verify man alsa X grub ssl ipv6 lto 
libressl olde-gentoo asm native-symlinks threads jit jumbo-build minimal 
strip system-man"


INSTALL_MASK="/etc/systemd /lib/systemd /usr/lib/systemd 
/usr/lib/modules-load.d /usr/lib/tmpfiles.d *tmpfiles* /var/lib/dbus 
/lib/udev /usr/share/icons /usr/share/applications 
/usr/share/gtk-3.0/emoji /usr/lib64/palemoon/gtk2"




Re: [gentoo-user] [SOLVED] Re: Google Chrome going nuts with L10N ?

2024-01-10 Thread stefan11111

On 2024-01-10 13:50, Walter Dnes wrote:

Thank you.  In package.use I entered...

www-client/google-chrome L10N: -*

...and it did the trick.  Actually, Pale Moon is my "daily driver"
browser.  I use Chrome for Netflix and the occasional braindead
Chrome-reliant website.


There are other ways of viewing movies that don't involve supporting
companies that give you a worsening experience at an increasing price.

--
Linux-gentoo-x86_64-Intel-R-_Core-TM-_i5-7400_CPU_@_3.00GHz

COMMON_FLAGS="-O3 -pipe -march=native -ftree-vectorize -ffast-math 
-funswitch-loops -fuse-linker-plugin -flto -fdevirtualize-at-ltrans 
-fno-plt -fno-semantic-interposition -fno-common -falign-functions=32 
-fgraphite-identity -floop-nest-optimize"


USE="-* git verify-sig rsync-verify man alsa X grub ssl ipv6 lto 
libressl olde-gentoo asm native-symlinks threads jit jumbo-build minimal 
strip system-man"


INSTALL_MASK="/etc/systemd /lib/systemd /usr/lib/systemd 
/usr/lib/modules-load.d /usr/lib/tmpfiles.d *tmpfiles* /var/lib/dbus 
/lib/udev /usr/share/icons /usr/share/applications 
/usr/share/gtk-3.0/emoji /usr/lib64/palemoon/gtk2"




Re: [gentoo-user] udev + /usr

2011-09-13 Thread Joost Roeleveld
On Tuesday, September 13, 2011 04:49:25 PM Neil Bothwick wrote:
 On Tue, 13 Sep 2011 11:21:22 -0400, Walter Dnes wrote:
   This is why the whole /usr issue is irrelevant and not a fix at all.
   All it does is avoid the most common breakages caused by udev trying
   to run all its rules too early in the boot process. Putting /var on
   /
   would fix your example, but what if a rule required access to an
   NFS mount?
   
   Every time you fix one of these breakages, you are kludging around
   the
   real problem.
   
How many people really need to run *ARBITRARY* binaries that early
in
  
  the boot process?  The 1% who do shouldn't force the other 99% of us to
  go with initramfs or a Windows C:\ drive.
 
 There is no 1%. The problem is that udev is able to run arbitrary
 binaries, which has its advantages, but it also has to be started early
 in the boot process to fulfil its other duties. It is trying to combine
 these two functions that leads to the need for more than / to be
 available before filesystems are mounted.

And these 2 capabilities should be handled by different processes.
Process 1: Populate the /dev-tree
Process 2: Run scripts when necessary

Process 2 should NOT be started untill after the local filesystems are 
mounted.

I have not seen any realistic use-cases where process 2 should be started 
sooner. Any script/tool/program that is required to get to the stage where 
process 2 can run should be either in / or in an init*.
Eg. for the use-case where fuse, ntfs-3g, nfs, crypt-setup, are needed to 
mount the local filesystems, go build an init* and let the rest build more 
sane environments.

--
Joost



Re: [gentoo-user] emerge xfce-base/thunar: lobotomy needed

2012-09-11 Thread Chris Stankevitz
On Tue, Sep 11, 2012 at 8:12 AM, Chris Stankevitz
chrisstankev...@gmail.com wrote:
 Questions (3)-(5)

This should have said (2)-(4).

===

The problem is solved in the Ubuntu sense.  I suspect that I
encountered some kind of portage bug or oddity on the way.

I solved the problem by:
1. removed global USE flag -gnome
2. added global USE flag fuse
3. added global USE flag udisks
4. added global USE flag gdu
5. emerge -DNa world


Some/all of the above steps allowed me to successfully emerge -vat
thunar-volman

Now here is the weird part:

thunar-volman demands thunar with the udev USE flag.  Before steps
(1)-(5) above, during install of thunar-volman portage would take it
upon itself to add the udev USE flag to thunar.  And consequently pull
in an ~amd64 version of gvfs.

After steps (1)-(5) above, during install of thunar-volman, portage
would halt the process with the common complaint: please add udev USE
flag to thunar.  I added the USE flag and then portage happily
installed thunar-volman.

Weird!

===

I'm a little upset I solved this using the Ubuntu approach of try a
bunch of random crap until it works (in this case the random crap was
me turning on global USE flags without really knowing why).  I guessed
to turn on those USE flags due to the output of emerge -d which I
posted earlier.

Thanks for your help everyone,

Chris



Re: [Bulk] Re: [gentoo-user] Re: Anyone switched to eudev yet?

2012-12-27 Thread Mark David Dumlao
On Fri, Dec 28, 2012 at 2:40 AM, Michael Mol mike...@gmail.com wrote:
 or the fact that some udev programs tend to
 be located in /usr,


 That's either a bug with those programs, or a need for architectural
 improvements within udev. Both plausible answers.


The most obvious architectural improvement being: simply place udev
where all its dependencies are and all those bugs turn to nothing.
Which is what the udev guys did. And the part which seems to elude
everyone is: it isn't even a limitation of the program. It can still
be installed to /. Heck we could probably make a USE=root-prefix flag
for udev that installs it to / instead of /usr.



 or even just a solid detailed specification on the
 precise criteria for inclusion into /.


 For anyone arguing that / and /usr should be separate, the answer to this is
 that ought to be common sense.

 Since I'm not someone who knows all there is to know about the software and
 interactions thereof, the most I can say is:

 * / ought to contain all binaries, libraries and static data necessary for
 booting beyond the point where / is mounted, and any machine-specific
 binaries, libraries and static data.
 * /usr ought to contain all binaries, libraries and static data not
 necessary for its own mount.


I'm sure you mean well, as did most of the architects of the past, but
the reality is, this simplistic take on the problem misses out on some
fundamental issues. Yes, you mention later that the spec just doesn't
specify what happens in such and such case, and try to trivialize it
into saying people think that specs should be able to do their
thinking for them. But unfortunately, specifying what happens is
exactly what specs are for!

However...


 Even the FHS is mum on all the
 extra crap we randomly decide between / and /usr to land in.


 So fix it. FHS was a document written to say we have a standard that
 happened to map almost cleanly to all the implementations of the day. Kinda
 like how SQL mapped almost cleanly to the existing RDBMSs that existed
 when it was introduced. Such is how standards documents are born.


Don't forget that FHS is heavily an after-the-fact descriptive
document of what is happening in practice, with heavy rationale
sections describing what's going on in the wild. Before you can fix
FHS, you first have to fix the practice, then FHS can get amended to
reflect what's going on.

And the we have a standard part is effectively not true anymore, on
the matter of the / and /usr split. That is - what the specification
says should happen is not happening, on a massive scale, because it
turns out that it's not that trivial to determine which binaries go in
/ and which go in /usr. Now that doesn't translate to epic disasters
of biblical proportion, fire and brimstone, rivers and seas boiling,
dogs and cats living together, mass hysteria - because it's just a
collection of hard to pin down essential boot programs - but it does
translate to an unsustainable practice in distro development / package
management.

http://www.pathname.com/fhs/pub/fhs-2.3.html#THEROOTFILESYSTEM


Purpose:
The contents of the root filesystem must be adequate to boot, restore,
recover, and/or repair the system.

To boot a system, enough must be present on the root partition to
mount other filesystems. This includes utilities, configuration, boot
loader information, and other essential start-up data. /usr, /opt, and
/var are designed such that they may be located on other partitions or
filesystems.

To enable recovery and/or repair of a system, those utilities needed
by an experienced maintainer to diagnose and reconstruct a damaged
system must be present on the root filesystem.

To restore a system, those utilities needed to restore from system
backups (on floppy, tape, etc.) must be present on the root
filesystem.


* some teasers:
[1] udev rules themselves being a case in point. I mean, do the
requisite binaries belong in /? For example, there's a virtualbox udev
rule in /usr that doesn't mount other filesystems or stop udev from
starting. However, given the right race conditions, udev will fail to
start the requisite script because /usr isn't mounted.
[2] fuse-based filesystems allow an administrator the crazy
possibility of, for example, demanding that /home be an ssh
connection. Should the ssh client belong in /? ftp? substitute any
arbitrary client program.
[3] a fuse-based filesystem depends on a local network service being
started. For example, someone writes a crazy fuse mysql browser that
also is coincidentally mounted at boot time. Should the mysqld service
belong in /? ldap? substitute any arbitrary server program.
[4] /root (which is why it's separated from /home) contains docs and
custom utilities used by root user for recovery. Unfortunately,
there's a lot of perl scripts there specifically for doing filesystem
checks / reports. Should perl be in in /? substitute any scripting
language.

The point is not whether _you_ can come up with an answer

Re: [gentoo-user] Re: Python 3.11 USE flags being flipped on

2023-12-28 Thread stefan11111

On 2023-12-28 15:21, Martin Vaeth wrote:

stefan1  wrote:

This got me wondering though, is there no way to fix this globally
via make.conf instead of adding patched ebuilds to my overlay?


No. Until https://bugs.gentoo.org/209653 is fixed (which did not
happen since 16 years and presumably never will), there is no
other way to fix dependencies than to copy the ebuild to some
overlay.

Interesting read.
Would be nice is there was a way to set PYTHON_COMPAT through 
envvars/make.conf vars like MYMESONARGS.
This seems like such an easy fix too. Just set PYTHON_COMPAT to include 
python 3.12 and be done with it.
Another thing would be if adding dev-lang/python-3.11.7 to 
package.provided only made portage pretend that

dev-lang/python-3.11.7 is installed, and not every version of python3.
Or if we had an easy way to patch ebuilds like we have 
/etc/portage/patches...
I can't even make a dummy ebuild for python 3.11, since those ebuilds 
won't use python 3.12 even
if it is installed if it isn't part of PYTHON_COMPAT(which is a 
reasonable choice).


Anyway, at least I don't have many ebuilds to patch to support python 
3.12.

--
Linux-gentoo-x86_64-Intel-R-_Core-TM-_i5-7400_CPU_@_3.00GHz

COMMON_FLAGS="-O3 -pipe -march=native -ftree-vectorize -ffast-math 
-funswitch-loops -fuse-linker-plugin -flto -fdevirtualize-at-ltrans 
-fno-plt -fno-semantic-interposition -fno-common -falign-functions=32 
-fgraphite-identity -floop-nest-optimize"


USE="-* git verify-sig rsync-verify man alsa X grub ssl ipv6 lto 
libressl olde-gentoo asm native-symlinks threads jit jumbo-build minimal 
strip system-man"


INSTALL_MASK="/etc/systemd /lib/systemd /usr/lib/systemd 
/usr/lib/modules-load.d /usr/lib/tmpfiles.d *tmpfiles* /var/lib/dbus 
/lib/udev /usr/share/icons /usr/share/applications 
/usr/share/gtk-3.0/emoji /usr/lib64/palemoon/gtk2"




Re: [gentoo-user] Re: Python 3.11 USE flags being flipped on

2023-12-29 Thread stefan11111

On 2023-12-29 01:07, Michael Orlitzky wrote:

On 2023-12-28 23:00:36, stefan1 wrote:

Should I at least file bugs about those packages?
Surely there is no reason to artificially limit the python version in
::gentoo?


Yes, especially if the package has a test suite that passes under
python-3.12. Most python packages are community-maintained and it
feels a lot safer bumping a package you aren't familiar with if it has
a passing test suite. But even an "it works" report is helpful.


Ran the tests and filed a bug here:
https://bugs.gentoo.org/920933
Has the bug filing form changed?
I don't remember seeing that template when filing bugs.

I skipped dev-libs/glib because it requires dbus and fails with a linker 
error when building it.


I tried adding -Wl,--unresolved-symbols=ignore-all and
-Wl,--warn-unresolved-symbols to my LDFLAGS,
both of which somehow made the compilation fail earlier.

Without those options, the compilation would fail with a linker error.
With those options the compilation failed much earlier with a compiler 
error.

Can anyone explain why that happened?
--
Linux-gentoo-x86_64-Intel-R-_Core-TM-_i5-7400_CPU_@_3.00GHz

COMMON_FLAGS="-O3 -pipe -march=native -ftree-vectorize -ffast-math 
-funswitch-loops -fuse-linker-plugin -flto -fdevirtualize-at-ltrans 
-fno-plt -fno-semantic-interposition -fno-common -falign-functions=32 
-fgraphite-identity -floop-nest-optimize"


USE="-* git verify-sig rsync-verify man alsa X grub ssl ipv6 lto 
libressl olde-gentoo asm native-symlinks threads jit jumbo-build minimal 
strip system-man"


INSTALL_MASK="/etc/systemd /lib/systemd /usr/lib/systemd 
/usr/lib/modules-load.d /usr/lib/tmpfiles.d *tmpfiles* /var/lib/dbus 
/lib/udev /usr/share/icons /usr/share/applications 
/usr/share/gtk-3.0/emoji /usr/lib64/palemoon/gtk2"




Re: [gentoo-user] Wine problems

2024-01-23 Thread stefan11111

Finally got it to work.
I added the working xorg.conf for nvidia prime as an attachment.
Maybe it will help someone else too.
Please tell me if you see anything in it that shouldn't be there.
Thanks to all who helped me with this.

--
Linux-gentoo-x86_64-Intel-R-_Core-TM-_i5-7400_CPU_@_3.00GHz

COMMON_FLAGS="-O3 -pipe -march=native -ftree-vectorize -ffast-math 
-funswitch-loops -fuse-linker-plugin -flto -fdevirtualize-at-ltrans 
-fno-plt -fno-semantic-interposition -fno-common -falign-functions=32 
-fgraphite-identity -floop-nest-optimize"


USE="-* git verify-sig rsync-verify man alsa X grub ssl ipv6 lto 
libressl olde-gentoo asm native-symlinks threads jit jumbo-build minimal 
strip system-man"


INSTALL_MASK="/etc/systemd /lib/systemd /usr/lib/systemd 
/usr/lib/modules-load.d /usr/lib/tmpfiles.d *tmpfiles* /var/lib/dbus 
/lib/udev /usr/share/icons /usr/share/applications 
/usr/share/gtk-3.0/emoji"# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 525.147.05

Section "ServerLayout"
Identifier "Layout0"
Screen  0  "Screen0"
Screen  0  "Screen1"
InputDevice"Keyboard0" "CoreKeyboard"
InputDevice"Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName  "Unknown"
Option "DPMS"
EndSection

Section "Device"
Identifier "Device0"
Driver "modesetting"
VendorName "NVIDIA Corporation"
ChipId  0x0
ChipRev 0x0
IRQ 0
EndSection

Section "Device"
Identifier "Device1"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BusID  "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor"Monitor0"
DefaultDepth24
SubSection "Display"
Depth   24
EndSubSection
Option "metamodes" "1920x1080 +0+0 {ForceCompositionPipeline=On}"
EndSection

Section "Screen"
Identifier "Screen1"
Device "Device1"
Monitor"Monitor0"
DefaultDepth24
SubSection "Display"
Depth   24
EndSubSection
Option "metamodes" "1920x1080 +0+0 {ForceCompositionPipeline=On}"
EndSection


Re: [gentoo-user] Re: udev-197 moves from /usr/lib to /lib

2013-01-11 Thread Stefan G. Weichinger
Am 11.01.2013 16:14, schrieb Nikos Chantziaras:

 Running this command (all in one line):
 
 emerge -p1 $(for p in $(qfile -Cvq $(find /usr/lib/udev/) | sort -u); do
 echo =$p; done)
 
 should re-emerge all packages that still have files there.  After that,
 /usr/lib/udev should no longer exist.  If it still does, then there are
 files in it that don't belong to any package.  Check them manually and
 delete them as needed or move them over.  Then delete /usr/lib/udev.

phew, that lists quite a list of packages here:

[ebuild   R] sys-fs/fuse-2.9.2
[ebuild   R] media-gfx/sane-backends-1.0.23
[ebuild   R] sys-apps/hwids-20130108
[ebuild   R] media-sound/alsa-utils-1.0.26-r1
[ebuild   R] media-libs/libmtp-1.1.5
[ebuild   R] media-libs/libgphoto2-2.5.0
[ebuild   R] sys-fs/ntfs3g-2012.1.15-r2
[ebuild   R] sys-libs/libosinfo-0.2.2
[ebuild   R] net-wireless/crda-1.1.2-r4
[ebuild   R] sys-fs/mdadm-3.2.6
[ebuild   R] x11-drivers/nvidia-drivers-310.19
[ebuild   R] sys-auth/consolekit-0.4.5_p20120320-r1
[ebuild   R] x11-misc/colord-0.1.26-r1
[ebuild   R] sys-power/upower-0.9.19
[ebuild   R] sys-fs/udisks-1.0.4-r4
[ebuild   R] app-admin/system-config-printer-common-1.3.12
[ebuild   R] sys-fs/udisks-2.0.91
[ebuild   R] net-print/hplip-3.12.11
[ebuild   R] net-wireless/bluez-4.101-r5
[ebuild   R] net-misc/networkmanager-0.9.6.4
[ebuild   R] sys-fs/udev-init-scripts-19
[ebuild   R] net-wireless/gnome-bluetooth-3.6.1
[ebuild   R] media-sound/pulseaudio-3.0  USE=(-neon)
[ebuild   R] app-emulation/qemu-1.2.1  USE=(-selinux)
[ebuild   R] app-emulation/vmware-modules-271.1-r1

Stefan



Re: [Bulk] Re: [gentoo-user] Re: Anyone switched to eudev yet?

2012-12-27 Thread Mark David Dumlao
On Fri, Dec 28, 2012 at 4:59 AM, Michael Mol mike...@gmail.com wrote:
 On Thu, Dec 27, 2012 at 3:16 PM, Mark David Dumlao madum...@gmail.com wrote:
 On Fri, Dec 28, 2012 at 2:40 AM, Michael Mol mike...@gmail.com wrote:
 or the fact that some udev programs tend to
 be located in /usr,


 That's either a bug with those programs, or a need for architectural
 improvements within udev. Both plausible answers.


 The most obvious architectural improvement being: simply place udev
 where all its dependencies are and all those bugs turn to nothing.
 Which is what the udev guys did. And the part which seems to elude
 everyone is: it isn't even a limitation of the program. It can still
 be installed to /. Heck we could probably make a USE=root-prefix flag
 for udev that installs it to / instead of /usr.

 This came up today on Reddit. I think it's _highly_ relevant.

 http://www.runswift.ly/solving-bugs.html

 Moving into a full dependency on initr* for separate /usr is a 'fix',
 not a solution.


This is where you stumble. It's not a fix. It's a WONTFIX. It's a
make a lot of noise so that something else gets fixed because this is
outside of our domain and we're not going to be responsible for it as
it wasnt our bug in the first place. And that something else happens
to be the / and /usr split conflicting with the user programs.

If you give the squeaky wheel the grease - as in merge / and /usr -
you apply the fix independently of udev, which was simply installed to
the /usr prefix. THAT is a solution - one independent of udev and
again, does not depend on initr*. You don't have to.




 or even just a solid detailed specification on the
 precise criteria for inclusion into /.


 For anyone arguing that / and /usr should be separate, the answer to this is
 that ought to be common sense.

 Since I'm not someone who knows all there is to know about the software and
 interactions thereof, the most I can say is:

 * / ought to contain all binaries, libraries and static data necessary for
 booting beyond the point where / is mounted, and any machine-specific
 binaries, libraries and static data.
 * /usr ought to contain all binaries, libraries and static data not
 necessary for its own mount.


 I'm sure you mean well, as did most of the architects of the past, but
 the reality is, this simplistic take on the problem misses out on some
 fundamental issues. Yes, you mention later that the spec just doesn't
 specify what happens in such and such case, and try to trivialize it
 into saying people think that specs should be able to do their
 thinking for them. But unfortunately, specifying what happens is
 exactly what specs are for!

 Does the term overspecification mean anything to you? Specs cannot
 and should not specify every possible conceivable related thing.

Two things.

First, I'm not saying that a spec should specify everything. I am
saying, however, that there are specific cases that is within its
domain to specify and that it should be specifying. And because those
cases generate conflicts, the fact that they aren't is a bug.

Second, going back to problem solving in general - just because you
can put down in words what you think the problem is, doesn't mean
you've mapped out an accurate or even consistent statement of the
problem. There really are cases where it's not enough to just give
general airy abstractions and rules of thumb to map out a problem,
where it isn't obvious that you're running into edge cases until you
really look at it deeply, and yes, the / and /usr split is one of
them.

 And the we have a standard part is effectively not true anymore, on
 the matter of the / and /usr split. That is - what the specification
 says should happen is not happening, on a massive scale, because it
 turns out that it's not that trivial to determine which binaries go in
 / and which go in /usr.

 Give me an example, and I'll describe a reasonably detailed solution.
 It would be my pleasure.

The most fundamental and relevant one for us Gentoo users is this:
- how can /usr be sharable among different hosts if it depends on
libraries in /?


http://www.pathname.com/fhs/pub/fhs-2.3.html#THEUSRHIERARCHY

Purpose

/usr is the second major section of the filesystem. /usr is shareable,
read-only data. That means that /usr should be shareable between
various FHS-compliant hosts and must not be written to. Any
information that is host-specific or varies with time is stored
elsewhere.


Many distros place fundamental libraries that many programs in /usr
depend on in /lib. Especially bad for Gentoo - libraries in /lib may
be recompiled as same-version variants if you want to change the USE
flags, resulting in clients that don't synchronously recompile their
own libraries in /lib to both silently and noisily fail.

In other words, many programs in /usr in practice are functionally
inseparable from the libraries in /, conflicting with the notion that
they were properly shared in the first place.

Compare

Re: [Bulk] Re: [gentoo-user] Re: Anyone switched to eudev yet?

2012-12-27 Thread Michael Mol
On Thu, Dec 27, 2012 at 3:16 PM, Mark David Dumlao madum...@gmail.com wrote:
 On Fri, Dec 28, 2012 at 2:40 AM, Michael Mol mike...@gmail.com wrote:
 or the fact that some udev programs tend to
 be located in /usr,


 That's either a bug with those programs, or a need for architectural
 improvements within udev. Both plausible answers.


 The most obvious architectural improvement being: simply place udev
 where all its dependencies are and all those bugs turn to nothing.
 Which is what the udev guys did. And the part which seems to elude
 everyone is: it isn't even a limitation of the program. It can still
 be installed to /. Heck we could probably make a USE=root-prefix flag
 for udev that installs it to / instead of /usr.

This came up today on Reddit. I think it's _highly_ relevant.

http://www.runswift.ly/solving-bugs.html

Moving into a full dependency on initr* for separate /usr is a 'fix',
not a solution.




 or even just a solid detailed specification on the
 precise criteria for inclusion into /.


 For anyone arguing that / and /usr should be separate, the answer to this is
 that ought to be common sense.

 Since I'm not someone who knows all there is to know about the software and
 interactions thereof, the most I can say is:

 * / ought to contain all binaries, libraries and static data necessary for
 booting beyond the point where / is mounted, and any machine-specific
 binaries, libraries and static data.
 * /usr ought to contain all binaries, libraries and static data not
 necessary for its own mount.


 I'm sure you mean well, as did most of the architects of the past, but
 the reality is, this simplistic take on the problem misses out on some
 fundamental issues. Yes, you mention later that the spec just doesn't
 specify what happens in such and such case, and try to trivialize it
 into saying people think that specs should be able to do their
 thinking for them. But unfortunately, specifying what happens is
 exactly what specs are for!

Does the term overspecification mean anything to you? Specs cannot
and should not specify every possible conceivable related thing.


 However...


 Even the FHS is mum on all the
 extra crap we randomly decide between / and /usr to land in.


 So fix it. FHS was a document written to say we have a standard that
 happened to map almost cleanly to all the implementations of the day. Kinda
 like how SQL mapped almost cleanly to the existing RDBMSs that existed
 when it was introduced. Such is how standards documents are born.


 Don't forget that FHS is heavily an after-the-fact descriptive
 document of what is happening in practice, with heavy rationale
 sections describing what's going on in the wild. Before you can fix
 FHS, you first have to fix the practice, then FHS can get amended to
 reflect what's going on.

 And the we have a standard part is effectively not true anymore, on
 the matter of the / and /usr split. That is - what the specification
 says should happen is not happening, on a massive scale, because it
 turns out that it's not that trivial to determine which binaries go in
 / and which go in /usr.

Give me an example, and I'll describe a reasonably detailed solution.
It would be my pleasure.

 Now that doesn't translate to epic disasters
 of biblical proportion, fire and brimstone, rivers and seas boiling,
 dogs and cats living together, mass hysteria - because it's just a
 collection of hard to pin down essential boot programs - but it does
 translate to an unsustainable practice in distro development / package
 management.

 http://www.pathname.com/fhs/pub/fhs-2.3.html#THEROOTFILESYSTEM

 
 Purpose:
 The contents of the root filesystem must be adequate to boot, restore,
 recover, and/or repair the system.

 To boot a system, enough must be present on the root partition to
 mount other filesystems. This includes utilities, configuration, boot
 loader information, and other essential start-up data. /usr, /opt, and
 /var are designed such that they may be located on other partitions or
 filesystems.

 To enable recovery and/or repair of a system, those utilities needed
 by an experienced maintainer to diagnose and reconstruct a damaged
 system must be present on the root filesystem.

 To restore a system, those utilities needed to restore from system
 backups (on floppy, tape, etc.) must be present on the root
 filesystem.
 

 * some teasers:
 [1] udev rules themselves being a case in point. I mean, do the
 requisite binaries belong in /?

Udev is a dispatcher. Actually, in substance, it's a piece of the
kernel that resides in userland; it exists because it was decided back
around the time of devfs that what devfs was doing is something that
ought to be outside the kernel. In reality, it's effectively been a
userland kernel-support process its entire life.

What should probably happen is that udev should be fixed to defer
hotplug events until a rules file is able to sucessfully handle it.
And rules files should perform sanity checking

Re: [gentoo-user] Re: [Very OT] - Kill-A-Watt (240V Version) to measure my Gentoo Server Power Usage

2006-08-11 Thread Hamish Marson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dale wrote:
 Mike Williams wrote:
 On Thursday 03 August 2006 19:27, James wrote:

 The simplist solution is NOBODY puts a 240 VAC power supply
 into a computer unless it's going to draw some serious current
 (amps) thus by the nature of it being 240 VAC, you already know
  it is a power hog.

 Now, I'm not electrical engineer, but I know my way around a fuse
 board and electricity having fitted out both our new offices for
 power, network, and some walls.

 In the UK, and most (if not all) of Europe, Africa, and Asia too,
 run on about 240 volts, 230 +-10% I think now. Pretty much the
 whole world, except the Americas.



 Well, the USA has the same coming in too.  We have 220v to 240v
 coming in but that is split into different legs for the 110v to
 120v stuff.


Unless those two legs are in phase, you're still only getting
110V-120V AC. IIRC (And it's from 20 years ago I'm working here) it's
not, it's just two legs of the 3 phase generated power. Which means
they're 120 deg out of phase, and so you still only get 110-120V. In
order to get 220-240V, you'd need 3 phase power.

I suspect you get two 110V lines because of current limitations. Not
to provide you with 220V which you'r enot going to get from just
adding two out of phase lines. (Unless of course the US has wired up
two in-phase separate 110V lines. In which case you can get 220V outof
it, but I seem to remember a lecture in Eng Sci saying it was common
to take 2 of 3 phases to a house in the US  alternate which 2 between
successive houses.

 If you are using transformers to reduce it from 220v to 110v, that
 will waste some energy right there.  Transformers are not real
 efficient.  If you touch it and it is warm, that is what you are
 wasting.  That will also make whatever you are cooling with work
 harder too.


Plus you need twice the current at 110V vs 220V. (Volts are big 'V'
BTW! Named after Voltaire). This means higher line losses as loss is
proportional to current. Higher line losses mean that cable length
becomes more of a problem. (A 10V drop in 240V is less than 5%. 10V
drop in 120V is almost 10%. Much more significant).

All-in-all I prefer 240V single phase.

H
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFE3Ew5/3QXwQQkZYwRAlYaAJsGe3RCLAgWO6knje/rWXwD6S0irQCfcgsO
bkdH6utTMuvNYMUJ+5mEJmc=
=/bVW
-END PGP SIGNATURE-

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: [Very OT] - Kill-A-Watt (240V Version) to measure my Gentoo Server Power Usage

2006-08-11 Thread Herman Grootaers
On Friday 11 August 2006 11:22, Hamish Marson wrote:
 Dale wrote:
  Mike Williams wrote:
  On Thursday 03 August 2006 19:27, James wrote:
  The simplist solution is NOBODY puts a 240 VAC power supply
  into a computer unless it's going to draw some serious current
  (amps) thus by the nature of it being 240 VAC, you already know
   it is a power hog.
 
  Now, I'm not electrical engineer, but I know my way around a fuse
  board and electricity having fitted out both our new offices for
  power, network, and some walls.
 
  In the UK, and most (if not all) of Europe, Africa, and Asia too,
  run on about 240 volts, 230 +-10% I think now. Pretty much the
  whole world, except the Americas.
 
  Well, the USA has the same coming in too.  We have 220v to 240v
  coming in but that is split into different legs for the 110v to
  120v stuff.

 Unless those two legs are in phase, you're still only getting
 110V-120V AC. IIRC (And it's from 20 years ago I'm working here) it's
 not, it's just two legs of the 3 phase generated power. Which means
 they're 120 deg out of phase, and so you still only get 110-120V. In
 order to get 220-240V, you'd need 3 phase power.

Safer to use a transformer 110V-220V which will lessen the danger of 
playing with two or three live wires, a misconnection can cause an 
outage with all sorts of problems generated, died disks and other 
apparatus.

 I suspect you get two 110V lines because of current limitations. Not
 to provide you with 220V which you'r enot going to get from just
 adding two out of phase lines. (Unless of course the US has wired up
 two in-phase separate 110V lines. In which case you can get 220V
 outof it, but I seem to remember a lecture in Eng Sci saying it was
 common to take 2 of 3 phases to a house in the US  alternate which 2
 between successive houses.

  If you are using transformers to reduce it from 220v to 110v, that
  will waste some energy right there.  Transformers are not real
  efficient.  If you touch it and it is warm, that is what you are
  wasting.  That will also make whatever you are cooling with work
  harder too.

 Plus you need twice the current at 110V vs 220V. (Volts are big 'V'
 BTW! Named after Voltaire). 

Sorry, the french writer Voltaire was not dabbling in science. It was 
Alessandro Guiseppe Antonio Volta who detected the reaction of 
different metals on the muscles of a hindlegs of a frog and build the 
first electric battery from that detection.

 This means higher line losses as loss is proportional to current.
 Higher line losses mean that cable length becomes more of a problem.
 (A 10V drop in 240V is less than 5%. 10V drop in 120V is almost 10%.
 Much more significant).   

 All-in-all I prefer 240V single phase.


So do I, although in itself that voltage is deadly
-- 
Herman Grootaers
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Safeguarding strategies against SSD data loss

2014-10-27 Thread Rich Freeman
On Mon, Oct 27, 2014 at 12:52 PM, Pandu Poluan pa...@poluan.info wrote:

 ZoL (ZFS on Linux) nowadays is implemented using DKMS instead of FUSE, thus
 running in kernelspace, and (relatively) easier to put into an initramfs.

Sorry about that.  I should have known that, but for some reason I got
that memory crossed in my brain...  :)

 vdevs can grow, but they can't (yet) shrink.

Can you point to any docs on that, including any limitations/etc?  The
inability to expand raid-z the way you can do so with mdadm was one of
the big things that has been keeping me away from zfs.  I understand
that it isn't so important when you're dealing with large numbers of
disks (backblaze's storage pods come to mind), but when you have only
a few disks being able to manipulate them one at a time is very
useful.  Growing is the more likely use case than shrinking.  Then
again, at some point if you want to replace smaller drives with larger
ones you might want a way to remove drives from a vdev.

The one thing that btrfs does that is helpful here is that it works
with data in chunks and not at the whole drive level.  That is,
block 1 on drive A is not hard-mapped to block 1 on drive B in the way
that it is with a traditional RAID.  That makes it easy to have a
non-redundant set of disks and then switch it to raid1 mode while
leaving the existing data unmirrored - new chunks get mirrored, and
old ones don't, and you can run a command telling the system to copy
all the old data into new mirrored chunks.

 And putting ZFS on SSDs... not recommended. Rather, ZFS can employ
 SSDs to act as a 'write cache' for the spinning HDDs.

It can operate as a read-cache as well, right?  I believe you'd need
separate drives/partitions for that.


 In my personal opinion, the 'killer' feature of ZFS is that it's built from
 the ground up to provide maximum data integrity.

That and the snapshots are actually common to both btrfs and ZFS.  The
main advantages of ZFS over btrfs is that the codebase is much more
stable (though ZoL is a newer port of it), and that it has more
enterprise-oriented features like ZIL/RAID-Z already implemented.
Btrfs has license advantages as far as linux is concerned (it can
actually go in the main kernel without a rewrite), and it is a bit
more flexible in design and is intended as a general-purpose
filesystem.

Both are definitely the future of file storage compared to ext4, but
they both have a lot of caveats today.

What I would love to see though is something more optimized for flash
like f2fs, but with the feature-completeness and integrity/snapshot
capabilities of btrfs/zfs.  A log-based filesystem is COW by its
nature, so you just need to add that stuff in.

--
Rich



Re: [gentoo-user] Re: Python 3.11 USE flags being flipped on

2023-12-28 Thread stefan11111

On 2023-12-28 20:23, Martin Vaeth wrote:

stefan1  wrote:

On 2023-12-28 15:21, Martin Vaeth wrote:

stefan1  wrote:

This got me wondering though, is there no way to fix this globally
via make.conf instead of adding patched ebuilds to my overlay?


No. Until https://bugs.gentoo.org/209653 is fixed (which did not
happen since 16 years and presumably never will), there is no
other way to fix dependencies than to copy the ebuild to some
overlay.

Interesting read.
Would be nice is there was a way to set PYTHON_COMPAT through
envvars/make.conf vars like MYMESONARGS.


This is not possible, the reason being implicitly explained
in the above bug:
PYTHON_COMPAT is used to calculate the dependencies from the
ebuild which are package metadata.

And this metadata must have been already calculated when
portage is started: if the ebuild would have to be interpreted
whenever the metadata is needed, portage would be unbearable
slow. Bot to speak about difficulties with things like tbz2
files which in general only contain the metadata and not
necessarily the ebuild anymore.

This is the reason why the emerge --regen and emerge -u ...
phases are practically disjoint (and why emerge --metadata
takes ages, in general, unless you use a repository with
already generated metadata).


This seems like such an easy fix too. Just set PYTHON_COMPAT
to include  python 3.12 and be done with it.


What you can do is the modify the corresponding eclass(es)
to auto-add python 3.12 to PYTHON_COMPAT.
After that change to take effect on the metadata, you have
to call emerge --regen for the main gentoo repository.
Note however, that - roughly speaking - this way you have
made your own "overlay" of the gentoo repository, and you
have to think of a way how to sync/merge your modification
with the gentoo repository regularly. At the very least,
you have to call the processor- and time-consuming
emerge --regen after every syncing.

Keeping some dozens packages in a "regular" overlay is
much simpler than practically maintaining all packages
in a local overlay...


Another thing would be if adding dev-lang/python-3.11.7 to
package.provided only made portage pretend that
dev-lang/python-3.11.7 is installed, and not every version
of python3.


For portage, this trick would almost work, but portage would
resolve dependencies falsely and e.g. not recompile
packages which should be recompiled to work with
python:3.12.
Also, USE-dependencies with python versions
(e.g. python_targets_python3_11) could not be
resolved as you cannot package.provide USE-flags.

Moreover, even if the dependency problem could be solved,
the ebuilds would fail nevertheless if e.g. python-3.12 is
not in PYTHON_COPMPAT when it should be for several reasons:

1. The eclass would check whether the python:3.11 version is
present and use that for compilation.
2. The result would be put into the directory for the
python:3.11 version where python-3.12 does not find it.


Or if we had an easy way to patch ebuilds like we have
/etc/portage/patches...


/etc/portage/patches can patch practically everything
in ebuilds *except metadata*. That's exactly what
bug 209653 is about.

I see.
Should I at least file bugs about those packages?
Surely there is no reason to artificially limit the python version in 
::gentoo?

--
Linux-gentoo-x86_64-Intel-R-_Core-TM-_i5-7400_CPU_@_3.00GHz

COMMON_FLAGS="-O3 -pipe -march=native -ftree-vectorize -ffast-math 
-funswitch-loops -fuse-linker-plugin -flto -fdevirtualize-at-ltrans 
-fno-plt -fno-semantic-interposition -fno-common -falign-functions=32 
-fgraphite-identity -floop-nest-optimize"


USE="-* git verify-sig rsync-verify man alsa X grub ssl ipv6 lto 
libressl olde-gentoo asm native-symlinks threads jit jumbo-build minimal 
strip system-man"


INSTALL_MASK="/etc/systemd /lib/systemd /usr/lib/systemd 
/usr/lib/modules-load.d /usr/lib/tmpfiles.d *tmpfiles* /var/lib/dbus 
/lib/udev /usr/share/icons /usr/share/applications 
/usr/share/gtk-3.0/emoji /usr/lib64/palemoon/gtk2"




Re: [gentoo-user] Re: [Very OT] - Kill-A-Watt (240V Version) to measure my Gentoo Server Power Usage

2006-08-11 Thread Dale
Hamish Marson wrote:
 Dale wrote:
  Mike Williams wrote:
  On Thursday 03 August 2006 19:27, James wrote:
 
  The simplist solution is NOBODY puts a 240 VAC power supply
  into a computer unless it's going to draw some serious current
  (amps) thus by the nature of it being 240 VAC, you already know
   it is a power hog.
 
  Now, I'm not electrical engineer, but I know my way around a fuse
  board and electricity having fitted out both our new offices for
  power, network, and some walls.
 
  In the UK, and most (if not all) of Europe, Africa, and Asia too,
  run on about 240 volts, 230 +-10% I think now. Pretty much the
  whole world, except the Americas.
 
 
  Well, the USA has the same coming in too.  We have 220v to 240v
  coming in but that is split into different legs for the 110v to
  120v stuff.
 

 Unless those two legs are in phase, you're still only getting
 110V-120V AC. IIRC (And it's from 20 years ago I'm working here) it's
 not, it's just two legs of the 3 phase generated power. Which means
 they're 120 deg out of phase, and so you still only get 110-120V. In
 order to get 220-240V, you'd need 3 phase power.

 I suspect you get two 110V lines because of current limitations. Not
 to provide you with 220V which you'r enot going to get from just
 adding two out of phase lines. (Unless of course the US has wired up
 two in-phase separate 110V lines. In which case you can get 220V outof
 it, but I seem to remember a lecture in Eng Sci saying it was common
 to take 2 of 3 phases to a house in the US  alternate which 2 between
 successive houses.

The two lines are out of phase.  Here, big things like air conditioners,
stoves, dryers and central heat run off the 220 or 240v wires.  Small
things like lights, hair dryers, fans and even small window air
conditioners run off the 110 or 120v lines.  In most places here, 3
phase is not available unless you are in a area that has large factories
or are in a city.  Here the black and white wires are 120v, the red and
black wires are 220 or 240v.  Also note, you can tell the power company
which one you want when you get them to put up your pole.  We had 220v
for years.  When the transformer went out I asked for 240V.  With a
light load we actually get about 248v or so.  When something like the
A/C turns on it will drop to about 240v or so.  It stays pretty stable
after that though.  Keep in mind that light bulbs blow faster at the
higher voltage.  At the same time A/C compressors run a lot more efficient.

  If you are using transformers to reduce it from 220v to 110v, that
  will waste some energy right there.  Transformers are not real
  efficient.  If you touch it and it is warm, that is what you are
  wasting.  That will also make whatever you are cooling with work
  harder too.
 

 Plus you need twice the current at 110V vs 220V. (Volts are big 'V'
 BTW! Named after Voltaire). This means higher line losses as loss is
 proportional to current. Higher line losses mean that cable length
 becomes more of a problem. (A 10V drop in 240V is less than 5%. 10V
 drop in 120V is almost 10%. Much more significant).

 All-in-all I prefer 240V single phase.

 H

As far as being efficient with power usage, me two.  I have a friend
that uses some heavy equipment and some of them are 480v.  They put out
a lot more horsepower but they run very cool because the current draw is
so small. 

We here would likely be better off if we did use 220v like other
countries but it would take us years to convert things over. 

Dale
:-) 
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Rasp-Pi-4 Gentoo servers

2020-03-01 Thread Rich Freeman
On Sun, Mar 1, 2020 at 8:52 PM William Kenworthy  wrote:
>
> For those wanting to run a lot of drives on a single host - that defeats
> the main advantage of using a chunkserver based filesystem -
> redundancy.  Its far more common to have a host fail than a disk drive.
> Losing the major part of your storage in one go means the cluster is
> effectively dead - hence having a lot of completely separate systems is
> much more reliable

Of course.  You should have multiple hosts before you start putting
multiple drives on a single host.

However, once you have a few hosts the performance improves by adding
more, but you're not really getting THAT much additional redundancy.
You would get faster rebuild times by having more hosts since there
would be less data to transfer when one fails and more hosts doing the
work.

So, it is about finding a balance.  You probably don't want 30 drives
on 2 hosts.  However, you probably also don't need 15-30 hosts for
that many drives either.  I wouldn't be putting 16 drives onto a
single host until I had a fair number of hosts.

As far as the status of lizardfs goes - as far as I can tell it is
mostly developed by a company and they've wavered a bit on support in
the last year.  I share your observation that they seem to be picking
up again.  In any case, I'm running the latest stable and it works
just fine, but it lacks the high availability features.  I can have
shadow masters, but they won't automatically fail over, so maintenance
on the master is still a pain.  Recovery due to failure of the master
should be pretty quick though even if manual - just have to run a
command on each shadow to determine which has the most recent
metadata, then adjust DNS for my master CNAME to point to the new
master, and then edit config on the new master to tell it that it is
the master and no longer a shadow, and after restarting the daemon the
cluster should be online again.

The latest release candidate has the high availability features (used
to be paid, is now free), however it is still a release candidate and
I'm not in that much of a rush.  There was a lot of griping on the
forums/etc by users who switched to the release candidate and ran into
bugs that ate their data.  IMO that is why you don't go running
release candidates for distributed filesystems with a dozen hard
drives on them - if you want to try them out just run them in VMs with
a few GB of storage to play with and who cares if your test data is
destroyed.  It is usually wise to be conservative with your
filesystems.  Makes no difference to me if they take another year to
do the next release - I'd like the HA features but it isn't like the
old code goes stale.

Actually, the one thing that it would be nice if they fixed is the
FUSE client - it seems to leak RAM.

Oh, and the docs seem to hint at a windows client somewhere which
would be really nice to have, but I can't find any trace of it.  I
only normally run a single client but it would obviously perform well
as a general-purpose fileserver.

There has been talk of a substantial rewrite, though I'm not sure if
that will actually happen now.  If it does I hope they do keep the RAM
requirements low on the chunkservers.  That was the main thing that
turned me off from ceph - it is a great platform in general but
needing 1GB RAM per 1TB disk adds up really fast, and it basically
precludes ARM SBCs as OSDs as you can't get those with that much RAM
for any sane price - even if you were only running one drive per host
good luck finding a SBC with 13GB+ of RAM.  You can tune ceph to use
less RAM but I've heard that bad things happen if you have some hosts
shuffle during a rebuild and you don't have gobs of RAM - all the OSDs
end up with an impossible backlog and they keep crashing until you run
around like Santa Claus filling every stocking with a handful of $60
DIMMs.

Right now lizardfs basically uses almost no ram at all on
chunkservers, so an ARM SBC could run dozens of drives without an
issue.

-- 
Rich



Re: [Bulk] Re: [gentoo-user] Re: Anyone switched to eudev yet?

2012-12-27 Thread Michael Mol
 configuration files will be written
in Common Lisp. :P )


 [2] fuse-based filesystems allow an administrator the crazy
 possibility of, for example, demanding that /home be an ssh
 connection. Should the ssh client belong in /? ftp? substitute any
 arbitrary client program.

 System dependent binaries and libraries aren't commonly placed in
 /home. Your better argument would have been fuse-mounted /usr...in
 which case it would be the administrator's responsibility to ensure
 said arbitrary client program is present in /bin, and its libraries in
 /lib.

 It's misleading to think that /home being in ssh is an issue, because
 the point is that the purpose of the root filesystem is:

Wha? *You're* the one who brought up /home in the first place.


 To boot a system, enough must be present on the root partition to
 mount other filesystems. This includes utilities, configuration, boot
 loader information, and other essential start-up data.

 In other words, if /home is one of the other filesystems tools for
 mounting it should, according to FHS, be in the root filesystem.

Why would /home be one of the 'other filesystems' tools for mounting? You
made a jump here I seriously don't follow. Are we talking credentials? That
kind of thing that's usually kept under /etc.

 You're confusing that with the idea binaries are essential. And by the
 way, if you had emacs-daemon as an init service, it would depend on
 /home being mounted to be able to read the user's startup, or other
 similar things like that, so your system would not start up completely
 unless you had /home mounted.

I'm frankly unfamiliar with emacs-daemon, but (from what you say), it's
either broken, or was never, ever intended to be run as an init service.


 Now you say that it's alright, in this case, the sysad makes ssh
 available at /bin. But this undermines the primary FHS rationale: for
 binaries to be in _predictable_ locations for both the sysad AND the
 software packager.

The sysad controls the package manager. Regardless of the distribution,
package placement should _always_ be done via the package manager. This is
why every package management system that exists is accompanied with a tool
for importing other package management systems' packages. Including binary
and source tarballs.


 To implement this, then, as either the user / software packager / distro
maintainer, I now have to do an intelligent check on /etc/fstab
 to determine that no filesystems are mounted on fuse.

This doesn't follow, since you haven't explained what you need /home for!
Credentials are typically kept under /etc.

 This demands, of
 course, a table of possible filesystem names and the corresponding
 client programs (currently not codified), plus that check to
 /etc/fstab. So the spec _fails to achieve its goal_ for systems where
 table of client-fuse mappings is not codified: practically all of
 them.

Irrelevant, because the scenario is invalid.


 Compare: if all executables were in /usr FHS would have no problem
 locating the client binaries, because they're all in the same place.

And defeats existing functional systems without valid purpose. (Where I
hold that presuming responsibility of packages' dependencies is somehow
udev/systemd's responsibility, rather than that of the package authors and
maintainers, is invalid.)



 [3] a fuse-based filesystem depends on a local network service being
 started. For example, someone writes a crazy fuse mysql browser that
 also is coincidentally mounted at boot time. Should the mysqld service
 belong in /? ldap? substitute any arbitrary server program.

 I seriously cannot imagine anyone doing this except as a prank. The
 only similar case I can think of would have the db server on a
 separate machine.

 Well I did say he was crazy ;)


 And if an administrator decides to do this, it's his responsibility to
 make sure mysqld is located in /bin, its libraries are in /lib...and
 he's got to find some place other than /var for his database! By this
 point, you've gone so far into reducto ad absurdum I honestly can't
 imagine anyone apart from someone who has absolutely _no_ idea what
 they're doing landing themselves in that situation.


 More or less same as above. Since the admin is now manually moving
 things around, the spec _fails to achieve its goal_.

The presumption is that the admin would use the tools available to him to
achieve his goals in a consistent fashion. We consider it an error for
packages to be manually installed into /usr/ as opposed to /usr/local. Why
would you think I wouldn't consider it an error for a package to be
manually installed into /?

*Anything* an admin does without the knowledge of his package manager is
his own fault if it blows up in his face. This is why he is provided with a
package manager in the first place.


 Compare: if all executables were in /usr FHS would have no problem
 locating the server binaries, because they're all in the same place.

Hold off on the compares until we

Re: [gentoo-user] layman: could not connect to server

2009-03-26 Thread Nicolai Beuermann
 parallel-fetch protect-owned sandbox sfperms 
strict unmerge-orphans userfetch 
GENTOO_MIRRORS=ftp://ftp.tu-clausthal.de/pub/linux/gentoo/ 
ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/gentoo http://de-
mirror.org/distro/gentoo/ ftp://de-mirror.org/distro/gentoo/ 
http://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/ ftp://ftp.spline.inf.fu-
berlin.de/mirrors/gentoo/ http://pandemonium.tiscali.de/pub/gentoo/ 
ftp://pandemonium.tiscali.de/pub/gentoo/;   
 
LANG=de_DE.UTF-8  
   
LC_ALL=de_DE.UTF-8
   
LDFLAGS=-Wl,-O1 -Wl,--enable-new-dtags -Wl,--sort-common -s
LINGUAS=de en
MAKEOPTS=-s -j5
PKGDIR=/usr/portage/packages
PORTAGE_CONFIGROOT=/
PORTAGE_RSYNC_OPTS=--recursive --links --safe-links --perms --times --
compress --force --whole-file --delete --stats --timeout=180 --
exclude=/distfiles --exclude=/local --exclude=/packages
PORTAGE_TMPDIR=/var/tmp/portage
PORTDIR=/usr/portage
PORTDIR_OVERLAY=/usr/local/portage/layman/pro-audio 
/usr/local/portage/layman/vmware /usr/local/portage
SYNC=rsync://rsync.europe.gentoo.org/gentoo-portage
USE=7zip X a52 aac aalib acl acpi alsa amd64 apache2 artswrappersuid 
audiofile avahi berkdb bluetooth branding browserplugin bzip2 cairo canvas 
cdda cdr cjk cli commercial cracklib crypt css ctype cups dbus dga divx4linux 
djvu dlloader dri dts dv dvb dvd dvdr dvdread dvi eds emboss encode esd evo 
exif fam fat ffmpeg firefox flac foomatic-db fortran freetype fuse gcj gd gdbm 
gif gimpprint glibc-omitfp glitz glut gnutls google-gadgets gphoto2 gpm gsm 
gstreamer hal hfs iconv ieee1394 ipod ipv6 isdnlog ivtv jack java jingle jpeg 
jpeg2k kde kdehiddenvisibility kipi ladspa lame lash lcd lcms ldap libcaca 
libnotify live livecd lm_sensors mad midi mikmod mmx mono moznocompose 
moznoirc moznomail mozsvg mp3 mp3rtp mpeg mudflap multilib musepack 
musicbrainz mysql nautilus ncurses nls nntp nptl nptlonly nsplugin ntfs nvidia 
ogg oggvorbis on-the-fly-crypt opengl openmp pam pam_chroot pam_timestamp pcre 
pda pdf perl plasma png postgres povray ppds pppd pwdb python qt qt3 
qt3support qt4 quicktime rdesktop readline reflection reiserfs rtsp ruby samba 
scanner sdl session shout skins sms sndfile soundtouch speex spell spl sql sse 
sse2 sse3 ssl startup-notification stats stream subversionsvg sysfs tcpd 
theora threads tiff timidity truetype udev unichrome unicode usb v4l v4l2 vcd 
visualization vlm vorbis wxwindows x264 xcb xcomposite xine xinerama xml xml2 
xorg xprint xscreensaver xulrunner xv xvid xvmc zeroconf zlib 
ALSA_CARDS=hda-intel usb-usx2y usb-audio ALSA_PCM_PLUGINS=adpcm alaw copy 
dshare dsnoop extplug file hooks ladspa lfloat linear meter mulaw multi null 
rate route share shm plug empty dmix asym iec958 softvol ioplug 
APACHE2_MODULES=actions alias auth_basic auth_digest authn_anon authn_dbd 
authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile 
authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock dbd 
deflate dir disk_cache env expires ext_filter file_cache filter headers ident 
imagemap include info log_config logio mem_cache mime mime_magic negotiation 
proxy proxy_ajp proxy_balancer proxy_connect proxy_http rewrite setenvif so 
speling status unique_id userdir usertrack vhost_alias ELIBC=glibc 
INPUT_DEVICES=evdev keyboard mouse KERNEL=linux LCD_DEVICES=bayrad cfontz 
cfontz633 glkhd44780 lb216 lcdm001 mtxorb ncurses text LINGUAS=de en 
USERLAND=GNU VIDEO_CARDS=dummy fbdev nvidia
Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, FFLAGS, INSTALL_MASK, 
PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS


Still no idea to carry on

nico
-- 
mailto: nicolai.beuerm...@gmx.de
http://www.nico-beuermann.de
gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259


[gentoo-user] emerge kdirstat fails

2009-07-27 Thread Nicolai Beuermann
  

DISTDIR=/usr/portage/distfiles

FEATURES=ccache distlocks fixpackages parallel-fetch protect-owned sandbox 
sfperms strict unmerge-orphans userfetch   
GENTOO_MIRRORS=ftp://ftp.tu-clausthal.de/pub/linux/gentoo/ 
ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/gentoo http://de-
mirror.org/distro/gentoo/ ftp://de-mirror.org/distro/gentoo/ 
http://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/ ftp://ftp.spline.inf.fu-
berlin.de/mirrors/gentoo/ http://pandemonium.tiscali.de/pub/gentoo/ 
ftp://pandemonium.tiscali.de/pub/gentoo/;
LANG=de_DE.UTF-8  

LC_ALL=de_DE.UTF-8

LDFLAGS=-Wl,-O1 -Wl,--enable-new-dtags -Wl,--sort-common -s   

LINGUAS=de en 

MAKEOPTS=-s -j5
PKGDIR=/usr/portage/packages
PORTAGE_CONFIGROOT=/
PORTAGE_RSYNC_OPTS=--recursive --links --safe-links --perms --times --
compress --force --whole-file --delete --stats --timeout=180 --
exclude=/distfiles --exclude=/local --exclude=/packages
PORTAGE_TMPDIR=/var/tmp/portage
PORTDIR=/usr/portage
PORTDIR_OVERLAY=/usr/local/portage/layman/vmware 
/usr/local/portage/layman/pro-audio /usr/local/portage/layman/sabayon 
/usr/local/portage
SYNC=rsync://rsync.europe.gentoo.org/gentoo-portage
USE=7zip X a52 aac aalib acl acpi alsa amd64 apache2 artswrappersuid 
audiofile avahi berkdb bluetooth branding browserplugin bzip2 cairo cdda cdr 
cjk cli commercial cracklib crypt css ctype cups dbus dga divx4linux djvu 
dlloader dri dts dv dvb dvd dvdr dvdread dvi eds emboss encode evo exif fam 
fat ffmpeg firefox flac foomatic-db fortran freetype fuse gcj gd gdbm gif 
gimpprint glibc-omitfp glitz glut gnutls google-gadgets gphoto2 gpm gsm 
gstreamer hal hfs iconv ieee1394 ipod ipv6 isdnlog ivtv jack java jingle jpeg 
jpeg2k kde kdehiddenvisibility kipi ladspa lame lash lcd lcms ldap libcaca 
libnotify live livecd lm_sensors mad midi mikmod mmx mono moznocompose 
moznoirc moznomail mozsvg mp3 mp3rtp mpeg mudflap multilib musepack 
musicbrainz mysql nautilus ncurses nls nntp nptl nptlonly nsplugin ntfs nvidia 
ogg oggvorbis on-the-fly-crypt opengl openmp pam pam_chroot pam_timestamp pcre 
pda pdf perl plasma pmu png postgres povray ppds pppd pwdb python qt qt3 
qt3support qt4 quicktime rdesktop readline reflection reiserfs rtsp ruby samba 
scanner sdl session shout skins sms sndfile soundtouch speex spell spl sql sse 
sse2 sse3 ssl startup-notification stats stream subversion svg sysfs tcpd 
theora threads tiff timidity truetype udev unichrome unicode usb v4l v4l2 vcd 
visualization vlm vorbis wxwindows x264 xcb xcomposite xine xinerama xml xml2 
xorg xprint xscreensaver xulrunner xv xvid xvmc zeroconf zlib 
ALSA_CARDS=hda-intel usb-usx2y usb-audio ALSA_PCM_PLUGINS=adpcm alaw copy 
dshare dsnoop extplug file hooks ladspa lfloat linear meter mulaw multi null 
rate route share shm plug empty dmix asym iec958 softvol ioplug 
APACHE2_MODULES=actions alias auth_basic auth_digest authn_anon authn_dbd 
authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile 
authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock dbd 
deflate dir disk_cache env expires ext_filter file_cache filter headers ident 
imagemap include info log_config logio mem_cache mime mime_magic negotiation 
proxy proxy_ajp proxy_balancer proxy_connect proxy_http rewrite setenvif so 
speling status unique_id userdir usertrack vhost_alias ELIBC=glibc 
INPUT_DEVICES=evdev keyboard mouse KERNEL=linux LCD_DEVICES=bayrad cfontz 
cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text LINGUAS=de en 
USERLAND=GNU VIDEO_CARDS=dummy fbdev nvidia
Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, FFLAGS, INSTALL_MASK, 
PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS
-- 
mailto: nicolai.beuerm...@gmx.de
http://www.nico-beuermann.de
gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259



Re: [gentoo-user] Rasp-Pi-4 Gentoo servers

2020-03-01 Thread William Kenworthy



On 2/3/20 10:40 am, Rich Freeman wrote:

On Sun, Mar 1, 2020 at 8:52 PM William Kenworthy  wrote:

For those wanting to run a lot of drives on a single host - that defeats
the main advantage of using a chunkserver based filesystem -
redundancy.  Its far more common to have a host fail than a disk drive.
Losing the major part of your storage in one go means the cluster is
effectively dead - hence having a lot of completely separate systems is
much more reliable

Of course.  You should have multiple hosts before you start putting
multiple drives on a single host.

However, once you have a few hosts the performance improves by adding
more, but you're not really getting THAT much additional redundancy.
You would get faster rebuild times by having more hosts since there
would be less data to transfer when one fails and more hosts doing the
work.

So, it is about finding a balance.  You probably don't want 30 drives
on 2 hosts.  However, you probably also don't need 15-30 hosts for
that many drives either.  I wouldn't be putting 16 drives onto a
single host until I had a fair number of hosts.

As far as the status of lizardfs goes - as far as I can tell it is
mostly developed by a company and they've wavered a bit on support in
the last year.  I share your observation that they seem to be picking
up again.  In any case, I'm running the latest stable and it works
just fine, but it lacks the high availability features.  I can have
shadow masters, but they won't automatically fail over, so maintenance
on the master is still a pain.  Recovery due to failure of the master
should be pretty quick though even if manual - just have to run a
command on each shadow to determine which has the most recent
metadata, then adjust DNS for my master CNAME to point to the new
master, and then edit config on the new master to tell it that it is
the master and no longer a shadow, and after restarting the daemon the
cluster should be online again.

The latest release candidate has the high availability features (used
to be paid, is now free), however it is still a release candidate and
I'm not in that much of a rush.  There was a lot of griping on the
forums/etc by users who switched to the release candidate and ran into
bugs that ate their data.  IMO that is why you don't go running
release candidates for distributed filesystems with a dozen hard
drives on them - if you want to try them out just run them in VMs with
a few GB of storage to play with and who cares if your test data is
destroyed.  It is usually wise to be conservative with your
filesystems.  Makes no difference to me if they take another year to
do the next release - I'd like the HA features but it isn't like the
old code goes stale.

Actually, the one thing that it would be nice if they fixed is the
FUSE client - it seems to leak RAM.

Oh, and the docs seem to hint at a windows client somewhere which
would be really nice to have, but I can't find any trace of it.  I
only normally run a single client but it would obviously perform well
as a general-purpose fileserver.

There has been talk of a substantial rewrite, though I'm not sure if
that will actually happen now.  If it does I hope they do keep the RAM
requirements low on the chunkservers.  That was the main thing that
turned me off from ceph - it is a great platform in general but
needing 1GB RAM per 1TB disk adds up really fast, and it basically
precludes ARM SBCs as OSDs as you can't get those with that much RAM
for any sane price - even if you were only running one drive per host
good luck finding a SBC with 13GB+ of RAM.  You can tune ceph to use
less RAM but I've heard that bad things happen if you have some hosts
shuffle during a rebuild and you don't have gobs of RAM - all the OSDs
end up with an impossible backlog and they keep crashing until you run
around like Santa Claus filling every stocking with a handful of $60
DIMMs.

Right now lizardfs basically uses almost no ram at all on
chunkservers, so an ARM SBC could run dozens of drives without an
issue.

Everything bad you hear about ceph is true ... and then some! I did try, 
but this was some years ago so hopefully its better now. The two biggies 
were excessive network requirements (bandwidth, separation) and recovery 
times with frequent crash and burn. There are ceph features I would 
really like to use (rbd, local copies with much simpler config, ...) but 
moosefs is a lot more bullet proof on lesser resource requirements 
though I did find properly pruned vlans on a smartswitch separating the 
intra-cluster from external requests made a noticeable difference.


moosefs has a windows client but its only available with the paid 
version.  The master/shadow-master and auto failover is only available 
through the paid version - for the community you have to stop the 
master, copy the files then change DNS etc. before restarting the new 
master - cant really do it online even when scripted - its painful with 
downtime and I had dns caching issues

Re: [gentoo-user] audacity-2.0.5 failed to compile

2015-09-03 Thread Alan McKinnon
On 03/09/2015 15:56, the...@sys-concept.com wrote:
> On 09/03/2015 07:19 AM, Alan McKinnon wrote:
>> On 03/09/2015 15:06, Alec Ten Harmsel wrote:
>>> On Wed, Sep 02, 2015 at 02:25:47PM -0600, the...@sys-concept.com wrote:
>>>> I've tried to post a "log" file to the http://pastebin.com/ you
>>>> suggested but I can only paste the limited size file (not upload it).
>>>> Since the txt file is 7.4Mb in size, I can not paste it.
>>>> Though, I have compress the file as tar.gz (so it is only 267kB)
>>>> here is the link:
>>>>
>>>> http://www.sysconcept.ca/audacity_error.tar.gz
> 
> I've changed the permission on this file to: apache:apache and rw
> the link above should work.
> 
>>>>
>>>> If somebody whats to look at it, I appreciate it.
>>>> Meanwhile, I'll be following other folks suggestion and see if I can get
>>>> a positive result to this error.
>>>>
>>>> Thelma
>>>
>>> I tried to download it but got a 403 Forbidden HTTP error.
>>>
>>> This might be a bad suggestion, but if you have a lot of time, it might
>>> be easier to uninstall audacity and any other packages that have been
>>> giving you problems, then `emerge -uDN --with-bdeps=y @world`, then
>>> `emerge --depclean', and then install all the stuff you need.
>>>
>>> I believe someone else mentioned checking /var/lib/portage/world and
>>> making sure that it doesn't contain any virtuals - it might also be good
>>> to remove from it any software that you do not directly need.
>>
>>
>> Even better - Thelma should just post the entire /var/lib/portage/world
>> file so we can advise what to take out.
>>
>> Most newbies clutter up their world needlessly, it takes a bit of
>> practice to grok what should be in their
> 
> Yes, the system is few years old.
> It make me wonder if the problem might be cause by me emerging:
> 
> emerge -avC libjpeg-turbo
> emerge -av1 media-libs/jpeg:0 media-libs/jpeg:62

Probably. None of that belongs in world

> 
> I'm using obsolete "nxclient-3.5.0.7" as I need it and there is no good
> replacement alternative on Gentoo.
> 
> Here is /var/lib/portage/world

You have a lot of clutter and junk in there. When you add dependant libs
to world, you remove portage's ability to do the right thing, and you
then have to do it all yourself. Humans never get this right - witness
your recent woes.

Comments inline, edit the world file directly:

> app-admin/gkrellm
> app-admin/syslog-ng
> app-admin/tmpwatch
> app-admin/webapp-config
> app-arch/cabextract
> app-arch/xarchiver
> app-benchmarks/cpuburn
> app-cdr/cdrtools
> app-cdr/dvd+rw-tools
> app-crypt/gnupg
> app-crypt/pinentry
> app-dicts/myspell-en
> app-editors/leafpad
> app-editors/nano
> app-emulation/dosemu
> app-emulation/virtualbox-bin
> app-emulation/virtualbox-modules
> app-forensics/chkrootkit
> app-forensics/rkhunter
> app-misc/ca-certificates
> app-office/glabels
> app-office/gnucash
> app-office/gnumeric
> app-office/openoffice-bin
> app-portage/cfg-update
> app-portage/eix
> app-portage/genlop
> app-portage/gentoolkit
> app-portage/portage-utils
> app-text/a2ps
> app-text/acroread
> app-text/dos2unix
> app-text/enscript
> app-text/evince
> app-text/flpsed
> app-text/ghostscript-gpl
> app-text/gv
> app-text/lcdf-typetools
> app-text/mpage
> app-text/pdfjam
> app-text/pdfshuffler
> app-text/pdftk
> app-text/texi2html
> app-text/wdiff
> dev-db/mysql
> dev-db/phpmyadmin
> dev-db/postgresql
> dev-db/postgresql:9.0
> dev-db/postgresql:9.1
> dev-java/icedtea-bin
> dev-java/java-config
> dev-java/oracle-jdk-bin
> dev-lang/lua
> dev-lang/php
> dev-lang/python
> dev-lang/swig
> dev-lang/tcl
> dev-lang/tk

> dev-libs/check
> dev-libs/libnl
> dev-libs/openssl

remove everything in dev-libs

> dev-perl/DBD-Pg
> dev-perl/GStreamer

Remove. No such package, unless its from an overlay

> dev-php/smarty
> dev-python/cython

> dev-python/dbus-python

Remove. It's a dep of many things

> dev-python/django

> dev-python/pycairo
> dev-python/pygobject
> dev-python/pygtk
> dev-python/pyxml

Remove all this py* stuff. They are deps

> dev-tcltk/expect
> dev-tex/feynmf
> dev-util/byacc
> dev-util/ccache
> dev-util/meld
> dev-util/unifdef
> dev-vcs/git
> dev-vcs/subversion
> games-action/supertuxkart
> games-arcade/supertux
> games-arcade/xscavenger
> games-kids/tuxmathscrabble

> gnome-base/gconf

Remove, this is a common dep

> mail-client/mutt
> mail-client/thunderbi

Re: [gentoo-user] audacity-2.0.5 failed to compile

2015-09-03 Thread thelma
[snip]

Thank you for your helping hand. Yes, did perform the surgery (removing the 
packages you suggested) and run: emerge --depclean -p analyzed every package it 
wants to remove and put it back in world.
 
Here are the results
> Comments inline, edit the world file directly:
> 
[snip]
> 
>> dev-libs/check
>> dev-libs/libnl
>> dev-libs/openssl
> 
> remove everything in dev-libs

gone

> 
>> dev-perl/DBD-Pg
>> dev-perl/GStreamer
> 
> Remove. No such package, unless its from an overlay

DBD-Pg is needed by SQL-ledger application I run
dev-perl/GStreamer is gone

> 
>> dev-php/smarty

gone

>> dev-python/cython
>> dev-python/dbus-python
> 
> Remove. It's a dep of many things

above gone

>> dev-python/django

gone

>> dev-python/pycairo
>> dev-python/pygobject
>> dev-python/pygtk
>> dev-python/pyxml
> 
> Remove all this py* stuff. They are deps

gone

[snip]
>> gnome-base/gconf
> 
> Remove, this is a common dep

gone

[snip]
> 
>> media-libs/gstreamer
>> media-libs/libcuefile
>> media-libs/libdvbpsi

above gone

>> media-libs/libid3tag

equery d media-libs/libid3tag
 * These packages depend on media-libs/libid3tag:
media-sound/audacity-2.0.2 (id3tag ? media-libs/libid3tag)
media-sound/sox-14.4.2 (id3tag ? media-libs/libid3tag)

>> media-libs/libmikmod
gone

>> media-libs/libmodplug

equery d media-libs/libmodplug
 * These packages depend on media-libs/libmodplug:
media-libs/sdl-mixer-1.2.12-r4 (modplug ? 
>=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?])
media-libs/xine-lib-1.2.6-r1 (modplug ? >=media-libs/libmodplug-0.8.8.1)
media-sound/cmus-2.5.0-r1 (modplug ? >=media-libs/libmodplug-0.7)
media-video/ffmpeg-2.6.3 (modplug ? 
>=media-libs/libmodplug-0.8.8.4-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?])
media-video/vlc-2.1.5-r1 (modplug ? >=media-libs/libmodplug-0.8.8.1:0)

>> media-libs/libpng
>> media-libs/libreplaygain
>> media-libs/libsdl
>> media-libs/mesa
>> media-libs/openjpeg
>> media-libs/schroedinger
>> media-libs/tiff
> 
> Remove everything from media-libs
all media-libs gone

>> media-sound/alsa-utils
>> media-sound/audacity
>> media-sound/cdparanoia
>> media-sound/cmus
>> media-sound/musepack-tools
>> media-sound/sox
>> media-video/dirac
>> media-video/dvdbackup
>> media-video/gtk-recordmydesktop
>> media-video/kino
>> media-video/motion
>> media-video/mplayer
>> media-video/vlc
>> media-video/xine-ui
>> net-analyzer/gnu-netcat
>> net-analyzer/httping
>> net-analyzer/nagios
>> net-analyzer/nagios-core
>> net-analyzer/nmap
>> net-analyzer/tcpdump
>> net-dialup/mgetty
>> net-dns/ddclient
>> net-fs/nfs-utils
>> net-fs/samba
>> net-ftp/gftp
>> net-libs/adns
>> net-libs/libvncserver
>> net-libs/openslp
>> net-mail/fetchmail
>> net-mail/tnef
>> net-misc/asterisk
> 
> why are you running asterisk on a machine that is obviously a
> workstation?...

Yes, I do. It might not be the correct way of doing things but I find it 
practical to run server and workstation as one machine.
Easy to manage and only one computer working (running 7/24).

The way I manage it, I have several computers configures similarly (older ones) 
as backup.  I upgrade older one first, if most of the major programs I run are 
still running without problems I upgrade main server.  If something goes wrong, 
it is easier (less downtime) to just boot older machine point IP to it in 
firewall and I'm back and running.  
Sometimes troubleshoot something takes time.  
The problem could be harder as well (power supply, fan on CPU etc); so running 
server/workstation combo (as one machine) is easier.  If something goes wrong, 
I just boot older machine point IP address in firewall to older machine and I'm 
back in business in 10min.

[snip]
> 
>> net-print/foomatic-db
>> net-print/foomatic-db-engine
>> net-print/foomatic-db-ppds
> 
> You can probably remove foomatic, it's a dep on cups-filters

above gone

[snip]
>> sys-kernel/genkernel
>> sys-kernel/gentoo-sources
>> sys-kernel/gentoo-sources:3.10.17
>> sys-kernel/gentoo-sources:3.5.7
> 
> Wee bit behind on kernel versions...

Yes, I'm a bit behind. Sometimes upgrading to the latest/newest kernel tent to 
break something.
My idea is "if it ain't broke don't fix it" :-/

> 
>> sys-kernel/module-rebuild
> 
> Remove, no such package. 

Re: [gentoo-user] gentoo-minimal-install software list

2014-01-14 Thread Alan McKinnon
On 14/01/2014 23:34, James wrote:
 Hello,
 
 I've beenlooking for the listing of software in the minimal
 install for amd64
 
 
 Any ideas where to find it?



Easiest is to look in /var/db/pkg inside the image file. This is for
install-amd64-minimal-20131226:

app-accessibility/brltty-4.2
app-accessibility/espeak-1.47.11-r1
app-accessibility/espeakup-0.71
app-admin/eselect-lib-bin-symlink-0.1.1
app-admin/eselect-pinentry-0.4
app-admin/eselect-python-2008
app-admin/eselect-ruby-20100603
app-admin/hddtemp-0.3_beta15-r7
app-admin/passook-20121001
app-admin/pwgen-2.06-r1
app-admin/syslog-ng-3.4.2
app-arch/bzip2-1.0.6-r3
app-arch/gzip-1.5
app-arch/tar-1.26-r1
app-arch/unzip-6.0-r3
app-arch/xz-utils-5.0.5-r1
app-crypt/gnupg-2.0.22
app-crypt/mit-krb5-1.11.4
app-crypt/pinentry-0.8.2
app-editors/mg-20110905-r1
app-editors/nano-2.3.2
app-laptop/radeontool-1.6.3
app-misc/ca-certificates-20130119
app-misc/editor-wrapper-4
app-misc/livecd-tools-2.0.3
app-misc/mime-types-9
app-misc/pax-utils-0.7
app-misc/screen-4.0.3-r6
app-misc/vlock-2.2.3
app-portage/mirrorselect-2.2.0.1
app-portage/portage-utils-0.30
app-shells/bash-4.2_p45
app-text/build-docbook-catalog-1.19.1
app-text/docbook-xml-dtd-4.1.2-r6
app-text/docbook-xml-dtd-4.2-r2
app-text/docbook-xsl-stylesheets-1.78.0
app-text/sgml-common-0.6.3-r5
app-text/wgetpaste-2.22
dev-lang/nasm-2.10.07
dev-lang/perl-5.16.3
dev-lang/python-2.7.5-r3
dev-lang/python-3.3.2-r2
dev-lang/python-exec-0.3.1
dev-lang/python-exec-2.0.1
dev-lang/ruby-1.8.7_p374
dev-lang/ruby-1.9.3_p484
dev-lang/ruby-2.0.0_p353
dev-lang/swig-2.0.9
dev-libs/boost-1.52.0-r6
dev-libs/elfutils-0.149
dev-libs/eventlog-0.2.12
dev-libs/expat-2.1.0-r3
dev-libs/glib-2.36.4-r1
dev-libs/icu-51.2-r1
dev-libs/iniparser-3.1
dev-libs/libaio-0.3.109-r4
dev-libs/libassuan-2.1.1
dev-libs/libev-4.15
dev-libs/libevent-2.0.21
dev-libs/libffi-3.0.11
dev-libs/libgcrypt-1.5.3
dev-libs/libgpg-error-1.12
dev-libs/libksba-1.3.0
dev-libs/libnl-3.2.23
dev-libs/libpcre-8.33
dev-libs/libtasn1-2.14
dev-libs/libverto-0.2.5
dev-libs/libxslt-1.1.28-r1
dev-libs/libyaml-0.1.4
dev-libs/mpc-1.0.1
dev-libs/nettle-2.7.1
dev-libs/newt-0.52.12
dev-libs/openssl-1.0.1e-r1
dev-libs/popt-1.16-r1
dev-libs/pth-2.0.7-r3
dev-perl/Locale-gettext-1.50.0
dev-perl/XML-Parser-2.410.0
dev-python/m2crypto-0.21.1-r1
dev-python/python-exec-1.1
dev-python/python-exec-1.2
dev-python/setuptools-0.8-r1
dev-ruby/json-1.8.0
dev-ruby/racc-1.4.9
dev-ruby/rake-0.9.6
dev-ruby/rdoc-4.0.1-r1
dev-ruby/rubygems-2.0.3
dev-util/boost-build-1.52.0-r1
dev-util/dialog-1.2.20130928
dev-util/gperf-3.0.4
dev-util/gtk-doc-am-1.19
dev-util/intltool-0.50.2-r1
dev-util/ragel-6.7-r1
media-gfx/fbgrab-1.0-r2
media-libs/alsa-lib-1.0.27.1
media-libs/alsa-oss-1.0.25
media-libs/libjpeg-turbo-1.3.0
media-libs/libpng-1.5.17-r1
media-libs/portaudio-19_pre2021
media-sound/alsa-utils-1.0.27.1-r1
media-sound/gsm-1.0.13
media-sound/sox-14.4.1
net-analyzer/netselect-0.3-r3
net-analyzer/traceroute-2.0.18
net-dialup/globespan-adsl-0.11-r1
net-dialup/mingetty-1.08
net-dialup/ppp-2.4.5-r3
net-dialup/pptpclient-1.7.2-r3
net-dialup/rp-pppoe-3.8-r2
net-firewall/iptables-1.4.20
net-fs/cifs-utils-6.1-r1
net-fs/nfs-utils-1.2.9
net-fs/samba-3.6.22
net-irc/irssi-0.8.15-r1
net-libs/gnutls-2.12.23-r1
net-libs/libnfsidmap-0.24
net-libs/libtirpc-0.2.2-r1
net-misc/curl-7.33.0
net-misc/dhcpcd-5.6.4
net-misc/iputils-20121221
net-misc/ndisc6-0.9.9
net-misc/netifrc-0.1
net-misc/ntp-4.2.6_p5-r7
net-misc/openssh-5.9_p1-r4
net-misc/rdate-1.4-r4
net-misc/rsync-3.0.9-r3
net-misc/vconfig-1.9
net-misc/wget-1.14
net-nds/rpcbind-0.2.0-r1
net-proxy/dante-1.1.19-r4
net-proxy/ntlmaps-0.9.9-r2
net-proxy/tsocks-1.8_beta5-r5
net-wireless/b43-fwcutter-017
net-wireless/crda-1.1.2-r3
net-wireless/rfkill-0.5
net-wireless/wireless-regdb-20130213
net-wireless/wireless-tools-30_pre9
net-wireless/wpa_supplicant-2.0-r2
sys-apps/acl-2.2.51
sys-apps/apmd-3.2.2_p14
sys-apps/attr-2.4.46-r2
sys-apps/baselayout-2.2
sys-apps/busybox-1.21.0
sys-apps/coreutils-8.21
sys-apps/dbus-1.6.12
sys-apps/dmidecode-2.11
sys-apps/ethtool-3.8
sys-apps/file-5.15
sys-apps/findutils-4.4.2-r1
sys-apps/fxload-20081013-r1
sys-apps/gawk-4.0.2
sys-apps/gptfdisk-0.8.6
sys-apps/grep-2.14
sys-apps/hdparm-9.39
sys-apps/help2man-1.40.11
sys-apps/hwdata-gentoo-0.4
sys-apps/hwids-20130915.1
sys-apps/hwsetup-1.2-r2
sys-apps/iproute2-3.8.0
sys-apps/kbd-1.15.3
sys-apps/keyutils-1.5.5
sys-apps/kmod-15-r1
sys-apps/less-457
sys-apps/man-pages-posix-2003a
sys-apps/memtester-4.3.0
sys-apps/net-tools-1.60_p20120127084908
sys-apps/netplug-1.2.9-r5
sys-apps/openrc-0.12.4
sys-apps/pciutils-3.2.0
sys-apps/pcmciautils-018_p8
sys-apps/portage-2.2.7
sys-apps/sandbox-2.6-r1
sys-apps/sdparm-1.07
sys-apps/sed-4.2.1-r1
sys-apps/shadow-4.1.5.1-r1
sys-apps/sysvinit-2.88-r4
sys-apps/tcp-wrappers-7.6-r8
sys-apps/util-linux-2.22.2
sys-apps/which-2.20
sys-auth/pambase-20120417-r3
sys-block/parted-3.1-r1
sys-block/partimage-0.6.9
sys-block/thin-provisioning-tools-0.2.8
sys-devel/bc-1.06.95
sys

Re: [gentoo-user] audacity-2.0.5 failed to compile

2015-09-03 Thread Alan McKinnon
On 03/09/2015 21:11, the...@sys-concept.com wrote:
> [snip]
> 
> Thank you for your helping hand. Yes, did perform the surgery (removing the 
> packages you suggested) and run: emerge --depclean -p analyzed every package 
> it wants to remove and put it back in world.
>  


I see you are getting the hang of it but I still see some oddities in
your reply. There's a few things to keep in mind about Gentoo, that are
worth repeating. Eventually, I does all imprint in your brain :-)

Every old-timer here has gone through this learning process - even the
old farts like me (and James...) - and it took us many years to figure
out as a community how to deal with world.

Cleanups: Sometimes when cleaning up you'll delete something you really
do need, and you forget why you put it in world. Maybe emerge world puts
it back, but more likely stuff just breaks. Keep a list of all removals
so if you find breakage you can add things back. The classic case is
libs you need for your own code - you probably don't have an ebuild for
that and therefore no deps for portage to use.

Virtuals: you don't add the virtual to world. A virtual is a collection
of packages that all do the same thing and you can pick which one you
want. So you add oracle-jdk-bin to world, and the ebuild depends on
virtual/jdk. oracle-jdk-bin satisfied the virtual, so all is good. If
you unmerge oracle-jdk-bin and use icedtea instead, everything still
works. If you add a virtual to world, portage tends to just pick the
first one in the list which might not be what you want. Rather be explicit.

Sets: You have a many-purpose machine so you might find sets useful,
mostly because you can't add comments to world. You can with sets. They
are just files in /etc/portage/sets/ that list packages. You add them to
the system with emerge @. Here is one of mine:

$ cat /etc/portage/sets/alan-kde
kde-apps/kdeadmin-meta
kde-apps/kdeartwork-meta
kde-apps/kdebase-meta
kde-apps/kdebase-runtime-meta
kde-apps/kdegraphics-meta
kde-apps/kdemultimedia-meta
kde-apps/kdenetwork-meta
kde-apps/kdeutils-meta
#kde-base/kde-meta:4
#kde-base/kdeaccessibility-meta:4
#kde-base/kdebindings-meta:4
#kde-base/kdeedu-meta:4
#kde-base/kdegames-meta:4
#kde-base/kdepim-meta:4
#kde-base/kdesdk-meta:4
#kde-base/kdetoys-meta:4
#kde-base/kdewebdev-meta:4

and install using emerge -av@alan-kde

portage expands the name to the contents of the file and merges them.
Easy peasy.

You edit set files by hand so you can comment them. Perhaps you could
create a set for each major thing you do with that computer and make a
set for each one. This way you can easily keep track of major packages
types and comment *why* you did it.

jpeg: if it works the best is to remove all jpeg packages from world and
let portage deal with it. None of my gentoo machines have a jpeg package
in world. But you have nxclient which needs an old jpeg. We you can get
away with automagic, we'll have to see what happens when you do a full
emerge world

soxr: I'm not sure why this is giving a problem. If ffmpeg needs it, it
should be pulled in directly

jpeg on boot: Depends when the error happens, if you use openrc and it
happens during runlevel start, you can read /var/log/rc.log. Before that
point there's dmesg. We'd need to have more detail to answer better.

USE: There's no such thing as a correct USE :-) It's all just user
choices. So if it does what you want, it's all good. The only thing you
should not do is start USE with -*. A few people here do that and swear
by it, but it comes with a massive maintenance load on you, and vast
potential for side effects as you remove things you may need, and you
don't know you need them. That's why we have profiles, to set up a
minimally correct USE




> Here are the results
>> Comments inline, edit the world file directly:
>>
> [snip]
>>
>>> dev-libs/check
>>> dev-libs/libnl
>>> dev-libs/openssl
>>
>> remove everything in dev-libs
> 
> gone
> 
>>
>>> dev-perl/DBD-Pg
>>> dev-perl/GStreamer
>>
>> Remove. No such package, unless its from an overlay
> 
> DBD-Pg is needed by SQL-ledger application I run
> dev-perl/GStreamer is gone
> 
>>
>>> dev-php/smarty
> 
> gone
> 
>>> dev-python/cython
>>> dev-python/dbus-python
>>
>> Remove. It's a dep of many things
> 
> above gone
> 
>>> dev-python/django
> 
> gone
> 
>>> dev-python/pycairo
>>> dev-python/pygobject
>>> dev-python/pygtk
>>> dev-python/pyxml
>>
>> Remove all this py* stuff. They are deps
> 
> gone
> 
> [snip]
>>> gnome-base/gconf
>>
>> Remove, this is a common dep
> 
> gone
> 
> [snip]
>>
>>> media-libs/gstreamer
>>> media-libs/libcuefile
>>> media-libs/libdvbpsi
> 
> above gone
> 
&g

[gentoo-user] Tensorflow 2.1.0 failing to compile

2020-04-24 Thread Aisha Tammy
v-ruby/power_assert-1.1.5
dev-ruby/racc-1.4.14
dev-ruby/rake-12.3.3
dev-ruby/rdoc-6.1.2
dev-ruby/rubygems-2.7.10
dev-ruby/test-unit-3.3.3
dev-ruby/xmlrpc-0.3.0
dev-util/bazel-0.29.1
dev-util/ccache-3.7.7-r1
dev-util/cmake-3.16.5
dev-util/desktop-file-utils-0.24
dev-util/dialog-1.3.20170131
dev-util/gdbus-codegen-2.62.6
dev-util/glib-utils-2.62.6
dev-util/gperf-3.1
dev-util/gtk-doc-am-1.32
dev-util/gtk-update-icon-cache-3.24.16
dev-util/intltool-0.51.0-r2
dev-util/meson-0.52.1
dev-util/ninja-1.9.0
dev-util/nvidia-cuda-toolkit-10.2.89-r1
dev-util/pkgconf-1.6.3
dev-util/ragel-6.10
dev-util/re2c-1.3-r1
dev-util/shadowman-2
dev-vcs/git-2.26.2
gnome-base/gsettings-desktop-schemas-3.34.0
gnome-base/librsvg-2.40.21
mail-mta/opensmtpd-6.6.4_p1
media-fonts/font-util-1.3.2-r1
media-fonts/liberation-fonts-2.1.0
media-gfx/graphite2-1.3.13
media-libs/alsa-lib-1.2.1.2
media-libs/fontconfig-2.13.0-r4
media-libs/freetype-2.9.1-r3
media-libs/giflib-5.2.1-r1
media-libs/harfbuzz-2.6.4
media-libs/lcms-2.9
media-libs/libepoxy-1.5.4
media-libs/libglvnd-1.3.1
media-libs/libjpeg-turbo-2.0.4
media-libs/libpng-1.6.37
media-libs/mesa-19.3.5
net-analyzer/netselect-0.4-r1
net-analyzer/tcpdump-4.9.3
net-dialup/lrzsz-0.12.20-r4
net-dialup/minicom-2.7.1
net-dialup/ppp-2.4.8
net-dialup/ppp-scripts-0
net-dns/c-ares-1.15.0
net-dns/libidn2-2.3.0
net-dns/openresolv-3.9.0
net-firewall/iptables-1.6.1-r3
net-fs/nfs-utils-2.4.1-r4
net-libs/gnutls-3.6.13
net-libs/google-cloud-cpp-0.10.0
net-libs/grpc-1.26.0-r1
net-libs/libasr-1.0.4
net-libs/liblockfile-1.16
net-libs/libmbim-1.18.0
net-libs/libmnl-1.0.4
net-libs/libndp-1.7
net-libs/libnsl-1.2.0
net-libs/libpcap-1.9.1
net-libs/libqmi-1.22.2
net-libs/libtirpc-1.2.5
net-libs/rpcsvc-proto-1.4.1
net-mail/mailbase-1.5-r1
net-misc/curl-7.69.1
net-misc/dhcp-4.4.1
net-misc/iputils-20190709-r1
net-misc/lksctp-tools-1.0.18-r1
net-misc/modemmanager-1.10.0
net-misc/netifrc-0.7.1
net-misc/networkmanager-1.18.4-r3
net-misc/openssh-8.1_p1-r3
net-misc/rsync-3.1.3
net-misc/wget-1.20.3-r1
net-nds/rpcbind-1.2.5
net-vpn/tor-0.4.2.7
net-vpn/wireguard-modules-1.0.20200413
net-vpn/wireguard-tools-1.0.20200319
perl-core/File-Temp-0.230.900
sci-libs/arpack-3.1.5
sci-libs/keras-applications-1.0.8
sci-libs/keras-preprocessing-1.1.0
sci-libs/lapack-3.8.0
sci-libs/scipy-1.4.1
sci-visualization/tensorboard-2.1.0-r1
sys-apps/acl-2.2.53
sys-apps/attr-2.4.48-r3
sys-apps/baselayout-2.6-r1
sys-apps/baselayout-java-0.1.0-r1
sys-apps/busybox-1.31.1-r2
sys-apps/coreutils-8.31-r1
sys-apps/dbus-1.12.16
sys-apps/debianutils-4.9.1
sys-apps/diffutils-3.6-r1
sys-apps/file-5.37-r1
sys-apps/findutils-4.7.0
sys-apps/gawk-4.2.1-r1
sys-apps/gentoo-functions-0.12
sys-apps/grep-3.3-r1
sys-apps/groff-1.22.3
sys-apps/hdparm-9.58
sys-apps/help2man-1.47.10
sys-apps/hwids-20200204
sys-apps/hwinfo-21.23
sys-apps/hwloc-2.0.4
sys-apps/install-xattr-0.5
sys-apps/iproute2-5.2.0-r1
sys-apps/iucode_tool-2.3.1
sys-apps/kbd-2.0.4
sys-apps/keyutils-1.6.1
sys-apps/kmod-26-r5
sys-apps/less-551
sys-apps/lm-sensors-3.5.0
sys-apps/man-db-2.8.7
sys-apps/man-pages-5.05-r2
sys-apps/man-pages-posix-2013a
sys-apps/mlocate-0.26-r2
sys-apps/net-tools-1.60_p20180626073013
sys-apps/openrc-0.42.1
sys-apps/opentmpfiles-0.2
sys-apps/pciutils-3.5.6-r1
sys-apps/portage-2.3.89-r3
sys-apps/sandbox-2.13
sys-apps/sed-4.7
sys-apps/shadow-4.8-r4
sys-apps/sysvinit-2.93
sys-apps/tcp-wrappers-7.6.28
sys-apps/texinfo-6.6-r1
sys-apps/usbutils-010-r1
sys-apps/util-linux-2.33.2
sys-apps/which-2.21
sys-auth/pambase-20190402
sys-boot/efibootmgr-16
sys-boot/grub-2.04-r1
sys-cluster/mpich-3.3
sys-devel/autoconf-2.69-r4
sys-devel/autoconf-archive-2018.03.13
sys-devel/autoconf-wrapper-13-r1
sys-devel/automake-1.16.1-r1
sys-devel/automake-wrapper-11
sys-devel/bc-1.06.95-r2
sys-devel/binutils-2.33.1-r1
sys-devel/binutils-config-5.2
sys-devel/bison-3.1
sys-devel/clang-9.0.1
sys-devel/clang-common-9.0.1
sys-devel/clang-runtime-9.0.1
sys-devel/flex-2.6.4-r1
sys-devel/gcc-7.4.0-r2
sys-devel/gcc-8.4.0
sys-devel/gcc-9.3.0
sys-devel/gcc-config-2.2.1
sys-devel/gettext-0.20.1
sys-devel/gnuconfig-20190912
sys-devel/libtool-2.4.6-r6
sys-devel/llvm-9.0.1
sys-devel/llvm-common-9.0.1
sys-devel/m4-1.4.18-r1
sys-devel/make-4.2.1-r4
sys-devel/patch-2.7.6-r4
sys-firmware/intel-microcode-20191115_p20200209
sys-fs/dosfstools-4.1
sys-fs/e2fsprogs-1.45.5
sys-fs/eudev-3.2.9
sys-fs/fuse-2.9.9-r1
sys-fs/fuse-common-3.9.1
sys-fs/ntfs3g-2017.3.23-r3
sys-fs/udev-init-scripts-33
sys-fs/xfsprogs-5.4.0-r1
sys-kernel/genkernel-4.0.7-r1
sys-kernel/gentoo-sources-5.4.28
sys-kernel/installkernel-gentoo-2
sys-kernel/linux-firmware-20200413
sys-kernel/linux-headers-5.4
sys-libs/binutils-libs-2.33.1-r1
sys-libs/compiler-rt-9.0.1
sys-libs/compiler-rt-sanitizers-9.0.1
sys-libs/cracklib-2.9.7
sys-libs/db-5.3.28-r2
sys-libs/e2fsprogs-libs-1.45.5
sys-libs/efivar-37
sys-libs/gdbm-1.13-r2
sys-libs/glibc-2.30-r8
sys-libs/libapparmor-2.13.3
sys-libs/libcap-2.26-r2
sys-libs/libcap-ng-0.7.10
sys-libs/libomp-9.0.1
sys-libs/libseccomp-2.4.2-r1
sys-libs/mtde

[gentoo-user] Is there any way out of this...?

2013-12-06 Thread meino . cramer
Hi,

Doing an 

eix-sync  emerge --color=n --newuse --update --tree --deep world 
--keep-going -va

I got this response from the system:


---


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

Calculating dependencies... done!
[nomerge   ] media-video/openshot-1.4.3  USE=ffmpeg python 
PYTHON_TARGETS=python2_7 -python2_6 
[ebuild   R]  virtual/python-imaging-2  USE=tk PYTHON_TARGETS=python2_7 
python3_3* -python2_6 -python3_2* 0 kB
[nomerge   ] x11-libs/gtkglext-1.2.0-r1  USE=-debug 
[ebuild  N ]  x11-libs/pangox-compat-0.0.2  262 kB
[nomerge   ] media-video/openshot-1.4.3  USE=ffmpeg python 
PYTHON_TARGETS=python2_7 -python2_6 
[ebuild   R   ~]  dev-python/httplib2-0.8  PYTHON_TARGETS=python2_7 python3_3* 
-python2_6 -python3_2* 0 kB
[nomerge   ] dev-python/wxpython-2.8.12.1-r1:2.8  USE=cairo doc examples 
opengl PYTHON_TARGETS=python2_7 -python2_6 
[ebuild   R]  dev-python/pyopengl-3.0.2-r1  USE=tk 
PYTHON_TARGETS=python2_7 python3_3* -python2_6 -python3_2* 0 kB
[nomerge   ] dev-vcs/bzr-2.5.1  USE=sftp -curl -doc {-test} 
[nomerge   ]  dev-python/paramiko-1.10.1  USE=-doc -examples 
PYTHON_TARGETS=python2_7 -python2_6 
[ebuild   R]   dev-python/pycrypto-2.6.1  USE=gmp -doc 
PYTHON_TARGETS=python2_7 python3_3* -python2_6 -python3_2* 0 kB
[nomerge   ] media-sound/grip-3.3.1-r3  USE=nls vorbis 
[ebuild U  ]  x11-libs/vte-0.28.2-r206 [0.28.2-r204] USE=introspection 
-debug -glade -python (-doc%) PYTHON_TARGETS=python2_7%* -python2_6% 0 kB
[nomerge   ] media-sound/ardour-3.5.74:3  USE=nls sse (-altivec) -debug 
-doc -lv2 
[ebuild U  ]  dev-cpp/gtkmm-2.24.4:2.4 [2.24.2:2.4] USE=-doc -examples 
{-test} 10,022 kB
[nomerge   ] net-wireless/gnuradio-3.6.1-r1  USE=alsa doc examples fcd grc 
jack qt4 sdl utils wavelet wxwidgets -oss -portaudio 
[nomerge   ]  dev-python/cheetah-2.4.4 
[ebuild   R]   dev-python/markdown-2.3.1  USE=-doc -pygments {-test} 
PYTHON_TARGETS=python2_7 python3_3* (-pypy2_0) -python2_6 -python3_2* 0 kB
[ebuild U  ] sys-apps/gnome-disk-utility-3.8.2 [3.0.2-r201] USE=gnome%* 
-fat -systemd% (-gnome-keyring%) (-nautilus%) (-remote-access%) 1,348 kB
[ebuild   R] app-portage/portpeek-2.1.9  PYTHON_TARGETS=python2_7 
python3_3%* -python3_2* 0 kB
[ebuild   R] app-office/libreoffice-4.1.2.3  USE=branding cups dbus gtk 
opengl vba webdav (-aqua) -bluetooth -debug -eds -gnome -gstreamer -gtk3 -java 
-jemalloc -kde -mysql -odk -postgres -telepathy {-test} 
LIBREOFFICE_EXTENSIONS=presenter-minimizer -nlpsolver -scripting-beanshell 
-scripting-javascript -wiki-publisher PYTHON_SINGLE_TARGET=python2_7 
-python3_3 PYTHON_TARGETS=python2_7 python3_3* 0 kB
[ebuild   R   ~] app-portage/diffmask-0.3.3-r2  PYTHON_TARGETS=python2_7 
python3_3* -pypy2_0 -python2_6 -python3_2* 0 kB
[ebuild   R] dev-python/PyQt4-4.10.2  USE=X dbus opengl -debug 
-declarative -doc -examples -help -kde -multimedia -phonon -script -scripttools 
-sql -svg -webkit -xmlpatterns PYTHON_TARGETS=python2_7 python3_3* -python2_6 
-python3_2* 0 kB
[ebuild U  ] media-libs/cogl-1.14.1_pre20130901-r1:1.0/12 [1.10.4:1.0/9] 
USE=introspection opengl pango -debug -examples -gles2 {-test} (-doc%) 1,449 
kB
[ebuild   R] sys-process/iotop-0.6  PYTHON_TARGETS=python2_7 python3_3* 
(-pypy2_0) -python2_6 -python3_2* 0 kB
[ebuild U  ] dev-vcs/subversion-1.7.14 [1.7.13] USE=berkdb dso nls 
webdav-neon -apache2 -ctypes-python -debug -doc -extras -gnome-keyring -java 
-kde -perl -python -ruby -sasl {-test} -vim-syntax -webdav-serf 
PYTHON_TARGETS=python2_7 -python2_6 5,905 kB
[ebuild U  ] app-text/evince-3.8.3:0/evd3.4-evv3.3 [2.32.0-r4:0/0] 
USE=introspection postscript tiff -debug -djvu -dvi -gnome-keyring -nautilus 
-t1lib -xps% (-dbus%*) (-gnome%) 6,328 kB
[ebuild U  ] x11-libs/gtksourceview-3.8.2:3.0/1 [3.6.3:3.0/3.0] 
USE=introspection -glade {-test} 1,239 kB
[ebuild U  ] app-text/gtkspell-3.0.3:3/0 [3.0.0:3/0] USE=introspection 
-vala% 411 kB
[ebuild U  ] app-office/gnumeric-1.12.8 [1.12.0-r1] USE=introspection 
-libgda% -perl -python PYTHON_SINGLE_TARGET=python2_7 -python2_6 
PYTHON_TARGETS=python2_7 -python2_6 15,182 kB
[ebuild   R] app-portage/flaggie-0.2.1  PYTHON_TARGETS=python2_7 
python3_3* (-pypy2_0) -python2_6 -python3_2* 0 kB
[ebuild U  ] x11-libs/libwnck-3.4.7:3 [3.4.5:3] USE=introspection 
-startup-notification -tools 649 kB
[ebuild U  ] net-libs/webkit-gtk-2.0.4:3/25 [1.8.3-r300:3/3] USE=geoloc 
gstreamer introspection jit webgl (-aqua) -coverage -debug -libsecret% -spell 
{-test} (-doc%) (-webkit2%) 9,619 kB
[ebuild U  ] x11-misc/slim-1.3.6-r3 [1.3.5-r4] USE=consolekit pam 
-branding 228 kB
[ebuild U  ] gnome-base/gvfs-1.16.4 [1.12.3-r1] USE=gdu gtk%* http udev 
-afp -archive -avahi -bluetooth -bluray -cdda -fuse -gnome-keyring 
-gnome-online-accounts% -gphoto2 -ios -mtp% -samba -systemd% {-test%} -udisks 
(-doc%) 1,463 kB
[ebuild   R] dev-python

[gentoo-user] Re: Is there any way out of this...?

2013-12-06 Thread Jonathan Callen
 
 -avahi -bluetooth
 -bluray -cdda -fuse -gnome-keyring -gnome-online-accounts% -gphoto2 -ios 
 -mtp% -samba -systemd%
 {-test%} -udisks (-doc%) 1,463 kB [ebuild   R] 
 dev-python/beautifulsoup-4.1.3-r1:4
 USE=-doc {-test} PYTHON_TARGETS=python2_7 python3_3* (-pypy2_0) -python2_6 
 -python3_2* 0
 kB [ebuild U  ] app-arch/dpkg-1.16.12-r1 [1.16.10] USE=bzip2 nls unicode 
 zlib -dselect
 {-test} LINGUAS=-ast -bs -ca -cs -da -de -dz -el -eo -es -et -eu -fr -gl 
 -hu -id -it -ja -km
 -ko -ku -lt -mr -nb -ne -nl -nn -pa -pl -pt -pt_BR -ro -ru -sk -sv -th -tl 
 -vi -zh_CN -zh_TW
 3,701 kB [ebuild U  ] dev-cpp/gtkmm-3.8.1:3.0 [3.4.2:3.0] USE=X (-aqua) 
 -doc -examples
 {-test} (-wayland) 4,213 kB [ebuild   R] dev-python/lxml-3.2.1  
 USE=threads
 -beautifulsoup3 -doc -examples PYTHON_TARGETS=python2_7 python3_3* 
 -python2_6 -python3_2* 0
 kB [ebuild U  ] app-crypt/seahorse-3.8.2 [2.32.0] USE=-avahi -debug 
 -ldap (-doc%)
 (-introspection%) (-libnotify%) (-test%) 1,966 kB [ebuild U  ]
 app-text/gnome-doc-utils-0.20.10-r1 [0.20.10] PYTHON_TARGETS=python2_7%* 
 -python2_6% 0 kB 
 [blocks b  ] =net-libs/libsoup-2.42 (=net-libs/libsoup-2.42 is 
 blocking
 net-libs/libsoup-gnome-2.38.1) [ebuild U  ]  
 net-libs/libsoup-gnome-2.42.3.1:2.4
 [2.38.1:2.4] USE=introspection -debug 723 kB [ebuild U  ]   
 net-libs/libsoup-2.42.3.1:2.4
 [2.38.1:2.4] USE=introspection ssl -debug -samba {-test} 0 kB [nomerge  
  ]
 sys-apps/gnome-disk-utility-3.8.2 [3.0.2-r201] USE=gnome%* -fat -systemd% 
 (-gnome-keyring%)
 (-nautilus%) (-remote-access%) [ebuild  N ]  app-crypt/libsecret-0.15-r1 
  USE=crypt
 introspection -debug {-test} -vala 474 kB [ebuild U  ] 
 gnome-base/libgnome-keyring-3.8.0
 [2.32.0] USE=introspection%* -debug {-test} -vala% 417 kB [nomerge   ]
 gnome-base/gnome-keyring-3.8.2 [2.32.1-r1] USE=caps%* filecaps%* pam -debug 
 (-selinux)
 {-test} [nomerge   ]  app-crypt/gcr-3.8.2:0/1  USE=gtk introspection 
 -debug {-test} 
 [blocks b  ]   gnome-base/gnome-keyring-3.3 
 (gnome-base/gnome-keyring-3.3 is blocking
 app-crypt/gcr-3.8.2) [ebuild U  ]gnome-base/gnome-keyring-3.8.2 
 [2.32.1-r1] USE=caps%*
 filecaps%* pam -debug (-selinux) {-test} 1,113 kB [ebuild  N ] 
 app-crypt/gcr-3.8.2:0/1
 USE=gtk introspection -debug {-test} 1,362 kB [ebuild   R]
 dev-java/java-config-2.1.12-r1:2  PYTHON_TARGETS=python2_7 python3_3* 
 -python2_6 -python3_2*
 0 kB [nomerge   ] sys-apps/gnome-disk-utility-3.8.2 [3.0.2-r201] 
 USE=gnome%* -fat
 -systemd% (-gnome-keyring%) (-nautilus%) (-remote-access%) [ebuild  N ]
 gnome-base/gnome-settings-daemon-3.8.6.1  USE=colord cups i18n 
 short-touchpad-timeout udev
 -debug (-openrc-force) (-packagekit) -policykit {-test} 
 INPUT_DEVICES=-wacom 1,543 kB 
 [nomerge   ] gnome-base/gnome-settings-daemon-3.8.6.1  USE=colord cups 
 i18n
 short-touchpad-timeout udev -debug (-openrc-force) (-packagekit) -policykit 
 {-test}
 INPUT_DEVICES=-wacom [nomerge   ]  sys-apps/systemd-208-r2:0/1  
 USE=acl filecaps
 firmware-loader kmod pam tcpd -audit -cryptsetup -doc -gcrypt -gudev -http 
 -introspection -lzma
 -policykit -python -qrcode (-selinux) {-test} -vanilla -xattr ABI_X86=(64) 
 (-32) (-x32)
 PYTHON_SINGLE_TARGET=python2_7 PYTHON_TARGETS=python2_7 [ebuild  N ]
 sys-apps/gentoo-systemd-integration-2  51 kB [ebuild  N ]
 sys-apps/systemd-208-r2:0/1
 USE=acl filecaps firmware-loader kmod pam tcpd -audit -cryptsetup -doc 
 -gcrypt -gudev -http
 -introspection -lzma -policykit -python -qrcode (-selinux) {-test} -vanilla 
 -xattr
 ABI_X86=(64) (-32) (-x32) PYTHON_SINGLE_TARGET=python2_7 
 PYTHON_TARGETS=python2_7 8 kB 
 [ebuild U ~] media-plugins/alsa-plugins-1.0.27-r1 [1.0.27] USE=ffmpeg 
 jack libsamplerate
 pulseaudio* speex -debug 0 kB [ebuild  N~]  
 media-sound/pulseaudio-4.0-r1  USE=X alsa
 asyncns caps dbus gdbm glib gtk ipv6 jack orc ssl tcpd udev webrtc-aec -avahi 
 -bluetooth -doc
 -equalizer -gnome -libsamplerate -lirc (-neon) (-oss) -qt4 -realtime 
 (-system-wide) -systemd
 {-test} -xen ABI_X86=(64) -32 (-x32) 1,360 kB [ebuild U  ]
 x11-misc/notification-daemon-0.7.6 [0.5.0] 273 kB [ebuild U  ] 
 x11-libs/goffice-0.10.8:0.10
 [0.10.0:0.10] USE=introspection 2,154 kB [nomerge   ] 
 net-libs/libsoup-2.42.3.1:2.4
 [2.38.1:2.4] USE=introspection ssl -debug -samba {-test} [ebuild U  ]
 net-libs/glib-networking-2.36.2 [2.32.3] USE=gnome libproxy ssl -smartcard 
 {-test} 345 kB 
 [ebuild U  ]   net-libs/libproxy-0.4.11-r1 [0.4.10-r1] USE=-gnome -kde 
 -mono
 -networkmanager -perl -python -spidermonkey {-test} -webkit 
 PYTHON_TARGETS=python2_7%*
 -python2_6% 92 kB [ebuild   R] app-portage/gentoolkit-0.3.0.8-r2
 PYTHON_TARGETS=python2_7 python3_3* (-pypy2_0) -python2_6 -python3_2* 0 kB 
 [ebuild   R]
 virtual/python-argparse-1  PYTHON_TARGETS=python2_7 python3_3* (-pypy2_0) 
 -python2_6
 -python3_2* 0 kB [nomerge   ] app-office/scribus-1.4.3  USE=cairo 
 minimal

Re: [gentoo-user] Re: Externel drive should be /dev/sda1, but /dev/sda1 does not exist

2010-01-02 Thread Michael Sullivan
) selected PIO4
hda: UDMA/33 mode selected
Probing IDE interface ide1...
hdc: WDC WD800BB-00JHC0, ATA DISK drive
hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4
hdc: host side 80-wire cable detection failed, limiting max speed to
UDMA33
hdc: UDMA/33 mode selected
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
ide_generic: please use probe_mask=0x3f module parameter for probing
all legacy ISA IDE ports
ide-gd driver 1.18
hdc: max request size: 128KiB
hdc: 156301488 sectors (80026 MB) w/2048KiB Cache, CHS=65535/16/63
hdc: cache flushes supported
 hdc: hdc1 hdc3 hdc4  hdc5 hdc6 
ide-cd driver 5.00
ide-cd: hda: ATAPI 52X DVD-ROM CD-R/RW drive, 1536kB Cache
Uniform CD-ROM driver Revision: 3.20
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
md: raid0 personality registered for level 0
md: raid1 personality registered for level 1
md: raid6 personality registered for level 6
md: raid5 personality registered for level 5
md: raid4 personality registered for level 4
cpuidle: using governor ladder
TCP cubic registered
NET: Registered protocol family 17
Using IPI No-Shortcut mode
registered taskstats version 1
Freeing unused kernel memory: 428k freed
input: AT Translated Set 2 keyboard
as /devices/platform/i8042/serio0/input/input1
input: ImPS/2 Generic Wheel Mouse
as /devices/platform/i8042/serio1/input/input2
NCR53c406a: no available ports found
scsi: fdomain Detection failed (no card)
GDT-HA: Storage RAID Controller Driver. Version: 3.05
qlogicfas: no cards were found, please specify I/O address and IRQ using
iobase= and irq= optionsFailed initialization of WD-7000 SCSI card!
NCR53c406a: no available ports found
imm: Version 2.05 (for Linux 2.4.0)
sym53c416.c: Version 1.0.0-ac
Fusion MPT base driver 3.04.10
Copyright (c) 1999-2008 LSI Corporation
Fusion MPT SPI Host driver 3.04.10
Fusion MPT FC Host driver 3.04.10
Fusion MPT SAS Host driver 3.04.10
3ware Storage Controller device driver for Linux v1.26.02.002.
3ware 9000 Storage Controller device driver for Linux v2.26.02.012.
Compaq SMART2 Driver (v 2.6.0)
HP CISS Driver (v 3.6.20)
Adaptec aacraid driver 1.1-5[2461]-ms
megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
megasas: 00.00.04.01 Thu July 24 11:41:51 PST 2008
QLogic Fibre Channel HBA Driver: 8.03.01-k4
Emulex LightPulse Fibre Channel SCSI driver 8.3.3
Copyright(c) 2004-2009 Emulex.  All rights reserved.
aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd :00:03.3: PCI INT D - GSI 23 (level, low) - IRQ 23
ehci_hcd :00:03.3: EHCI Host Controller
ehci_hcd :00:03.3: new USB bus registered, assigned bus number 1
ehci_hcd :00:03.3: cache line size of 64 is not supported
ehci_hcd :00:03.3: irq 23, io mem 0xe1102000
ehci_hcd :00:03.3: USB 2.0 started, EHCI 1.00
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
Initializing USB Mass Storage driver...
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
uhci_hcd: USB Universal Host Controller Interface driver
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
ohci_hcd :00:03.0: PCI INT A - GSI 20 (level, low) - IRQ 20
ohci_hcd :00:03.0: OHCI Host Controller
ohci_hcd :00:03.0: new USB bus registered, assigned bus number 2
ohci_hcd :00:03.0: irq 20, io mem 0xe1104000
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 3 ports detected
ohci_hcd :00:03.1: PCI INT B - GSI 21 (level, low) - IRQ 21
ohci_hcd :00:03.1: OHCI Host Controller
ohci_hcd :00:03.1: new USB bus registered, assigned bus number 3
ohci_hcd :00:03.1: irq 21, io mem 0xe110
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 3 ports detected
ohci_hcd :00:03.2: PCI INT C - GSI 22 (level, low) - IRQ 22
ohci_hcd :00:03.2: OHCI Host Controller
ohci_hcd :00:03.2: new USB bus registered, assigned bus number 4
ohci_hcd :00:03.2: irq 22, io mem 0xe1101000
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
usbcore: registered new interface driver hiddev
usbcore: registered new interface driver usbhid
usbhid: v2.6:USB HID core driver
sl811: driver sl811-hcd, 19 May 2005
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised:
dm-de...@redhat.com
md: raid10 personality registered for level 10
JFS: nTxBlock = 1733, nTxLock = 13867
RPC

Re: [gentoo-user] Re: Externel drive should be /dev/sda1, but /dev/sda1 does not exist [SOLVED somehow]

2010-01-02 Thread Michael Sullivan
: Macintosh mouse button emulation as /devices/virtual/input/input0
 Uniform Multi-Platform E-IDE driver
 pci :00:02.5: PCI INT A - GSI 16 (level, low) - IRQ 16
 sis5513 :00:02.5: SiS 962/963 MuTIOL IDE UDMA133 controller
 sis5513 :00:02.5: IDE controller (0x1039:0x5513 rev 0x01)
 sis5513 :00:02.5: not 100% native mode: will probe irqs later
 ide0: BM-DMA at 0x4000-0x4007
 ide1: BM-DMA at 0x4008-0x400f
 Probing IDE interface ide0...
 hda: LITE-ON COMBO SOHC-5236V, ATAPI CD/DVD-ROM drive
 hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
 hda: UDMA/33 mode selected
 Probing IDE interface ide1...
 hdc: WDC WD800BB-00JHC0, ATA DISK drive
 hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4
 hdc: host side 80-wire cable detection failed, limiting max speed to
 UDMA33
 hdc: UDMA/33 mode selected
 ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
 ide1 at 0x170-0x177,0x376 on irq 15
 ide_generic: please use probe_mask=0x3f module parameter for probing
 all legacy ISA IDE ports
 ide-gd driver 1.18
 hdc: max request size: 128KiB
 hdc: 156301488 sectors (80026 MB) w/2048KiB Cache, CHS=65535/16/63
 hdc: cache flushes supported
  hdc: hdc1 hdc3 hdc4  hdc5 hdc6 
 ide-cd driver 5.00
 ide-cd: hda: ATAPI 52X DVD-ROM CD-R/RW drive, 1536kB Cache
 Uniform CD-ROM driver Revision: 3.20
 Loading iSCSI transport class v2.0-870.
 iscsi: registered transport (tcp)
 PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
 serio: i8042 KBD port at 0x60,0x64 irq 1
 serio: i8042 AUX port at 0x60,0x64 irq 12
 mice: PS/2 mouse device common for all mice
 md: raid0 personality registered for level 0
 md: raid1 personality registered for level 1
 md: raid6 personality registered for level 6
 md: raid5 personality registered for level 5
 md: raid4 personality registered for level 4
 cpuidle: using governor ladder
 TCP cubic registered
 NET: Registered protocol family 17
 Using IPI No-Shortcut mode
 registered taskstats version 1
 Freeing unused kernel memory: 428k freed
 input: AT Translated Set 2 keyboard
 as /devices/platform/i8042/serio0/input/input1
 input: ImPS/2 Generic Wheel Mouse
 as /devices/platform/i8042/serio1/input/input2
 NCR53c406a: no available ports found
 scsi: fdomain Detection failed (no card)
 GDT-HA: Storage RAID Controller Driver. Version: 3.05
 qlogicfas: no cards were found, please specify I/O address and IRQ using
 iobase= and irq= optionsFailed initialization of WD-7000 SCSI card!
 NCR53c406a: no available ports found
 imm: Version 2.05 (for Linux 2.4.0)
 sym53c416.c: Version 1.0.0-ac
 Fusion MPT base driver 3.04.10
 Copyright (c) 1999-2008 LSI Corporation
 Fusion MPT SPI Host driver 3.04.10
 Fusion MPT FC Host driver 3.04.10
 Fusion MPT SAS Host driver 3.04.10
 3ware Storage Controller device driver for Linux v1.26.02.002.
 3ware 9000 Storage Controller device driver for Linux v2.26.02.012.
 Compaq SMART2 Driver (v 2.6.0)
 HP CISS Driver (v 3.6.20)
 Adaptec aacraid driver 1.1-5[2461]-ms
 megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
 megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
 megasas: 00.00.04.01 Thu July 24 11:41:51 PST 2008
 QLogic Fibre Channel HBA Driver: 8.03.01-k4
 Emulex LightPulse Fibre Channel SCSI driver 8.3.3
 Copyright(c) 2004-2009 Emulex.  All rights reserved.
 aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
 usbcore: registered new interface driver usbfs
 usbcore: registered new interface driver hub
 usbcore: registered new device driver usb
 ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
 ehci_hcd :00:03.3: PCI INT D - GSI 23 (level, low) - IRQ 23
 ehci_hcd :00:03.3: EHCI Host Controller
 ehci_hcd :00:03.3: new USB bus registered, assigned bus number 1
 ehci_hcd :00:03.3: cache line size of 64 is not supported
 ehci_hcd :00:03.3: irq 23, io mem 0xe1102000
 ehci_hcd :00:03.3: USB 2.0 started, EHCI 1.00
 usb usb1: configuration #1 chosen from 1 choice
 hub 1-0:1.0: USB hub found
 hub 1-0:1.0: 8 ports detected
 Initializing USB Mass Storage driver...
 usbcore: registered new interface driver usb-storage
 USB Mass Storage support registered.
 uhci_hcd: USB Universal Host Controller Interface driver
 ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
 ohci_hcd :00:03.0: PCI INT A - GSI 20 (level, low) - IRQ 20
 ohci_hcd :00:03.0: OHCI Host Controller
 ohci_hcd :00:03.0: new USB bus registered, assigned bus number 2
 ohci_hcd :00:03.0: irq 20, io mem 0xe1104000
 usb usb2: configuration #1 chosen from 1 choice
 hub 2-0:1.0: USB hub found
 hub 2-0:1.0: 3 ports detected
 ohci_hcd :00:03.1: PCI INT B - GSI 21 (level, low) - IRQ 21
 ohci_hcd :00:03.1: OHCI Host Controller
 ohci_hcd :00:03.1: new USB bus registered, assigned bus number 3
 ohci_hcd :00:03.1: irq 21, io mem 0xe110
 usb usb3: configuration #1 chosen from 1 choice
 hub 3-0:1.0: USB hub found
 hub 3-0:1.0: 3 ports detected
 ohci_hcd :00:03.2: PCI INT C - GSI 22 (level, low

[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

[gentoo-user] Trendnet TEW-424UB not working

2008-09-03 Thread Simon
 (c) Adam Belay
pnp: PnP ACPI: disabled
SCSI subsystem initialized
libata version 3.00 loaded.
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Using IRQ router VIA [1106/0596] at :00:07.0
PCI: Bridge: :00:01.0
  IO window: c000-cfff
  MEM window: e800-e9ff
  PREFETCH window: e000-e7ff
PCI: Setting latency timer of device :00:01.0 to 64
NET: Registered protocol family 2
Time: tsc clocksource has been installed.
IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
TCP established hash table entries: 16384 (order: 5, 131072 bytes)
TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
TCP: Hash tables configured (established 16384 bind 16384)
TCP reno registered
Machine check exception polling timer started.
cpufreq: No nForce2 chipset.
IA-32 Microcode Update Driver: v1.14a [EMAIL PROTECTED]
Total HugeTLB memory allocated, 0
Installing knfsd (copyright (C) 1996 [EMAIL PROTECTED]).
fuse init (API version 7.9)
async_tx: api initialized (sync-only)
io scheduler noop registered
io scheduler anticipatory registered (default)
io scheduler deadline registered
io scheduler cfq registered
PCI: VIA PCI bridge detected. Disabling DAC.
Activating ISA DMA hang workarounds.
Boot video device is :01:00.0
Real Time Clock Driver v1.12ac
Linux agpgart interface v0.102
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
loop: module loaded
Intel(R) PRO/1000 Network Driver - version 7.3.20-k2
Copyright (c) 1999-2006 Intel Corporation.
ne2k-pci.c:v1.03 9/22/2003 D. Becker/P. Gortmaker
PCI: setting IRQ 5 as level-triggered
PCI: Found IRQ 5 for device :00:0b.0
eth0: RealTek RTL-8029 found at 0xe000, IRQ 5, 00:00:b4:a4:c5:e7.
PCI: setting IRQ 11 as level-triggered
PCI: Found IRQ 11 for device :00:0c.0
eth1: RealTek RTL-8029 found at 0xe400, IRQ 11, 00:00:b4:c6:0b:af.
e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
e100: Copyright(c) 1999-2006 Intel Corporation
usbcore: registered new interface driver zd1201
console [netcon0] enabled
netconsole: network logging started
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
Probing IDE interface ide0...
hdb: WDC WD200BB-53AUA1, ATA DISK drive
hda: QUANTUM FIREBALLP LM30, ATA DISK drive
Probing IDE interface ide1...
hdd: CD-ROM 50X, ATAPI CD/DVD-ROM drive
hdc: HL-DT-ST DVDRAM GSA-4120B, ATAPI CD/DVD-ROM drive
Probing IDE interface ide2...
Probing IDE interface ide3...
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 128KiB
hda: 58633344 sectors (30020 MB) w/1900KiB Cache, CHS=58168/16/63
hda: cache flushes not supported
 hda: hda1 hda2 hda3 hda4  hda5 hda6 
hdb: max request size: 128KiB
hdb: 39102336 sectors (20020 MB) w/2048KiB Cache, CHS=38792/16/63
hdb: cache flushes not supported
 hdb: hdb1 hdb2
hdd: ATAPI 50X CD-ROM drive, 128kB Cache
Uniform CD-ROM driver Revision: 3.20
3ware Storage Controller device driver for Linux v1.26.02.002.
Driver 'sd' needs updating - please use bus_type methods
Driver 'sr' needs updating - please use bus_type methods
Fusion MPT base driver 3.04.06
Copyright (c) 1999-2007 LSI Corporation
Fusion MPT SPI Host driver 3.04.06
ieee1394: raw1394: /dev/raw1394 device initialized
usbmon: debugfs is not available
ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver
USB Universal Host Controller Interface driver v3.0
uhci_hcd :00:07.2: UHCI Host Controller
uhci_hcd :00:07.2: new USB bus registered, assigned bus number 1
uhci_hcd :00:07.2: irq 10, io base 0xd400
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
usb 1-1: new low speed USB device using uhci_hcd and address 2
usb 1-1: configuration #1 chosen from 1 choice
usbcore: registered new interface driver usblp
Initializing USB Mass Storage driver...
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
usbcore: registered new interface driver libusual
PNP: No PS/2 controller found. Probing ports directly.
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard as /class/input/input0
input: PC Speaker as /class/input/input1
md: raid0 personality registered for level 0
md: raid1 personality registered for level 1
raid6: int32x1 97 MB/s
raid6: int32x2 94 MB/s
raid6: int32x4110 MB/s
raid6: int32x8104 MB/s
raid6: mmxx1  258 MB/s
raid6: mmxx2  298 MB/s
raid6: sse1x1 225 MB/s
raid6: sse1x2 305 MB/s
raid6: using algorithm sse1x2 (305 MB/s)
md: raid6 personality registered

[gentoo-user] KVM recognition changes in recent kernels

2008-12-31 Thread Harry Putnam
: 512KiB
hdb: 586072368 sectors (300069 MB) w/8192KiB Cache, CHS=36481/255/63
hdb: cache flushes supported
 hdb: hdb1  hdb5 hdb6  hdb2 hdb3
hdd: max request size: 512KiB
hdd: 312581808 sectors (160041 MB) w/8192KiB Cache, CHS=19457/255/63
hdd: cache flushes supported
 hdd: hdd1 hdd2  hdd5 hdd6 hdd7 
ide-cd driver 5.00
ide-cd: hdc: ATAPI 52X CD-ROM drive, 96kB Cache
Uniform CD-ROM driver Revision: 3.20
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
Driver 'sd' needs updating - please use bus_type methods
Driver 'sr' needs updating - please use bus_type methods
PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot 
with i8042.nopnp
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: PS/2 mouse device common for all mice
cpuidle: using governor ladder
TCP cubic registered
NET: Registered protocol family 17
Using IPI Shortcut mode
input: AT Translated Set 2 keyboard as 
/devices/platform/i8042/serio0/input/input0
ReiserFS: hda5: found reiserfs format 3.6 with standard journal
ReiserFS: hda5: using ordered data mode
ReiserFS: hda5: journal params: device hda5, size 8192, journal first block 18, 
max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda5: checking transaction log (hda5)
ReiserFS: hda5: Using r5 hash to sort names
VFS: Mounted root (reiserfs filesystem) readonly.
Freeing unused kernel memory: 240k freed
input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Linux agpgart interface v0.103
ACPI: Power Button (FF) [PWRF]
input: Power Button (CM) as 
/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
agpgart-intel :00:00.0: Intel 865 Chipset
agpgart-intel :00:00.0: AGP aperture is 256M @ 0xe000
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
uhci_hcd: USB Universal Host Controller Interface driver
ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
PCI: setting IRQ 11 as level-triggered
uhci_hcd :00:1d.0: PCI INT A - Link[LNKA] - GSI 11 (level, low) - IRQ 11
uhci_hcd :00:1d.0: setting latency timer to 64
uhci_hcd :00:1d.0: UHCI Host Controller
uhci_hcd :00:1d.0: new USB bus registered, assigned bus number 1
uhci_hcd :00:1d.0: irq 11, io base 0xe000
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 3
PCI: setting IRQ 3 as level-triggered
uhci_hcd :00:1d.1: PCI INT B - Link[LNKD] - GSI 3 (level, low) - IRQ 3
uhci_hcd :00:1d.1: setting latency timer to 64
uhci_hcd :00:1d.1: UHCI Host Controller
uhci_hcd :00:1d.1: new USB bus registered, assigned bus number 2
uhci_hcd :00:1d.1: irq 3, io base 0xe400
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
uhci_hcd :00:1d.2: PCI INT C - Link[LNKC] - GSI 10 (level, low) - IRQ 10
uhci_hcd :00:1d.2: setting latency timer to 64
uhci_hcd :00:1d.2: UHCI Host Controller
uhci_hcd :00:1d.2: new USB bus registered, assigned bus number 3
uhci_hcd :00:1d.2: irq 10, io base 0xe800
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
uhci_hcd :00:1d.3: PCI INT A - Link[LNKA] - GSI 11 (level, low) - IRQ 11
uhci_hcd :00:1d.3: setting latency timer to 64
uhci_hcd :00:1d.3: UHCI Host Controller
uhci_hcd :00:1d.3: new USB bus registered, assigned bus number 4
uhci_hcd :00:1d.3: irq 11, io base 0xec00
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not 
after
ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 12
PCI: setting IRQ 12 as level-triggered
ehci_hcd :00:1d.7: PCI INT D - Link[LNKH] - GSI 12 (level, low) - IRQ 12
ehci_hcd :00:1d.7: setting latency timer to 64
ehci_hcd :00:1d.7: EHCI Host Controller
ehci_hcd :00:1d.7: new USB bus registered, assigned bus number 5
ehci_hcd :00:1d.7: debug port 1
ehci_hcd :00:1d.7: cache line size of 128 is not supported
ehci_hcd :00:1d.7: irq 12, io mem 0xfebffc00
ACPI: Power Button (CM) [PWRB]
ehci_hcd :00:1d.7: USB 2.0 started, EHCI 1.00
usb usb5: configuration #1 chosen from 1 choice
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 8 ports detected
r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
r8169 :02:03.0: PCI INT A - Link[LNKD] - GSI 3 (level, low) - IRQ 3
r8169 :02:03.0: no PCI Express capability
eth0: RTL8110s at 0xf862ef00, 00:40:f4:b5:29:41, XID 0400 IRQ 3
r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 10
r8169 :02:06.0: PCI INT A - Link[LNKE] - GSI 10 (level, low) - IRQ 10
r8169 :02:06.0: no PCI Express capability

[gentoo-user] Recurring reiserfs error

2006-10-06 Thread reader
, last bus=2
Setting up standard PCI resources
ACPI: Subsystem revision 20060127
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (:00)
PCI: Probing PCI hardware (bus 00)
PCI quirk: region 0800-087f claimed by ICH4 ACPI/GPIO/TCO
PCI quirk: region 0400-043f claimed by ICH4 GPIO
PCI: Ignoring BAR0-3 of IDE controller :00:1f.1
Boot video device is :01:00.0
PCI: Transparent bridge - :00:1e.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.ICHB._PRT]
ACPI: Power Resource [URP1] (off)
ACPI: Power Resource [URP2] (off)
ACPI: Power Resource [FDDP] (off)
ACPI: Power Resource [LPTP] (off)
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 12 14 15)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 13 devices
SCSI subsystem initialized
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try pci=routeirq.  If it helps, post a report
PCI: Bridge: :00:01.0
  IO window: disabled.
  MEM window: fc90-fe9f
  PREFETCH window: bff0-dfef
PCI: Bridge: :00:1e.0
  IO window: c000-cfff
  MEM window: fea0-feaf
  PREFETCH window: 8800-880f
PCI: Setting latency timer of device :00:1e.0 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
TCP: Hash tables configured (established 262144 bind 65536)
TCP reno registered
audit: initializing netlink socket (disabled)
audit(1160144035.684:1): initialized
highmem bounce pool size: 64 pages
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
squashfs: version 3.0 (2006/03/15) Phillip Lougher
SGI XFS with ACLs, security attributes, realtime, large block numbers, no debug 
enabled
SGI XFS Quota Management subsystem
Initializing Cryptographic API
io scheduler noop registered
io scheduler deadline registered (default)
initialized device: /dev/synth, node ( MAJOR 10, MINOR 25 )
vesafb: framebuffer at 0xc000, mapped to 0xf888, using 5120k, total 
262144k
vesafb: mode is 1280x1024x16, linelength=2560, pages=1
vesafb: protected mode interface info at c000:e6e0
vesafb: pmi: set display start = c00ce716, set palette = c00ce780
vesafb: pmi: ports = 3b4 3b5 3ba 3c0 3c1 3c4 3c5 3c6 3c7 3c8 3c9 3cc 3ce 3cf 
3d0 3d1 3d2 3d3 3d4 3d5 3da 
vesafb: scrolling: ywrap using protected mode interface, yres_virtual=2048
vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
Console: switching to colour frame buffer device 160x64
fb0: VESA VGA frame buffer device
isapnp: Scanning for PnP cards...
isapnp: No Plug  Play device found
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS2 at I/O 0x3e8 (irq = 4) is a 16550A
00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:0b: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: PS/2 mouse device common for all mice
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
loop: loaded (max 8 devices)
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ICH5: IDE controller at PCI slot :00:1f.1
PCI: Enabling device :00:1f.1 (0005 - 0007)
ACPI: PCI Interrupt :00:1f.1[A] - GSI 18 (level, low) - IRQ 169
ICH5: chipset revision 2
ICH5: not 100% native mode: will probe irqs later
ide0: BM-DMA at 0xfc00-0xfc07, BIOS settings: hda:DMA, hdb:DMA
ide1: BM-DMA at 0xfc08-0xfc0f, BIOS settings: hdc:DMA, hdd:DMA
Probing IDE interface ide0...
input: AT Translated Set 2 keyboard as /class/input/input0
hda: ST3160021A, ATA DISK drive
input: ImExPS/2 Generic Explorer Mouse as /class/input/input1
hdb: WDC WD3000JB-00KFA0, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: LITE-ON CD-ROM LTN-5291S, ATAPI CD/DVD-ROM drive
hdd: WDC WD1600JB-00EVA0, ATA DISK drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 512KiB
hda: 312581808 sectors (160041 MB) w/2048KiB Cache, CHS=19457/255/63, UDMA(100)
hda: cache flushes supported
 hda: hda1 hda2 hda3  hda5 hda6 hda7 hda8 hda9 hda10 hda11 
hdb: max request size: 512KiB
hdb: 586072368 sectors

[gentoo-user] Gnome 3.2.2 Block

2011-12-01 Thread Jason Weisberger
From a fresh install, upgrading from Gnome 2.26, I'm trying to install
gnome 3.2.2, but getting nowhere fast.  I stopped using Gentoo back before
slots became common, so maybe I'm missing something as far as that goes.

Thanks in advance guys/gals!

Jason Weisberger

jbdubbspc jbdubbs # emerge -pv =gnome-base/gnome-3.2.1

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

Calculating dependencies... done!
[ebuild  N ] dev-libs/libnl-1.1-r2  USE=-doc 283 kB
[ebuild  N~] media-gfx/shared-color-profiles-0.1.4  18,209 kB
[ebuild  N ] net-misc/mobile-broadband-provider-info-20100510  64 kB
[ebuild  N ] net-im/telepathy-connection-managers-1  USE=-icq -irc
-jabber -msn -sip -yahoo -zeroconf 0 kB
[ebuild  N ] app-arch/cabextract-1.4  USE=-extra-tools 218 kB
[ebuild  N ] x11-themes/gnome-icon-theme-symbolic-3.0.0  203 kB
[ebuild  N~] net-libs/liboauth-0.9.5  USE=nss -bindist -curl -doc 414
kB
[ebuild  N~] dev-util/itstool-1.1.1  77 kB
[ebuild  N ] net-im/telepathy-mission-control-5.8.1
 USE=gnome-keyring 1,108 kB
[ebuild  N ] app-text/docbook-sgml-dtd-4.1-r3  56 kB
[ebuild  N ] app-text/docbook-sgml-dtd-3.0-r3  43 kB
[ebuild  N ] app-text/docbook-dsssl-stylesheets-1.79  272 kB
[ebuild U ~] x11-themes/gnome-backgrounds-3.2.0 [2.32.0] 8,737 kB
[ebuild  N ] x11-themes/gnome-icon-theme-extras-3.0.0  2,069 kB
[ebuild  N~] dev-lang/spidermonkey-1.8.5-r1  USE=-debug -static-libs
-test 6,021 kB
[ebuild U ~] gnome-extra/gconf-editor-3.0.0 [2.32.0] 1,444 kB
[ebuild  N ] app-admin/apg-2.3.0b-r5  USE=cracklib 108 kB
[ebuild U ~] dev-python/pycairo-1.10.0-r2 [1.8.10] USE=svg -doc
-examples -test 634 kB
[ebuild  N ] net-wireless/wireless-tools-29  USE=nls -multicall 288 kB
[ebuild  N~] net-wireless/wpa_supplicant-0.7.3-r5  USE=dbus readline
ssl -debug -eap-sim -fasteap -gnutls -madwifi (-ps3) -qt4 -wimax -wps
1,600 kB
[ebuild  N~] media-fonts/cantarell-0.0.7  USE=X 356 kB
[ebuild  NS   ~] gnome-extra/gtkhtml-4.2.2 [3.32.2] 1,043 kB
[ebuild  N ] sys-apps/lsb-release-1.4  11 kB
[ebuild  N ] dev-scheme/guile-1.8.8-r1  USE=deprecated nls regex
threads -debug -debug-freelist -debug-malloc -discouraged -emacs
-networking 3,864 kB
[ebuild  N ] media-gfx/exiv2-0.21.1-r1  USE=nls zlib -contrib -doc
-examples -xmp LINGUAS=-de -es -fi -fr -pl -ru -sk 2,935 kB
[ebuild  N ] media-libs/giflib-4.1.6-r2  USE=X -rle -static-libs 495
kB
[ebuild  N ] app-text/recode-3.6_p17-r2  USE=nls -static-libs 2,021 kB
[ebuild  N~] media-video/gnome-video-effects-0.3.0  175 kB
[ebuild  N ] x11-apps/xhost-1.0.4  USE=ipv6 113 kB
[ebuild U ~] x11-themes/gnome-icon-theme-3.2.1.2 [3.0.0] USE=branding
13,682 kB
[ebuild  N~] x11-themes/gnome-icon-theme-symbolic-3.2.1  144 kB
[ebuild U ~] gnome-extra/gnome-user-docs-3.2.1 [2.32.0] USE=-test
2,916 kB
[ebuild  N ] app-text/docbook-sgml-dtd-3.1-r3  55 kB
[ebuild  N ] app-text/docbook-sgml-dtd-4.0-r3  55 kB
[ebuild  N ] app-text/docbook-xml-simple-dtd-4.1.2.4-r2  35 kB
[ebuild  N ] app-text/docbook-xml-simple-dtd-1.0-r1  31 kB
[ebuild  N ] dev-perl/SGMLSpm-1.03-r5  92 kB
[ebuild  N ] app-text/opensp-1.5.2-r2  USE=nls -doc -static-libs
-test 1,486 kB
[ebuild  N ] sys-libs/libcap-ng-0.6.5  USE=python 354 kB
[ebuild  N~] app-crypt/p11-kit-0.9  USE=-debug 515 kB
[ebuild  N ] www-client/lynx-2.8.7_p1  USE=bzip2 ipv6 nls ssl unicode
-cjk -gnutls 2,376 kB
[ebuild  N ] media-fonts/corefonts-1-r4  USE=X 3,843 kB
[ebuild U ~] dev-libs/glib-2.30.2 [2.28.8] USE=fam static-libs -debug
-doc (-selinux) -systemtap% -test -utils% -xattr (-introspection%) 5,683 kB
[ebuild  NS] media-libs/lcms-2.2-r1 [1.19] USE=jpeg tiff zlib -doc
-static-libs -test 4,096 kB
[ebuild  N ] net-dialup/ppp-2.4.5-r1  USE=gtk ipv6 pam -activefilter
-atm -dhcp -eap-tls -radius 709 kB
[ebuild  N~] gnome-extra/yelp-xsl-3.2.1  544 kB
[ebuild  N ] app-text/openjade-1.3.2-r3  USE=-static-libs 874 kB
[ebuild  N ] media-libs/libgphoto2-2.4.11-r1  USE=exif jpeg nls -doc
-examples -gd -zeroconf CAMERAS=ptp2 -adc65 -agfa_cl20 -aox -ax203
-barbie -canon -casio_qv -clicksmart310 -digigr8 -digita -dimagev
-dimera3500 -directory -enigma13 -fuji -gsmart300 -hp215 -iclick -jamcam
-jd11 -jl2005a -jl2005c -kodak_dc120 -kodak_dc210 -kodak_dc240
-kodak_dc3200 -kodak_ez200 -konica -konica_qm150 -largan -lg_gsm -mars
-mustek -panasonic_coolshot -panasonic_dc1000 -panasonic_dc1580
-panasonic_l859 -pccam300 -pccam600 -polaroid_pdc320 -polaroid_pdc640
-polaroid_pdc700 -ricoh -ricoh_g3 -samsung -sierra -sipix_blink
-sipix_blink2 -sipix_web2 -smal -sonix -sony_dscf1 -sony_dscf55
-soundvision -spca50x -sq905 -st2205 -stv0674 -stv0680 -sx330z -template
-topfield -toshiba_pdrm11 4,294 kB
[ebuild  N ] app-i18n/enca-1.13  USE=recode -doc 520 kB
[ebuild  N ] media-plugins/gst-plugins-jpeg-0.10.30  0 kB
[ebuild  N ] x11-apps/mesa-progs-8.0.1  9,766 kB
[ebuild  NS   ~] gnome-base/gnome-desktop

Re: [gentoo-user] pcre build failure

2020-10-05 Thread John Covici
ib (-selinux) -skey" 0 KiB
> [ebuild U  ] sys-libs/pam-1.4.0_p20200829::gentoo 
> [1.3.1_p20200128-r1::gentoo] USE="berkdb filecaps* pie (split-usr) -audit 
> -debug -nis (-selinux) (-cracklib%*) (-static-libs%)" ABI_X86="(64) -32 
> (-x32)" 0 KiB
> [ebuild  NS] sys-libs/db-6.0.35-r2:6.0::gentoo [5.3.28-r2:5.3::gentoo] 
> USE="-cxx -doc -examples -java -tcl -test" ABI_X86="(64) -32 (-x32)" 0 KiB
> [ebuild  N ] sys-auth/passwdqc-1.4.0-r1::gentoo  0 KiB
> [ebuild U  ] sys-apps/iproute2-5.8.0::gentoo [5.7.0::gentoo] USE="berkdb 
> iptables ipv6 -atm -caps -elf -minimal (-selinux)" 0 KiB
> [ebuild U  ] sys-apps/kbd-2.3.0-r1::gentoo [2.2.0-r2::gentoo] USE="nls 
> pam -test" 0 KiB
> [ebuild  N ] dev-python/cython-0.29.21-r1::gentoo  USE="-doc -emacs 
> -test" PYTHON_TARGETS="python3_7 -pypy3 -python3_6 -python3_8 -python3_9" 0 
> KiB
> [ebuild  N ] dev-python/lxml-4.5.2-r1::gentoo  USE="threads -doc 
> -examples -test" PYTHON_TARGETS="python3_7 -pypy3 -python3_6 -python3_8 
> -python3_9" 0 KiB
> [ebuild  N ] app-arch/libarchive-3.4.3:0/13::gentoo  USE="acl bzip2 
> e2fsprogs iconv lzma threads xattr zlib -blake2 -expat -libressl -lz4 -lzo 
> -nettle -static-libs -zstd" ABI_X86="(64) -32 (-x32)" 0 KiB
> [ebuild U  ] dev-libs/openssl-1.1.1h:0/1.1::gentoo [1.1.1g:0/1.1::gentoo] 
> USE="asm zlib -bindist* -rfc3779 -sctp -sslv3 -static-libs -test 
> -tls-heartbeat -vanilla" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="(sse2)" 0 
> KiB
> [ebuild  N ] app-crypt/rhash-1.4.0::gentoo  USE="nls ssl -debug -libressl 
> -static-libs" ABI_X86="(64) -32 (-x32)" 0 KiB
> [ebuild  NS] dev-lang/python-3.9.0_rc2:3.9::gentoo 
> [2.7.18-r2:2.7::gentoo, 3.7.8-r2:3.7/3.7m::gentoo, 3.8.5:3.8::gentoo] 
> USE="gdbm ipv6 ncurses readline ssl xml -bluetooth -build -examples -hardened 
> -libressl -sqlite -test -tk -wininst" 0 KiB
> [ebuild U  ] sys-libs/glibc-2.32-r2:2.2::gentoo [2.31-r6:2.2::gentoo] 
> USE="(crypt) multiarch (multilib) ssp (static-libs) -audit -caps (-cet) 
> -compile-locales -custom-cflags -doc -gd -headers-only -nscd -profile 
> (-selinux) -static-pie -suid -systemtap -test (-vanilla)" 0 KiB
> [ebuild U  ] sys-libs/gdbm-1.18.1-r1:0/6::gentoo [1.18.1:0/6::gentoo] 
> USE="berkdb nls readline -static-libs" ABI_X86="(64) -32 (-x32)" 0 KiB
> [ebuild U  ] dev-libs/expat-2.2.10::gentoo [2.2.8::gentoo] 
> USE="(split-usr) unicode -examples -static-libs" ABI_X86="(64) -32 (-x32)" 0 
> KiB
> [ebuild U  ] dev-lang/perl-5.30.3-r1:0/5.30::gentoo 
> [5.30.3:0/5.30::gentoo] USE="berkdb gdbm -debug -doc -ithreads" 0 KiB
> [ebuild U  ] sys-devel/automake-1.16.2:1.16::gentoo 
> [1.16.1-r1:1.16::gentoo] USE="-test%" 0 KiB
> [ebuild U  ] dev-libs/libgpg-error-1.39::gentoo [1.38::gentoo] USE="nls 
> -common-lisp" ABI_X86="(64) -32 (-x32)" 0 KiB
> [ebuild U  ] dev-util/ninja-1.10.1::gentoo [1.10.0::gentoo] USE="-doc 
> -emacs -test -vim-syntax" 0 KiB
> [ebuild U  ] app-text/opensp-1.5.2-r6::gentoo [1.5.2-r3::gentoo] USE="nls 
> -doc -static-libs -test" 0 KiB
> [ebuild U  ] dev-perl/Unicode-LineBreak-2019.1.0::gentoo 
> [2017.4.0-r1::gentoo] 0 KiB
> [ebuild U  ] app-text/po4a-0.61::gentoo [0.57::gentoo] USE="-test" 0 KiB
> [ebuild  N ] dev-libs/jsoncpp-1.9.4:0/24::gentoo  USE="-doc -test" 0 KiB
> [ebuild  N ] dev-libs/libuv-1.40.0:0/1::gentoo  USE="-static-libs" 
> ABI_X86="(64) -32 (-x32)" 0 KiB
> [ebuild  N ] dev-util/cmake-3.18.3::gentoo  USE="ncurses -doc -emacs -qt5 
> -test" 0 KiB
> [ebuild  N ] app-arch/lz4-1.9.2:0/r132::gentoo  USE="-static-libs" 
> ABI_X86="(64) -32 (-x32)" 0 KiB
> [ebuild U  ] dev-libs/libksba-1.4.0::gentoo [1.3.5-r1::gentoo] 
> USE="-static-libs" 0 KiB
> [ebuild U  ] app-crypt/gnupg-2.2.23::gentoo [2.2.20-r1::gentoo] 
> USE="bzip2 nls readline smartcard ssl -doc -ldap (-selinux) -tofu -tools -usb 
> -user-socket -wks-server" 0 KiB
> [ebuild U  ] app-crypt/libb2-0.98.1-r3::gentoo [0.98.1-r2::gentoo] 
> USE="openmp -native-cflags -static-libs" ABI_X86="(64) -32 (-x32)" 0 KiB
> [ebuild U  ] app-crypt/gpgme-1.14.0:1/11::gentoo [1.13.0-r1:1/11::gentoo] 
> USE="cxx -common-lisp -python -qt5 -static-libs" PYTHON_TARGETS="python3_7 
> -python3_6 -python3_8" 0 KiB
> [ebuild U  ] net-misc/iputils-20200821::gentoo [20190709-r1::gentoo] 
> USE="arping filecaps* ipv6 nls ssl -caps -clockdiff -

[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

Re: [gentoo-user] my gentoo cannot find my HD

2009-09-11 Thread Xi Shen
ide_generic: please use probe_mask=0x3f module parameter for probing all 
legacy ISA IDE ports
ide-gd driver 1.18
PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
Linux video capture interface: v2.00
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-de...@redhat.com
device-mapper: multipath: version 1.0.5 loaded
device-mapper: multipath round-robin: version 1.0.0 loaded
cpuidle: using governor ladder
cpuidle: using governor menu
TCP cubic registered
NET: Registered protocol family 17
registered taskstats version 1
Freeing unused kernel memory: 384k freed
input: AT Translated Set 2 keyboard as /class/input/input0
ata_piix :00:1f.1: version 2.13
ata_piix :00:1f.1: PCI INT C - GSI 16 (level, low) - IRQ 16
ata_piix :00:1f.1: setting latency timer to 64
scsi0 : ata_piix
scsi1 : ata_piix
ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1830 irq 14
ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1838 irq 15
ata1.00: ATAPI: MATSHITADVD-RAM UJ-862, RB01, max UDMA/33
ata1.00: configured for UDMA/33
scsi 0:0:0:0: CD-ROMMATSHITA DVD-RAM UJ-862   RB01 PQ: 0 ANSI: 5
ata2: port disabled. ignoring.
Driver 'sd' needs updating - please use bus_type methods
scsi 0:0:0:0: Attached scsi generic sg0 type 5
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd :00:1a.7: power state changed by ACPI to D0
ehci_hcd :00:1a.7: PCI INT C - GSI 22 (level, low) - IRQ 22
ehci_hcd :00:1a.7: setting latency timer to 64
ehci_hcd :00:1a.7: EHCI Host Controller
ehci_hcd :00:1a.7: new USB bus registered, assigned bus number 1
ehci_hcd :00:1a.7: cache line size of 32 is not supported
ehci_hcd :00:1a.7: irq 22, io mem 0xfe226c00
ehci_hcd :00:1a.7: USB 2.0 started, EHCI 1.00
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 4 ports detected
ehci_hcd :00:1d.7: power state changed by ACPI to D0
ehci_hcd :00:1d.7: PCI INT D - GSI 19 (level, low) - IRQ 19
ehci_hcd :00:1d.7: setting latency timer to 64
ehci_hcd :00:1d.7: EHCI Host Controller
ehci_hcd :00:1d.7: new USB bus registered, assigned bus number 2
ehci_hcd :00:1d.7: debug port 1
ehci_hcd :00:1d.7: cache line size of 32 is not supported
ehci_hcd :00:1d.7: irq 19, io mem 0xfe227000
ehci_hcd :00:1d.7: USB 2.0 started, EHCI 1.00
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
Initializing USB Mass Storage driver...
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
uhci_hcd: USB Universal Host Controller Interface driver
uhci_hcd :00:1a.0: PCI INT A - GSI 20 (level, low) - IRQ 20
uhci_hcd :00:1a.0: setting latency timer to 64
uhci_hcd :00:1a.0: UHCI Host Controller
uhci_hcd :00:1a.0: new USB bus registered, assigned bus number 3
uhci_hcd :00:1a.0: irq 20, io base 0x1860
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
uhci_hcd :00:1a.1: power state changed by ACPI to D0
uhci_hcd :00:1a.1: PCI INT B - GSI 21 (level, low) - IRQ 21
uhci_hcd :00:1a.1: setting latency timer to 64
uhci_hcd :00:1a.1: UHCI Host Controller
uhci_hcd :00:1a.1: new USB bus registered, assigned bus number 4
uhci_hcd :00:1a.1: irq 21, io base 0x1880
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
uhci_hcd :00:1d.0: power state changed by ACPI to D0
uhci_hcd :00:1d.0: PCI INT A - GSI 16 (level, low) - IRQ 16
uhci_hcd :00:1d.0: setting latency timer to 64
uhci_hcd :00:1d.0: UHCI Host Controller
uhci_hcd :00:1d.0: new USB bus registered, assigned bus number 5
uhci_hcd :00:1d.0: irq 16, io base 0x18a0
usb usb5: configuration #1 chosen from 1 choice
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
uhci_hcd :00:1d.1: PCI INT B - GSI 17 (level, low) - IRQ 17
uhci_hcd :00:1d.1: setting latency timer to 64
uhci_hcd :00:1d.1: UHCI Host Controller
uhci_hcd :00:1d.1: new USB bus registered, assigned bus number 6
uhci_hcd :00:1d.1: irq 17, io base 0x18c0
usb usb6: configuration #1 chosen from 1 choice
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 2 ports detected
uhci_hcd :00:1d.2: power state changed by ACPI to D0
uhci_hcd :00:1d.2: PCI INT C - GSI 18 (level, low) - IRQ 18
uhci_hcd :00:1d.2: setting latency timer to 64
uhci_hcd :00:1d.2: UHCI Host Controller
uhci_hcd :00:1d.2: new USB bus registered, assigned bus number 7
uhci_hcd :00:1d.2: irq 18, io base 0x18e0
usb usb7: configuration #1 chosen from 1 choice
hub 7-0:1.0: USB hub

Re: [gentoo-user] sys-boot/plymouth could not work

2012-04-04 Thread 张春江
 0xf510-0xf51f]
pci_bus :04: resource 2 [mem 0x8030-0x804f 64bit pref]
pci_bus :05: resource 0 [io  0x3000-0x3fff]
pci_bus :05: resource 1 [mem 0xf000-0xf3ff]
pci_bus :05: resource 2 [mem 0xf600-0xf7ff 64bit pref]
pci_bus :07: resource 0 [io  0x4000-0x4fff]
pci_bus :07: resource 1 [mem 0xf520-0xf52f]
pci_bus :07: resource 2 [mem 0x8010-0x802f 64bit pref]
pci_bus :08: resource 4 [io  0x-0x0cf7]
pci_bus :08: resource 5 [io  0x0d00-0x]
pci_bus :08: resource 6 [mem 0x000a-0x000b]
pci_bus :08: resource 7 [mem 0x000d4000-0x000d7fff]
pci_bus :08: resource 8 [mem 0x000d8000-0x000dbfff]
pci_bus :08: resource 9 [mem 0x8000-0xdfff]
pci_bus :08: resource 10 [mem 0xf000-0xfebf]
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
UDP hash table entries: 512 (order: 2, 16384 bytes)
UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
NET: Registered protocol family 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
pci :01:00.0: Boot video device
PCI: CLS 64 bytes, default 64
Simple Boot Flag at 0x36 set to 0x1
highmem bounce pool size: 64 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
squashfs: version 4.0 (2009/01/31) Phillip Lougher
NTFS driver 2.1.30 [Flags: R/O].
fuse init (API version 7.17)
SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no 
debug enabled
SGI XFS Quota Management subsystem
msgmni has been set to 1729
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
io scheduler noop registered
io scheduler deadline registered (default)
pcieport :00:01.0: setting latency timer to 64
pcieport :00:1c.0: setting latency timer to 64
pcieport :00:1c.1: setting latency timer to 64
pcieport :00:1c.2: setting latency timer to 64
pcieport :00:1c.3: setting latency timer to 64
pcieport :00:1c.5: setting latency timer to 64
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Linux agpgart interface v0.103
ACPI: AC Adapter [ACAD] (on-line)
input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
ACPI: Lid Switch [LID0]
input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
ACPI: Power Button [PWRB]
input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
ACPI: Sleep Button [SLPB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
ACPI: Power Button [PWRF]
Monitor-Mwait will be used to enter C-1 state
Monitor-Mwait will be used to enter C-2 state
Marking TSC unstable due to TSC halts in idle
ACPI: acpi_idle registered with cpuidle
ACPI: Invalid active0 threshold
thermal LNXTHERM:00: registered as thermal_zone0
ACPI: Thermal Zone [TZ00] (70 C)
ioatdma: Intel(R) QuickData Technology Driver 4.00
brd: module loaded
loop: module loaded
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
SCSI Media Changer driver v0.25 
ahci :00:1f.2: version 3.0
ahci :00:1f.2: PCI INT B - GSI 19 (level, low) - IRQ 19
ahci: SSS flag set, parallel bus scan disabled
ahci :00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x13 impl SATA mode
ahci :00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc ems 
sxs 
ahci :00:1f.2: setting latency timer to 64
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
ata1: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505100 irq 19
ata2: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505180 irq 19
ata3: DUMMY
ata4: DUMMY
ata5: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505300 irq 19
cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.7 (July 20, 2011)
tg3.c:v3.121 (November 2, 2011)
tg3 :07:00.0: PCI INT A - GSI 17 (level, low) - IRQ 17
tg3 :07:00.0: setting latency timer to 64
tg3 :07:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC 
address 00:26:22:df:46:3f
tg3 :07:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) 
(WireSpeed[0], EEE[0])
tg3 :07:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[0]
tg3 :07:00.0: eth0: dma_rwctrl[7618] dma_mask[64-bit]
aoe: AoE v47 initialised.
i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mousedev: PS/2 mouse device common for all mice
ACPI: Battery Slot [BAT1] (battery present)
cpuidle: using governor ladder
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
TCP cubic registered
NET

[gentoo-user] Problems compiling clozurecl on ARMboard (Arietta G25)

2015-06-05 Thread Meino . Cramer
Hi,

while searching for good Common Lisp implementation for being
used on my small ARM board (Arietta G5 www.acmesystems.it/arietta) 
I got the hint to try clozurecl -- and it is in Gentoo.

Unfortunately it does not compile:
 Emerging (3 of 3) dev-lisp/clozurecl-1.10::gentoo
 cfg-update-1.8.2-r1: Creating checksum index...
 Unpacking source...
 Source unpacked in /var/tmp/portage/dev-lisp/clozurecl-1.10/work
 * ERROR: dev-lisp/clozurecl-1.10::gentoo failed (prepare phase):
 *   The source directory '/var/tmp/portage/dev-lisp/clozurecl-1.10/work/ccl' 
doesn't exist
 *
 * Call stack:
 *ebuild.sh, line 757:  Called __ebuild_main 'prepare'
 *   phase-functions.sh, line 975:  Called __dyn_prepare
 *   phase-functions.sh, line 369:  Called die
 * The specific snippet of code:
 *  die The source directory '${S}' doesn't exist
 *
 * If you need support, post the output of `emerge --info 
'=dev-lisp/clozurecl-1.10::gentoo'`,
 * the complete build log and the output of `emerge -pqv 
'=dev-lisp/clozurecl-1.10::gentoo'`.
 * The complete build log is located at 
'/var/tmp/portage/dev-lisp/clozurecl-1.10/temp/build.log'.
 * The ebuild environment file is located at 
'/var/tmp/portage/dev-lisp/clozurecl-1.10/temp/environment'.
 * Working directory: '/usr/lib/python2.7/site-packages'
 * S: '/var/tmp/portage/dev-lisp/clozurecl-1.10/work/ccl'

 Failed to emerge dev-lisp/clozurecl-1.10, Log file:

  '/var/tmp/portage/dev-lisp/clozurecl-1.10/temp/build.log'

 * Messages for package dev-lisp/clozurecl-1.10:

 * ERROR: dev-lisp/clozurecl-1.10::gentoo failed (prepare phase):
 *   The source directory '/var/tmp/portage/dev-lisp/clozurecl-1.10/work/ccl' 
doesn't exist
 * 
 * Call stack:
 *ebuild.sh, line 757:  Called __ebuild_main 'prepare'
 *   phase-functions.sh, line 975:  Called __dyn_prepare
 *   phase-functions.sh, line 369:  Called die
 * The specific snippet of code:
 *  die The source directory '${S}' doesn't exist
 * 
 * If you need support, post the output of `emerge --info 
'=dev-lisp/clozurecl-1.10::gentoo'`,
 * the complete build log and the output of `emerge -pqv 
'=dev-lisp/clozurecl-1.10::gentoo'`.
 * The complete build log is located at 
'/var/tmp/portage/dev-lisp/clozurecl-1.10/temp/build.log'.
 * The ebuild environment file is located at 
'/var/tmp/portage/dev-lisp/clozurecl-1.10/temp/environment'.
 * Working directory: '/usr/lib/python2.7/site-packages'
 * S: '/var/tmp/portage/dev-lisp/clozurecl-1.10/work/ccl'

 * GNU info directory index is up-to-date.

=== emerge --info '=dev-lisp/clozurecl-1.10::gentoo ===

 Portage 2.2.18 (python 2.7.9-final-0, default/linux/arm/13.0/armv5te, 
gcc-4.8.4, glibc-2.20-r2, 4.0.4-
 =
  System Settings
 =
 System uname: Linux-4.0.4-20150520.001-armv5tejl-with-gentoo-2.2
 KiB Mem:  253388 total, 59872 free
 KiB Swap: 524284 total,524284 free
 Timestamp of repository gentoo: Wed, 03 Jun 2015 16:45:01 +
 sh bash 4.3_p33-r2
 ld GNU ld (Gentoo 2.24 p1.4) 2.24
 app-shells/bash:  4.3_p33-r2::gentoo
 dev-lang/perl:5.20.2::gentoo
 dev-lang/python:  2.7.9-r1::gentoo, 3.3.5-r1::gentoo
 dev-util/cmake:   2.8.12.2-r1::gentoo
 dev-util/pkgconfig:   0.28-r2::gentoo
 sys-apps/baselayout:  2.2::gentoo
 sys-apps/openrc:  0.13.11::gentoo
 sys-apps/sandbox: 2.6-r1::gentoo
 sys-devel/autoconf:   2.69::gentoo
 sys-devel/automake:   1.11.6-r1::gentoo, 1.14.1::gentoo
 sys-devel/binutils:   2.24-r3::gentoo
 sys-devel/gcc:4.8.4::gentoo
 sys-devel/gcc-config: 1.7.3::gentoo
 sys-devel/libtool:2.4.6::gentoo
 sys-devel/make:   4.1-r1::gentoo
 sys-kernel/linux-headers: 3.18::gentoo (virtual/os-headers)
 sys-libs/glibc:   2.20-r2::gentoo
 Repositories:
 
 gentoo
 location: /usr/portage
 sync-type: rsync
 sync-uri: rsync://rsync.europe.gentoo.org/gentoo-portage
 priority: -1000
 
 ACCEPT_KEYWORDS=arm
 ACCEPT_LICENSE=* -@EULA
 CBUILD=armv5tel-softfloat-linux-gnueabi
 CFLAGS=-O2 -pipe -march=armv5te
 CHOST=armv5tel-softfloat-linux-gnueabi
 CONFIG_PROTECT=/etc /usr/share/gnupg/qualified.txt
 CONFIG_PROTECT_MASK=/etc/ca-certificates.conf /etc/env.d 
/etc/fonts/fonts.conf /etc/gconf /etc/gentoo
 CXXFLAGS=-O2 -pipe -march=armv5te
 DISTDIR=/usr/portage/distfiles
 FCFLAGS=-O2 -pipe -march=armv5te
 FEATURES=assume-digests binpkg-logs config-protect-if-modified distlocks 
ebuild-locks fixlafiles merg
 FFLAGS=-O2 -pipe -march=armv5te
 GENTOO_MIRRORS=http://distfiles.gentoo.org;
 LC_ALL=
 LDFLAGS=-Wl,-O1 -Wl,--as-needed
 PKGDIR=/usr/portage/packages
 PORTAGE_CONFIGROOT=/
 PORTAGE_RSYNC_OPTS=--recursive --links --safe-links --perms --times 
--omit-dir-times --compress --for
 PORTAGE_TMPDIR=/var/tmp
 USE=acl arm berkdb bindist bzip2 cli cracklib crypt cxx dri fortran gdbm 
iconv

Re: [gentoo-user] Re: Well, I went about updating my system again. (day 6)

2016-12-07 Thread Alan Grimes
quot;python2_7 python3_4 python3_5 (-python3_3%)" 0 KiB
[ebuild U  ] dev-libs/libatasmart-0.19-r2:0/4::gentoo
[0.19-r1:0/0::gentoo] USE="-static-libs" 0 KiB
[ebuild U  ] dev-qt/qtpaths-5.6.2:5/5.6::gentoo
[5.6.1:5/5.6::gentoo] USE="-debug {-test}" 0 KiB
[ebuild   R] dev-python/pyyaml-3.12::gentoo  USE="-examples
-libyaml" PYTHON_TARGETS="python2_7 python3_4 python3_5 -pypy -pypy3
(-python3_3%)" 0 KiB
[ebuild   R] dev-python/pycups-1.9.73::gentoo  USE="-doc -examples"
PYTHON_TARGETS="python2_7 python3_4 -pypy (-python3_3%)" 0 KiB
[ebuild U  ] gnome-base/gnome-common-3.18.0-r1:3::gentoo
[3.18.0:3::gentoo] USE="autoconf-archive" 0 KiB
[ebuild   R] dev-python/decorator-4.0.10::gentoo  USE="-doc"
PYTHON_TARGETS="python2_7 python3_4 python3_5 -pypy -pypy3
(-python3_3%)" 0 KiB
[ebuild   R] dev-python/appdirs-1.4.0::gentoo 
PYTHON_TARGETS="python2_7 python3_4 python3_5 -pypy -pypy3
(-python3_3%)" 0 KiB
[ebuild   R] dev-python/ptyprocess-0.5.1::gentoo  USE="{-test}"
PYTHON_TARGETS="python2_7 python3_4 python3_5 -pypy -pypy3
(-python3_3%)" 0 KiB
[ebuild U  ] media-libs/libass-0.13.4:0/5::gentoo
[0.13.3:0/5::gentoo] USE="fontconfig harfbuzz -static-libs" ABI_X86="32
(64) (-x32)" 343 KiB
[ebuild U  ] net-dialup/ppp-2.4.7-r3:0/2.4.7::gentoo
[2.4.7-r2:0/2.4.7::gentoo] USE="gtk ipv6 pam -activefilter -atm -dhcp
-eap-tls -libressl -radius" 37 KiB
[ebuild U  ] virtual/perl-Compress-Raw-Bzip2-2.69.0-r1::gentoo
[2.69.0::gentoo] 0 KiB
[ebuild U  ] virtual/perl-Digest-SHA-5.950.100_rc-r1::gentoo
[5.950.0-r1::gentoo] 0 KiB
[ebuild U  ] virtual/perl-XSLoader-0.210.0-r1::gentoo
[0.210.0::gentoo] 0 KiB
[ebuild U  ] virtual/perl-if-0.60.600-r1::gentoo [0.60.600::gentoo]
0 KiB
[ebuild U  ] dev-python/ipaddress-1.0.17-r1::gentoo [1.0.16::gentoo]
PYTHON_TARGETS="python2_7 -pypy (-pypy3%)" 32 KiB
[ebuild U  ] dev-vcs/mercurial-4.0.1::gentoo [3.9.2::gentoo] USE="tk
-bugzilla -emacs -gpg {-test}" PYTHON_TARGETS="python2_7" 4,738 KiB
[ebuild U  ] dev-python/pip-9.0.1::gentoo [8.1.2::gentoo]
PYTHON_TARGETS="python2_7 python3_4 python3_5 -pypy (-python3_3%)" 1,170 KiB
[ebuild U  ] dev-vcs/cvs-1.12.12-r11::gentoo [1.12.12-r10::gentoo]
USE="crypt nls pam server -doc -kerberos" 0 KiB
[ebuild   R] app-portage/gentoolkit-0.3.2-r1::gentoo 
PYTHON_TARGETS="python2_7 python3_4 python3_5 -pypy (-python3_3%)" 0 KiB
[ebuild U  ] net-misc/ntp-4.2.8_p9::gentoo [4.2.8_p8::gentoo]
USE="caps ipv6 readline ssl threads zeroconf -debug -libressl -openntpd
-parse-clocks -samba (-selinux) -snmp -vim-syntax" 7,087 KiB
[ebuild U  ] dev-java/commons-cli-1.3.1:1::gentoo [1.2:1::gentoo]
USE="-doc -source {-test}" 143 KiB
[ebuild   R] dev-python/pbkdf2-1.3::gentoo 
PYTHON_TARGETS="python2_7 python3_4 -pypy -pypy3 (-python3_3%)" 0 KiB
[ebuild   R] dev-python/ecdsa-0.13::gentoo 
PYTHON_TARGETS="python2_7 python3_4 python3_5 -pypy -pypy3
(-python3_3%)" 0 KiB
[ebuild U  ] media-libs/gexiv2-0.10.4::gentoo [0.10.3::gentoo]
USE="introspection python -static-libs" PYTHON_TARGETS="python2_7
python3_4 python3_5 (-python3_3%)" 262 KiB
[ebuild U  ] media-libs/babl-0.1.20::gentoo [0.1.18::gentoo]
USE="(-altivec)" CPU_FLAGS_X86="mmx sse sse2 -f16c -sse4_1" 746 KiB
[ebuild U  ] virtual/freedesktop-icon-theme-0-r1::gentoo [0::gentoo]
0 KiB
[ebuild U  ] app-text/hunspell-1.4.2:0/1.4::gentoo
[1.4.1-r1:0/1.4::gentoo] USE="ncurses nls readline -static-libs"
L10N="-af -bg -ca -cs -cy -da -de -de-1901 -el -en -eo -es -et -fo -fr
-ga -gl -he -hr -hu -ia -id -is -it -km -ku -lt -lv -mi -mk -ms -nb -nl
-nn -pl -pt -pt-BR -ro -ru -sk -sl -sq -sv -sw -tn -uk -zu" 978 KiB
[ebuild U  ] dev-libs/libcdio-0.94-r1:0/16::gentoo
[0.93:0/15::gentoo] USE="cxx -cddb -minimal -static-libs {-test}"
ABI_X86="32* (64) (-x32)" 2,301 KiB
[ebuild U  ] dev-python/lxml-3.6.4-r1::gentoo [3.6.4::gentoo]
USE="threads -doc -examples {-test}" PYTHON_TARGETS="python2_7 python3_4
python3_5 (-python3_3%)" 0 KiB
[ebuild U  ] media-libs/libgphoto2-2.5.11:0/6::gentoo
[2.5.10:0/6::gentoo] USE="exif gd jpeg nls -doc -examples -serial"
ABI_X86="32 (64) (-x32)" CAMERAS="ptp2 -adc65 -agfa_cl20 -aox -ax203
-barbie -canon -casio_qv -clicksmart310 -digigr8 -digita -dimagev
-dimera3500 -directory -enigma13 -fuji -gsmart300 -hp215 -iclick -jamcam
-jd11 -jl2005a -jl2005c -kodak_dc120 -kodak_dc210 -kodak_dc240
-kodak_dc3200 -kodak_ez200 -konica -konica_qm150 -largan -lg_gsm -mars
-mustek -panasonic_coolshot -panasonic_dc1000 -panasonic_dc1580
-panasonic_l859 -pccam300 -pccam600 -pentax -polaroid_pdc320
-polaroid_pdc640 -polaroid_pdc700 -ricoh

[gentoo-user] install problem: dev-texlive/texlive-basic-2017-r1

2018-03-14 Thread karl
S="-m0755"
declare -x EAPI="5"
declare -x ELIBC="glibc"
declare -- EPATCH_COMMON_OPTS="-g0 -E --no-backup-if-mismatch"
declare -- EPATCH_EXCLUDE=""
declare -- EPATCH_FORCE="no"
declare -- EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..."
declare -- EPATCH_N_APPLIED_PATCHES="1"
declare -- EPATCH_OPTS=""
declare -- EPATCH_SINGLE_MSG=""
declare -- 
EPATCH_SOURCE="/Net/portage/portage/dev-texlive/texlive-basic-2017-r1/work/patch"
declare -- EPATCH_SUFFIX="patch.bz2"
declare -- EPATCH_USER_SOURCE="/etc/portage/patches"
declare -x EXEOPTIONS="-m0755"
declare -x FCFLAGS="-O2 -pipe"
declare -x FETCHCOMMAND_SSH="bash -c \"x=\\\${2#ssh://} ; host=\\\${x%%/*} ; 
port=\\\${host##*:} ; host=\\\${host%:*} ; [[ \\\${host} = \\\${port} ]] && 
port= ; exec rsync --rsh=\\\"ssh \\\${port:+-p\\\${port}} \\\${3}\\\" -avP 
\\\"\\\${host}:/\\\${x#*/}\\\" \\\"\\\$1\\\"\" rsync \"\${DISTDIR}/\${FILE}\" 
\"\${URI}\" \"\${PORTAGE_SSH_OPTS}\""
declare -x FFLAGS="-O2 -pipe"
declare -x FLTK_DOCDIR="/usr/share/doc/fltk-1.3.3-r3/html"
declare -x GCC_SPECS=""
declare -x GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin 
garmintxt gpsclock isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle 
oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt 
ublox ubx"
declare -x GRUB_PLATFORMS=""
declare HDEPEND=""
declare -x HISTCONTROL="ignoreboth"
declare -x HISTFILESIZE="2000"
declare -x HISTSIZE="2000"
declare HOMEPAGE="http://www.tug.org/texlive/;
declare -x HUSHLOGIN="FALSE"
declare -x INHERITED=" texlive-common desktop estack epatch toolchain-funcs 
multilib ltprune preserve-libs vcs-clean eutils texlive-module"
declare -x INPUT_DEVICES="libinput"
declare -x INSDESTTREE=""
declare -x INSOPTIONS="-m0644"
declare IUSE="source doc +luajittex"
declare -x IUSE_EFFECTIVE="abi_x86_64 alpha amd64 amd64-fbsd amd64-linux arm 
arm-linux arm64 doc elibc_AIX elibc_Cygwin elibc_Darwin elibc_DragonFly 
elibc_FreeBSD elibc_HPUX elibc_Interix elibc_NetBSD elibc_OpenBSD elibc_SunOS 
elibc_Winnt elibc_bionic elibc_glibc elibc_mingw elibc_mintlib elibc_musl 
elibc_uclibc hppa ia64 kernel_AIX kernel_Darwin kernel_FreeBSD kernel_HPUX 
kernel_NetBSD kernel_OpenBSD kernel_SunOS kernel_Winnt kernel_freemint 
kernel_linux luajittex m68k m68k-mint mips ppc ppc-aix ppc-macos ppc64 
ppc64-linux prefix prefix-chain prefix-guest s390 sh source sparc sparc-solaris 
sparc64-solaris userland_BSD userland_GNU x64-cygwin x64-macos x64-solaris x86 
x86-cygwin x86-fbsd x86-linux x86-macos x86-solaris x86-winnt"
declare -x IUSE_IMPLICIT="abi_x86_64 prefix prefix-chain prefix-guest"
declare -x KERNEL="linux"
declare -x KERNEL_ABI="amd64"
declare -x KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
declare -x L10N="da de el en en-GB es et fi fr ga is it lt lv nn no pl ru sv"
declare -x LADSPA_PATH="/usr/lib64/ladspa"
declare -x LANG="C"
declare -x LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 
mtxorb ncurses text"
declare -x LC_CTYPE="en_US.UTF-8"
declare -x LC_MESSAGES="C"
declare -x LDFLAGS="-Wl,-O1 -Wl,--as-needed"
declare -x LDFLAGS_amd64="-m elf_x86_64"
declare -x LDFLAGS_default
declare -x LDFLAGS_x32="-m elf32_x86_64"
declare -x LDFLAGS_x86="-m elf_i386"
declare -x LD_LIBRARY_PATH=""
declare -x LESSCHARSET="latin1"
declare -x LIBDIR_amd64="lib64"
declare -x LIBDIR_default="lib"
declare -x LIBDIR_x32="libx32"
declare -x LIBDIR_x86="lib32"
declare -x LIBOPTIONS="-m0644"
declare -x LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer"
declare -x LICENSE=" GPL-1 GPL-2 LPPL-1.3 OFL public-domain TeX TeX-other-free "
declare -x LINGUAS="af ar as be bg bn br ca cs cy da de el en en_GB eo es et eu 
fi fo fr ga gl gu he hr hsb hu hy ia id is it ja kn ko la lo lt lv ml mn mr nb 
nl nn no or pa pl pt pt_BR rm ro ru sa_IN sco sk sl sq sr sv ta te th tk tr uk 
vi zh"
declare -x LS_OPTIONS="-N -F --color"
declare -x MAIL="/var/mail/karl"
declare -x MAKEOPTS="--jobs 24 --load-average 48"
declare -x MANPAGER="manpager"
declare -x MULTILIB_ABIS="amd64 x86"
declare -x MULTILIB_STRICT_DENY="64-bit.*shared object"
declare -x MULTILIB_STRICT_DIRS="/lib32 /lib /usr/lib32 /us

[gentoo-user] evil ebuilds.

2018-07-11 Thread Alan Grimes
KiB
[ebuild   R    ] kde-apps/bovo-18.04.2:5::gentoo  USE="handbook -debug"
0 KiB
[ebuild   R    ] kde-frameworks/kdelibs4support-5.47.0:5/5.47::gentoo 
USE="X -debug -libressl {-test}" 0 KiB
[ebuild   R    ] kde-apps/akonadi-calendar-18.04.2:5::gentoo 
USE="-debug {-test}" 0 KiB
[ebuild U  ] kde-plasma/libksysguard-5.13.3:5::gentoo
[5.12.5:5::gentoo] USE="X detailedmemory -debug -minimal {-test}" 0 KiB
[ebuild U  ] kde-plasma/plasma-pa-5.13.3:5::gentoo
[5.12.5:5::gentoo] USE="handbook -debug" 88 KiB
[ebuild U  ] kde-plasma/plasma-sdk-5.13.3:5::gentoo
[5.12.5:5::gentoo] USE="-debug {-test}" 242 KiB
[ebuild   R    ] kde-apps/akonadi-search-18.04.2:5::gentoo  USE="-debug
{-test}" 0 KiB
[ebuild U  ] kde-plasma/milou-5.13.3:5::gentoo [5.12.5:5::gentoo]
USE="-debug {-test}" 0 KiB
[ebuild U  ] kde-plasma/ksysguard-5.13.3:5::gentoo
[5.12.5:5::gentoo] USE="handbook lm_sensors -debug" 0 KiB
[ebuild   R    ] kde-apps/kmplot-18.04.2:5::gentoo  USE="handbook
-debug" 0 KiB
[ebuild   R    ] kde-apps/ktuberling-18.04.2:5::gentoo  USE="handbook
-debug (-selinux)" 0 KiB
[ebuild