Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Portage & Programming
  • Search

Can't emerge -u mplayer ???

Problems with emerge or ebuilds? Have a basic programming question about C, PHP, Perl, BASH or something else?
Post Reply
Advanced search
22 posts • Page 1 of 1
Author
Message
Harpat
n00b
n00b
User avatar
Posts: 5
Joined: Mon Sep 08, 2003 11:21 pm
Location: My desk

Can't emerge -u mplayer ???

  • Quote

Post by Harpat » Sun Sep 28, 2003 7:17 pm

Here's an odd message I'm getting:

Code: Select all

root # emerge mplayer -uv
Calculating dependencies ...done!
>>> emerge (1 of 1) media-video/mplayer-0.92 to /
>>> Resuming download...
>>> Downloading http://gentoo.oregonstate.edu/distfiles/font-arial-iso-8859-2.tar.bz2
--15:13:00--  http://gentoo.oregonstate.edu/distfiles/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving gentoo.oregonstate.edu... done.
Connecting to gentoo.oregonstate.edu[128.193.0.3]:80... connected.
HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable

    The file is already fully retrieved; nothing to do.

>>> Resuming download...
>>> Downloading http://distro.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/font-arial-iso-8859-2.tar.bz2
--15:13:00--  http://distro.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving distro.ibiblio.org... done.
Connecting to distro.ibiblio.org[152.2.210.109]:80... connected.
HTTP request sent, awaiting response... 404 Not Found

Continued download failed on this file, which conflicts with `-c'.
Refusing to truncate existing file `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'.

>>> Resuming download...
>>> Downloading http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2
--15:13:01--  http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving mplayerhq.hu... done.
Connecting to mplayerhq.hu[192.190.173.45]:80... connected.
HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable

    The file is already fully retrieved; nothing to do.

!!! Couldn't download font-arial-iso-8859-2.tar.bz2. Aborting.
Deleting and re-downloading font-arial-iso-8859-2.tar.bz2 didn't help. Any thoughts? I feel like I'm missing something obvious.
Top
jonfr
Veteran
Veteran
Posts: 1008
Joined: Sun Jul 20, 2003 5:24 pm
Location: Denmark
Contact:
Contact jonfr
Website

  • Quote

Post by jonfr » Sun Sep 28, 2003 7:18 pm

I get the same error, i have no idea how to get it working...
Top
El_Presidente_Pufferfish
Veteran
Veteran
User avatar
Posts: 1179
Joined: Thu Jul 11, 2002 11:46 pm
Location: Seattle

  • Quote

Post by El_Presidente_Pufferfish » Sun Sep 28, 2003 7:40 pm

i removed the font-arial things from the SRC_URI in the ebuild and it built
Top
jonfr
Veteran
Veteran
Posts: 1008
Joined: Sun Jul 20, 2003 5:24 pm
Location: Denmark
Contact:
Contact jonfr
Website

  • Quote

Post by jonfr » Sun Sep 28, 2003 8:15 pm

El_Presidente_Pufferfish wrote:i removed the font-arial things from the SRC_URI in the ebuild and it built
where is that?
Top
cederberg
Guru
Guru
User avatar
Posts: 349
Joined: Thu Jan 23, 2003 12:41 am
Location: Stockholm / Sweden
Contact:
Contact cederberg
Website

  • Quote

Post by cederberg » Mon Sep 29, 2003 10:58 am

jonfr wrote:
El_Presidente_Pufferfish wrote:i removed the font-arial things from the SRC_URI in the ebuild and it built
where is that?
In the file /usr/portage/media-video/mplayer/mplayer-0.92.ebuild remove lines 17 and 18:

Code: Select all

SRC_URI="http://mplayerhq.hu/MPlayer/releases/MPlayer-${MY_PV}.tar.bz2
    http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2
    http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2
    svga? ( http://mplayerhq.hu/~alex/svgalib_helper-1.9.17-mplayer.tar.bz2 )
    gtk? ( http://mplayerhq.hu/MPlayer/Skin/Blue-1.0.tar.bz2 )"
So that it reads:

Code: Select all

SRC_URI="http://mplayerhq.hu/MPlayer/releases/MPlayer-${MY_PV}.tar.bz2
    svga? ( http://mplayerhq.hu/~alex/svgalib_helper-1.9.17-mplayer.tar.bz2 )
    gtk? ( http://mplayerhq.hu/MPlayer/Skin/Blue-1.0.tar.bz2 )"
I'm not so sure this is a good solution, though, as it doesn't seem to install the Arial (subtitle) font when you do this. Anyone care to comment?
Top
hensan
l33t
l33t
User avatar
Posts: 868
Joined: Thu Jun 26, 2003 9:24 pm
Location: Sweden

  • Quote

Post by hensan » Mon Sep 29, 2003 11:02 am

A better solution is to make new digests, the ones in portage seem to be fscked:

Code: Select all

ebuild /usr/portage/media-video/mplayer/mplayer-0.92.ebuild digest
emerge -u mplayer
Top
cederberg
Guru
Guru
User avatar
Posts: 349
Joined: Thu Jan 23, 2003 12:41 am
Location: Stockholm / Sweden
Contact:
Contact cederberg
Website

  • Quote

Post by cederberg » Mon Sep 29, 2003 11:09 am

hensan wrote:A better solution is to make new digests, the ones in portage seem to be fscked:
And an even easier solution is described in this thread. Basically the solution is:

Code: Select all

emerge -f /usr/portage/media-video/mplayer/mplayer-1.0_pre1.ebuild
emerge -u mplayer
cederberg wrote:I'm not so sure this is a good solution, though, as it doesn't seem to install the Arial (subtitle) font when you do this. Anyone care to comment?
Oh, I'm wrong again... Just saw it install the fonts... Sorry. :oops:
Top
cederberg
Guru
Guru
User avatar
Posts: 349
Joined: Thu Jan 23, 2003 12:41 am
Location: Stockholm / Sweden
Contact:
Contact cederberg
Website

  • Quote

Post by cederberg » Mon Sep 29, 2003 11:21 am

cederberg wrote:And an even easier solution is described in this thread. Basically the solution is:

Code: Select all

emerge -f /usr/portage/media-video/mplayer/mplayer-1.0_pre1.ebuild
emerge -u mplayer
Hmm... Doesn't work for me. Maybe something changed since all these other people reported success? Guess fixing the digests seem to be the best solution.
Top
cylgalad
Veteran
Veteran
Posts: 1327
Joined: Fri Apr 18, 2003 9:36 am
Location: France

  • Quote

Post by cylgalad » Mon Sep 29, 2003 11:37 am

Edit the ebuild and get rid of the lines with the font urls.
That's a nice mess and I still wonder why we don't have the latest mplayer in stable :!:
Make love not war !
Top
jonfr
Veteran
Veteran
Posts: 1008
Joined: Sun Jul 20, 2003 5:24 pm
Location: Denmark
Contact:
Contact jonfr
Website

  • Quote

Post by jonfr » Mon Sep 29, 2003 11:47 am

removing the font lines is the only thing that seems to work...thx :)
Top
cederberg
Guru
Guru
User avatar
Posts: 349
Joined: Thu Jan 23, 2003 12:41 am
Location: Stockholm / Sweden
Contact:
Contact cederberg
Website

  • Quote

Post by cederberg » Mon Sep 29, 2003 11:59 am

jonfr wrote:removing the font lines is the only thing that seems to work...thx :)
It is not the only way. As hensan pointed out above, you can also replace the digests:

Code: Select all

rm /usr/portage/media-video/mplayer/files/digest-mplayer-0.92
emerge mplayer
ebuild /usr/portage/media-video/mplayer/mplayer-0.92.ebuild digest
emerge mplayer
You can also replace the fonts in the digest file directly with this:

Code: Select all

MD5 1ecd31d17b51f16332b1fcc7da36b312 font-arial-iso-8859-1.tar.bz2 234242
MD5 7b47904a925cf58ea546ca15f3df160c font-arial-iso-8859-2.tar.bz2 222208
Top
Koon
Retired Dev
Retired Dev
User avatar
Posts: 518
Joined: Tue Dec 10, 2002 9:33 am

  • Quote

Post by Koon » Mon Sep 29, 2003 1:27 pm

There is a Bugzilla entry for this here :
http://bugs.gentoo.org/show_bug.cgi?id=29859

-K
Top
axses
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 110
Joined: Tue Mar 18, 2003 4:25 pm

  • Quote

Post by axses » Mon Sep 29, 2003 2:03 pm

Post from Cederberg works.

Thx alot !

bash-2.05b# ebuild /usr/portage/media-video/mplayer/mplayer-1.0_pre1-r1.ebuild digest
>>> Generating digest file...
<<< MPlayer-1.0pre1.tar.bz2
<<< font-arial-iso-8859-1.tar.bz2
<<< font-arial-iso-8859-2.tar.bz2
<<< svgalib_helper-1.9.17-mplayer.tar.bz2
<<< Blue-1.0.tar.bz2
>>> Generating manifest file...
<<< mplayer-1.0_pre1-r1.ebuild
<<< ChangeLog
<<< mplayer-0.92.ebuild
<<< files/mplayer-0.90-ppc-benh.patch
<<< files/mplayer-0.90_rc4-gtk2.patch
<<< files/mencoder-segfault.patch
<<< files/default-skin.diff
<<< files/mplayer-0.90-coreutils-fixup.patch
<<< files/digest-mplayer-0.92
<<< files/vuln01-fix.diff
<<< files/mplayer.desktop
<<< files/mplayer-0.90-ppc-benh-2.patch
<<< files/digest-mplayer-1.0_pre1-r1
<<< files/mplayer-0.90-divx.patch
>>> Computed message digests.


:-) wheee
Top
duncan
n00b
n00b
Posts: 55
Joined: Sun Apr 27, 2003 9:56 pm

  • Quote

Post by duncan » Mon Sep 29, 2003 2:55 pm

cederberg wrote: It is not the only way. As hensan pointed out above, you can also replace the digests:

Code: Select all

rm /usr/portage/media-video/mplayer/files/digest-mplayer-0.92
emerge mplayer
ebuild /usr/portage/media-video/mplayer/mplayer-0.92.ebuild digest
emerge mplayer
doesn't work for me:

Code: Select all

gentoo root # sh mplayer
Calculating dependencies ...done!
>>> emerge (1 of 1) media-video/mplayer-1.0_pre1-r1 to /
>>> Resuming download...
>>> Downloading http://gentoo.oregonstate.edu/distfiles/font-arial-iso-8859-2.tar.bz2
--15:52:13--  http://gentoo.oregonstate.edu/distfiles/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving gentoo.oregonstate.edu... done.
Connecting to gentoo.oregonstate.edu[128.193.0.3]:80... connected.
HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable
 
    The file is already fully retrieved; nothing to do.
 
>>> Resuming download...
>>> Downloading http://distro.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/font-arial-iso-8859-2.tar.bz2
--15:52:23--  http://distro.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving distro.ibiblio.org... done.
Connecting to distro.ibiblio.org[152.2.210.109]:80... connected.
HTTP request sent, awaiting response... 404 Not Found
 
Continued download failed on this file, which conflicts with `-c'.
Refusing to truncate existing file `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'.
 
>>> Resuming download...
>>> Downloading http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2
--15:52:23--  http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving mplayerhq.hu... done.
Connecting to mplayerhq.hu[192.190.173.45]:80... connected.
HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable
 
    The file is already fully retrieved; nothing to do.
 
!!! Couldn't download font-arial-iso-8859-2.tar.bz2. Aborting.
>>> Downloading http://gentoo.oregonstate.edu/distfiles/MPlayer-0.92.tar.bz2
--15:52:28--  http://gentoo.oregonstate.edu/distfiles/MPlayer-0.92.tar.bz2
           => `/usr/portage/distfiles/MPlayer-0.92.tar.bz2'
Resolving gentoo.oregonstate.edu... done.
Connecting to gentoo.oregonstate.edu[128.193.0.3]:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3,466,985 [application/x-tar]
 
100%[====================================>] 3,466,985     38.14K/s    ETA 00:00
 
15:53:57 (38.14 KB/s) - `/usr/portage/distfiles/MPlayer-0.92.tar.bz2' saved [3466985/3466985]
 
>>> Downloading http://gentoo.oregonstate.edu/distfiles/font-arial-iso-8859-1.tar.bz2
--15:53:57--  http://gentoo.oregonstate.edu/distfiles/font-arial-iso-8859-1.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-1.tar.bz2'
Resolving gentoo.oregonstate.edu... done.
Connecting to gentoo.oregonstate.edu[128.193.0.3]:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 234,242 [application/x-tar]
 
100%[====================================>] 234,242       32.79K/s    ETA 00:00
 
15:54:04 (32.79 KB/s) - `/usr/portage/distfiles/font-arial-iso-8859-1.tar.bz2' saved [234242/234242]
 
>>> Downloading http://gentoo.oregonstate.edu/distfiles/Blue-1.0.tar.bz2
--15:54:04--  http://gentoo.oregonstate.edu/distfiles/Blue-1.0.tar.bz2
           => `/usr/portage/distfiles/Blue-1.0.tar.bz2'
Resolving gentoo.oregonstate.edu... done.
Connecting to gentoo.oregonstate.edu[128.193.0.3]:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 219,130 [application/x-tar]
 
100%[====================================>] 219,130       32.05K/s    ETA 00:00
 
15:54:12 (32.05 KB/s) - `/usr/portage/distfiles/Blue-1.0.tar.bz2' saved [219130/219130]
 
>>> Generating digest file...
<<< MPlayer-0.92.tar.bz2
<<< font-arial-iso-8859-1.tar.bz2
<<< font-arial-iso-8859-2.tar.bz2
<<< svgalib_helper-1.9.17-mplayer.tar.bz2
<<< Blue-1.0.tar.bz2
>>> Generating manifest file...
<<< mplayer-1.0_pre1-r1.ebuild
<<< ChangeLog
<<< mplayer-0.92.ebuild
<<< files/mplayer-0.90-ppc-benh.patch
<<< files/mplayer-0.90_rc4-gtk2.patch
<<< files/mencoder-segfault.patch
<<< files/default-skin.diff
<<< files/mplayer-0.90-coreutils-fixup.patch
<<< files/digest-mplayer-0.92
<<< files/vuln01-fix.diff
<<< files/mplayer.desktop
<<< files/mplayer-0.90-ppc-benh-2.patch
<<< files/digest-mplayer-1.0_pre1-r1
<<< files/mplayer-0.90-divx.patch
>>> Computed message digests.
 
Calculating dependencies ...done!
>>> emerge (1 of 1) media-video/mplayer-1.0_pre1-r1 to /
>>> Resuming download...
>>> Downloading http://gentoo.oregonstate.edu/distfiles/font-arial-iso-8859-2.tar.bz2
--15:54:13--  http://gentoo.oregonstate.edu/distfiles/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving gentoo.oregonstate.edu... done.
Connecting to gentoo.oregonstate.edu[128.193.0.3]:80... connected.
HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable
 
    The file is already fully retrieved; nothing to do.
 
>>> Resuming download...
>>> Downloading http://distro.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/font-arial-iso-8859-2.tar.bz2
--15:54:13--  http://distro.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving distro.ibiblio.org... done.
Connecting to distro.ibiblio.org[152.2.210.109]:80... connected.
HTTP request sent, awaiting response... 404 Not Found
 
Continued download failed on this file, which conflicts with `-c'.
Refusing to truncate existing file `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'.
 
>>> Resuming download...
>>> Downloading http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2
--15:54:17--  http://mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2
           => `/usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2'
Resolving mplayerhq.hu... done.
Connecting to mplayerhq.hu[192.190.173.45]:80... connected.
HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable
 
    The file is already fully retrieved; nothing to do.
 
!!! Couldn't download font-arial-iso-8859-2.tar.bz2. Aborting.
Top
miaomix
n00b
n00b
Posts: 0
Joined: Fri Jun 14, 2002 5:45 pm
Location: Boise, ID

  • Quote

Post by miaomix » Mon Sep 29, 2003 4:33 pm

just replace the 0.92 w/ 1.0_pre1-r1

not too tough. works like a champ
miaomix/miaomx5
Top
miaomix
n00b
n00b
Posts: 0
Joined: Fri Jun 14, 2002 5:45 pm
Location: Boise, ID

  • Quote

Post by miaomix » Mon Sep 29, 2003 4:36 pm

just replace the 0.92 w/ 1.0_pre1-r1

not too tough. works like a champ
miaomix/miaomx5
Top
mta
n00b
n00b
User avatar
Posts: 28
Joined: Mon Jun 02, 2003 7:40 am
Location: Australia

  • Quote

Post by mta » Mon Oct 13, 2003 11:20 pm

there seems to be a lot of solutions and not all is right for everyone.

Cederberg's answer fixed it for me too though, thanks :)
Top
havryk
n00b
n00b
Posts: 2
Joined: Fri Oct 03, 2003 3:43 pm

  • Quote

Post by havryk » Tue Nov 04, 2003 9:03 am

cederberg solution worked for me too.
Top
cayenne
l33t
l33t
User avatar
Posts: 945
Joined: Thu Oct 17, 2002 3:50 am
Location: New Orleans

What did I just do?

  • Quote

Post by cayenne » Wed Nov 05, 2003 3:12 pm

hensan wrote:A better solution is to make new digests, the ones in portage seem to be fscked:

Code: Select all

ebuild /usr/portage/media-video/mplayer/mplayer-0.92.ebuild digest
emerge -u mplayer
Hello!!

First, many thanks for the suggestion, looks to be compiling just fine now. Can you give me a brief explanation on just what that ebuild line just did? Just as a head start to reading all the portage docs....

Thanks!!

cayenne
Light travels faster than sound. This is why some people appear bright until you hear them speak.........
Top
cederberg
Guru
Guru
User avatar
Posts: 349
Joined: Thu Jan 23, 2003 12:41 am
Location: Stockholm / Sweden
Contact:
Contact cederberg
Website

Re: What did I just do?

  • Quote

Post by cederberg » Thu Nov 06, 2003 2:34 am

cayenne wrote:Can you give me a brief explanation on just what that ebuild line just did?
A digest is a "signature" to verify that the downloaded files are indeed the right ones. That is, they can be used to detect download errors, someone tampering with the sources, etc. You get the file digests from the ebuild authors via "emerge sync". The digests are stored in the portage tree, in the Manifest and files/digest-* files.

With the "ebuild ... digest" command what you did was simply to generate new digests from the files you had downloaded. These new digests replaced the ones provided by in the portage tree. This, of course, defeats the whole purpose of the digests, as they are supposed to be your guarantee from the ebuild author that the files are ok.

Now, as this issue has been resolved in portage for some time, I guess your problem was really that you still had the OLD font files in /usr/portage/distfiles. So what you did (unknowingly) was probably to regenerate digests for these old files. I suggest you remove the font files from /usr/portage/distfiles, do "emerge sync" and then an "emerge mplayer" to rectify this.
Top
cn73
Tux's lil' helper
Tux's lil' helper
Posts: 120
Joined: Thu Nov 20, 2003 9:18 am
Location: Italy
Contact:
Contact cn73
Website

  • Quote

Post by cn73 » Thu Nov 27, 2003 11:10 pm

works for me too...
Top
gonad
n00b
n00b
User avatar
Posts: 31
Joined: Tue Aug 05, 2003 10:31 am

  • Quote

Post by gonad » Thu Dec 11, 2003 6:29 am

All you need to do to work around this is:

rm /usr/portage/distfiles/font-arial-iso-8859-1.tar.bz2
rm /usr/portage/distfiles/font-arial-iso-8859-2.tar.bz2

You'll re-download the files and the md5's will match and you'll love things again.
Top
Post Reply

22 posts • Page 1 of 1

Return to “Portage & Programming”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Authors
Gentoo is a trademark of the Gentoo Foundation, Inc. and of Förderverein Gentoo e.V.
The contents of this document, unless otherwise expressly stated, are licensed under the CC-BY-SA-4.0 license.
The Gentoo Name and Logo Usage Guidelines apply.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy