Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
eix - Ebuild IndeX (search utility) - 0.2.2
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3 ... 14, 15, 16, 17, 18, 19  Next  
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
ikshaar
Veteran
Veteran


Joined: 23 Jul 2002
Posts: 1339
Location: Baltimore, MD

PostPosted: Wed Jan 10, 2007 6:12 pm    Post subject: Reply with quote

Thx mv.

Indeed I meant versions not packages. My fault.

My problem is much more with color than text. Althought i found odd to have by default the time at which packages were emerged, major issue is that now installed version is in dark blue with USE keywords in grey, my terminal being white on black, it is unreadable. The use of background color also make output overcharged.

current state of my eix

Now I tried to put all those lines in /etc/eixrc for testing, but it has no effect at all... I am using eix-0.7.9. What am I missing ??

Code:

INSTALLEDVERSIONS=<installedversionsshort>
INSTALLEDVERSIONS_COMPACT=<installedversionsshort>

FORMAT_HEADER='*'
MARK_INSTALLED='none'

TAG_FOR_EX_PROFILE=''
TAG_FOR_EX_MASKED=''
TAG_FOR_EX_UNSTABLE=''
TAG_FOR_EX_MINUS_ASTERISK=''
TAG_FOR_EX_MINUS_KEYWORD=''
TAG_FOR_EX_MISSING_KEYWORD=''
TAG_FOR_EX_OTHER=''

_________________
"May God stands between you and harm in all the empty places where you must walk" - Babylon 5
Back to top
View user's profile Send private message
mv
Watchman
Watchman


Joined: 20 Apr 2005
Posts: 6747

PostPosted: Wed Jan 10, 2007 8:51 pm    Post subject: Reply with quote

ikshaar wrote:
I am using eix-0.7.9. What am I missing ??

>=eix-0.8. (The reason for the version jump was a rather dramatic change of the variables concept which simplifies such customizations).
Back to top
View user's profile Send private message
ikshaar
Veteran
Veteran


Joined: 23 Jul 2002
Posts: 1339
Location: Baltimore, MD

PostPosted: Wed Jan 10, 2007 10:16 pm    Post subject: Reply with quote

Upgraded to 0.8.4. With your settings, this is MUCH better. eix is back to readable. Thanks a lot.
_________________
"May God stands between you and harm in all the empty places where you must walk" - Babylon 5
Back to top
View user's profile Send private message
juantxorena
Apprentice
Apprentice


Joined: 19 Mar 2006
Posts: 201
Location: The Shire

PostPosted: Sun Mar 18, 2007 6:01 pm    Post subject: Reply with quote

I don't know if this is the place, but eix webpage doesn't work, at least for me. Acording the ebuild, eix webpage is http://eix.sourceforge.net. It tries to redirect me to http://gentooexperimental.org/eix/, which doesn't exist. Anyone knows something about this?
_________________
I cannot write English very well. Please, correct any mistake so that I can improve.
Back to top
View user's profile Send private message
mv
Watchman
Watchman


Joined: 20 Apr 2005
Posts: 6747

PostPosted: Mon Mar 19, 2007 3:09 pm    Post subject: Reply with quote

juantxorena wrote:
It tries to redirect me to http://gentooexperimental.org/eix/, which doesn't exist.
The redirection is correct, but the new page is down now for quite a while - eix has no homepage, currently. :cry:
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Sun Sep 30, 2007 6:17 pm    Post subject: Reply with quote

is there a way to let eix output only packages that have fetch-restrictions? if not, this is a feature request.
Back to top
View user's profile Send private message
mv
Watchman
Watchman


Joined: 20 Apr 2005
Posts: 6747

PostPosted: Mon Oct 01, 2007 6:20 pm    Post subject: Reply with quote

alex.blackbit wrote:
is there a way to let eix output only packages that have fetch-restrictions?

The current svn trunk of eix has support for RESTRICT=fetch and RESTRICT=mirror.
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Mon Oct 01, 2007 6:55 pm    Post subject: Reply with quote

so this feature is expected for a future version?
Back to top
View user's profile Send private message
mv
Watchman
Watchman


Joined: 20 Apr 2005
Posts: 6747

PostPosted: Mon Oct 01, 2007 6:58 pm    Post subject: Reply with quote

alex.blackbit wrote:
so this feature is expected for a future version?

eix-0.10.1
Back to top
View user's profile Send private message
Arfrever
Bodhisattva
Bodhisattva


Joined: 29 Apr 2006
Posts: 2463
Location: 異世界

PostPosted: Mon Oct 01, 2007 7:06 pm    Post subject: Reply with quote

alex.blackbit wrote:
so this feature is expected for a future version?


If you are impatient, you can also use this ebuild:
app-portage/eix/eix-0.10.1_pre460.ebuild:
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

inherit subversion

DESCRIPTION="Small utility for searching ebuilds with indexing for fast results"
HOMEPAGE="http://eix.sourceforge.net"
SRC_URI=""

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="sqlite"

DEPEND="sqlite? ( >=dev-db/sqlite-3 )
        app-arch/bzip2"
RDEPEND="${DEPEND}"

PRESENT_VERSION="${PV#*_pre}"

ESVN_PROJECT="eix"
ESVN_REPO_URI="https://svn.gentooexperimental.org/eix/trunk"
ESVN_OPTIONS="-r${PRESENT_VERSION}"
ESVN_BOOTSTRAP="autogen.sh"

src_compile() {
        econf --with-bzip2 $(use_with sqlite)
        emake || die "emake failed"
        src/eix --dump-defaults >eixrc || die "generating eixrc failed"
}

src_install() {
        emake DESTDIR="${D}" install || die "emake install failed"

        dodoc AUTHORS ChangeLog TODO

        insinto /etc
        doins eixrc
}

pkg_postinst() {
        elog "As of >=eix-0.5.4, \"metadata\" is the new default cache."
        elog "It's independent of the portage-version and the cache used by portage."
}


Perduodu linkėjimus
Arfrever
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Mon Oct 01, 2007 8:02 pm    Post subject: Reply with quote

thx guys.
by the way, eix is really some excellent piece of software.
Back to top
View user's profile Send private message
LinuxDolt
Tux's lil' helper
Tux's lil' helper


Joined: 05 May 2003
Posts: 104

PostPosted: Mon Dec 10, 2007 6:57 pm    Post subject: Reply with quote

I finally got completely fed up with not being able to read eix output without selecting it and other crap on a dark blue terminal, or a black console. So I got in there and fixed up a .eixrc that takes care of the problem. I also replaced the !f with !fetch with an inverted format so it stands out more, and the !m with !mirror. I've always had to pause to think what those two tags meant, I figure it's better to take a few more columns of output and be instantly readable, than to have to puzzle it out all the time.

I decided I'd share my .eixrc with others, but I can't seem to make any changes to the trac pages, so I decided to post it here.

Code:
# Andrew Patridge's "Human Readable on Dark Terminals" eixrc.

COLOR_TITLE='green,1'
COLOR_NAME='default,1'
COLOR_CATEGORY='grey,1'
COLOR_CATEGORY_SYSTEM='yellow,1'
COLOR_UPGRADE_TEXT='cyan,1'
COLOR_DOWNGRADE_TEXT='purple,1'
COLOR_UPGRADE='%{COLOR_UPGRADE_TEXT};inverse'
COLOR_DOWNGRADE='%{COLOR_DOWNGRADE_TEXT};inverse'
COLOR_INST_TAG='%{COLOR_TITLE};inverse'
COLOR_UNINST_TAG='%{COLOR_TITLE}'
COLOR_DATE='purple,1'
COLOR_SET_USE='red,1'
COLOR_UNSET_USE='grey,1'
COLOR_INST_VERSION='green,1;%{MARK_INSTALLED}'
COLOR_INST_TITLE='cyan,1'
COLOR_MARKED_VERSION='%{COLOR_MARKED_NAME}'
COLOR_MARKED_NAME='red,1;%{MARK_VERSIONS}'
COLOR_MASKED='red,1'
COLOR_UNSTABLE='yellow,1'
COLOR_STABLE='green,1'
COLOR_OVERLAYKEY='cyan,1'
COLOR_VIRTUALKEY='purple,1'
COLOR_SLOTS='red,1'
COLOR_FETCH='red,1;inverse'
COLOR_MIRROR='cyan,1'

DIFF_COLOR_UNINST_STABILIZE='%{COLOR_STABLE};bold'
DIFF_COLOR_INST_STABILIZE='%{COLOR_STABLE};inverse'
DIFF_COLOR_BETTER='yellow,1'
DIFF_COLOR_WORSE='red,1'
DIFF_COLOR_NEW_TAG='%{DIFF_COLOR_NEW}'
DIFF_COLOR_NEW='%{COLOR_TITLE};bold'
DIFF_COLOR_DELETE='red,1'
DIFF_COLOR_CHANGED='yellow,1'

FORMAT_BEFORE_IUSE=' [(red,1)'
FORMAT_AFTER_IUSE='()]'
FORMAT_BEFORE_COLL_IUSE=' \{(red,1)'
FORMAT_AFTER_COLL_IUSE='()\}'
FORMAT_BEFORE_SLOT_IUSE='\n\t\{(red,1)'
FORMAT_AFTER_SLOT_IUSE='()\}'

MARK_INSTALLED='inverse'
MARK_VERSIONS='underline'

TAG_FETCH='!fetch'
TAG_MIRROR='!mirror'


Just copy and paste that text into a new text file and save it as .eixrc in your user's home dir. I'm using it in both /root/.eixrc and /home/alp/.eixrc
Back to top
View user's profile Send private message
creidiki
Apprentice
Apprentice


Joined: 23 Mar 2007
Posts: 283
Location: Varese (Italy)

PostPosted: Thu Feb 14, 2008 1:58 am    Post subject: Reply with quote

I've got a backtrace from eix 0.10.3 chocking on a malformed ebuild.

I tried to post it to the trac page, but either ive gone utterly blind or there's no way to post issues there, and no way to register.

Code:
update-eix> GNU gdb 6.7.1
update-eix> Copyright (C) 2007 Free Software Foundation, Inc.
update-eix> License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
update-eix> This is free software: you are free to change and redistribute it.
update-eix> There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
update-eix> and "show warranty" for details.
update-eix> This GDB was configured as "i686-pc-linux-gnu"...
update-eix> Using host libthread_db library "/lib/libthread_db.so.1".
update-eix> (gdb) run
update-eix> Starting program: /usr/bin/update-eix --output //var/cache/eix --add-overlay /var/paludis/repositories/gentoo -m /var/paludis/repositories/gentoo metadata --add-overlay /var/paludis/repositories/arcon --add-overlay /var/paludis/repositories/einit --add-overlay /var/paludis/repositories/emacs --add-overlay /var/paludis/repositories/lisp --add-overlay /var/paludis/repositories/local --add-overlay /var/paludis/repositories/paludis-extras --add-overlay /var/paludis/repositories/sunrise
update-eix> Failed to read a valid object file image from memory.
update-eix> [Thread debugging using libthread_db enabled]
update-eix> [New Thread 0xb7c506d0 (LWP 3724)]
update-eix> Reading Portage settings ..
update-eix> Building database (//var/cache/eix) ..
update-eix> [0] "gentoo" /var/paludis/repositories/gentoo/ (cache: metadata)
update-eix>      Reading 100%
update-eix> [1] "arcon" /var/paludis/repositories/arcon (cache: none)
update-eix>      Reading  49%
update-eix> Program received signal SIGSEGV, Segmentation fault.
update-eix> [Switching to Thread 0xb7c506d0 (LWP 3724)]
update-eix> 0x08051c3a in VarsReader::NOISE_SINGLE_QUOTE (this=0xbffaef40) at varsreader.cc:305
update-eix>    in varsreader.cc
update-eix> (gdb) update-eix> 305   varsreader.cc: No such file or directory.
bt
update-eix> #0  0x08051c3a in VarsReader::NOISE_SINGLE_QUOTE (this=0xbffaef40) at varsreader.cc:305
update-eix> #1  0x08052fdd in VarsReader::runFsm (this=0xbffaef40) at varsreader.cc:377
update-eix> #2  0x080533ba in VarsReader::read (this=0xbffaef40,
update-eix>     filename=0x89a98ec "/var/paludis/repositories/arcon/kde-misc/krename/krename-3.9.0.ebuild") at varsreader.cc:449
update-eix> #3  0x080b5920 in NoneCache::readPackage (this=0x80f9f70, vec=@0x8afc688, pkg_name=0x930415b "krename",
update-eix>     directory_path=0xbffaf060, list=0x93059c8, numfiles=3) at cache/none/none.cc:78
update-eix> #4  0x080b68ae in NoneCache::readCategory (this=0x80f9f70, vec=@0x8afc688) at cache/none/none.cc:125
update-eix> #5  0x0804bdc1 in update (outputfile=0x80f2f7c "//var/cache/eix", cache_table=@0xbffaf274,
update-eix>     portage_settings=@0xbffaf1cc, will_modify=false, exclude_labels=@0xbffaf280) at update-eix.cc:480
update-eix> #6  0x0804e664 in run_update_eix (argc=22, argv=0xbffaf474) at update-eix.cc:411
update-eix> #7  0x0804ec37 in main (argc=134996304, argv=0xc) at update-eix.cc:553
update-eix> #8  0xb7c9101b in __libc_start_main () from /lib/libc.so.6


Hopefully someone who knows what to do about it will see it if I put it here.
_________________
'((eINIT) (soor overlay))
Back to top
View user's profile Send private message
mv
Watchman
Watchman


Joined: 20 Apr 2005
Posts: 6747

PostPosted: Thu Feb 14, 2008 10:51 am    Post subject: Reply with quote

creidiki wrote:
I tried to post it to the trac page, but either ive gone utterly blind or there's no way to post issues there, and no way to register.

Bug reports should preferrably go to bugs.gentoo.org (or alternatively to the sourceforge bug system). I guess the current one was already reported.
Back to top
View user's profile Send private message
mv
Watchman
Watchman


Joined: 20 Apr 2005
Posts: 6747

PostPosted: Sat Mar 22, 2008 5:12 pm    Post subject: Reply with quote

leonie wrote:
as i see it, just adding an exclamation mark anywhere in the command inverts everything so that i'm shown just uninstalled packages.

Adding an exclamation mark (or --not) inverts the search expression in which it occurs. The search expression ends with the pattern (or with -a or -o if there is no pattern). For example (assuming DEFAULT_IS_OR=false),
Code:
eix --not -L BSD -I

will show you those installed packages which do not contain the pattern BSD in LICENSES (because the pattern finishes the expression).
In contrast
Code:
eix --not -I -L BSD

will invert the whole search expression "-I -L BSD", i.e. it will find those packages which are either not installed or do not match BSD in LICENSES. This is even independent of DEFAULT_IS_OR, because there is only one expression (because -I does not end the expression - only the search pattern does). If unsure, just use -a or -o explicitly:
Code:
eix --not -L BSD -a -I

or
Code:
eix -I -a --not -L BSD

both give the same result as the first code (in the second example, the search expression "-I" ends with the explicit use of "-a"); since -a is explicitly given, the result is independent of DEFAULT_IS_OR.
However, the time needed for executing the command may differ: In case "eix -I -a ...", first all packages are tested whether they are installed (which takes a long time if /var/db is not already in disk cache); in contrast, "... -a -I" tests only the matching packages whether they are installed.
From the viewpoint of execution time there is the opposite rule: If possible, try to collect as much test conditions as possible in one expression (i.e. do not insert unnecessary -a). In this case, the test is done in one pass, and the internal order of the tests uses some heuristics.
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Wed Apr 30, 2008 1:48 am    Post subject: Reply with quote

something strange is going on in my portage tree when i believe eix.
i have a portage overlay that contains among others the ebuild for btrfs and btrfs-progs.
currently i only have one btrfs ebuild, for version 0.13:
Code:
# pwd
/usr/portage/local/blackbit-portage/sys-fs/btrfs
# ls -l
total 8.0K
-rw-r--r-- 1 root root 1.1K 2008-03-28 19:44 btrfs-0.13.ebuild
-rw-r--r-- 1 root root  392 2008-03-28 19:47 Manifest
#

the caches of portage (version 2.1.4.4) and eix (0.12.4) are up-to-date.
but the output of eix when queried for btrfs is strange:
Code:
# eix btrfs
* sys-fs/btrfs
     Available versions:  (~)0.13 (~)1.2 (~)1.3 {kernel_linux}
     Homepage:            http://oss.oracle.com/projects/btrfs/
     Description:         Based on the linux-mod eclass

[I] sys-fs/btrfs-progs
     Available versions:  (~)0.13
     Installed versions:  0.13[1](07:43:22 PM 03/28/2008)
     Homepage:            http://oss.oracle.com/projects/btrfs/
     Description:         The btrfs filesystem programs

[1] "blackbit" /usr/portage/local/blackbit-portage

Found 2 matches.
#

i have no idea where versions 1.2 and 1.3 come from.
i already tried to commend out the entry for my overlay in make.conf, updated the caches and eix forgot about all the versions.
but then again they come back. additionally the ebuild description is wrong.
i searched for this string
Code:
# grep -r "Based on the linux-mod eclass" /usr/portage/*
, but nothing.
unfortunately i don't know very much about the eclasses... maybe that's the answer, but i don't get it.
here is the ebuild, if that helps:
Code:
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="The btrfs filesystem"
HOMEPAGE="http://oss.oracle.com/projects/btrfs/";
SRC_URI="http://oss.oracle.com/projects/btrfs/dist/files/${P}.tar.bz2";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

inherit linux-mod

DEPEND=""
RDEPEND="=sys-fs/btrfs-progs-${PV}"

pkg_setup()
{
    BUILD_PARAMS=""
    BUILD_TARGETS="all"
    MODULE_NAMES="btrfs(fs:${S}/"
    linux-mod_pkg_setup

    if ! kernel_is 2 6; then
    eerror "Need a 2.6 kernel to compile against!"
    die "Need a 2.6 kernel to compile against!"
    fi

    if ! linux_chkconfig_present LIBCRC32C; then
    eerror "You need to enable LIBCRC32C in your kernel!"
    die "You need to enable LIBCRC32C in your kernel!"
    fi
}

src_install()
{
    linux-mod_src_install
}


pkg_postinst() {
ewarn "WARNING: Btrfs is still highly experimental software. The diskformat may "
ewarn "still change during developement. These ebuilds are only provided to"
ewarn "test btrfs!"
}

i use the sqlite plugin for portage and eix, maybe this info is helpful.
ideas, anyone?
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Wed Apr 30, 2008 1:50 am    Post subject: Reply with quote

i just added the ebuild for btrfs-0.14, resulting in
Code:
# eix btrfs
[U] sys-fs/btrfs
     Available versions:  (~)0.13 (~)0.14 (~)1.2 (~)1.3 {kernel_linux}
     Installed versions:  0.14[1](03:49:48 AM 04/30/2008)(kernel_linux)
     Homepage:            http://oss.oracle.com/projects/btrfs/
     Description:         Based on the linux-mod eclass

[I] sys-fs/btrfs-progs
     Available versions:  (~)0.13 (~)0.14
     Installed versions:  0.14[1](03:49:19 AM 04/30/2008)
     Homepage:            http://oss.oracle.com/projects/btrfs/
     Description:         The btrfs filesystem programs

[1] "blackbit" /usr/portage/local/blackbit-portage

Found 2 matches.
#
Back to top
View user's profile Send private message
appro
Tux's lil' helper
Tux's lil' helper


Joined: 21 Jul 2003
Posts: 144
Location: Germany/Rosenheim

PostPosted: Wed Apr 30, 2008 10:49 am    Post subject: Reply with quote

Please post the output of update-eix.
_________________
If a packet hits a pocket on a socket on a port, and the bus is interrupted and the interrupt's not caught, then the socket packet pocket has an error to report.
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Wed Apr 30, 2008 12:08 pm    Post subject: Reply with quote

Code:
# update-eix
Reading Portage settings ..
Building database (/var/cache/eix) ..
[0] "gentoo" /usr/portage/ (cache: sqlite)
     Reading 100%
[1] "voip" /usr/portage/local/layman/voip (cache: sqlite)
     Reading 100%
[2] "custom-kernels" /usr/portage/local/layman/custom-kernels (cache: sqlite)
     Reading 100%
[3] "sunrise" /usr/portage/local/layman/sunrise (cache: sqlite)
     Reading 100%
[4] "secondlife" /usr/portage/local/layman/secondlife (cache: sqlite)
     Reading 100%
[5] "blackbit" /usr/portage/local/blackbit-portage (cache: sqlite)
     Reading 100%
Applying masks ..
Calculating hash tables ..
Writing database file /var/cache/eix ..
Database contains 12599 packages in 152 categories.
#
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Wed Apr 30, 2008 12:20 pm    Post subject: Reply with quote

i gave it a try and disabled the sqlite plugin.
the result:
Code:
# update-eix
Reading Portage settings ..
Building database (/var/cache/eix) ..
[0] "gentoo" /usr/portage/ (cache: metadata)
     Reading 100%
[1] "voip" /usr/portage/local/layman/voip (cache: parse|ebuild*)
     Reading  63%/usr/portage/local/layman/voip/net-misc/asterisk-app_event/aste                          risk-app_event-20060120-r1.ebuild: line 28: /usr/bin/asterisk-config: No such file or directory
/usr/portage/local/layman/voip/net-misc/asterisk-app_event/asterisk-app_event-20                          060120-r1.ebuild: line 29: /usr/bin/asterisk-config: No such file or directory
/usr/portage/local/layman/voip/net-misc/asterisk-app_event/asterisk-app_event-20                          060120.ebuild: line 25: /usr/bin/asterisk-config: No such file or directory
/usr/portage/local/layman/voip/net-misc/asterisk-app_event/asterisk-app_event-20                          060120.ebuild: line 25: /usr/bin/asterisk-config: No such file or directory
/usr/portage/local/layman/voip/net-misc/asterisk-app_valetparking/asterisk-app_v                          aletparking-20060120.ebuild: line 26: /usr/bin/asterisk-config: No such file or directory
/usr/portage/local/layman/voip/net-misc/asterisk-app_valetparking/asterisk-app_v                          aletparking-20060120.ebuild: line 26: /usr/bin/asterisk-config: No such file or directory                                                                   100%
[2] "custom-kernels" /usr/portage/local/layman/custom-kernels (cache: parse|ebuild*)
     Reading 100%
[3] "sunrise" /usr/portage/local/layman/sunrise (cache: parse|ebuild*)
     Reading 100%
[4] "secondlife" /usr/portage/local/layman/secondlife (cache: parse|ebuild*)
     Reading 100%
[5] "blackbit" /usr/portage/local/blackbit-portage (cache: parse|ebuild*)
     Reading 100%
Applying masks ..
Calculating hash tables ..
Writing database file /var/cache/eix ..
Database contains 13120 packages in 152 categories.
# eix btrfs
[I] sys-fs/btrfs [1]
     Available versions:  (~)0.13 (~)0.14
     Installed versions:  0.14(03:49:48 AM 04/30/2008)(kernel_linux)
     Homepage:            http://oss.oracle.com/projects/btrfs/
     Description:         The btrfs filesystem

[I] sys-fs/btrfs-progs [1]
     Available versions:  (~)0.13 (~)0.14
     Installed versions:  0.14(03:49:19 AM 04/30/2008)
     Homepage:            http://oss.oracle.com/projects/btrfs/
     Description:         The btrfs filesystem programs

[1] "blackbit" /usr/portage/local/blackbit-portage

Found 2 matches.
#

after re-enabling the plugin everything works too.
maybe a mystic corruption in the db.
anyway, thanks for the support.
Back to top
View user's profile Send private message
daveg
n00b
n00b


Joined: 26 Mar 2006
Posts: 41

PostPosted: Sun Jun 08, 2008 9:18 pm    Post subject: Reply with quote

I have a feature request. I would find it helpful if eix displayed whether the package is in my portage world file. Or is it already in there somewhere that I can't see? Great tool, BTW! Thanks.
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Tue Jun 10, 2008 12:37 pm    Post subject: Reply with quote

i think i know what you mean.
emerge uses light and dark green on colored consoles to indicate whether a package was explicitly emerged or pulled in, which is a quite useful feature.
that would be nice for eix too, i agree.
Back to top
View user's profile Send private message
mv
Watchman
Watchman


Joined: 20 Apr 2005
Posts: 6747

PostPosted: Tue Jun 10, 2008 2:09 pm    Post subject: Reply with quote

Due to lack of time, essentially only bugfixes are currently made for eix.
Back to top
View user's profile Send private message
alex.blackbit
Advocate
Advocate


Joined: 26 Jul 2005
Posts: 2397

PostPosted: Wed Jun 11, 2008 9:12 am    Post subject: Reply with quote

that's of course okay, mv, but do you like the idea at least?
Back to top
View user's profile Send private message
mv
Watchman
Watchman


Joined: 20 Apr 2005
Posts: 6747

PostPosted: Thu Jun 12, 2008 9:14 pm    Post subject: Reply with quote

Support for world file is now in eix' svn trunk.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT
Goto page Previous  1, 2, 3 ... 14, 15, 16, 17, 18, 19  Next
Page 15 of 19

 
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