Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Clean out your world file
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3 ... 14, 15, 16 ... 27, 28, 29  Next  
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
cbr
Apprentice
Apprentice


Joined: 05 Jan 2004
Posts: 285
Location: Tallinn/Rakvere, Estonia

PostPosted: Fri Dec 03, 2004 9:30 pm    Post subject: Reply with quote

With v4.00 ./dep -w is broken. $ strace ./dep -w gives this:
Code:
read(3, "\n*sys-apps/sed\n*sys-apps/shadow\n"..., 128) = 128
read(3, "sys-devel/bc\n*sys-devel/bin86\n*s"..., 128) = 128
read(3, "gnuconfig\n*sys-devel/libtool\n*sy"..., 128) = 128
read(3, "ys-libs/ncurses\n*sys-libs/pwdb\n*"..., 128) = 128
read(3, "utils\n*virtual/os-headers\n*virtu"..., 128) = 128
read(3, "4\n>=sys-devel/binutils-2.14.90.0"..., 128) = 116
read(3, "", 128)                        = 0
close(3)                                = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigaction(SIGINT, {0x807c2f0, [], 0}, {0x808df10, [], 0}, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGINT, {0x808df10, [], 0}, {0x807c2f0, [], 0}, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
read(255, "\nprofileprovided=$(\n\tkill_commen"..., 8192) = 8192
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
pipe([3, 4])                            = 0
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
_llseek(255, -8087, [17847], SEEK_CUR)  = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7fef6f8) = 11758
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGCHLD, {0x807d7d0, [], 0}, {0x807d7d0, [], 0}, 8) = 0
close(4)                                = 0
read(3,

It just stalls there...
Back to top
View user's profile Send private message
Genn
Tux's lil' helper
Tux's lil' helper


Joined: 19 Sep 2003
Posts: 98

PostPosted: Sat Dec 04, 2004 5:18 pm    Post subject: Reply with quote

I was also having problems with the latest script. Running any command other then the options menu would cause it to just hang. Someone said previously that it had to do with the package.provided file and that creating it would fix the problem. It didn't in my case. I did however do a little of the echo work myself and it did hang on

Code:
profileprovided=$(
        kill_comments_and_blanks $(profile_files package.provided) \
        | stacking_sort yes
)


like he said(that's around line 600 BTW). Because package.provided was empty anyways, removing blanks and comments wouldn't do anything, so I just commented it out and it worked. Hopefully I'm not going to destroy my system doing something like that.
Back to top
View user's profile Send private message
rhill
Retired Dev
Retired Dev


Joined: 22 Oct 2004
Posts: 1629
Location: sk.ca

PostPosted: Tue Dec 07, 2004 8:57 am    Post subject: Reply with quote

that's funny, it works fine for me. the file is /etc/portage/profile/package.provided and it's empty (0 byte). dep -w takes about a minute to start displaying anything, but it works fine. i'm also using 4.0. :?:
Back to top
View user's profile Send private message
volar
n00b
n00b


Joined: 21 Nov 2004
Posts: 12

PostPosted: Thu Dec 09, 2004 4:39 am    Post subject: Reply with quote

weird...but "dep" doesn't seems to run on my system....
I tried all the "actions", but there aren't any outputs...
but seems just hanging there...
when I trace it with "bash -x"...
it seems to hang at
Code:

++ kill_comments_and_blanks
++ sed -e 's/#.*//;/^$/d'


What's wrong?
Back to top
View user's profile Send private message
choenig
Tux's lil' helper
Tux's lil' helper


Joined: 04 Nov 2002
Posts: 83
Location: EDDK, Germany

PostPosted: Thu Dec 09, 2004 7:25 am    Post subject: Reply with quote

This most probably isn't an apropriate fix, bit it helps at least to get it running again.

Change the function 'kill_comments_and_blanks() to the following:
Code:

function kill_comments_and_blanks() {
        if [ $# -gt 0 ] ; then
            sed -e 's/#.*//;/^$/d' "$@"
        fi
}



take care, have fun
/christian
Back to top
View user's profile Send private message
Cintra
Advocate
Advocate


Joined: 03 Apr 2004
Posts: 2111
Location: Norway

PostPosted: Thu Dec 09, 2004 7:38 am    Post subject: Reply with quote

Hei choenig

Just tried ftp://ftp.hoenig.cc/misc/dep-choenig without luck.. is it still available there?

mvh
_________________
"I am not bound to please thee with my answers" W.S.
Back to top
View user's profile Send private message
choenig
Tux's lil' helper
Tux's lil' helper


Joined: 04 Nov 2002
Posts: 83
Location: EDDK, Germany

PostPosted: Thu Dec 09, 2004 8:28 am    Post subject: Reply with quote

Hi Cintra,

Cintra wrote:

Just tried ftp://ftp.hoenig.cc/misc/dep-choenig without luck.. is it still available there?


Yes it is, but as dep 4.00 can manage inherited profiles now, you don't need my patched version anymore :-)

take care, have fun
/christian
Back to top
View user's profile Send private message
Cintra
Advocate
Advocate


Joined: 03 Apr 2004
Posts: 2111
Location: Norway

PostPosted: Thu Dec 09, 2004 8:46 am    Post subject: Reply with quote

Do you mean the one from here? It just seems to hang for me...

http://home.jesus.ox.ac.uk/~ecatmur/my-bin/dep

regards
_________________
"I am not bound to please thee with my answers" W.S.
Back to top
View user's profile Send private message
choenig
Tux's lil' helper
Tux's lil' helper


Joined: 04 Nov 2002
Posts: 83
Location: EDDK, Germany

PostPosted: Thu Dec 09, 2004 9:01 am    Post subject: Reply with quote

Cintra wrote:
Do you mean the one from here? It just seems to hang for me...

http://home.jesus.ox.ac.uk/~ecatmur/my-bin/dep


Yes, and 5 posts above this one I have posted a quick fix for that problem :-)

take care, have fun
/christian
Back to top
View user's profile Send private message
Cintra
Advocate
Advocate


Joined: 03 Apr 2004
Posts: 2111
Location: Norway

PostPosted: Thu Dec 09, 2004 9:18 am    Post subject: Reply with quote

OH! OK, I put that fix into an earlier version..

and thanks for your instant response :-)

med vennlig hilsen
(mvh)
_________________
"I am not bound to please thee with my answers" W.S.
Back to top
View user's profile Send private message
gentoo_lan
l33t
l33t


Joined: 08 Sep 2004
Posts: 891
Location: Charles Town, WV

PostPosted: Thu Dec 09, 2004 9:27 am    Post subject: Reply with quote

choenig wrote:
Cintra wrote:
Do you mean the one from here? It just seems to hang for me...

http://home.jesus.ox.ac.uk/~ecatmur/my-bin/dep


Yes, and 5 posts above this one I have posted a quick fix for that problem :-)

take care, have fun
/christian


That works like a charm...thanks :D
Back to top
View user's profile Send private message
Thundah
Guru
Guru


Joined: 08 Feb 2004
Posts: 477
Location: Switzerland

PostPosted: Thu Dec 09, 2004 7:06 pm    Post subject: Reply with quote

For Olias2:

I got the same problem and solved giving these commands:
1) chmod +x dep
2) ./dep -w

P.S Use the 0.3.07 version

By Mauro
Back to top
View user's profile Send private message
seank
l33t
l33t


Joined: 08 Jul 2004
Posts: 686

PostPosted: Thu Dec 09, 2004 10:10 pm    Post subject: Reply with quote

cbr wrote:
With v4.00 ./dep -w is broken. $ strace ./dep -w gives this:
Code:
read(3, "\n*sys-apps/sed\n*sys-apps/shadow\n"..., 128) = 128
read(3, "sys-devel/bc\n*sys-devel/bin86\n*s"..., 128) = 128
read(3, "gnuconfig\n*sys-devel/libtool\n*sy"..., 128) = 128
read(3, "ys-libs/ncurses\n*sys-libs/pwdb\n*"..., 128) = 128
read(3, "utils\n*virtual/os-headers\n*virtu"..., 128) = 128
read(3, "4\n>=sys-devel/binutils-2.14.90.0"..., 128) = 116
read(3, "", 128)                        = 0
close(3)                                = 0
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigaction(SIGINT, {0x807c2f0, [], 0}, {0x808df10, [], 0}, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGINT, {0x808df10, [], 0}, {0x807c2f0, [], 0}, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
read(255, "\nprofileprovided=$(\n\tkill_commen"..., 8192) = 8192
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
pipe([3, 4])                            = 0
rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
_llseek(255, -8087, [17847], SEEK_CUR)  = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7fef6f8) = 11758
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGCHLD, {0x807d7d0, [], 0}, {0x807d7d0, [], 0}, 8) = 0
close(4)                                = 0
read(3,

It just stalls there...

Same here. Here's my emerge info:
Code:
Portage 2.0.51-r3 (default-linux/x86/2004.3, gcc-3.3.4, glibc-2.3.4.20040808-r1,
 2.6.9-ck3 i686)
=================================================================
System uname: 2.6.9-ck3 i686 Intel(R) Pentium(R) 4 CPU 2.40GHz
Gentoo Base System version 1.4.16
ccache version 2.3 [enabled]
Autoconf: sys-devel/autoconf-2.59-r5
Automake: sys-devel/automake-1.8.5-r1
Binutils: sys-devel/binutils-2.15.90.0.1.1-r3
Headers:  sys-kernel/linux-headers-2.4.21-r1
Libtools: sys-devel/libtool-1.5.2-r7
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CFLAGS="-march=pentium4 -O2 -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
COMPILER=""
CONFIG_PROTECT="/etc /usr/X11R6/lib/X11/xkb /usr/kde/2/share/config /usr/kde/3/s
hare/config /usr/share/config /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d"
CXXFLAGS="-march=pentium4 -O2 -pipe -fomit-frame-pointer"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoaddcvs autoconfig ccache distlocks sandbox sfperms"
GENTOO_MIRRORS="http://gentoo.ccccom.com http://gentoo.osuosl.org/ ftp://mirrors
.tds.net/gentoo http://mirrors.tds.net/gentoo"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="X acpi alsa avi berkdb bitmap-fonts cdr crypt cups curl divx4linux dvd dvdr
ead encode f77 fam foomaticdb fortran gdbm gif gimp gphoto2 gpm gtk gtk2 imlib j
ava jpeg ldap libg++ libwww mad mikmod mmx motif mozilla mpeg mplayer msn mysql
ncurses nls nvidia oggvorbis openal opengl pam pcre pdflib perl png posix python
 quicktime readline sdl spell sse ssl svga tcpd tiff truetype unicode usb userlo
cales x86 xml xml2 xmms xpm xv xvid zlib"
Back to top
View user's profile Send private message
Chaosite
Guru
Guru


Joined: 13 Dec 2003
Posts: 540
Location: Right over here.

PostPosted: Fri Dec 10, 2004 2:07 pm    Post subject: Reply with quote

sean_micken wrote:

Same here. Here's my emerge info:
<--snip useless info-->


Read a page earlier in the thread, theres a fix!
Back to top
View user's profile Send private message
cbr
Apprentice
Apprentice


Joined: 05 Jan 2004
Posts: 285
Location: Tallinn/Rakvere, Estonia

PostPosted: Fri Dec 10, 2004 2:26 pm    Post subject: Reply with quote

With that fix i get output like this:
Code:
app-admin/hddtemp
./dep: line 567: 26620 Broken pipe             cat /var/cache/edb/virtuals
./dep: line 611: 26648 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-admin/syslog-ng
./dep: line 567: 26668 Broken pipe             cat /var/cache/edb/virtuals
./dep: line 611: 26696 Broken pipe             cat $(profile_files virtuals) 2>/dev/null

Is that bad?
Back to top
View user's profile Send private message
IhatemyISP
n00b
n00b


Joined: 23 Aug 2004
Posts: 14
Location: US Navy - Yokosuka, Japan

PostPosted: Fri Dec 10, 2004 4:23 pm    Post subject: Reply with quote

cbr wrote:
With that fix i get output like this:
Code:
app-admin/hddtemp
./dep: line 567: 26620 Broken pipe             cat /var/cache/edb/virtuals
./dep: line 611: 26648 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-admin/syslog-ng
./dep: line 567: 26668 Broken pipe             cat /var/cache/edb/virtuals
./dep: line 611: 26696 Broken pipe             cat $(profile_files virtuals) 2>/dev/null

Is that bad?
I'm getting the same type of lines here and there, but it does seem to be working.
Back to top
View user's profile Send private message
Cintra
Advocate
Advocate


Joined: 03 Apr 2004
Posts: 2111
Location: Norway

PostPosted: Fri Dec 10, 2004 6:38 pm    Post subject: Reply with quote

Ditto..
_________________
"I am not bound to please thee with my answers" W.S.
Back to top
View user's profile Send private message
gentoo_lan
l33t
l33t


Joined: 08 Sep 2004
Posts: 891
Location: Charles Town, WV

PostPosted: Wed Dec 15, 2004 1:20 am    Post subject: Reply with quote

Code:
!!!REDUNDANT ENTRY!!! app-editors/vim depended on by:
        app-vim/gentoo-syntax-20041202       >=app-editors/vim-6.2

!!!REDUNDANT ENTRY!!! app-portage/gentoolkit depended on by:
        app-portage/abeni-0.0.21             >=app-portage/gentoolkit-0.1.30

!!!REDUNDANT ENTRY!!! dev-php/php depended on by:
        dev-php/mod_php-4.3.9                >=dev-php/php-4.3.4-r2

!!!REDUNDANT ENTRY!!! media-sound/aumix depended on by:
        media-sound/emu10k1-0.20a-r6         media-sound/aumix

!!!REDUNDANT ENTRY!!! media-sound/xmms depended on by:
        kde-base/kdeaddons-3.3.1             xmms? media-sound/xmms
        media-libs/faad2-2.0-r3              xmms? >=media-sound/xmms-1.2.7
        media-libs/flac-1.1.0-r2             xmms? media-sound/xmms
        media-plugins/xmms-arts-0.7.1-r1     >=media-sound/xmms-1.2.7
        media-plugins/xmms-cdread-0.14a-r2   >=media-sound/xmms-1.2.8
        media-plugins/xmms-infopipe-1.3      media-sound/xmms
        media-plugins/xmms-mad-0.7           media-sound/xmms
        media-video/mplayer-1.0_pre5-r4      xmms? media-sound/xmms

!!!REDUNDANT ENTRY!!! media-video/mplayer depended on by:
        net-www/mplayerplug-in-2.70          >=media-video/mplayer-0.92

!!!REDUNDANT ENTRY!!! net-im/amsn depended on by:
        x11-themes/amsn-skins-20040223       net-im/amsn

!!!REDUNDANT ENTRY!!! net-www/apache depended on by:
        app-doc/apache-manual-2.0.49-r3      =net-www/apache-2*
        dev-php/mod_php-4.3.9                >=net-www/apache-1.3.26-r2
        dev-util/subversion-1.1.1-r3         apache2? >=net-www/apache-2.0.49


I don't know if anyone is still working on this script but I wanted to check if these entries looked right. I have decided not to remove any of them because I think the script needs to be adjusted. If anyone agrees with me let me know or if you have a good way of fixing the script let me know also.
Back to top
View user's profile Send private message
choenig
Tux's lil' helper
Tux's lil' helper


Joined: 04 Nov 2002
Posts: 83
Location: EDDK, Germany

PostPosted: Wed Dec 15, 2004 8:01 am    Post subject: Reply with quote

Hi gentoo_lan,

You won't break anything, if you let dep remove those double entries from your worldfile, but you should ask yourself, if you for example want to have gentoolkit removed from your system by an emerge --depclean when you remove abeni. If gentoolkit is only installed because of abeni, simply go on, but if you use features of gentoolkit, you better keep that double the worldfile.

take care, have fun
/christian
Back to top
View user's profile Send private message
deepthink
n00b
n00b


Joined: 25 Mar 2003
Posts: 35

PostPosted: Thu Dec 16, 2004 8:30 am    Post subject: Reply with quote

I downloaded version 0.4.00 from http://home.jesus.ox.ac.uk/~ecatmur/my-bin/dep and patched the kill_comment... function to make it stop stalling and now dep -w gives me this output
Code:
./dep: line 611: 16648 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
./dep: line 567: 16670 Broken pipe             cat /var/cache/edb/virtuals
./dep: line 611: 16702 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-admin/gkrellm
./dep: line 611: 16748 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-admin/logrotate
./dep: line 611: 16799 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-admin/stow
./dep: line 611: 16847 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-admin/sudo
./dep: line 611: 16895 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-admin/syslog-ng
./dep: line 611: 16943 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-antivirus/clamav
./dep: line 567: 17055 Broken pipe             cat /var/cache/edb/virtuals
./dep: line 611: 17084 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
!!!REDUNDANT ENTRY!!! app-arch/unrar depended on by:
        mail-filter/amavisd-new-20030616_p8  app-arch/unrar
./dep: line 567: 19656 Broken pipe             cat /var/cache/edb/virtuals
./dep: line 611: 19685 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
!!!REDUNDANT ENTRY!!! app-arch/unzip depended on by:
        app-arch/zip-2.3-r4                  crypt? app-arch/unzip
        app-office/openoffice-bin-1.1.3      app-arch/unzip
        app-office/openoffice-ximian-1.3.5-r1  app-arch/unzip
        app-text/docbook-sgml-dtd-3.0-r1     >=app-arch/unzip-5.41
        app-text/docbook-sgml-dtd-3.1-r1     >=app-arch/unzip-5.41
        app-text/docbook-sgml-dtd-4.0-r1     >=app-arch/unzip-5.41
        app-text/docbook-sgml-dtd-4.1-r1     >=app-arch/unzip-5.41
        app-text/docbook-sgml-dtd-4.2        >=app-arch/unzip-5.41
        app-text/docbook-xml-dtd-4.1.2-r4    >=app-arch/unzip-5.41
        app-text/docbook-xml-dtd-4.2         >=app-arch/unzip-5.41
        app-text/docbook-xml-simple-dtd-1.0  >=app-arch/unzip-5.41
        app-text/docbook-xml-simple-dtd-4.1.2.4  >=app-arch/unzip-5.41
        dev-java/sun-j2sdk-1.4.2             app-arch/unzip
        dev-python/pyserial-2.0              app-arch/unzip
        dev-util/boa-constructor-0.3.0_alpha  app-arch/unzip
        dev-util/pccts-1.33.33               app-arch/unzip
        games-emulation/advancemame-0.88.0   app-arch/unzip
        media-libs/libswf-0.99               app-arch/unzip
        media-video/mplayer-1.0_pre4-r7      app-arch/unzip
        net-www/mozilla-1.7.3                app-arch/unzip
        net-www/mozilla-firefox-1.0          app-arch/unzip
./dep: line 611: 20925 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
!!!REDUNDANT ENTRY!!! app-arch/zip depended on by:
        app-office/openoffice-bin-1.1.3      app-arch/zip
        app-office/openoffice-ximian-1.3.5-r1  app-arch/zip
        dev-java/sun-j2sdk-1.4.2             app-arch/zip
        dev-libs/nss-3.9.2-r2                app-arch/zip
        games-emulation/advancemame-0.88.0   app-arch/zip
        net-www/mozilla-1.7.3                app-arch/zip
        net-www/mozilla-firefox-1.0          app-arch/zip
./dep: line 611: 20974 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-cdr/cdrdao
./dep: line 611: 21022 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-dicts/aspell-es
./dep: line 611: 21070 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-dicts/aspell-sv
./dep: line 567: 21089 Broken pipe             cat /var/cache/edb/virtuals
./dep: line 611: 21118 Broken pipe             cat $(profile_files virtuals) 2>/dev/null
app-dicts/ispell-es
What is wrong?
Back to top
View user's profile Send private message
rhill
Retired Dev
Retired Dev


Joined: 22 Oct 2004
Posts: 1629
Location: sk.ca

PostPosted: Sat Dec 18, 2004 10:07 am    Post subject: Reply with quote

i can only speak for myself here, but using the 4.0 script works fine for me.

Code:
mkdir -p /etc/portage/profile/
touch package.provided
emerge sync (or metadata if you don't want to resync)


no patching or anything.

i do sometimes get output like this:

Code:

!!! ebuild_dep_to_stdout app-misc/screen-4.0.2
!!! ebuild_dep_to_stdout dev-lang/nasm-0.98.38
!!! ebuild_dep_to_stdout dev-python/pychm-0.8.1
!!! ebuild_dep_to_stdout sys-apps/utempter-0.5.5.5


but then it continues like it should. it does take quite a long time to get started, like a minute or two.

the other thing i noticed, is that i have /var/cache/edb on a 128mb ramdisk (tmpfs). which of course gets wiped on reboot. if i forget to rebuild the dep database through a emerge sync, dep does hang forever (or at least as long as i let it run before realizing i forgot and killing it). but after a sync then it works fine.

i don't know if any of this is helpful, but maybe it can help someone out. :?
Back to top
View user's profile Send private message
deepthink
n00b
n00b


Joined: 25 Mar 2003
Posts: 35

PostPosted: Sat Dec 18, 2004 10:55 am    Post subject: Reply with quote

Where did you create the package.provided file?
Back to top
View user's profile Send private message
Inte
Veteran
Veteran


Joined: 15 Jul 2003
Posts: 1387
Location: Mannheim, GER

PostPosted: Sat Dec 18, 2004 1:51 pm    Post subject: Reply with quote

Curious! dep -s tries to install linux-headers (kernel 2.4), but I'm using 2.6!
Code:
# dep -s
SYSTEM PROFILE:
app-arch/bzip2-1.0.2-r3                      app-arch/bzip2
  sys-devel/patch-2.5.9                      sys-devel/patch
    sys-libs/glibc-2.3.4.20040808-r1         virtual/libc
      sys-apps/baselayout-1.9.4-r6           sys-apps/baselayout
        sys-apps/gawk-3.1.3-r1               >=sys-apps/gawk-3.1.1-r2
          sys-devel/gettext-0.12.1-r2        sys-devel/gettext
            sys-devel/gnuconfig-20040214     sys-devel/gnuconfig
        sys-apps/util-linux-2.12-r4          >=sys-apps/util-linux-2.11z-r6
          app-crypt/hashalot-0.3             app-crypt/hashalot
            sys-apps/grep-2.5.1-r6           sys-apps/grep
            sys-devel/gcc-3.3.4-r1           sys-devel/gcc
              sys-apps/texinfo-4.7-r1        >=sys-apps/texinfo-4.2-r4
                sys-apps/sed-4.0.9           >=sys-apps/sed-4.0.5
                sys-libs/ncurses-5.4-r5      >=sys-libs/ncurses-5.2-r2
              sys-devel/binutils-2.15.90.0.1.1-r3  >=sys-devel/binutils-2.14.90.0.6-r1
                dev-lang/perl-5.8.5-r2       dev-lang/perl
                  sys-apps/groff-1.19.1-r2   sys-apps/groff
                    sys-apps/man-1.5m-r2     >=sys-apps/man-1.5k-r1
                      sys-apps/cronbase-0.3.1  sys-apps/cronbase
                  sys-apps/portage-2.0.51-r3  >=sys-apps/portage-2.0.48-r4
                    app-shells/bash-2.05b-r9  >=app-shells/bash-2.05a
                    dev-lang/python-2.3.4    >=dev-lang/python-2.2.1
                      dev-lang/tk-8.4.6-r1   >=dev-lang/tk-8.0
                        dev-lang/tcl-8.4.6   =dev-lang/tcl-8.4.6*
                        x11-base/xorg-x11-6.8.0-r3  virtual/x11
                          dev-libs/expat-1.95.8  >=dev-libs/expat-1.95.3
                          media-libs/fontconfig-2.2.3  >=media-libs/fontconfig-2.1-r1
                            media-libs/freetype-2.1.5-r1  >=media-libs/freetype-2.1.4
                              sys-libs/zlib-1.2.1-r3  sys-libs/zlib
                          media-libs/libpng-1.2.7  media-libs/libpng
                          sys-devel/flex-2.5.4a-r5  >=sys-devel/flex-2.5.4a-r5
                          x11-base/opengl-update-1.8.2  >=x11-base/opengl-update-1.7.2
                          x11-misc/ttmkfdir-3.0.9-r2  >=x11-misc/ttmkfdir-3.0.9-r2
                            sys-devel/libtool-1.5.2-r7  sys-devel/libtool
                              sys-devel/autoconf-2.59-r5  >=sys-devel/autoconf-2.58
                                sys-devel/m4-1.4.1  =sys-devel/m4-1.4*
                              sys-devel/automake-1.8.5-r1  >=sys-devel/automake-1.8.3
                          x11-terms/xterm-196  x11-terms/xterm
                            sys-apps/utempter-0.5.5.5  sys-apps/utempter
                              app-arch/rpm2targz-9.0-r2  >=app-arch/rpm2targz-9.0-r1
                                app-arch/cpio-2.5  app-arch/cpio
                                sys-apps/file-4.12  sys-apps/file
                                sys-apps/which-2.16  sys-apps/which
                      dev-libs/openssl-0.9.7d-r2  dev-libs/openssl
                        sys-apps/diffutils-2.8.4-r4  sys-apps/diffutils
                        sys-devel/bc-1.06-r5  sys-devel/bc
                          sys-libs/readline-4.3-r5  >=sys-libs/readline-4.1
                      dev-python/python-fchksum-1.7.1  dev-python/python-fchksum
                      sys-libs/db-4.1.25_p1-r4  >=sys-libs/db-3.1
                        dev-java/sun-j2sdk-1.4.2  virtual/jdk
                          app-arch/unzip-5.50-r2  app-arch/unzip
                          app-arch/zip-2.3-r4  app-arch/zip
                          dev-java/java-config-1.2.11  >=dev-java/java-config-0.1.3
                          media-libs/alsa-lib-1.0.6  >=media-libs/alsa-lib-0.9.0_rc5
                            media-sound/alsa-headers-1.0.6a  >=media-sound/alsa-headers-1.0.5a
                            sys-kernel/gentoo-dev-sources-2.6.8-r10  virtual/alsa
                              dev-libs/ucl-1.01-r1  >=dev-libs/ucl-1
                              sys-apps/module-init-tools-3.0-r2  sys-apps/module-init-tools
                              sys-devel/make-3.80-r1  sys-devel/make
                      sys-libs/gdbm-1.8.3-r1  sys-libs/gdbm
                        sys-libs/db-1.85-r1  =sys-libs/db-1*
                    sys-apps/debianutils-1.16.7-r4  sys-apps/debianutils
                  sys-devel/libperl-5.8.5    >=sys-devel/libperl-5.8.5
              sys-devel/bison-1.875          >=sys-devel/bison-1.875
              sys-devel/gcc-config-1.3.6-r4  sys-devel/gcc-config
          sys-apps/pam-login-3.14            sys-apps/pam-login
            sys-libs/pam-0.77-r1             sys-libs/pam
              dev-libs/glib-1.2.10-r5        =dev-libs/glib-1.2*
              sys-libs/cracklib-2.7-r10      >=sys-libs/cracklib-2.7-r8
                sys-apps/miscfiles-1.3-r1    sys-apps/miscfiles
        sys-kernel/linux-headers-2.4.26      virtual/os-headers
      sys-kernel/linux26-headers-2.6.8.1-r1  >=sys-kernel/linux26-headers-2.6.5

...

These are the packages that I would merge, in order:

Calculating dependencies   
!!! All ebuilds that could satisfy "=sys-kernel/linux-headers-2.4.26" have been masked.
!!! One of the following masked packages is required to complete your request:
- sys-kernel/linux-headers-2.4.26 (masked by: -* keyword)

For more information, see MASKED PACKAGES section in the emerge man page or
section 2.2 "Software Availability" in the Gentoo Handbook.

Why isn't linux26-headers a dependancy of system profile (virtual/os-headers) like linux-headers?
Code:
# dep -r linux-headers
sys-kernel/linux-headers:
        net-misc/iputils-021109-r3           virtual/os-headers
        net-misc/openssh-3.8.1_p1-r1         virtual/os-headers
        sys-apps/baselayout-1.9.4-r6         virtual/os-headers
        sys-libs/glibc-2.3.4.20040808-r1     virtual/os-headers
        SYSTEM PROFILE                       *virtual/os-headers

# dep -r linux26-headers
sys-kernel/linux26-headers:
        sys-libs/glibc-2.3.4.20040808-r1     nptl? >=sys-kernel/linux26-headers-2.6.5

An entry in /etc/portage/profile/virtuals isn't a solution (inspired by chunderbunny):
Code:
virtual/kernel          sys-kernel/linux26-headers sys-kernel/gentoo-dev-sources
virtual/os-headers      sys-kernel/linux26-headers
virtual/linux-sources   sys-kernel/gentoo-dev-sources

_________________
Gentoo Linux - Die Metadistribution
Back to top
View user's profile Send private message
Deranger
Veteran
Veteran


Joined: 26 Aug 2004
Posts: 1215

PostPosted: Sun Jan 02, 2005 5:04 pm    Post subject: Reply with quote

Looks like nobody is maintaining this thing anymore :( I tried it, even with the workarounds, it's completely b0rked...
Back to top
View user's profile Send private message
Luxus
Tux's lil' helper
Tux's lil' helper


Joined: 21 Nov 2002
Posts: 98
Location: Germany / Frankfurt

PostPosted: Mon Jan 03, 2005 6:54 am    Post subject: Reply with quote

i get alot broken pipe errors too :/
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page Previous  1, 2, 3 ... 14, 15, 16 ... 27, 28, 29  Next
Page 15 of 29

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum