View previous topic :: View next topic |
Author |
Message |
BlackEye l33t
Joined: 04 Dec 2002 Posts: 756 Location: Germany
|
Posted: Tue Jan 27, 2009 8:19 pm Post subject: |
|
|
I think the packages are currently in progress of version bumping. From time to time we got more *-4.2 ebuilds.
You just need to wait a few mins/hours |
|
Back to top |
|
|
Nephilim666 Tux's lil' helper
Joined: 07 Jul 2007 Posts: 148
|
Posted: Tue Jan 27, 2009 8:29 pm Post subject: |
|
|
By the way, kudos to our new KDE developer team!
Upstream just released KDE 4.2 and the ebuilds appear in portage only a couple hours later!
Niiicccce! |
|
Back to top |
|
|
asturm Developer
Joined: 05 Apr 2007 Posts: 9271
|
Posted: Tue Jan 27, 2009 8:33 pm Post subject: |
|
|
Imo portage 4.2.0 ebuilds are complete now. Go grab 'em! |
|
Back to top |
|
|
Diavolo Apprentice
Joined: 09 Jan 2005 Posts: 151
|
Posted: Tue Jan 27, 2009 8:51 pm Post subject: |
|
|
Hi,
how can I unmask all the KDe 4.2 packages with one command?
Do I have to unemerge KDE 4.1.4 to emerge KDE 4.2? |
|
Back to top |
|
|
erikderzweite Tux's lil' helper
Joined: 25 Feb 2006 Posts: 143
|
Posted: Tue Jan 27, 2009 8:55 pm Post subject: |
|
|
genstorm wrote: | Imo portage 4.2.0 ebuilds are complete now. Go grab 'em! |
Ebuilds might be there, but are the sets ready too? |
|
Back to top |
|
|
Kollin Veteran
Joined: 25 Feb 2006 Posts: 1139 Location: Sofia/Bulgaria
|
Posted: Tue Jan 27, 2009 8:56 pm Post subject: |
|
|
Diavolo wrote: | Hi,
how can I unmask all the KDe 4.2 packages with one command?
Do I have to unemerge KDE 4.1.4 to emerge KDE 4.2? |
search for "autounmask" tool _________________ "Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..." |
|
Back to top |
|
|
Diavolo Apprentice
Joined: 09 Jan 2005 Posts: 151
|
Posted: Tue Jan 27, 2009 8:57 pm Post subject: |
|
|
I have it, but do I have to autounmask every package? |
|
Back to top |
|
|
platojones Veteran
Joined: 23 Oct 2002 Posts: 1602 Location: Just over the horizon
|
Posted: Tue Jan 27, 2009 8:58 pm Post subject: |
|
|
erikderzweite wrote: | genstorm wrote: | Imo portage 4.2.0 ebuilds are complete now. Go grab 'em! |
Ebuilds might be there, but are the sets ready too? |
I just stole them from the kde-testing overlay. I haven't seen the sets in the portage tree. |
|
Back to top |
|
|
asturm Developer
Joined: 05 Apr 2007 Posts: 9271
|
Posted: Tue Jan 27, 2009 9:18 pm Post subject: |
|
|
erikderzweite wrote: | genstorm wrote: | Imo portage 4.2.0 ebuilds are complete now. Go grab 'em! |
Ebuilds might be there, but are the sets ready too? |
Indeed they are not. I didn't notice since I'm using my own set. |
|
Back to top |
|
|
BlackEye l33t
Joined: 04 Dec 2002 Posts: 756 Location: Germany
|
Posted: Tue Jan 27, 2009 9:36 pm Post subject: |
|
|
Just copy the sets from kde-testing overlay (layman) to /etc/portage/sets
Code: | mkdir -p /etc/portage/sets
cp /usr/portage/local/layman/kde-testing/sets/* /etc/portage/sets |
after this you can use the sets like:
Code: | emerge -av @kdebase-4.2 |
maybe you will find out that you haven't got >=app-office/akonadi-server-1.1.0
Is this the case simply use the app-office/akonadi-server-1.1.0.ebuild from kde-testing.
I did this by:
Code: | mkdir -p /usr/local/portage/app-office/akonadi-server
cp /usr/portage/local/layman/kde-testing/app-office/akonadi-server/akonadi-server-1.1.0.ebuild /usr/local/portage/app-office/akonadi-server
echo -e PORTDIR_OVERLAY=\"/usr/local/portage\" >> /etc/make.conf
ebuild /usr/local/portage/app-office/akonadi-server/akonadi-server-1.1.0.ebuild
emerge -av1 =akonadi-server-1.1.0
|
after these steps I was able to actually start my
Code: | emerge @kdebase-4.2 |
Have fun
Edit: I removed the layman overlay from my make.conf to not confuse portage as it would otherwise use all the ebuilds from layman
Last edited by BlackEye on Tue Jan 27, 2009 9:38 pm; edited 1 time in total |
|
Back to top |
|
|
vlow n00b
Joined: 27 Jan 2005 Posts: 67 Location: Munich, Germany
|
Posted: Tue Jan 27, 2009 9:38 pm Post subject: |
|
|
how did you guys upgrade ? isn't there a simple possibility to upgrade from 4.1 ? autounmasking all of the packages is quite annoying... |
|
Back to top |
|
|
Dillonco n00b
Joined: 25 Oct 2004 Posts: 15
|
Posted: Tue Jan 27, 2009 9:40 pm Post subject: |
|
|
My own particular method went like this (after installing the kde-testing overlay):
Code: |
cd /usr/local/portage/layman/kde-testing
mkdir XXX
mv *-* XXX/
mkdir app-office
ln -s ../XXX/app-office/akonadi-server app-office/
grep '\-4.2.0' package.mask > package.unmask
|
The grep line there will unmask everything, and you don't have to worry about dealing with moving the sets or akonadi-server ebuild, though the latter will be installed from the overlay.
Last edited by Dillonco on Tue Jan 27, 2009 9:44 pm; edited 1 time in total |
|
Back to top |
|
|
BlackEye l33t
Joined: 04 Dec 2002 Posts: 756 Location: Germany
|
Posted: Tue Jan 27, 2009 9:41 pm Post subject: |
|
|
vlow wrote: | how did you guys upgrade ? isn't there a simple possibility to upgrade from 4.1 ? autounmasking all of the packages is quite annoying... |
I did it by manually unmask them using the package.mask from portage
Code: | cat /usr/portage/profiles/package.mask | grep --color=no 4.1.96 | sed -e "s/4.1.96/4.2.0/" | sed -e "s/>=/=/" >> /etc/portage/package.unmask |
|
|
Back to top |
|
|
platojones Veteran
Joined: 23 Oct 2002 Posts: 1602 Location: Just over the horizon
|
Posted: Tue Jan 27, 2009 9:43 pm Post subject: |
|
|
No luck for me after all...all of the mirrors don't appear to be synced yet or everything isn't in the tree...I don't know which. My build blew up when trying to merge solid....it's still missing the files directory in portage which contains some patch it needs. |
|
Back to top |
|
|
vlow n00b
Joined: 27 Jan 2005 Posts: 67 Location: Munich, Germany
|
Posted: Tue Jan 27, 2009 9:48 pm Post subject: |
|
|
brings me a nice:
Code: |
These are the packages that would be merged, in order:
Calculating dependencies... done!
emerge: there are no ebuilds to satisfy ">=app-office/akonadi-server-1.1".
(dependency required by "kde-base/kdepimlibs-4.2.0" [ebuild])
(dependency required by "media-sound/amarok-2.0.1.1" [installed])
(dependency required by "world" [argument])
|
akonadi-server-1.1 seems not to be in portage indeed... |
|
Back to top |
|
|
BlackEye l33t
Joined: 04 Dec 2002 Posts: 756 Location: Germany
|
Posted: Tue Jan 27, 2009 9:56 pm Post subject: |
|
|
vlow wrote: | akonadi-server-1.1 seems not to be in portage indeed... |
jops, but you can use the akonadi-server-1.1.0.ebuild from testing overlay as mentioned here |
|
Back to top |
|
|
phil_r Apprentice
Joined: 14 Mar 2006 Posts: 265 Location: Omaha, NE, USA
|
Posted: Tue Jan 27, 2009 9:59 pm Post subject: |
|
|
That's fine but some of us don't use layman and kde-testing overlays. _________________ Just when you think you know the answers, I change the questions. |
|
Back to top |
|
|
asturm Developer
Joined: 05 Apr 2007 Posts: 9271
|
|
Back to top |
|
|
BlackEye l33t
Joined: 04 Dec 2002 Posts: 756 Location: Germany
|
Posted: Tue Jan 27, 2009 10:10 pm Post subject: |
|
|
platojones wrote: | No luck for me after all...all of the mirrors don't appear to be synced yet or everything isn't in the tree...I don't know which. My build blew up when trying to merge solid....it's still missing the files directory in portage which contains some patch it needs. |
same here. But after I copied /usr/portage/local/layman/kde-testing/kde-base/solid/files/solid-4.2.0-backport-solid-bluetooth.patch to a local overlay for solid I was able to restart the compile for solid and now its going on... |
|
Back to top |
|
|
epsilon72 Guru
Joined: 20 Sep 2007 Posts: 568
|
Posted: Tue Jan 27, 2009 10:13 pm Post subject: |
|
|
Is kde 4.2 going to keep the '~' status, as with 4.1.x? Does it still have a ways to go before it matches 3.5's usability? |
|
Back to top |
|
|
platojones Veteran
Joined: 23 Oct 2002 Posts: 1602 Location: Just over the horizon
|
Posted: Tue Jan 27, 2009 10:51 pm Post subject: |
|
|
BlackEye wrote: | platojones wrote: | No luck for me after all...all of the mirrors don't appear to be synced yet or everything isn't in the tree...I don't know which. My build blew up when trying to merge solid....it's still missing the files directory in portage which contains some patch it needs. |
same here. But after I copied /usr/portage/local/layman/kde-testing/kde-base/solid/files/solid-4.2.0-backport-solid-bluetooth.patch to a local overlay for solid I was able to restart the compile for solid and now its going on... |
Thanks, that works...I'm on my way again. |
|
Back to top |
|
|
asturm Developer
Joined: 05 Apr 2007 Posts: 9271
|
|
Back to top |
|
|
Kollin Veteran
Joined: 25 Feb 2006 Posts: 1139 Location: Sofia/Bulgaria
|
Posted: Tue Jan 27, 2009 11:03 pm Post subject: |
|
|
epsilon72 wrote: | Is kde 4.2 going to keep the '~' status, as with 4.1.x? Does it still have a ways to go before it matches 3.5's usability? |
First of all portage-2.2* should hit stable and after that kde4 will _________________ "Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..." |
|
Back to top |
|
|
neerajcd n00b
Joined: 02 Apr 2003 Posts: 43
|
Posted: Tue Jan 27, 2009 11:06 pm Post subject: |
|
|
What about this?
Quote: | [blocks B ] <=kde-base/kdebase-3.5.9-r4 ("<=kde-base/kdebase-3.5.9-r4" is blocking kde-base/kdelibs-4.2.0) |
I don't want to lose 3.5 system. |
|
Back to top |
|
|
Kollin Veteran
Joined: 25 Feb 2006 Posts: 1139 Location: Sofia/Bulgaria
|
Posted: Tue Jan 27, 2009 11:09 pm Post subject: |
|
|
neerajcd wrote: | What about this?
Quote: | [blocks B ] <=kde-base/kdebase-3.5.9-r4 ("<=kde-base/kdebase-3.5.9-r4" is blocking kde-base/kdelibs-4.2.0) |
I don't want to lose 3.5 system. |
Did u enable "kdeprefix" flag
http://www.gentoo.org/proj/en/desktop/kde/kde4-guide.xml _________________ "Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..." |
|
Back to top |
|
|
|