Re: [gentoo-user] Re: /usr/portage index?

2011-08-29 Thread Dale

Alex Schuster wrote:

Dale writes:

   

Nowadays, if you mix vinegar and baking soda, you are accused of making
a bomb.  They called it fun 20 or 30 years ago.  lol

I still want to know what Spencer puts in the camera film thingys and
makes it pop off.  It was liquid and what looked like a pill or
something.  Erin said he was getting some distance on them tho.  o_O
 

Um... Diet Coke and Mentos?

Wonko


   


I don't think so.  I guess it is possible tho.  You know those little 
containers that you put 35mm film in, that is what he puts it in.  It 
does foam up like mentos and coke but it didn't look like that tho.  It 
takes about 5 to 10 seconds for it to pop.  Mentos and coke is pretty 
much instant.  I saw that on Mythbusters.  Dang that is cool.  O_O


Mayne I can google it.  lol

Dale

:-)  :-)



[gentoo-user] How do slots work?

2011-08-29 Thread Alan Mackenzie
Hi, Gentoo.

How do slots work?  I mean I've had a look at some ebuilds and see things
like this:

SLOT=3

, but with no clues as to how this gets used.  Is there any handy
documentation about this?  I've had a look round the usual places, but
found nothing.

What I really want to do is to try out Gnome 3, to see if it's like what
people say it is, but without endangering my current Gnome 2.32.1.  If I
build Gnome 3, will its executable have a different name?

Thanks for the info!

-- 
Alan Mackenzie (Nuremberg, Germany).



Re: [gentoo-user] rc-svcdir mount where from?

2011-08-29 Thread Joost Roeleveld
On Sunday, August 28, 2011 11:37:20 AM Konstantinos Agouros wrote:
 In 1581460.4EaZMVgbQ3@weird wo...@wonkology.org (Alex Schuster) writes:
 Konstantinos Agouros writes:
  I do not have rc-svcdir in /etc/fstab. I know it comes with openrc but
  I would need the mount line or an fstab entry for it. A grep in
  /etc/init.d didn't help.
 
 You need to look into /lib/rc/sh/init.sh, the mount_svcdir() function:
 
 /lib/rc/sh/init.sh: mount -n -t $fs $fsopts rc-svcdir $RC_SVCDIR
 
 You can get the actual content of the $fs and $fsopts variables from the
 output of mount | grep svcdir.
 
 Hmmm but where is it filled with the directory structure? Or is this like
 a union mount?
 
 Konstantin

It's mounted as a ramdisk-type.
The directory structure is created during boot-time as needed.

--
Joost



Re: [gentoo-user] How do slots work?

2011-08-29 Thread Albert W. Hopkins


On Monday, August 29 at 08:51 (+), Alan Mackenzie said:

 What I really want to do is to try out Gnome 3, to see if it's like
 what
 people say it is, but without endangering my current Gnome 2.32.1.  If
 I
 build Gnome 3, will its executable have a different name?

It's not slotted, so that answers your first question.

Also, gnome is a *bunch* of executables and libraries, so it's not as
simple as renameing gnome-session to gnome-session3.

To answer the first, if you have two or more of the same package, say
foo, then slots tell portage that more than one version of foo may
be installed if they are in different slots.  For example, python-2.7.*
packages are in slot 2.7 and python-3.2* packages are in slot 3.2 so
python-2.7.2-r2 and python-3.2-r2 may be installed simultaneously.
However, ex., 2.7.1-r2 and 2.7.2-r2 may not (because they are in both
slot) 2.7.

Similarly gnome-2* and gnome-3* (from the gnome overlay) are both in
slot 2.0.

The reason why GNOME 3 is in slot 2.0 is that it cannot be installed
alongside GNOME 2, so no use in bumping the slot #.





Re: [gentoo-user] logrotate: /var/log/portage/elog insecure permissions?

2011-08-29 Thread Florian Philipp
Am 28.08.2011 20:44, schrieb Florian Philipp:
 Am 28.08.2011 13:14, schrieb Mick:
 On Sunday 07 Aug 2011 16:20:18 Florian Philipp wrote:
 Am 07.08.2011 02:22, schrieb Mick:
 On Friday 05 Aug 2011 23:08:38 Neil Bothwick wrote:
 On Fri, 05 Aug 2011 17:59:00 +0200, Florian Philipp wrote:
 Yes, this was introduced in 3.8.0 to fix security issues [1]. Change
 your config to look like this:
 /var/log/portage/elog/summary.log {
 su portage portage
 ...
 }

 Disclaimer: I've not really tried this (yet) but I think I'm able to
 read changelogs and man-pages. ;-)

 Yes that fixes it. The latest portage ebuilds include an updated config
 file.

 Hmm ... it still complains here!

 error: error setting owner of
 /var/log/portage/elog/summary.log-20110801.gz: Operation not permitted


 This is my /etc/logrotate.d/elog-save-summary:
 ===
 /var/log/portage/elog/summary.log {

  su portage portage
  
 missingok
 nocreate
 delaycompress

 }
 ===

 # ls -la /var/log/portage/elog/summary.log
 -rw-rw-r-- 1 root portage 4326 Aug  6 09:44
 /var/log/portage/elog/summary.log

 Can you see anything amiss?

 At least on my system, /var/log/portage has the following permissions:
 drwxr-xr-x root root

 Only root can write, therefore the config must read

 /var/log/portage/elog/summary.log {
  su root portage
  missingok
  nocreate
  delaycompress
 }

 The latest logrotate update wanted to change the above line from su root 
 portage to su portage portage ...

 Should I be changing the ownership of /var/log/portage and /var/log/portage 
 elog?
 
 Unless portage now drops privileges from root:portage to portage:portage
 for writing logs, no one except root should be allowed to write in
 /var/log/portage. So, from my point of view, the answer is no.
 
 It seems so:
 https://bugs.gentoo.org/show_bug.cgi?id=374287
 https://bugs.gentoo.org/show_bug.cgi?id=378451
 
 This version of portage has just been stabilized this week.
 
 Regards,
 Florian Philipp
 

Argh, sorry. I just saw that I forgot to delete the first paragraph
after looking at portage's changelog. The answer is yes, not no. ;)



signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] Re: /usr/portage index?

2011-08-29 Thread Sebastian Beßler

 Mayne I can google it.  lol

If you do and we don't hear from you ever again we know that you most
probably used some search words that triggert some terrorist alarm.
;-) :-D



signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] build.log is mod 0660, should probably be 0664

2011-08-29 Thread Michael Mol
On Mon, Aug 29, 2011 at 11:15 AM, Gregory Woodbury redwo...@gmail.com wrote:
 Had trouble sending the build log because the log is more 0660 asnd thus
 can't be read by
 firefox for mailing.

 Should these instead be 0664 so that others can at least read the logs?

No. As root, copy the log or modified the privilege. Or add yourself
to the relevant group. It would be set to 0660 specifically to *avoid*
others' being able to read the logs.

-- 
:wq



[gentoo-user] Re: How do slots work?

2011-08-29 Thread walt
On 08/29/2011 01:51 AM, Alan Mackenzie wrote:

 What I really want to do is to try out Gnome 3, to see if it's like what
 people say it is, but without endangering my current Gnome 2.32.1.

This is the fastest and easiest way to try it:

http://gnome3.org/tryit.html

After I tried it I decided quickly that I'm content to wait until it's
really stable on gentoo.  At this point I'd say it's a waste of time to
try to install from the overlay unless you want to help debug it.




Re: [gentoo-user] Re: How do slots work?

2011-08-29 Thread Canek Peláez Valdés
On Mon, Aug 29, 2011 at 11:45 AM, walt w41...@gmail.com wrote:
 On 08/29/2011 01:51 AM, Alan Mackenzie wrote:

 What I really want to do is to try out Gnome 3, to see if it's like what
 people say it is, but without endangering my current Gnome 2.32.1.

 This is the fastest and easiest way to try it:

 http://gnome3.org/tryit.html

 After I tried it I decided quickly that I'm content to wait until it's
 really stable on gentoo.  At this point I'd say it's a waste of time to
 try to install from the overlay unless you want to help debug it.

Actually, it's pretty stable. It doesn't have much customization
available (to be honest, I think you can only customize the background
image), but the shell and the applications are stable. I really like
it.

However, if you only want to try it out, maybe it's not worth the
effort of installing from the overlay and all the unmasking and
compiling required.

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



[gentoo-user] build.log is mod 0660, should probably be 0664

2011-08-29 Thread Gregory Woodbury
Had trouble sending the build log because the log is more 0660 asnd thus
can't be read by
firefox for mailing.

Should these instead be 0664 so that others can at least read the logs?

-- 
G.Wolfe Woodbury
redwo...@gmail.com


Re: [gentoo-user] Re: How do slots work?

2011-08-29 Thread Albert W. Hopkins


On Monday, August 29 at 12:02 (-0400), Canek Peláez Valdés said:
[...]
 Actually, it's pretty stable. It doesn't have much customization
 available

You can get a fair amount of customization by using gnome-shell
extensions.  You can also customize the shell interface by changing the
gnome-shell.css file or using the.  For non-ui customization, I
recommend the tweak tools app and dconf-editor and gconf-editor still
work as well.

Here's an example of my slightly-customized GNOME 3 desktop (work in
progress):

http://ompldr.org/vYTN6NQ






Re: [gentoo-user] Re: How do slots work?

2011-08-29 Thread Canek Peláez Valdés
On Mon, Aug 29, 2011 at 12:56 PM, Albert W. Hopkins
mar...@letterboxes.org wrote:


 On Monday, August 29 at 12:02 (-0400), Canek Peláez Valdés said:
 [...]
 Actually, it's pretty stable. It doesn't have much customization
 available

 You can get a fair amount of customization by using gnome-shell
 extensions.  You can also customize the shell interface by changing the
 gnome-shell.css file or using the.  For non-ui customization, I
 recommend the tweak tools app and dconf-editor and gconf-editor still
 work as well.

 Here's an example of my slightly-customized GNOME 3 desktop (work in
 progress):

 http://ompldr.org/vYTN6NQ

Damn, that looks hot. Did you modify the CSS file by yourself? I would
love a window title bar a little smaller.

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] Re: /usr/portage index?

2011-08-29 Thread Per-Erik Westerberg
sön 2011-08-28 klockan 19:03 -0500 skrev Dale:
 James wrote:
  Bill Longmanbill.longmanat  gmail.com  writes:
 
 
 
  eix -c -C sci-chemistry
   
 
  Ok, thanks everyone! I was very tired Friday
  and I appreciate
  the suggestions of sites and syntax
 
  Lots of chemistry based software for my son to play with
 
  It's just a darn shame kids today do not get the
  cool chemistry sets of yore.
 
 
  James
 
 
 
 Nowadays, if you mix vinegar and baking soda, you are accused of making 
 a bomb.  They called it fun 20 or 30 years ago.  lol
 
 I still want to know what Spencer puts in the camera film thingys and 
 makes it pop off.  It was liquid and what looked like a pill or 
 something.  Erin said he was getting some distance on them tho.  o_O
 

Any headache or fever reducing medicine that dissolves in water would do
I guess. A friend of mine had a cold and brought some anti-fever, non
recipe, medicine in a plastic tube which was flat pills that you put in
water to dissolve. We were at a hotel in a hot and humid country,
Dominican Republic, and we woke up in the middle of the night when a
loud pop sounded. The same was repeated the next night. In the
mornings we couldn't understand why the lid of the tube was thrown on
the floor and it was put on again and it took a couple of days for us to
realize what had happened. Some moisture had gotten inside the tube and
the pills where starting to dissolve which raised the pressure in the
tube which then made the lid to pop off. ;)

 Dale
 
 :-)  :-)
 

  / P-E




Re: [gentoo-user] DVDStyper build error - bad conversion to enum

2011-08-29 Thread Michael Schreckenbauer
Hi,

Am Montag, 29. August 2011, 11:10:03 schrieb Gregory Woodbury:
 Installing dvdstyle results in an error in the mediatrc-ffmpeg.cpp module.
 
 There is a bad int to enum conversion for AVPictureType
 
 Ebuild log attached.

attached is a (simple) patch, that should fix that problem.
Note: I have not tested it, as DVDStyler needs a lot of deps, that are not 
installed here.

Hth,
Michael
--- DVDStyler-1.8.1/src/mediatrc_ffmpeg.cpp	2011-08-29 18:59:54.0 +0200
+++ DVDStyler-1.8.1-new/src/mediatrc_ffmpeg.cpp	2011-08-29 19:00:45.0 +0200
@@ -2242,7 +2242,7 @@
 			} else
 big_picture.quality = (int) ost-st-quality;
 			if (!me_threshold)
-big_picture.pict_type = 0;
+big_picture.pict_type = (AVPictureType)0;
 //big_picture.pts = AV_NOPTS_VALUE;
 			big_picture.pts= ost-sync_opts;
 //big_picture.pts= av_rescale(ost-sync_opts, AV_TIME_BASE*(int64_t)enc-time_base.num, enc-time_base.den);


Re: [gentoo-user] Re: How do slots work?

2011-08-29 Thread Albert W. Hopkins


On Monday, August 29 at 13:01 (-0400), Canek Peláez Valdés said:

  http://ompldr.org/vYTN6NQ
 
 Damn, that looks hot. Did you modify the CSS file by yourself? I would
 love a window title bar a little smaller.
 
I started by modifying it myself.  I really wanted the top panel to look
more like my GNOME2, panel.  And now it does (actually GNOME 3 fixes a
problem I had with GNOME2  whereby I had the clock widget in the
middle, but when I switched to an bigger external monitor it would not
automatically stay centered.  GNOME3 fixes that.)  I changed the font
size and face either in CSS or the tweak tool.  The dialogs (log out,
etc.) which you don't see in the screenshot were grabbed from the CSS of
another theme.  The title bar is from the Hope theme.  I only grabbed
the window manager part as I wasn't interested in the rest.

-a





[gentoo-user] Important package blocked by another important package

2011-08-29 Thread meino . cramer
Hi,

How can I get out of this:

Calculating dependencies... done!
[ebuild U ~] sys-apps/util-linux-2.20 [2.19.1-r1] USE=cramfs crypt ncurses 
nls perl unicode -loop-aes -old-linux (-selinux) -slang -static-libs% 
(-uclibc) 4,507 kB
[blocks B  ] sys-apps/sysvinit-2.88-r3 (sys-apps/sysvinit-2.88-r3 is 
blocking sys-apps/util-linux-2.20)

Total: 1 package (1 upgrade), Size of downloads: 4,507 kB
Conflict: 1 block (1 unsatisfied)

 * Error: The above package list contains packages which cannot be
 * installed at the same time on the same system.

  (sys-apps/util-linux-2.20::gentoo, ebuild scheduled for merge) pulled in by
=sys-apps/util-linux-2.16 required by (sys-fs/lvm2-2.02.73-r1::gentoo, 
installed)
=sys-apps/util-linux-2.16 required by (sys-fs/udev-164-r2::gentoo, 
installed)
=sys-apps/util-linux-2.16 required by (x11-libs/libSM-1.2.0::gentoo, 
installed)
sys-apps/util-linux required by (app-text/xmlto-0.0.23::gentoo, installed)
=sys-apps/util-linux-2.16 required by (dev-libs/apr-1.4.4::gentoo, 
installed)
sys-apps/util-linux required by @system
=sys-apps/util-linux-2.13 required by (sys-power/pm-utils-1.4.1::gentoo, 
installed)
=sys-apps/util-linux-2.13 required by 
(www-plugins/nspluginwrapper-1.4.4::gentoo, installed)
=sys-apps/util-linux-2.16 required by (sys-fs/e2fsprogs-1.41.14::gentoo, 
installed)
sys-apps/util-linux required by 
(app-text/build-docbook-catalog-1.4::gentoo, installed)

  (sys-apps/sysvinit-2.88-r1::gentoo, installed) pulled in by
=sys-apps/sysvinit-2.86-r6 required by (virtual/init-0::gentoo, installed)


???

Thank you very much in advance for any unblocking help ! :)
Best regards,
mcc






Re: [gentoo-user] Important package blocked by another important package

2011-08-29 Thread Pandu Poluan
Your sysvinit is 2.88-r1. Try upgrading it to 2.88-r3, as wanted by util-linux.

You may have to unmask it in /etc/portage/package.accept_keywords

Rgds,


On 2011-08-30, meino.cra...@gmx.de meino.cra...@gmx.de wrote:
 Hi,

 How can I get out of this:

 Calculating dependencies... done!
 [ebuild U ~] sys-apps/util-linux-2.20 [2.19.1-r1] USE=cramfs crypt
 ncurses nls perl unicode -loop-aes -old-linux (-selinux) -slang
 -static-libs% (-uclibc) 4,507 kB
 [blocks B  ] sys-apps/sysvinit-2.88-r3 (sys-apps/sysvinit-2.88-r3 is
 blocking sys-apps/util-linux-2.20)

 Total: 1 package (1 upgrade), Size of downloads: 4,507 kB
 Conflict: 1 block (1 unsatisfied)

  * Error: The above package list contains packages which cannot be
  * installed at the same time on the same system.

   (sys-apps/util-linux-2.20::gentoo, ebuild scheduled for merge) pulled in
 by
 =sys-apps/util-linux-2.16 required by (sys-fs/lvm2-2.02.73-r1::gentoo,
 installed)
 =sys-apps/util-linux-2.16 required by (sys-fs/udev-164-r2::gentoo,
 installed)
 =sys-apps/util-linux-2.16 required by (x11-libs/libSM-1.2.0::gentoo,
 installed)
 sys-apps/util-linux required by (app-text/xmlto-0.0.23::gentoo,
 installed)
 =sys-apps/util-linux-2.16 required by (dev-libs/apr-1.4.4::gentoo,
 installed)
 sys-apps/util-linux required by @system
 =sys-apps/util-linux-2.13 required by
 (sys-power/pm-utils-1.4.1::gentoo, installed)
 =sys-apps/util-linux-2.13 required by
 (www-plugins/nspluginwrapper-1.4.4::gentoo, installed)
 =sys-apps/util-linux-2.16 required by
 (sys-fs/e2fsprogs-1.41.14::gentoo, installed)
 sys-apps/util-linux required by
 (app-text/build-docbook-catalog-1.4::gentoo, installed)

   (sys-apps/sysvinit-2.88-r1::gentoo, installed) pulled in by
 =sys-apps/sysvinit-2.86-r6 required by (virtual/init-0::gentoo,
 installed)


 ???

 Thank you very much in advance for any unblocking help ! :)
 Best regards,
 mcc







-- 
--
Pandu E Poluan - IT Optimizer
My website: http://pandu.poluan.info/



[gentoo-user] urxvt kesyms

2011-08-29 Thread meino . cramer

Hi,

I want to remap the create new tab, next tab and previous tab
keybindings to the keycombo I used to use with my previous mrxvt.

Urxvt has keysym support with a somehow complicate syntax.

What is the spelling/nameing of the commands I want to remap?


Or more generally:
Where can I get a list of all supported commands, which I can
map to keys?


Best regards,
mcc




PS: Are there other recommended terminal emulators with full unicode support
and tabbing?








Re: [gentoo-user] Important package blocked by another important package

2011-08-29 Thread meino . cramer
Hi,

is it normal/ok, that an unmasked package pulls in a masked one?

Best regards,
mcc



Pandu Poluan pa...@poluan.info [11-08-30 04:56]:
 Your sysvinit is 2.88-r1. Try upgrading it to 2.88-r3, as wanted by 
 util-linux.
 
 You may have to unmask it in /etc/portage/package.accept_keywords
 
 Rgds,
 
 
 On 2011-08-30, meino.cra...@gmx.de meino.cra...@gmx.de wrote:
  Hi,
 
  How can I get out of this:
 
  Calculating dependencies... done!
  [ebuild U ~] sys-apps/util-linux-2.20 [2.19.1-r1] USE=cramfs crypt
  ncurses nls perl unicode -loop-aes -old-linux (-selinux) -slang
  -static-libs% (-uclibc) 4,507 kB
  [blocks B  ] sys-apps/sysvinit-2.88-r3 (sys-apps/sysvinit-2.88-r3 is
  blocking sys-apps/util-linux-2.20)
 
  Total: 1 package (1 upgrade), Size of downloads: 4,507 kB
  Conflict: 1 block (1 unsatisfied)
 
   * Error: The above package list contains packages which cannot be
   * installed at the same time on the same system.
 
(sys-apps/util-linux-2.20::gentoo, ebuild scheduled for merge) pulled in
  by
  =sys-apps/util-linux-2.16 required by (sys-fs/lvm2-2.02.73-r1::gentoo,
  installed)
  =sys-apps/util-linux-2.16 required by (sys-fs/udev-164-r2::gentoo,
  installed)
  =sys-apps/util-linux-2.16 required by (x11-libs/libSM-1.2.0::gentoo,
  installed)
  sys-apps/util-linux required by (app-text/xmlto-0.0.23::gentoo,
  installed)
  =sys-apps/util-linux-2.16 required by (dev-libs/apr-1.4.4::gentoo,
  installed)
  sys-apps/util-linux required by @system
  =sys-apps/util-linux-2.13 required by
  (sys-power/pm-utils-1.4.1::gentoo, installed)
  =sys-apps/util-linux-2.13 required by
  (www-plugins/nspluginwrapper-1.4.4::gentoo, installed)
  =sys-apps/util-linux-2.16 required by
  (sys-fs/e2fsprogs-1.41.14::gentoo, installed)
  sys-apps/util-linux required by
  (app-text/build-docbook-catalog-1.4::gentoo, installed)
 
(sys-apps/sysvinit-2.88-r1::gentoo, installed) pulled in by
  =sys-apps/sysvinit-2.86-r6 required by (virtual/init-0::gentoo,
  installed)
 
 
  ???
 
  Thank you very much in advance for any unblocking help ! :)
  Best regards,
  mcc
 
 
 
 
 
 
 
 -- 
 --
 Pandu E Poluan - IT Optimizer
 My website: http://pandu.poluan.info/
 




Re: [gentoo-user] urxvt kesyms

2011-08-29 Thread Roman Dobosz
On Tue, 30 Aug 2011 05:10:01 +0200
meino.cra...@gmx.de wrote:

 I want to remap the create new tab, next tab and previous tab
 keybindings to the keycombo I used to use with my previous mrxvt.
 
 Urxvt has keysym support with a somehow complicate syntax.
 
 What is the spelling/nameing of the commands I want to remap?

In my tabbed modification
(https://bitbucket.org/gryf/tabbed/wiki) initially I've used
x11-apps/xev for reading keys. You can start with that.

-- 
  -^-  _coś tam w tle sobie gra, np:
   _ /O)_\//Hocico - Bite Me! (The Beautiful Assholes H-Mix)
  (_(|__(_(_) grf.