Re: [gentoo-user] Systemd as drop-in replacement for udev?

2013-12-06 Thread J. Roeleveld
On Fri, December 6, 2013 08:53, Michael Hampicke wrote:

 Just remove init=/usr/lib/systemd/systemd from your kernel command
 line, and you can boot your old openrc installation (if you did un
 unmerge it)


 That should mean: ..if you did not unmerge it.



It doesn't seem that simple from the wiki-page on how to switch to systemd:
http://wiki.gentoo.org/wiki/Systemd

In the conflicts section there is mention of having to change syslog-ng
and cryptsetup.

I don't have a Gentoo box in front of me to check, but I think udev and
systemd can not be installed simultaneously.
Was this changed?

--
Joost





Re: [gentoo-user] Merging separate /usr back into / - one last time...

2013-12-06 Thread Tanstaafl

On 2013-12-04 8:07 AM, Peter Humphrey pe...@prh.myzen.co.uk wrote:

On Wednesday 04 Dec 2013 07:28:18 Tanstaafl wrote:

I've never used the -x option with cp... what exactly is meant by 'stay
on same filesystem’?Should



Stay on same filesystem is for the case in which you have another partition
mounted somewhere in the tree below the current working directory. It means
that you want to omit everything in that second file system. If you haven’t any
such complication you don’t need to specify -x.


Ah, ok that makes perfect sense, thanks.

And for the record (you didn't specifically say so), are you in 
agreement that


cp -a /usr/. /usr.tmp/.

will accomplish the exact same thing as the rsync command I was planning 
on using?



... I imagine I could use the cp command first on the live system to ‘prime’
it, then use the rsync command after booting to the liveCD to quickly confirm
it - but if there were no issues during the initial cp, and nothing changes
in between, there shouldn't really be any difference to copy anyway?



Indeed. I hope you don’t have experience of cp failing to copy what it should.


Right... if it did it would most likely indicate some kind of filesystem 
corruption...


Thanks again Peter,

Charles



Re: [gentoo-user] Merging separate /usr back into / - one last time...

2013-12-06 Thread godzil

Le 2013-12-06 11:07, Tanstaafl wrote :
And for the record (you didn't specifically say so), are you in 
agreement that


cp -a /usr/. /usr.tmp/.

will accomplish the exact same thing as the rsync command I was
planning on using?



For me, it's best to use rsync, because rsync will not copy file if they 
are already existing, and are the same. It's quite usefull when using a 
copy over a network, or even locally when spurious error can occur and 
especially when the filesystem is live and file may be modified during 
the copy.


To copy large file tree rsync is, for me, always the best choice, and 
I'm pretty sure that there are some cases that rsync will behave better 
than a simple recursive cp


Cheers,
Godzil



Re: [gentoo-user] KWin closed unexpexctedly:(

2013-12-06 Thread Jackie

在 Thu, 05 Dec 2013 18:26:26 +0800,the the.gu...@mail.ru 写道:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 12/05/13 12:25, Jackie wrote:

Hello! I am using Gentoo with kernel-3.11.6  KDE-4.11.4. It's been
a while since I last used Gentoo,but when I login yesterday via
KDM,my desktop went blackout emmediately with only mouse cursor(I
could still move it) and my conky there.I didn't even know what
happened. I then reboot and used openbox/KDE session and it worked
all properly and I upgraded my system.After all that I rebooted
again and KDE still isn't working now.All I know is that when I log
in all is black...I tried to remove ~/.kde4 but nothing got any
better.I checked .xsession-error and didn't really understand and I
put it here https://gist.github.com/anonymous/7800556.Any help?I
just don't know what to do now


What about X log?





Thanks for all your help!
I've checked the Xorg.0.log and it seemed to have something to do with  
NVDIA driver.I have kernel-3.11.6 and  
x11-drivers/nvidia-drivers-325.15,which I patched so that nvidia would  
work under the kernel with a  
patch:https://gist.github.com/anonymous/7823349.I also put the X log file  
here:https://gist.github.com/anonymous/7821549.Someone take a look at  
it,please?

BTW,I also merged akonadi and the matter remains...Many thanks!



Re: [gentoo-user] KWin closed unexpexctedly:(

2013-12-06 Thread Jackie

在 Fri, 06 Dec 2013 20:59:27 +0800,Jackie jiangjun12...@gmail.com 写道:


在 Thu, 05 Dec 2013 18:26:26 +0800,the the.gu...@mail.ru 写道:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 12/05/13 12:25, Jackie wrote:

Hello! I am using Gentoo with kernel-3.11.6  KDE-4.11.4. It's been
a while since I last used Gentoo,but when I login yesterday via
KDM,my desktop went blackout emmediately with only mouse cursor(I
could still move it) and my conky there.I didn't even know what
happened. I then reboot and used openbox/KDE session and it worked
all properly and I upgraded my system.After all that I rebooted
again and KDE still isn't working now.All I know is that when I log
in all is black...I tried to remove ~/.kde4 but nothing got any
better.I checked .xsession-error and didn't really understand and I
put it here https://gist.github.com/anonymous/7800556.Any help?I
just don't know what to do now


What about X log?





Thanks for all your help!
I've checked the Xorg.0.log and it seemed to have something to do with  
NVDIA driver.I have kernel-3.11.6 and  
x11-drivers/nvidia-drivers-325.15,which I patched so that nvidia would  
work under the kernel with a  
patch:https://gist.github.com/anonymous/7823349.I also put the X log  
file here:https://gist.github.com/anonymous/7821549.Someone take a look  
at it,please?

BTW,I also merged akonadi and the matter remains...Many thanks!



Really sorry,the pasted link above should be:
  patch file:https://gist.github.com/anonymous/7823349
  X log:https://gist.github.com/anonymous/7800556
Is it really NVDIA that caused this?Anyone experienced same problem as  
mine? Thanks!




Re: [gentoo-user] Merging separate /usr back into / - one last time...

2013-12-06 Thread Bruce Hill
On Fri, Dec 06, 2013 at 06:07:01AM -0500, Tanstaafl wrote:
 
 And for the record (you didn't specifically say so), are you in 
 agreement that
 
 cp -a /usr/. /usr.tmp/.
 
 will accomplish the exact same thing as the rsync command I was planning 
 on using?

There are reasons why rsync is better than cp. The best one IMO is that rysnc
will not copy a corrupt file, while cp will. And rsync will tell you about the
corrupt file.

You have so many questions about rsync, and different opinions thrown at you.
Why do you not read man rsync and learn about it? This man page is thorough,
easy to read, and explains it's usage by examples.

Cheers,
Bruce
-- 
Happy Penguin Computers   ')
126 Fenco Drive   ( \
Tupelo, MS 38801   ^^
supp...@happypenguincomputers.com
662-269-2706 662-205-6424
http://happypenguincomputers.com/

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

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



[gentoo-user] uzbl

2013-12-06 Thread Elias Diem
Hello there

I've got a problem with uzbl, a web browser.

The install works fine. I can also start the program. 
However it seems that uzbl doesn't want to listen to any 
keystrokes I type. For example 'o' to open an URL does 
nothing.

Is anybody else here using uzbl and can help me with the 
problem?

*  www-client/uzbl
  Latest version available: 2011.04.12
  Latest version installed: 2011.04.12

I run amd64.

Thanks.

-- 
Greetings
Elias





Re: [gentoo-user] uzbl

2013-12-06 Thread Tim Millican
On Fri, Dec 06, 2013 at 03:28:22PM +0100, Elias Diem wrote:
 Hello there
 
 I've got a problem with uzbl, a web browser.
 
 The install works fine. I can also start the program. 
 However it seems that uzbl doesn't want to listen to any 
 keystrokes I type. For example 'o' to open an URL does 
 nothing.
 
 Is anybody else here using uzbl and can help me with the 
 problem?
 
 *  www-client/uzbl
   Latest version available: 2011.04.12
   Latest version installed: 2011.04.12
 
 I run amd64.
 
 Thanks.
 
 -- 
 Greetings
 Elias
 
 
 

I had the exact same problem when I switched, but its a pretty easy fix.
UZBL is written to use Python 2, so you either have to set that as your default
in `eselect python`, or change the shebang at the top of 
/usr/bin/uzbl-event-manager
to explicitly use Python2. (Change ''#!/usr/bin/env python' to '#!/usr/bin/env 
python2')


signature.asc
Description: Digital signature


[gentoo-user] trouble emerging (*not* running) systemd on stable amd64

2013-12-06 Thread gottlieb
I hadn't synced one of my stable boxes for a while and tried today.
This brings in gnome-3.8 and with it systemd.  I realize I will need to
*run* systemd to go to gnome-3.10.  Indeed I do run systemd on my two
main systems (~amd64).

I was hoping to put off converting to systemd on this stable system for a
few weeks.

The merge of systemd generates the following near the end of build.log.
I have manually double-spaced the output since the lines are very
long.

Any help would be appreciated.
thanks,
allan

/usr/bin/m4 -P  -DFOR_SYSTEM=1  
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/units/getty@.service.m4
  units/getty@.service

/bin/mkdir -p src/core/  /bin/sed -e 's|@rootlibexecdir\@|/usr/lib/systemd|g' 
-e 's|@rootbindir\@|/usr/bin|g' -e 's|@bindir\@|/usr/bin|g' -e 
's|@SYSTEMCTL\@|/usr/bin/systemctl|g' -e 
's|@SYSTEMD_NOTIFY\@|/usr/bin/systemd-notify|g' -e 
's|@pkgsysconfdir\@|/etc/systemd|g' -e 
's|@SYSTEM_CONFIG_UNIT_PATH\@|/etc/systemd/system|g' -e 
's|@USER_CONFIG_UNIT_PATH\@|/etc/systemd/user|g' -e 
's|@pkgdatadir\@|/usr/share/systemd|g' -e 
's|@systemunitdir\@|/usr/lib/systemd/system|g' -e 
's|@userunitdir\@|/usr/lib/systemd/user|g' -e 
's|@systempresetdir\@|/usr/lib/systemd/system-preset|g' -e 
's|@userpresetdir\@|/usr/lib/systemd/user-preset|g' -e 
's|@udevhwdbdir\@|/lib/udev/hwdb.d|g' -e 
's|@udevrulesdir\@|/lib/udev/rules.d|g' -e 
's|@catalogdir\@|/usr/lib/systemd/catalog|g' -e 
's|@tmpfilesdir\@|/usr/lib/tmpfiles.d|g' -e 
's|@sysctldir\@|/usr/lib/sysctl.d|g' -e 
's|@systemgeneratordir\@|/usr/lib/systemd/system-generators|g' -e 
's|@usergeneratordir\@|/usr/lib/systemd/user-generators|g' -e 
's|@PACKAGE_VERSION\@|208|g' -e 's|@PACKAGE_NAME\@|systemd|g' -e 
's|@PACKAGE_URL\@|http://www.freedesktop.org/wiki/Software/systemd|g' -e 
's|@RANDOM_SEED\@|/var/lib/systemd/random-seed|g' -e 's|@prefix\@|/usr|g' -e 
's|@exec_prefix\@|/usr|g' -e 's|@libdir\@|/usr/lib64|g' -e 
's|@includedir\@|/usr/include|g' -e 's|@VERSION\@|208|g' -e 
's|@rootprefix\@|/usr|g' -e 's|@udevlibexecdir\@|/lib/udev|g' -e 
's|@SUSHELL\@|/bin/sh|g' -e 's|@DEBUGTTY\@|/dev/tty9|g' -e 
's|@KILL\@|/bin/kill|g' -e 's|@KMOD\@|/bin/kmod|g' -e 's|@MKDIR_P\@|/bin/mkdir 
-p|g' -e 's|@QUOTAON\@|/usr/sbin/quotaon|g' -e 
's|@QUOTACHECK\@|/usr/sbin/quotacheck|g' -e 's|@SYSTEM_SYSVINIT_PATH\@||g' -e 
's|@VARLOGDIR\@|/var/log|g' -e 
's|@RC_LOCAL_SCRIPT_PATH_START\@|/etc/rc.local|g' -e 
's|@RC_LOCAL_SCRIPT_PATH_STOP\@|/usr/sbin/halt.local|g' -e 
's|@PYTHON\@|/usr/bin/python|g' -e 's|@PYTHON_BINARY\@|/usr/bin/python|g'  
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/core/org.freedesktop.systemd1.policy.in.in
  src/core/org.freedesktop.systemd1.policy.in

LC_ALL=C /usr/bin/intltool-merge  -x -u -c ./po/.intltool-merge-cache 
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/po 
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/login/org.freedesktop.login1.policy.in
 src/login/org.freedesktop.login1.policy

LC_ALL=C /usr/bin/intltool-merge  -x -u -c ./po/.intltool-merge-cache 
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/po 
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/timedate/org.freedesktop.timedate1.policy.in
 src/timedate/org.freedesktop.timedate1.policy

LC_ALL=C /usr/bin/intltool-merge  -x -u -c ./po/.intltool-merge-cache 
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/po 
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/locale/org.freedesktop.locale1.policy.in
 src/locale/org.freedesktop.locale1.policy

LC_ALL=C /usr/bin/intltool-merge  -x -u -c ./po/.intltool-merge-cache 
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/po 
/mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/hostname/org.freedesktop.hostname1.policy.in
 src/hostname/org.freedesktop.hostname1.policy

Cannot open src/hostname/org.freedesktop.hostname1.policy: No such file or 
directory

Generating and caching the translation database

Merging translations into src/hostname/org.freedesktop.hostname1.policy.

make[2]: *** [src/hostname/org.freedesktop.hostname1.policy] Error 2

make[2]: *** Waiting for unfinished jobs

Cannot open src/timedate/org.freedesktop.timedate1.policy: No such file or 
directory



Re: [gentoo-user] uzbl

2013-12-06 Thread Elias Diem
Hi Tim

On 2013-12-06,  Tim Millican wrote:

 I had the exact same problem when I switched, but its a pretty easy fix.
 UZBL is written to use Python 2, so you either have to set that as your 
 default
 in `eselect python`, or change the shebang at the top of 
 /usr/bin/uzbl-event-manager
 to explicitly use Python2. (Change ''#!/usr/bin/env python' to 
 '#!/usr/bin/env python2')

Thank you. That was the fix. I opted for the second 
approach.

-- 
Greetings
Elias





Re: [gentoo-user] uzbl

2013-12-06 Thread Elias Diem
On 2013-12-06,  Tim Millican wrote:

 I had the exact same problem when I switched, but its a pretty easy fix.
 UZBL is written to use Python 2, so you either have to set that as your 
 default
 in `eselect python`, or change the shebang at the top of 
 /usr/bin/uzbl-event-manager
 to explicitly use Python2. (Change ''#!/usr/bin/env python' to 
 '#!/usr/bin/env python2')

If I had searched hard enough I'd found this:

https://bugs.gentoo.org/show_bug.cgi?id=456310

-- 
Greetings
Elias





Re: [gentoo-user] uzbl

2013-12-06 Thread Elias Diem
Or this:

https://bugs.gentoo.org/show_bug.cgi?id=490348

-- 
Greetings
Elias





Re: [gentoo-user] rfcomm0 interface missing

2013-12-06 Thread Mick
On Friday 06 Dec 2013 00:21:24 Daniel Frey wrote:
 On 12/05/2013 03:04 PM, Mick wrote:
  The connection bails out.  I don't understand what the message Serial
  line is looped back. means.  Any ideas?
 
 This usually means the host is just echoing everything back to the
 client. Most times this means the host is not starting the session or is
 waiting for something before it starts the session.

Yes!  It was my phone's way of telling me that whatever I was sending, it was 
not what it was expecting, echoing back the same information.

So, I experimented with the relevant /etc/ppp/ip-up.d/45-mySIP_connect.sh by 
removing all entries but this:

#!/bin/sh
exec /usr/sbin/chat -v '' ATZ OK ATDT*99# CONNECT ''

It now works!  :-)
=
Dec  6 12:40:21  pppd[5644]: pppd 2.4.5 started by michael, uid 0
Dec  6 12:40:21  chat[5647]: send (ATZ^M)
Dec  6 12:40:21  chat[5647]: expect (OK)
Dec  6 12:40:21  chat[5647]: ATZ^M^M
Dec  6 12:40:21  chat[5647]: OK
Dec  6 12:40:21  chat[5647]:  -- got it
Dec  6 12:40:21  chat[5647]: send (ATDT*99#^M)
Dec  6 12:40:21  chat[5647]: expect (CONNECT)
Dec  6 12:40:21  chat[5647]: ^M
Dec  6 12:40:23  chat[5647]: ATDT*99#^M^M
Dec  6 12:40:23  chat[5647]: CONNECT
Dec  6 12:40:23  chat[5647]:  -- got it
Dec  6 12:40:23  chat[5647]: send (^M)
Dec  6 12:40:23  pppd[5644]: Serial connection established.
Dec  6 12:40:23  pppd[5644]: Using interface ppp0
Dec  6 12:40:23  pppd[5644]: Connect: ppp0 -- /dev/rfcomm0
Dec  6 12:40:26  pppd[5644]: PAP authentication succeeded
Dec  6 12:40:27  pppd[5644]: local  IP address XX.XXX.XX.XX
Dec  6 12:40:27  pppd[5644]: remote IP address XX.X.X.XX
Dec  6 12:40:27  pppd[5644]: primary   DNS address XXX.XX.XXX.X
Dec  6 12:40:27  pppd[5644]: secondary DNS address XXX.XX.XXX.X
Dec  6 12:40:27  chat[5652]: Can't get terminal parameters: Inappropriate 
ioctl for device
=

Not sure what the last error is.  I suspect something to do with certain 
characters that need to be escaped in the terminal by bash?  Grateful for any 
pointers.

Otherwise, kppp still hangs being able to complete the connection.  I have not 
been able to troublshoot that further.
-- 
Regards,
Mick


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


Re: [gentoo-user] Merging separate /usr back into / - one last time...

2013-12-06 Thread Tanstaafl

On 2013-12-06 8:13 AM, Bruce Hill da...@happypenguincomputers.com wrote:

There are reasons why rsync is better than cp. The best one IMO is that rysnc
will not copy a corrupt file, while cp will. And rsync will tell you about the
corrupt file.


Interesting and a good reason to use rsync over cp... if true... are you 
certain of this?




Re: [gentoo-user] Merging separate /usr back into / - one last time...

2013-12-06 Thread Bruce Hill
On Fri, Dec 06, 2013 at 11:35:29AM -0500, Tanstaafl wrote:
 On 2013-12-06 8:13 AM, Bruce Hill da...@happypenguincomputers.com wrote:
  There are reasons why rsync is better than cp. The best one IMO is that 
  rysnc
  will not copy a corrupt file, while cp will. And rsync will tell you about 
  the
  corrupt file.
 
 Interesting and a good reason to use rsync over cp... if true... are you 
 certain of this?

Yes, absolutely. Which is one reason I suggested you rean man rsync. I don't
mean to be unkind, but there have been so many conflicting opinions in your
thread.
-- 
Happy Penguin Computers   ')
126 Fenco Drive   ( \
Tupelo, MS 38801   ^^
supp...@happypenguincomputers.com
662-269-2706 662-205-6424
http://happypenguincomputers.com/

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

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



Re: [gentoo-user] Systemd as drop-in replacement for udev?

2013-12-06 Thread Canek Peláez Valdés
On Fri, Dec 6, 2013 at 12:32 AM, J. Roeleveld jo...@antarean.org wrote:
 On Fri, December 6, 2013 00:17, Canek Peláez Valdés wrote:
 On Thu, Dec 5, 2013 at 4:26 PM, Róbert Čerňanský
 ope...@tightmail.com wrote:
 I will try openrc-force as temporal solution until I'll find a new
 display manager and give heart breaking good by to GDM.

 You could *try* to run systemd and see if you like it.

 Many of us do.

 For the option to try systemd, I would first require a detailed how-to on
 how to switch back to OpenRC without requiring reverting to backups or
 doing a full reinstall.

You don't need to use backups, much less a full reinstall. However,
several packages must be reemerged and a couple ones must be
uninstalled before you switch to systemd. Obviously, you need to do
the opposite to revert back to OpenRC.

Which packages must be reemerged and which ones must be uninstalled
depends on what do you have installed. It is mostly handled by
portage, though, so you don't need to worry about it.

If you unpack a stage3 tarball for a new installation, the only thing
you need to do to get systemd is to emerge systemd and change your
init line in your boot loader. Portage will uninstall udev for you,
and OpenRC will remain, but it would do nothing. The more things you
add to your system, the more packages will be affected by the change,
in either direction. Also, systemd requires more kernel configure
options enabled than OpenRC.

To change back, usually you will only need to unemerge systemd, emerge
udev, and perhaps USE=-systemd emerge -uDNvp @world. Be warned that
the best thing to do is to do it from a LiveCD; if you boot with
systemd, and uninstalled it, I don't think the shutdown would be
clean.

Regards.
-- 
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México



Re: [gentoo-user] trouble emerging (*not* running) systemd on stable amd64

2013-12-06 Thread Canek Peláez Valdés
On Fri, Dec 6, 2013 at 8:45 AM,  gottl...@nyu.edu wrote:
 I hadn't synced one of my stable boxes for a while and tried today.
 This brings in gnome-3.8 and with it systemd.  I realize I will need to
 *run* systemd to go to gnome-3.10.  Indeed I do run systemd on my two
 main systems (~amd64).

 I was hoping to put off converting to systemd on this stable system for a
 few weeks.

 The merge of systemd generates the following near the end of build.log.
 I have manually double-spaced the output since the lines are very
 long.

 Any help would be appreciated.
 thanks,
 allan

 /usr/bin/m4 -P  -DFOR_SYSTEM=1  
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/units/getty@.service.m4
   units/getty@.service

 /bin/mkdir -p src/core/  /bin/sed -e 
 's|@rootlibexecdir\@|/usr/lib/systemd|g' -e 's|@rootbindir\@|/usr/bin|g' -e 
 's|@bindir\@|/usr/bin|g' -e 's|@SYSTEMCTL\@|/usr/bin/systemctl|g' -e 
 's|@SYSTEMD_NOTIFY\@|/usr/bin/systemd-notify|g' -e 
 's|@pkgsysconfdir\@|/etc/systemd|g' -e 
 's|@SYSTEM_CONFIG_UNIT_PATH\@|/etc/systemd/system|g' -e 
 's|@USER_CONFIG_UNIT_PATH\@|/etc/systemd/user|g' -e 
 's|@pkgdatadir\@|/usr/share/systemd|g' -e 
 's|@systemunitdir\@|/usr/lib/systemd/system|g' -e 
 's|@userunitdir\@|/usr/lib/systemd/user|g' -e 
 's|@systempresetdir\@|/usr/lib/systemd/system-preset|g' -e 
 's|@userpresetdir\@|/usr/lib/systemd/user-preset|g' -e 
 's|@udevhwdbdir\@|/lib/udev/hwdb.d|g' -e 
 's|@udevrulesdir\@|/lib/udev/rules.d|g' -e 
 's|@catalogdir\@|/usr/lib/systemd/catalog|g' -e 
 's|@tmpfilesdir\@|/usr/lib/tmpfiles.d|g' -e 
 's|@sysctldir\@|/usr/lib/sysctl.d|g' -e 
 's|@systemgeneratordir\@|/usr/lib/systemd/system-generators|g' -e 
 's|@usergeneratordir\@|/usr/lib/systemd/user-generators|g' -e 
 's|@PACKAGE_VERSION\@|208|g' -e 's|@PACKAGE_NAME\@|systemd|g' -e 
 's|@PACKAGE_URL\@|http://www.freedesktop.org/wiki/Software/systemd|g' -e 
 's|@RANDOM_SEED\@|/var/lib/systemd/random-seed|g' -e 's|@prefix\@|/usr|g' -e 
 's|@exec_prefix\@|/usr|g' -e 's|@libdir\@|/usr/lib64|g' -e 
 's|@includedir\@|/usr/include|g' -e 's|@VERSION\@|208|g' -e 
 's|@rootprefix\@|/usr|g' -e 's|@udevlibexecdir\@|/lib/udev|g' -e 
 's|@SUSHELL\@|/bin/sh|g' -e 's|@DEBUGTTY\@|/dev/tty9|g' -e 
 's|@KILL\@|/bin/kill|g' -e 's|@KMOD\@|/bin/kmod|g' -e 
 's|@MKDIR_P\@|/bin/mkdir -p|g' -e 's|@QUOTAON\@|/usr/sbin/quotaon|g' -e 
 's|@QUOTACHECK\@|/usr/sbin/quotacheck|g' -e 's|@SYSTEM_SYSVINIT_PATH\@||g' -e 
 's|@VARLOGDIR\@|/var/log|g' -e 
 's|@RC_LOCAL_SCRIPT_PATH_START\@|/etc/rc.local|g' -e 
 's|@RC_LOCAL_SCRIPT_PATH_STOP\@|/usr/sbin/halt.local|g' -e 
 's|@PYTHON\@|/usr/bin/python|g' -e 's|@PYTHON_BINARY\@|/usr/bin/python|g'  
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/core/org.freedesktop.systemd1.policy.in.in
   src/core/org.freedesktop.systemd1.policy.in

 LC_ALL=C /usr/bin/intltool-merge  -x -u -c ./po/.intltool-merge-cache 
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/po 
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/login/org.freedesktop.login1.policy.in
  src/login/org.freedesktop.login1.policy

 LC_ALL=C /usr/bin/intltool-merge  -x -u -c ./po/.intltool-merge-cache 
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/po 
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/timedate/org.freedesktop.timedate1.policy.in
  src/timedate/org.freedesktop.timedate1.policy

 LC_ALL=C /usr/bin/intltool-merge  -x -u -c ./po/.intltool-merge-cache 
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/po 
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/locale/org.freedesktop.locale1.policy.in
  src/locale/org.freedesktop.locale1.policy

 LC_ALL=C /usr/bin/intltool-merge  -x -u -c ./po/.intltool-merge-cache 
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/po 
 /mnt/h/portage-tmpdir/portage/sys-apps/systemd-208-r2/work/systemd-208/src/hostname/org.freedesktop.hostname1.policy.in
  src/hostname/org.freedesktop.hostname1.policy

 Cannot open src/hostname/org.freedesktop.hostname1.policy: No such file or 
 directory

That is weird.

 Generating and caching the translation database

 Merging translations into src/hostname/org.freedesktop.hostname1.policy.

 make[2]: *** [src/hostname/org.freedesktop.hostname1.policy] Error 2

 make[2]: *** Waiting for unfinished jobs

 Cannot open src/timedate/org.freedesktop.timedate1.policy: No such file or 
 directory

Have you tried to emerge it with MAKEOPTS=-j1?

Regards.
-- 
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México



Re: [gentoo-user] Systemd as drop-in replacement for udev?

2013-12-06 Thread Tom Wijsman
On Fri, 06 Dec 2013 08:53:43 +0100
Michael Hampicke m...@hadt.biz wrote:

 That should mean: ..if you did not unmerge it.

sys-apps/openrc is part of the @system set for the time being; if you
try to unmerge it you will be presented with a warning, if you go ahead
you break things like Portage and more because at this point in time
sys-apps/openrc brings the file 'functions.sh' which contains some
crucial functions used by those other packages.

This is tracked in https://bugs.gentoo.org/show_bug.cgi?id=373219

-- 
With kind regards,

Tom Wijsman (TomWij)
Gentoo Developer

E-mail address  : tom...@gentoo.org
GPG Public Key  : 6D34E57D
GPG Fingerprint : C165 AF18 AB4C 400B C3D2  ABF0 95B2 1FCD 6D34 E57D


signature.asc
Description: PGP signature


Re: [gentoo-user] trouble emerging (*not* running) systemd on stable amd64

2013-12-06 Thread Tom Wijsman
On Fri, 06 Dec 2013 09:45:17 -0500
gottl...@nyu.edu wrote:

 Cannot open src/hostname/org.freedesktop.hostname1.policy: No such
 file or directory

A stable ebuild being broken is concerning, the above feels like a bug
to me; can you file a bug and attach the complete build log and comment
with the output of `emerge --info`? Thank you in advance.

-- 
With kind regards,

Tom Wijsman (TomWij)
Gentoo Developer

E-mail address  : tom...@gentoo.org
GPG Public Key  : 6D34E57D
GPG Fingerprint : C165 AF18 AB4C 400B C3D2  ABF0 95B2 1FCD 6D34 E57D


signature.asc
Description: PGP signature


Re: [gentoo-user] trouble emerging (*not* running) systemd on stable amd64

2013-12-06 Thread gottlieb
On Fri, Dec 06 2013, Canek Peláez Valdés wrote:

 On Fri, Dec 6, 2013 at 8:45 AM,  gottl...@nyu.edu wrote:
 I hadn't synced one of my stable boxes for a while and tried today.
 This brings in gnome-3.8 and with it systemd.  I realize I will need to
 *run* systemd to go to gnome-3.10.  Indeed I do run systemd on my two
 main systems (~amd64).

 The merge of systemd generates the following near the end of build.log.

 Cannot open src/hostname/org.freedesktop.hostname1.policy: No such
 file or directory

 That is weird.

 Have you tried to emerge it with MAKEOPTS=-j1?

Bingo!  Sorry for the noise.

allan



Re: [gentoo-user] trouble emerging (*not* running) systemd on stable amd64

2013-12-06 Thread Canek Peláez Valdés
On Dec 6, 2013 9:20 PM, gottl...@nyu.edu wrote:

 On Fri, Dec 06 2013, Canek Peláez Valdés wrote:

  On Fri, Dec 6, 2013 at 8:45 AM,  gottl...@nyu.edu wrote:
  I hadn't synced one of my stable boxes for a while and tried today.
  This brings in gnome-3.8 and with it systemd.  I realize I will need to
  *run* systemd to go to gnome-3.10.  Indeed I do run systemd on my two
  main systems (~amd64).
 
  The merge of systemd generates the following near the end of build.log.
 
  Cannot open src/hostname/org.freedesktop.hostname1.policy: No such
  file or directory
 
  That is weird.
 
  Have you tried to emerge it with MAKEOPTS=-j1?

 Bingo!  Sorry for the noise.

It's not noise; it's a bug, either in systemd's build sys or in the ebuild.

Regards.


[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] 

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

2013-12-06 Thread Jonathan Callen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 12/07/2013 01:32 AM, meino.cra...@gmx.de wrote:
 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 

[gentoo-user] Re: Systemd as drop-in replacement for udev?

2013-12-06 Thread Jonathan Callen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 12/06/2013 05:44 AM, J. Roeleveld wrote:
 On Fri, December 6, 2013 08:53, Michael Hampicke wrote:
 
 Just remove init=/usr/lib/systemd/systemd from your kernel command line, 
 and you can boot
 your old openrc installation (if you did un unmerge it)
 
 
 That should mean: ..if you did not unmerge it.
 
 
 
 It doesn't seem that simple from the wiki-page on how to switch to systemd: 
 http://wiki.gentoo.org/wiki/Systemd
 
 In the conflicts section there is mention of having to change syslog-ng and 
 cryptsetup.
 
 I don't have a Gentoo box in front of me to check, but I think udev and 
 systemd can not be
 installed simultaneously. Was this changed?
 
 -- Joost
 
 
 
 

Udev as installed by sys-fs/udev is *exactly* the same as udev installed by 
sys-apps/systemd,
except that the latter installs more files.  It is very much possible to switch 
to systemd as your
udev provider without using the rest of systemd.

- -- 
Jonathan Callen
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBCgAGBQJSosOZAAoJELHSF2kinlg4+bkP/1xjvhDe+/8Dn7lqd9YnsUXY
KDitiXQtHDS3XltCjv9A/mQFKsI4tpK5f3MCX0bAeUUrDdoEebBmOFCS6pyPUJx6
uHpc0M0stUo5kx7HLPXz4GHl97Gg1Le1kjKHk4uAgHBFzwS/UlQiYBO8A/mMZb/A
VLU6iRiJbd15VzMSXxWBGk6toc7rgEsIZyFcL+x0SWrIOcCoYPgRTMLQgXemQX/Y
oB066d/dzWLbj3jMWkJIcbxh1hV96rVI6PhHpXGen4iztli7lQNYzI4bwjiqaiNY
VALlCPQOxSLSvw3+7RUTO6urLN/qWpikNsR/5UtSBi3m9IPaMd/2NGvVhjmtcUTq
wovHODaAn7zG18H9eQMVwQE0PMHLmPS3SRfwz5KbFzr11W64w8SWtq5+uoCDJ46P
caRO81iLYrdutZmp0JYHkAPCtPyRHdNNYAsXk/1fWCiky5lh63vrxGyJ/Zo0nMw8
rUTAdkjV2qE0xT7IlKwYyLsfg9WNbXJwM0pYkE4OgzOwgQb5vTpyVjl2+r6ZF6aL
sz9FDD/dOF7Zgwn1SWNQer8cvs9zrl14aKZgjxesX2DMUwKFA535O8dGW1v1Egt9
QD4SvawD+BScDmkofNZ6SHCHwI3Pqgw1/xZzT8Or4TepDWYQB7E0R8shuzNdzvV3
n5bo1rlkaICL90/WYc30
=ZK9j
-END PGP SIGNATURE-



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

2013-12-06 Thread meino . cramer
Jonathan Callen jcal...@gentoo.org [13-12-07 07:44]:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA512
 
 On 12/07/2013 01:32 AM, meino.cra...@gmx.de wrote:
  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:
  

 SNIP!!!  ---8---

  ---
  
  I tried to pick packages, which seems unblocked to me, but with no success.
  
  What is the best way to untangle this desaster?
  
  Thank you VERY much for any life saving help in advance! :) Have a nice 
  weekend! Best regards, 
  mcc
  
  
 
 
 The problem is that for gnome-settings-daemon to work properly (and still be 
 supported by
 upstream), you *MUST* convert your system to use systemd.  If I remember 
 correctly, there is a USE
 flag you can toggle that will allow you to keep using sys-fs/udev (which is 
 just a stripped-down
 systemd install that doesn't include systemd itself), but it is unsupported.  
 most of the other
 errors will probably go away when that one is fixed.
 
 - -- 
 Jonathan Callen
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.22 (GNU/Linux)
 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
 
 iQIcBAEBCgAGBQJSosL6AAoJELHSF2kinlg40rkP/iPL/GCUsJOE0CofYyY9VhYl
 +KYAA09OTquyjJEt3liyNyhrWeWJbDdVbNzCgZOkjudyEgGhrLNmzVZ5ELRQ2VoS
 efKnt+SpRaTRSuwjedVeZuZyQm8F1DH+OaG9uHZ1+te6s4fJnjtQ1clIJwy7oEBJ
 EpEUM8kDRKPvmU30Dtcu1FbJrMxUmTuMeVgcQYHzWqCBOgwc52yCvjNFEbfuA/3c
 8lJo6Ytm1bS67MrljLTFSjlJgpyu6MQSyDuzz3JyZoh0lQP7xCw8gjQgTIcHuDfS
 S8tYcbXG/LKKH+G9e7HpoAVCiDdMEGSPg3avOFVKkzQ3cKJlX6SFYGfclqe9IJjH
 LC1zrzUcSjTM/8xEUZcQGcQp2EEh91gBsCp7GFuCXZheeHCeh0agngVWvwBIdR3q
 9oFP5p2cvSIpQ4W0D2RLHT6rJdHCYcTI0+C6T4kvyDGWBIwFciVGzPokbDLIIIic
 3loY53CzLPFOUcAo6l4DQcXL5e3oNRd3iFT/6zF/yi6VGg5quKhu2L1dvQsfCSdj
 v5bKvDarcNRCGMhthx65EBftxUJYEJAFqYBh30/f/RYZH7tGiHtqbB7o3+9IGSp5
 ff0g1CRJpYN3EQGKdWm01YO0tWEsWWNi9tjLP3/9rCuCoNaCwMMPa22LyTliV1ce
 WOZN9rfAgWvGWAopmu/y
 =XGp9
 -END PGP SIGNATURE-
 



Hi Jonathan,

thank you for your help! :)

Interestingly

/rooteix gnome-settings-daemon
* gnome-base/gnome-settings-daemon
 Available versions:  2.32.1-r2 ~*3.8.3 3.8.6.1 {+colord +cups debug +i18n 
libnotify -openrc-force packagekit policykit pulseaudio +short-touchpad-timeout 
smartcard test +udev INPUT_DEVICES=wacom}
 Homepage:https://git.gnome.org/browse/gnome-settings-daemon
 Description: Gnome Settings Daemon


...it seems, that gnome-settings/daemon is neither installed
nor pulled in by anything.

Excerpt from the longish bug newsletter from above:

[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 
[ebuild  N ]  app-i18n/ibus-1.5.2  USE=X gconf gtk gtk3 introspection nls 
python -dconf -deprecated {-test} -vala PYTHON_SINGLE_TARGET=python2_7 
-python2_6 PYTHON_TARGETS=python2_7 -python2_6 1,839 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 
[ebuild U  ]  gnome-base/librsvg-2.39.0:2 [2.36.4-r1:2] USE=gtk 
introspection -tools -vala 507 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   ]  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) 

or do I misinterpret something of this ?

Best regards,
mcc