Sie sind nicht angemeldet.

MegaV0lt

unregistriert

21

25.06.2013, 18:00

Das gibt bestimmt auch Probleme:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
hdvdr01 ~ # eselect news read 25
2013-03-29-udev-upgrade
  Title                 	Upgrading udev to version >=200
  Author                	Samuli Suominen <ssuominen@gentoo.org>
  Posted                	2013-03-29
  Revision              	2

This replaces the earlier news item about the udev 197 upgrade and
describes the predictable network interface names in more detail.

If you skip anything in this news item, your system will not be
bootable, or your networking will be down, or both.

Pay attention also to every message printed by emerge of sys-fs/udev
and sys-fs/udev-init-scripts as this news item may not be complete.

1. udev-postmount init script:

Remove the udev-postmount init script from your runlevels.

2. devtmpfs support:

You need at least version 2.6.32 of the kernel for devtmpfs
functionality. Once you have this, make sure CONFIG_DEVTMPFS=y is set
in the kernel configuration. See the gentoo udev guide for the option in
make menuconfig [1].

If you have a line for /dev in /etc/fstab, make sure it is configured
for file system type devtmpfs (not tmpfs or any other type). Also, you
can remove this line if you prefer, since devtmpfs is mounted
automatically.

3. Old interface naming rules:

If the system still has old network interface renaming rules in
/etc/udev/rules.d, like 70-persistent-net.rules, those will need
to be either modified or removed.

If you choose to modify them, you must use free namespace (like net*
or internet*) instead of kernel namespace (like eth* or wlan*)
because in-place renaming has been deprecated, see small
documentation of it if you like[2].

The file 70-persistent-net.rules, like the 70-persistent-cd.rules
should be removed, so if you modify, rename the file also to something
else like 70-my-network.rules to silence the deprecation warning coming
from the end of the sys-fs/udev emerge.

This is the old format with reserved namespace:

SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="xx:xx:xx:xx:xx:xx", NAME="eth0"
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="yy:yy:yy:yy:yy:yy", NAME="eth1"

This is the new format with free namespace:

SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="xx:xx:xx:xx:xx:xx", NAME="net0"
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="yy:yy:yy:yy:yy:yy", NAME="net1"

4. predictable network interface names:

If /etc/udev/rules.d/80-net-name-slot.rules is an empty file or a
symlink to /dev/null, the new names will be disabled and the kernel will
do all the interface naming, and the resulting names may vary by kernel
configuration, hardware configuration and kernel version.

Also, the forementioned old 70-persistent-net.rules might interfere with
the new predictable interface names.

You can get attributes of your network interfaces using a command like
the following (replace eth0 with the name of the appropriate interface):

# udevadm test-builtin net_id /sys/class/net/eth0 2> /dev/null

You can copy /lib/udev/rules.d/80-net-name-slot.rules to
/etc/udev/rules.d and specify the attributes and in which order
they will be used for naming. See upstream wiki[3] for detailed list
of options.

You can prepare the system for the new names before booting for example
by renaming /etc/init.d/net.* symlinks, editing /etc/conf.d/net, etc.

The feature can also be completely disabled using net.ifnames=0 on the
kernel command line.

If you only have one interface card, you don't necessarily have much
use for this feature as the name almost always stays at eth0, you can
easily disable it using forementioned methods.

This feature can also replace the functionality of sys-apps/biosdevname,
but you can still keep using it if you want.

In a normal new installation there are no files in /etc/udev/rules.d
and if you haven't edited any files you have in there, you should most
likely backup and delete them all if they don't belong to any packages.

The official wiki has a dedicated page for udev upgrade notes[4].

[1] http://www.gentoo.org/doc/en/udev-guide.xml
[2] http://www.kernel.org/doc/htmldocs/device-drivers/API-device-rename.html
[3] http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames
[4] http://wiki.gentoo.org/wiki/Udev/upgrade

22

25.06.2013, 18:45

Naja, das (der eselect news Eintrag) ist der Wechsel aus stabile NIC-Names ...

Harte Nuss ...

Quellcode

1
# emerge -1 -O -av sys-fs/udev dev-qt/qtcore dev-qt/qt-gui dev-qt/qt3support dev-qt/qtdbus dev-qt/qtscript kde-base/kde-env kde-base/kdelibs


-O bedeutet aber, dass du die Dinge reinhämmerst ...

edit: ausgabe in eine Datei:

Quellcode

1
# emerge BLABLABLA &> emerge-output.txt
besser?
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

23

25.06.2013, 19:56

Nachtrag:

Ein jetzt-aber-alles-und-wirklich wäre auch ein

Quellcode

1
# emerge -e -av @world

Ist vlt. hier wirklich angebrachter.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

24

25.06.2013, 21:21

Noch ein paar Vorschläge:

1) Baue den aktuellen gcc und stelle mit gcc-config auf das neue gcc Profil um (mit der alten zurzeit genutzten Version werden sich wahrscheinlich nicht alle Pakete mehr bauen lassen ) oO ich werde alt und wiederhole mich ;)).

Quellcode

1
2
3
4
# emerge -av1 gcc
# gcc-config -l
# gcc-config >neue Version<
# env-update && source /etc/profile

2)

Zitat

Quellcode

1
2
3
4
5
6
7
dev-libs/libxml2:2

  (dev-libs/libxml2-2.9.0-r2::gentoo, ebuild scheduled for merge) pulled in by
	dev-libs/libxml2:2[!icu?] required by (dev-qt/qtwebkit-4.8.4::gentoo, ebuild scheduled for merge)

  (dev-libs/libxml2-2.9.0-r2::gentoo, installed) pulled in by
	dev-libs/libxml2[icu] required by (www-client/chromium-14.0.835.163::gentoo, installed)
Der installiere chromium Browser verlangt das libxml2 mit USE=icu gebaut wird, das beisst sich aber wenn icu nicht für qtwebkit mit gesetzt ist.
Setze in der /etc/portage/package.use

Quellcode

1
2
dev-libs/libxml2 icu
dev-qt/qtwebkit icu

3) Schalte die geforderten testing-versionen frei (welche zb vom freigeschalteten cups gefordert werden)
In der /etc/portage/package.accept_keywords

Quellcode

1
2
~net-print/cups-filters-1.0.34
~app-text/qpdf-4.1.0

4) Und in der /etc/portage/package.license

Quellcode

1
2
dev-java/sun-jdk Oracle-BCLA-JavaSE
www-plugins/adobe-flash AdobeFlash-11.x


5) Passe bitte bei dem udev Update auf - vergewissere dich vor einem reboot das im Kernel
CONFIG_DEVTMPFS=y
und am besten auch
CONFIG_DEVTMPFS_MOUNT=y gesetzt ist. Ohne dem wird das System wahrscheinlich nicht mehr sauber hochfahren.
Siehe zb was

Quellcode

1
zgrep DEVTMPFS /proc/config.gz
daszu ausgibt.

Poste dann für eine Gesamtübersicht am besten auch mal die Ausgabe vom

Quellcode

1
emerge -avuDN @world
(am besten hier im Forum als Attachment hinzugefügt)

25

25.06.2013, 22:42

Hallo zusammen :)

In solchen Fällen hat sich bei mir in der letzten Zeit immer:

Quellcode

1
emerge -jX -evaDN world --keep-going


bewährt. Dann kompiliert er das gesamte System unter Berücksichtigung aller(!) Dependencies neu. Incl. aller Updates. "-jX ist dabei die Anzahl der Prozesse, die Gleichzeitig laufen (Threads).

Aber auch ich muss mich meinen Vorrednern anschließen in Bezug auf die scheinbar veraltete gcc-Version!

Ich hatte mal einen Fall, das ich eine ~Version (also Testing) mit diesem 4.5.3-er-gcc bauen wollte, Fehler beim Bauen erhielt. Ich musste auf 4.6.3 updaten. Damals war 4.6.3 auch Testing. Im Moment bin ich auf gcc-4.7.2-r1...
Gruß
mnt_gentoo
_________________________________________________________________________________________

Die Launen und das Schicksal eines Gentoo-Users: ?( :| :cursing: :wacko: 8| ^^ 8o ;( :P ?( ...

MegaV0lt

unregistriert

26

26.06.2013, 09:21

Ich bin jetzt so weit, dass ich die Schritte 1-4 von josef.95 durch habe. Es ist nun der neue aktiv:

Quellcode

1
2
3
4
5
hdvdr01 ~ # gcc-config -l
 [1] i686-pc-linux-gnu-4.5.3
 [2] i686-pc-linux-gnu-4.6.3 *
hdvdr01 ~ # env-update && source /etc/profile
>>> Regenerating /etc/ld.so.cache...
Die beiden DEVTMPFS sind auf y.

Dann

Quellcode

1
emerge -1 -O -av sys-fs/udev dev-qt/qtcore dev-qt/qt-gui dev-qt/qt3support dev-qt/qtdbus dev-qt/qtscript kde-base/kde-env kde-base/kdelibs
bleibt hängen wegen der sandbox.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
hdvdr01 ~ # emerge -1 -O -av sys-fs/udev dev-qt/qtcore dev-qt/qt-gui dev-qt/qt3support dev-qt/qtdbus dev-qt/qtscript kde-base/kde-env kde-base/kdelibs

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


emerge: there are no ebuilds to satisfy "dev-qt/qt-gui".

emerge: searching for similar names...
emerge: Maybe you meant any of these: dev-qt/qtgui, dev-qt/qtsvg, dev-qt/qtdbus?
hdvdr01 ~ # emerge -1 -O -av sys-fs/udev dev-qt/qtcore dev-qt/qtgui dev-qt/qt3support dev-qt/qtdbus dev-qt/qtscript kde-base/kde-env kde-base/kdelibs

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

[ebuild 	U  ] sys-fs/udev-200 [164-r2] USE="acl%* firmware-loader%* gudev%* hwdb%* introspection%* keymap%* kmod%* openrc%* -doc% (-selinux) -static-libs% (-build%) (-extras%*) (-test%)" 2,063 kB
[ebuild 	U  ] dev-qt/qtcore-4.8.4-r4:4 [4.7.3:4] USE="exceptions glib iconv qt3support ssl (-aqua) -c++0x% -debug -icu% -pch (-jit%*) (-optimized-qmake%) (-private-headers%)" 231,048 kB
[ebuild 	U  ] dev-qt/qtgui-4.8.4-r1:4 [4.7.3:4] USE="accessibility cups dbus exceptions gif%* glib mng nas qt3support tiff xinerama xv%* (-aqua) -c++0x% -debug -egl -gtkstyle -nis -pch -trace (-private-headers%) (-raster%)" 0 kB
[ebuild 	U  ] dev-qt/qt3support-4.8.4:4 [4.7.3:4] USE="accessibility exceptions (-aqua) -c++0x% -debug -pch (-kde%*) (-phonon%*)" 0 kB
[ebuild 	U  ] dev-qt/qtdbus-4.8.4:4 [4.7.3:4] USE="exceptions (-aqua) -c++0x% -debug -pch" 0 kB
[ebuild 	U  ] dev-qt/qtscript-4.8.4:4 [4.7.3:4] USE="exceptions iconv jit (-aqua) -c++0x% -debug -pch (-private-headers%)" 0 kB
[ebuild 	U  ] kde-base/kde-env-4.10.3:4 [4.6.5:4] USE="(-aqua) (-kdeenablefinal%)" 0 kB
[ebuild 	U  ] kde-base/kdelibs-4.10.3-r2:4 [4.6.5-r2:4] USE="acl alsa bzip2 fam handbook mmx nls opengl (policykit) semantic-desktop spell sse ssl udev udisks upower -3dnow (-altivec) (-aqua) -debug -doc -jpeg2k -kerberos -lzma -openexr -sse2 {-test} -zeroconf (-bindist%) (-kdeenablefinal%)" 11,701 kB

Total: 8 packages (8 upgrades), Size of downloads: 244,811 kB

Would you like to merge these packages? [Yes/No]

>>> Verifying ebuild manifests
>>> Running pre-merge checks for kde-base/kdelibs-4.10.3-r2

>>> Emerging (1 of 8) sys-fs/udev-200
 * Fetching files in the background. To view fetch progress, run
 * `tail -f /var/log/emerge-fetch.log` in another terminal.
 * systemd-200.tar.xz SHA256 SHA512 WHIRLPOOL size ;-) ...                                         	[ ok ]
 * udev-200-patches-1.tar.xz SHA256 SHA512 WHIRLPOOL size ;-) ...                                  	[ ok ]
 * Determining the location of the kernel source code
 * Found kernel source directory:
 * 	/usr/src/linux
 * Found kernel object directory:
 * 	/lib/modules/3.0.6-gentoo/build
 * Found sources for kernel version:
 * 	3.0.6-gentoo
 * Checking for suitable kernel configuration options...                                           	[ ok ]
 * Determining the location of the kernel source code
 * Found kernel source directory:
 * 	/usr/src/linux-3.0.6-gentoo
 * Found kernel object directory:
 * 	/usr/src/linux-3.0.6-gentoo
 * Found sources for kernel version:
 * 	3.0.6-gentoo
>>> Unpacking source...
>>> Unpacking systemd-200.tar.xz to /mnt/data/tmp/portage/sys-fs/udev-200/work
>>> Unpacking udev-200-patches-1.tar.xz to /mnt/data/tmp/portage/sys-fs/udev-200/work
>>> Source unpacked in /mnt/data/tmp/portage/sys-fs/udev-200/work
>>> Preparing source in /mnt/data/tmp/portage/sys-fs/udev-200/work/systemd-200 ...
 * Applying various patches (bugfixes/updates) ...
 *   downstream-accept4.patch ...                                                                  	[ ok ]
 *   upstream-uname.patch ...                                                                      	[ ok ]
 * Done with patching
 * Running elibtoolize in: systemd-200/build-aux/
ISE open_rd(.): Der Wert ist zu groß für den definierten Datentyp
    	abs_path: (null)
    	res_path: /mnt/data/portage/eclass/ELT-patches
/usr/lib/libsandbox.so(+0x29c6)[0xb784c9c6]
/usr/lib/libsandbox.so(+0x2a3c)[0xb784ca3c]
/usr/lib/libsandbox.so(+0x435a)[0xb784e35a]
/usr/lib/libsandbox.so(+0x43f6)[0xb784e3f6]
/usr/lib/libsandbox.so(open64+0xb5)[0xb7852b25]
find[0x804b34a]
/lib/libc.so.6(__libc_start_main+0xe4)[0xb76c3e24]
find[0x804a501]
/proc/27790/cmdline: find install-sh -maxdepth 1 -type f

ISE open_rd(.): Der Wert ist zu groß für den definierten Datentyp
    	abs_path: (null)
    	res_path: /mnt/data/portage/eclass/ELT-patches
/usr/lib/libsandbox.so(+0x29c6)[0xb76b99c6]
/usr/lib/libsandbox.so(+0x2a3c)[0xb76b9a3c]
/usr/lib/libsandbox.so(+0x435a)[0xb76bb35a]
/usr/lib/libsandbox.so(+0x43f6)[0xb76bb3f6]
/usr/lib/libsandbox.so(open64+0xb5)[0xb76bfb25]
find[0x804b34a]
/lib/libc.so.6(__libc_start_main+0xe4)[0xb7530e24]
find[0x804a501]
/proc/27796/cmdline: find ltmain -maxdepth 1 -type f

ISE open_rd(.): Der Wert ist zu groß für den definierten Datentyp
    	abs_path: (null)
    	res_path: /mnt/data/portage/eclass/ELT-patches
/usr/lib/libsandbox.so(+0x29c6)[0xb771b9c6]
/usr/lib/libsandbox.so(+0x2a3c)[0xb771ba3c]
/usr/lib/libsandbox.so(+0x435a)[0xb771d35a]
/usr/lib/libsandbox.so(+0x43f6)[0xb771d3f6]
/usr/lib/libsandbox.so(open64+0xb5)[0xb7721b25]
find[0x804b34a]
/lib/libc.so.6(__libc_start_main+0xe4)[0xb7592e24]
find[0x804a501]
/proc/27803/cmdline: find portage -maxdepth 1 -type f


 * Portage patch failed to apply (ltmain.sh version 2.4.2)!
 * Please file a bug report to add a proper patch.
 * ERROR: sys-fs/udev-200 failed (prepare phase):
 *   Portage patch failed to apply!
 *
 * Call stack:
 * 	ebuild.sh, line   93:  Called src_prepare
 *   environment, line 3868:  Called elibtoolize
 *   environment, line 1481:  Called die
 * The specific snippet of code:
 *                               	die "Portage patch failed to apply!";
 *
 * If you need support, post the output of `emerge --info '=sys-fs/udev-200'`,
 * the complete build log and the output of `emerge -pqv '=sys-fs/udev-200'`.
 * The complete build log is located at '/log/portage/sys-fs:udev-200:20130626-071720.log'.
 * For convenience, a symlink to the build log is located at '/mnt/data/tmp/portage/sys-fs/udev-200/temp/build.log'.
 * The ebuild environment file is located at '/mnt/data/tmp/portage/sys-fs/udev-200/temp/environment'.
 * Working directory: '/mnt/data/tmp/portage/sys-fs/udev-200/work/systemd-200'
 * S: '/mnt/data/tmp/portage/sys-fs/udev-200/work/systemd-200'

>>> Failed to emerge sys-fs/udev-200, Log file:

>>>  '/log/portage/sys-fs:udev-200:20130626-071720.log'


Ich mach das jetz mal wieder mit -sandbox

MegaV0lt

unregistriert

27

26.06.2013, 09:49

Das

Quellcode

1
emerge -avuDN @world 
bringt:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
These are the packages that would be merged, in order:

Calculating dependencies  .... ....... ....

!!! Problem resolving dependencies for www-client/links from @selected
... done!

!!! The ebuild selected to satisfy "www-client/links" has unmet requirements.
- www-client/links-2.7::gentoo USE="X bzip2 deprecated fbcon gpm jpeg ssl svga tiff unicode zlib -directfb -livecd -lzma -suid"

  The following REQUIRED_USE flag constraints are unsatisfied:
	svga? ( suid )

  The above constraints are a subset of the following complete expression:
	!livecd? ( fbcon? ( gpm ) ) svga? ( suid )

(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

28

26.06.2013, 10:21

Ok. Hast du auch ein "emerge -e -av @world" in Erwägung gezogen?

Dann: nimm bitte mal den www-client/links aus deinem world-file raus (/var/lib/portage/world). Diese kannst du ja mal später hinzufügen.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

MegaV0lt

unregistriert

29

26.06.2013, 10:30

Das werde ich dann mal versuchen. Zur Sicherheit mach ich noch ein Backup von der System-Partition. Das Update dauert sicher ewig bei meiner Gurke!?

30

26.06.2013, 10:49

Na ja, kann schon sein. IdR ist die Frequenz der Updates bei Gentoo Usern wesentlich höher als 3-4 Jahre wie in diesem Fall. Da kommst ohne einen kräftigen Schluck Kaffee beim Warten nicht vorbei.

... nimm dir da eine grosse Tasse.
Eine echt grosse.

Oder vlt. besser einen Eimer. =)

Andererseits: du kannst das Gerät während des Updates ja nach wie vor benutzen und deine üblichen Sachen damit machen. Mal abgesehen von einer kleinen Performancebremse wegen dem Merge.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

MegaV0lt

unregistriert

31

26.06.2013, 11:51

Leider zu früh gefreut. Das bricht ab mit:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
hdvdr01 ~ # emerge -e -av @world

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

Calculating dependencies... done!

The following keyword changes are necessary to proceed:
 (see "package.accept_keywords" in the portage(5) man page for more details)
# required by @selected
# required by @world (argument)
=dev-libs/libhid-0.2.16-r3 ~x86
# required by @selected
# required by @world (argument)
=sys-power/sispmctl-2.7 ~x86
# required by @selected
# required by @world (argument)
=media-video/lxdvdrip-1.76 ~x86
# required by www-misc/xxv-1.6.1::local-repo
# required by @selected
# required by @world (argument)
=dev-perl/TextToHTML-2.510.0 ~x86
# required by @selected
# required by @world (argument)
=app-misc/irtrans-irserver-6.03.09 ~x86
# required by @selected
# required by @world (argument)
=app-misc/irtrans-irclient-6.01.05 ~x86
# required by @selected
# required by @world (argument)
=media-video/tcmplex-panteltje-0.4.7 ~x86
# required by media-video/lxdvdrip-1.76
# required by @selected
# required by @world (argument)
=media-video/streamdvd-0.4-r1 ~x86

The following mask changes are necessary to proceed:
 (see "package.unmask" in the portage(5) man page for more details)
# required by @selected
# required by @world (argument)
# /usr/portage/profiles/package.mask:
# Samuli Suominen <ssuominen@gentoo.org> (07 Mar 2013)
# Masked in favour of sys-apps/kmod. Now is the time to file
# bugs against sys-apps/kmod if you have issues with it you
# didn't with module-init-tools.
# Later removal at 01-01-2014 by request from eudev maintainers
=sys-apps/module-init-tools-3.16-r2

NOTE: The --autounmask-keep-masks option will prevent emerge
  	from creating package.unmask or ** keyword changes.

Use --autounmask-write to write changes to config files (honoring
CONFIG_PROTECT). Carefully examine the list of proposed changes,
paying special attention to mask or keyword changes that may expose
experimental or unstable packages.

!!! The following updates are masked by LICENSE changes:
- net-im/skype-4.2.0.11::gentoo (masked by: skype-4.0.0.7-copyright license(s))
A copy of the 'skype-4.0.0.7-copyright' license is located at '/mnt/data/portage/licenses/skype-4.0.0.7-copyright'.

For more information, see the MASKED PACKAGES section in the emerge
man page or refer to the Gentoo Handbook.


emerge: there are no ebuilds to satisfy "app-benchmarks/bootchart".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "dev-python/pysqlite".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "x11-misc/mkxf86config".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "sys-apps/hotplug".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "dev-util/pccts".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "media-libs/libbluray-xine".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "x11-drivers/xf86-input-virtualbox".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "sys-fs/ntfsprogs".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "app-text/utrac".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "x11-libs/qt-gui:4".
(dependency required by "media-video/makemkv-1.6.15::local-repo" [ebuild])
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])
Soll ich noch mal das versuchen:

Quellcode

1
emerge -1 -O -av sys-fs/udev dev-qt/qtcore dev-qt/qtgui dev-qt/qt3support dev-qt/qtdbus dev-qt/qtscript kde-base/kde-env kde-base/kdelibs

32

26.06.2013, 12:40

Hm, nein. Hier hast du noch ein paar Dinge zu lösen:

1. Mach mal ein backup von deinem world-file (/var/lib/portage/world)

2. Die packages dev-libs/libhid, sys-power/sispmctl, media-video/lxdvdrip, www-misc/xxv, dev-perl/TextToHTML, app-misc/irtrans-irserver, app-misc/irtrans-irclient, media-video/tcmplex-panteltje, (media-video/lxdvdrip), media-video/streamdvd benötigen das ~x86 USE ... was ja ein ARCH keyword ist und daher etwas seltsam ist. Egal voerst mal. Nimm die aus dem World-file mal raus, sofern vorhanden. Tip: im World-file werden Zeilen mit einem "#" am Anfang ignoriert.

3. sys-apps/module-init-tools wurde ersetzt. Raus damit aus dem world-file, sofern vorhanden.

4. Skype hat eine Lizenzproblem. Füge

Quellcode

1
net-im/skype skype-4.0.0.7-copyright
in deine /etc/portage/package.license ein.

5. Entferne mal all die problemtischen packages aus dem World-file: app-benchmarks/bootchart, dev-python/pysqlite, x11-misc/mkxf86config, sys-apps/hotplug, dev-util/pccts, media-libs/libbluray-xine, x11-drivers/xf86-input-virtualbox, sys-fs/ntfsprogs, app-text/utrac, x11-libs/qt-gui. Die gibt es nicht mehr und wurden zum Teil von anderen ersetzt.


Retry.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

MegaV0lt

unregistriert

33

26.06.2013, 13:10

Ok, habe alles so weit gemacht. Einzig das in Punkt 5 genannte x11-libs/qt-gui steht nicht in der world-Datei

Skype habe ich außerdem ein emerge -C verpasst. Der PC ist ein SAT-Empfänger mit HD. Den Skype verwende ich da sicher nicht. Das hab ich ja nicht mal auf meinem "MiniWeich" System

Hier mal der Stand von emerge -e -av @world

Quellcode

1
2
3
4
5
6
7
8
9
10
11
hdvdr01 ~ # emerge -e -av @world

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

Calculating dependencies... done!

emerge: there are no ebuilds to satisfy "media-libs/win32codecs".
(dependency required by "media-libs/xine-lib-1.2.9999::local-repo[real]" [ebuild])
(dependency required by "media-libs/libbluray-9999::local-repo[xine]" [ebuild])
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

34

26.06.2013, 13:16

Du hast mit Gen2VDR auch da ein local-repo. Aus diesem ist das media-libs/libbluray package, welches die nicht mehr existente win32codecs haben möchte.

mach auch ein "#" vor dem media-libs/libbluray im world-file.


Retry.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

MegaV0lt

unregistriert

35

26.06.2013, 14:07

Locales Repo? Keine Ahnung. Kann schon sein. Es ist eine Distri für den VDR.

Neuer Versuch.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
hdvdr01 ~ # emerge -e -av @world

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

Calculating dependencies... done!

emerge: there are no ebuilds to satisfy "media-libs/win32codecs".
(dependency required by "media-libs/xine-lib-1.2.9999::local-repo[real]" [ebuild])
(dependency required by "media-libs/libbluray-9999::local-repo[xine]" [ebuild])
(dependency required by "media-video/mplayer2-2.0_p20130126[bluray]" [ebuild])
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])
Bluray brauch ich nicht. Kann ich das nicht entfernen? Für mplayer müsste ich dann das USE-Flag ändern. Wie? Mit USE=-bluray emerge...

36

26.06.2013, 14:23

Du hast irgendwie ein lokales repo, welches dir alte packages reinspielt.

Untote Zombie Packages sozusagen.

Eben da: "edia-libs/libbluray-9999::local-repo[xine]" hinten ist "local-repo" ein Hinweis auf das. Gib doch mal dein emerge --info durch und guck was da im PORTAGE_OVERLAY reinkommt. Auch: hast du layman drauf und siehst du das Teil via

Quellcode

1
# layman -l
und wenn, dann kannst du ja mal mit

Quellcode

1
# layman -d local-repo
das Ding daktivieren.

Wie sieht das aus?



Retry.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

MegaV0lt

unregistriert

37

26.06.2013, 14:30

emerge --info

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
Portage 2.2.0_alpha185 (default/linux/x86/13.0/desktop/kde, gcc-4.6.3, glibc-2.13-r4, 3.0.6-gentoo i686)
=================================================================
System uname: Linux-3.0.6-gentoo-i686-AMD_Athlon-tm-_Dual_Core_Processor_4850e-with-gentoo-2.1
KiB Mem: 	1031296 total,	119720 free
KiB Swap:	1023996 total,	989068 free
Timestamp of tree: Tue, 25 Jun 2013 14:30:01 +0000
ld GNU ld (GNU Binutils) 2.21.1
distcc 3.1 i686-pc-linux-gnu [disabled]
ccache version 2.4 [disabled]
app-shells/bash:      	4.2_p37
dev-java/java-config: 	2.1.11-r3
dev-lang/python:      	2.7.1-r1, 3.1.3-r1, 3.2.3-r2
dev-util/ccache:      	2.4-r9
dev-util/cmake:       	2.8.4-r1
dev-util/pkgconfig:   	0.28
sys-apps/baselayout:  	2.1
sys-apps/openrc:      	0.9.3-r1
sys-apps/sandbox:     	2.6-r1
sys-devel/autoconf:   	2.13, 2.68
sys-devel/automake:   	1.9.6-r3, 1.10.3, 1.11.1, 1.12.6
sys-devel/binutils:   	2.21.1
sys-devel/gcc:        	4.5.3-r1, 4.6.3
sys-devel/gcc-config: 	1.7.3
sys-devel/libtool:    	2.4-r1
sys-devel/make:       	3.82-r1
sys-kernel/linux-headers: 2.6.39 (virtual/os-headers)
sys-libs/glibc:       	2.13-r4
Repositories:

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

local-repo
	location: /usr/local/portage
	masters: gentoo
	priority: 0

Installed sets: @system
ABI_X86="32"
ACCEPT_KEYWORDS="x86"
ACCEPT_LICENSE="* -@EULA PUEL skype-eula dlj-1.1 AdobeFlash-10.1"
ACCEPT_PROPERTIES="*"
ACCEPT_RESTRICT="*"
ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1 emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci"
ALSA_TOOLS="as10k1 ac3dec"
ANT_HOME="/usr/share/ant"
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"
ARCH="x86"
AUTOCLEAN="yes"
AUTO_SYMLINK="no"
BOOTSTRAP_USE="cxx unicode python_targets_python3_2 python_targets_python2_7"
CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author"
CAMERAS="ptp2"
CBUILD="i686-pc-linux-gnu"
CCACHE_SIZE="512M"
CFLAGS="-march=native -O2 -pipe -falign-functions=4 -fprefetch-loop-arrays"
CHOST="i686-pc-linux-gnu"
CLEAN_DELAY="5"
COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog"
COLLISION_IGNORE="/lib/modules/* *.py[co] *$py.class"
CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php5.3/ext-active/ /etc/php/cgi-php5.3/ext-active/ /etc/php/cli-php5.3/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/splash /etc/terminfo"
CXXFLAGS="-march=native -O2 -pipe -falign-functions=4 -fprefetch-loop-arrays"
DCCC_PATH="/usr/lib/distcc/bin"
DISTCC_LOG=""
DISTCC_VERBOSE="0"
DISTDIR="/usr/portage/distfiles"
DVB_LOCAL_PATCHES="/usr/local/portage/patches/v4l/*.diff"
EDITOR="/bin/nano"
ELIBC="glibc"
EMERGE_DEFAULT_OPTS="--ask --verbose"
EMERGE_WARNING_DELAY="10"
EPREFIX=""
EROOT="/"
FCFLAGS="-O2 -march=i686 -pipe"
FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync news parallel-fetch preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch"
FETCHCOMMAND="wget -t 3 -T 60 --passive-ftp -O "${DISTDIR}/${FILE}" "${URI}""
FETCHCOMMAND_RSYNC="rsync -avP "${URI}" "${DISTDIR}/${FILE}""
FETCHCOMMAND_SFTP="bash -c "x=\${2#sftp://} ; host=\${x%%/*} ; port=\${host##*:} ; host=\${host%:*} ; [[ \${host} = \${port} ]] && port=22 ; eval "declare -a ssh_opts=(\${3})" ; exec sftp -P \${port} "\${ssh_opts[@]}" "\${host}:/\${x#*/}" "\$1"" sftp "${DISTDIR}/${FILE}" "${URI}" "${PORTAGE_SSH_OPTS}""
FETCHCOMMAND_SSH="bash -c "x=\${2#ssh://} ; host=\${x%%/*} ; port=\${host##*:} ; host=\${host%:*} ; [[ \${host} = \${port} ]] && port=22 ; exec rsync --rsh="ssh -p\${port} \${3}" -avP "\${host}:/\${x#*/}" "\$1"" rsync "${DISTDIR}/${FILE}" "${URI}" "${PORTAGE_SSH_OPTS}""
FFLAGS="-O2 -march=i686 -pipe"
GCC_SPECS=""
GDK_USE_XFT="1"
GENTOO_MIRRORS="ftp://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/ ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/gentoo http://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ "
GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip tripmate tnt ubx"
GRUB_PLATFORMS=""
GSETTINGS_BACKEND="gconf"
HG="/usr/bin/hg"
HOME="/root"
INFOPATH="/usr/share/info:/usr/share/gcc-data/i686-pc-linux-gnu/4.6.3/info:/usr/share/binutils-data/i686-pc-linux-gnu/2.21.1/info"
INPUT_DEVICES="joystick evdev synaptics"
IUSE_IMPLICIT="prefix"
JAVAC="/etc/java-config-2/current-system-vm/bin/javac"
JAVA_HOME="/etc/java-config-2/current-system-vm"
JDK_HOME="/etc/java-config-2/current-system-vm"
KBUILD_OUTPUT_PREFIX=""
KERNEL="linux"
LANG="de_DE.UTF-8"
LANGUAGE="de_DE.UTF-8"
LCDPROC_DRIVERS="all"
LCD_DEVICES="all"
LC_COLLATE="C"
LC_CTYPE="de_DE.UTF-8"
LC_MESSAGES="de_DE.UTF-8"
LC_NUMERIC="C"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
LESS="-R -M --shift 5"
LESSOPEN="|lesspipe.sh %s"
LIBBLURAY_CP="/usr/share/libbluray/lib/libbluray.jar"
LIBGL_DRIVERS_PATH="/usr/lib/dri"
LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer"
LINGUAS="de en"
LINUX_PORTAGE_WRITABLE="no"
LIRC_DEVICES="userspace"
LOGNAME="root"
LS_COLORS="rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.pdf=00;32:*.ps=00;32:*.txt=00;32:*.patch=00;32:*.diff=00;32:*.log=00;32:*.tex=00;32:*.doc=00;32:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:"
MAIL="/var/mail/root"
MAKEOPTS="-j2"
MANPATH="/etc/java-config-2/current-system-vm/man:/usr/local/share/man:/usr/share/man:/usr/share/gcc-data/i686-pc-linux-gnu/4.6.3/man:/usr/share/binutils-data/i686-pc-linux-gnu/2.21.1/man:/etc/java-config/system-vm/man/:/usr/lib/php5.3/man/"
MULTIOSDIRS="../lib"
NETBEANS="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml"
OFFICE_IMPLEMENTATION="libreoffice"
OPENCL_PROFILE="nvidia"
OPENGL_PROFILE="nvidia"
PAGER="/usr/bin/less"
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin:/usr/i686-pc-linux-gnu/gcc-bin/4.6.3"
PHP_TARGETS="php5-3"
PKGDIR="/usr/portage/packages"
PORTAGE_ARCHLIST="ppc sparc64-freebsd ppc-openbsd x86-openbsd ppc64 x86-winnt x86-fbsd ppc-aix alpha arm x86-freebsd s390 amd64 arm-linux x86-macos x64-openbsd ia64-hpux hppa x86-netbsd ppc64-linux x86-cygwin amd64-linux ia64-linux x86 sparc-solaris x64-freebsd sparc64-solaris x86-linux x64-macos sparc m68k-mint ia64 mips ppc-macos x86-interix hppa-hpux amd64-fbsd x64-solaris m68k sh x86-solaris sparc-fbsd"
PORTAGE_BIN_PATH="/usr/lib/portage/bin"
PORTAGE_COMPRESS_EXCLUDE_SUFFIXES="css gif htm[l]? jp[e]?g js pdf png"
PORTAGE_CONFIGROOT="/"
PORTAGE_DEBUG="0"
PORTAGE_DEPCACHEDIR="/var/cache/edb/dep"
PORTAGE_ELOG_CLASSES="info warn error log"
PORTAGE_ELOG_MAILFROM="portage@localhost"
PORTAGE_ELOG_MAILSUBJECT="[portage] ebuild log for ${PACKAGE} on ${HOST}"
PORTAGE_ELOG_MAILURI="root"
PORTAGE_ELOG_SYSTEM="save"
PORTAGE_FETCH_CHECKSUM_TRY_MIRRORS="5"
PORTAGE_FETCH_RESUME_MIN_SIZE="350K"
PORTAGE_GID="250"
PORTAGE_GPG_SIGNING_COMMAND="gpg --sign --digest-algo SHA256 --clearsign --yes --default-key "${PORTAGE_GPG_KEY}" --homedir "${PORTAGE_GPG_DIR}" "${FILE}""
PORTAGE_INST_GID="0"
PORTAGE_INST_UID="0"
PORTAGE_INTERNAL_CALLER="1"
PORTAGE_NICENESS="15"
PORTAGE_OVERRIDE_EPREFIX=""
PORTAGE_PYM_PATH="/usr/lib/portage/pym"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_RSYNC_RETRIES="-1"
PORTAGE_SYNC_STALE="30"
PORTAGE_TMPDIR="/var/tmp"
PORTAGE_TMPFS="/dev/shm"
PORTAGE_VERBOSE="1"
PORTAGE_WORKDIR_MODE="0700"
PORTAGE_XATTR_EXCLUDE="security.*"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
PORT_LOGDIR="/log/portage"
PORT_LOGDIR_CLEAN="find "${PORT_LOGDIR}" -type f ! -name "summary.log*" -mtime +7 -delete"
PRELINK_PATH_MASK="/usr/lib/klibc:/usr/lib/libfreebl3.so:/usr/lib/libnssdbm3.so:/usr/lib/libsoftokn3.so"
PROFILE_ONLY_VARIABLES="ARCH ELIBC IUSE_IMPLICIT KERNEL USERLAND USE_EXPAND_IMPLICIT USE_EXPAND_UNPREFIXED USE_EXPAND_VALUES_ARCH USE_EXPAND_VALUES_ELIBC USE_EXPAND_VALUES_KERNEL USE_EXPAND_VALUES_USERLAND"
PS1="\[\033[01;31m\]\h \[\033[01;34m\]\W \$ \[\033[00m\]"
PWD="/root"
PYTHONDONTWRITEBYTECODE="1"
PYTHON_SINGLE_TARGET="python2_7"
PYTHON_TARGETS="python2_7 python3_2"
QT_PLUGIN_PATH="/usr/lib/kde4/plugins"
QUICKPKG_DEFAULT_OPTS="--include-config=y --include-unmodified-config=y"
RESUMECOMMAND="wget -c -t 3 -T 60 --passive-ftp -O "${DISTDIR}/${FILE}" "${URI}""
RESUMECOMMAND_RSYNC="rsync -avP "${URI}" "${DISTDIR}/${FILE}""
RESUMECOMMAND_SSH="bash -c "x=\${2#ssh://} ; host=\${x%%/*} ; port=\${host##*:} ; host=\${host%:*} ; [[ \${host} = \${port} ]] && port=22 ; exec rsync --rsh="ssh -p\${port} \${3}" -avP "\${host}:/\${x#*/}" "\$1"" rsync "${DISTDIR}/${FILE}" "${URI}" "${PORTAGE_SSH_OPTS}""
ROOT="/"
ROOTPATH="/opt/bin:/usr/i686-pc-linux-gnu/gcc-bin/4.6.3"
RPMDIR="/usr/portage/rpm"
RUBYOPT="-rauto_gem"
RUBY_TARGETS="ruby19 ruby18"
R_HOME="/usr/lib/R"
SANE_CONFIG_DIR="/etc/sane.d"
SGML_CATALOG_FILES="/etc/sgml/sgml-ent.cat:/etc/sgml/sgml-docbook-3.0.cat:/etc/sgml/xml-docbook-4.3.cat:/etc/sgml/sgml-docbook-4.0.cat:/etc/sgml/sgml-docbook-4.4.cat:/etc/sgml/openjade-1.3.2.cat:/etc/sgml/xml-docbook-4.4.cat:/etc/sgml/sgml-docbook-4.1.cat:/etc/sgml/dsssl-docbook-stylesheets.cat:/etc/sgml/sgml-docbook-3.1.cat:/etc/sgml/sgml-lite.cat:/etc/sgml/xml-docbook-4.2.cat:/etc/sgml/xml-docbook-4.1.2.cat:/etc/sgml/xml-docbook-4.5.cat:/etc/sgml/sgml-docbook-4.2.cat:/etc/sgml/sgml-docbook.cat"
SHELL="/bin/bash"
SHLVL="1"
SSH_CLIENT="192.168.178.21 29155 22"
SSH_CONNECTION="192.168.178.21 29155 192.168.178.104 22"
SSH_TTY="/dev/pts/0"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
TERM="xterm"
UNINSTALL_IGNORE="/lib/modules/*"
USB_DEVFS_PATH="/dev/bus/usb"
USE="7zip X a52 aac aalib acl acpi alsa amr amrnb amrwb apache2 aspell automount berkdb bluetooth bluray branding bzip2 cairo cardbus cdaudio cdda cddb cdparanoia cdr cli consolekit corefonts cracklib crypt cups cxx daap dbus declarative device-mapper dmx dri dts dv dvb dvd dvdr dvdread dxr3 emboss encode esd exif extensions faac faad fam fbcon fbcondecor ffmpeg fftw firefox flac fontconfig fortran ftp gd gdbm gif gnutls gpm gtk hddtemp iconv ieee1394 imagemagick imap imlib ipod ipv6 irda ithreads jack java joystick jpeg kde kde4 kipi lame lastfm latin1 lcms libcaca libnotify libwww lirc live lm_sensors logrotate mad matroska mmap mmx mmxext mng modplug modules mp2 mp3 mp3tunes mp4 mp4live mpeg mplayer mtp mudflap musepack mysql nas ncurses network nls nptl nsplugin ntfs nvidia nvram ogg opengl openmp oscar oss pam pango pcre pda pdf perl phonon php pic plasma png policykit ppds python qt3support qt4 quicktime rdesktop readline real samba scanner schroedinger sdl semantic-desktop session slang sndfile snes snmp spell sql sse ssl startup-notification svg svga tcpd theora tiff transcode truetype udev udisks unicode upower usb v4l v4l2 vaapi vcd vdpau vdr vorbis webkit wifi wxwidgets x264 x86 xcb xcomposite xine xinerama xmame xml xrandr xscreensaver xv xvid zlib" ABI_X86="32" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1 emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" 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" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author" CAMERAS="ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip tripmate tnt ubx" INPUT_DEVICES="joystick evdev synaptics" KERNEL="linux" LCD_DEVICES="all" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="de en" LIRC_DEVICES="userspace" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-3" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7 python3_2" RUBY_TARGETS="ruby19 ruby18" USERLAND="GNU" VIDEO_CARDS="fbdev i740 i810 intel mga nv nvidia r128 radeon radeonhd s3 savage sis via v4l vesa vga virtualbox" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
USER="root"
USERLAND="GNU"
USE_EXPAND="ABI_X86 ALSA_CARDS APACHE2_MODULES APACHE2_MPMS CALLIGRA_FEATURES CAMERAS COLLECTD_PLUGINS CROSSCOMPILE_OPTS CURL_SSL DRACUT_MODULES DVB_CARDS ELIBC ENLIGHTENMENT_MODULES FCDSL_CARDS FFTOOLS FOO2ZJS_DEVICES FRITZCAPI_CARDS GPSD_PROTOCOLS GRUB_PLATFORMS INPUT_DEVICES KERNEL LCD_DEVICES LIBREOFFICE_EXTENSIONS LINGUAS LIRC_DEVICES MISDN_CARDS MONKEYD_PLUGINS NETBEANS_MODULES NGINX_MODULES_HTTP NGINX_MODULES_MAIL OFED_DRIVERS OFFICE_IMPLEMENTATION OPENMPI_FABRICS OPENMPI_OFED_FEATURES OPENMPI_RM PHP_TARGETS PYTHON_SINGLE_TARGET PYTHON_TARGETS QEMU_SOFTMMU_TARGETS QEMU_USER_TARGETS RUBY_TARGETS SANE_BACKENDS USERLAND VIDEO_CARDS VOICEMAIL_STORAGE XFCE_PLUGINS XTABLES_ADDONS"
USE_EXPAND_HIDDEN="ABI_X86 CROSSCOMPILE_OPTS ELIBC KERNEL USERLAND"
USE_EXPAND_IMPLICIT="ARCH ELIBC KERNEL USERLAND"
USE_EXPAND_UNPREFIXED="ARCH"
USE_EXPAND_VALUES_ARCH="alpha amd64 amd64-fbsd amd64-linux arm arm-linux hppa hppa-hpux ia64 ia64-hpux ia64-linux m68k m68k-mint mips ppc ppc64 ppc64-linux ppc-aix ppc-macos ppc-openbsd s390 sh sparc sparc64-freebsd sparc64-solaris sparc-fbsd sparc-solaris x64-freebsd x64-macos x64-openbsd x64-solaris x86 x86-cygwin x86-fbsd x86-freebsd x86-interix x86-linux x86-macos x86-netbsd x86-openbsd x86-solaris x86-winnt"
USE_EXPAND_VALUES_ELIBC="AIX Cygwin Darwin FreeBSD glibc HPUX Interix mintlib musl NetBSD OpenBSD SunOS uclibc Winnt"
USE_EXPAND_VALUES_KERNEL="AIX Cygwin Darwin FreeBSD freemint HPUX Interix linux NetBSD OpenBSD SunOS Winnt"
USE_EXPAND_VALUES_USERLAND="BSD GNU"
USE_ORDER="env:pkg:conf:defaults:pkginternal:repo:env.d"
V4L_DVB_HG_REPO_URI="http://linuxtv.org/hg/~endriss/media_build_experimental"
VBOX_APP_HOME="/opt/VirtualBox"
VDRSOURCE_DIR="/usr/local/src"
VDR_LOCAL_PATCHES=""
VDR_OPTS="vfat vdr_source analogtv"
VIDEO_CARDS="fbdev i740 i810 intel mga nv nvidia r128 radeon radeonhd s3 savage sis via v4l vesa vga virtualbox"
XBMC_GIT_BRANCH="Dharma"
XBMC_GIT_REPO_URI="git://github.com/xbmc/xbmc.git"
XDG_CONFIG_DIRS="/etc/xdg"
XDG_DATA_DIRS="/usr/local/share:/usr/share"
XDG_SESSION_COOKIE="5c101cc814a8a58637e2830045d01cb6-1372247876.606651-1918676864"
XINE_LIB_GIT_BRANCH="df-osd-handling+alter-vdpau-h264-decoder"
XINE_LIB_LOCAL_PATCHES="/usr/local/portage/patches/xine-lib/*.diff"
XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
_="/usr/bin/emerge"
ftp_proxy=""
http_proxy=""
https_proxy=""
OK, da is was aber mit layman stimmt auch was nicht:

Quellcode

1
2
3
hdvdr01 ~ # layman -l
hdvdr01 ~ # layman -d local-repo
* Overlay "local-repo" does not exist.

38

26.06.2013, 14:35

Das local-repo läuft nicht über layman und wird nicht von diesem verwaltet.

ABER: dein emerge --info liefer

Quellcode

1
PORTDIR_OVERLAY="/usr/local/portage"
und das ist böse ...

Jetzt 2 Varianten:

1. Du suchst in /etc/portage nach dem Eintrag und wirfst ihn raus.

2. Oder du sagst einfach "alles was in diesem repo ist, ist für mich maskiert". Dazu musst du

Quellcode

1
*/*::local-repo
in deine /etc/portage/package.mask eintragen.

Chose your weapon.



Retry.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

MegaV0lt

unregistriert

39

26.06.2013, 14:45

OK, hab es in der /etc/make.conf gefunden und auskommentiert. Ein neuer Versuch gibt

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
hdvdr01 ~ # emerge -e -av @world

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

Calculating dependencies... done!

The following keyword changes are necessary to proceed:
 (see "package.accept_keywords" in the portage(5) man page for more details)
# required by @selected
# required by @world (argument)
=media-video/replex-0.1.6.8 ~x86
# required by x11-libs/libva-1.1.1[video_cards_intel]
# required by media-video/vlc-2.0.7[vaapi]
# required by @selected
# required by @world (argument)
=x11-libs/libva-intel-driver-1.0.20 ~x86
# required by @selected
# required by @world (argument)
=app-misc/activylircd-0.4 ~x86

Use --autounmask-write to write changes to config files (honoring
CONFIG_PROTECT). Carefully examine the list of proposed changes,
paying special attention to mask or keyword changes that may expose
experimental or unstable packages.

emerge: there are no ebuilds to satisfy "media-tv/w_pvrscan".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "sys-power/cpupw".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "media-gfx/gfxboot".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "app-misc/tvia_overlay".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "dev-libs/libwiimote".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "app-misc/speedcontrol".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "media-fonts/vdrsymbols-g2v".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "dev-java/microemulator-bin".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "media-tv/epg2timers".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "app-admin/scalpel".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "app-misc/tdk5002cctl".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

emerge: there are no ebuilds to satisfy "sys-kernel/r8168".
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])

!!! The ebuild selected to satisfy "media-libs/sdl-mixer[mikmod,vorbis]" has unmet requirements.
- media-libs/sdl-mixer-1.2.12-r3::gentoo USE="(consolekit) flac mad mikmod modplug mp3 (policykit) vorbis wav -fluidsynth -midi -mod -playtools -smpeg -static-libs -timidity"

  The following REQUIRED_USE flag constraints are unsatisfied:
	mikmod? ( mod ) modplug? ( mod )

  The above constraints are a subset of the following complete expression:
	midi? ( any-of ( timidity fluidsynth ) ) timidity? ( midi ) fluidsynth? ( midi ) mp3? ( any-of ( smpeg mad ) ) smpeg? ( mp3 ) mad? ( mp3 ) mod? ( any-of ( mikmod modplug ) ) mikmod? ( mod ) modplug? ( mod )

(dependency required by "games-arcade/supertux-0.1.3" [ebuild])
(dependency required by "@selected" [set])
(dependency required by "@world" [argument])
So wie ich das sehe sind nun auch viele VDR-Spezifische Sachen wo sich emerge beschwert.

40

26.06.2013, 14:59

Ja, sieht so aus, als wären das Teile aus eben diesen local-repo, welches durch dein Eingreifen in der letzten Aktion jetzt dem System nicht mehr bekannt sind.

=)

Es wäre wirklich einfach du würdest das System neu aufsetzen. Du bist jetzt in etwas wieder bei http://www.gentooforum.de/post/149309/emerge-schl-gt-fehl.html#post149309 aber mit anderen Packages.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>