Gentoo Archives: gentoo-user

From: Michael Crute <mcrute@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] why gentoo doesn't have long description?
Date: Wed, 24 Aug 2005 14:12:13
Message-Id: 558b73fb050824070378013489@mail.gmail.com
In Reply to: Re: [gentoo-user] why gentoo doesn't have long description? by Fernando Canizo
1 First of all, sorry about top posting that's the way Gmail does it and you
2 cant change the settings.
3
4 Also if you are looking for a lazy man's way of getting a package
5 description try `emerge -s packagename` and it prints out a lot of
6 information as well as a short description of the package. I have never seen
7 a long description such as those used to build Debian packages anywhere in
8 portage and don't really think it would be useful anyhow. So try emerge -s
9 and if you need more info go to the packae's website. That would be my
10 advice. Oh, and emerge -s works off the metadata so you dint need an
11 Internet connection.
12
13 -Mike.
14
15 On 8/24/05, Fernando Canizo <conan@××××××××××.ar> wrote:
16 >
17 > El 24/ago/2005 a las 04:01 -0300, Jonas me decía:
18 > > >Second, the whole idea is to do this for non-connected systems.
19 > Meaning, a
20 > > >solution not involving the Internet... =)
21 > > If you're refering to the fact that the person doesn't have an internet
22 > > connection when he wants to view this information throught the emerge
23 > > interface, then you're wrong. When you want to install or you're just
24 > > searching for a package you're using the emerge interface , when you
25 > > need more info you have to 1) open your browser 2) type in the url (if
26 > > you're lucky you know the url or it's in your browsers cache) 3) search
27 > > for the package on the website , while instead you could just do
28 > > something like emerge --desc package. Now what's quicker and makes more
29 > > sence ?
30 >
31 > Exactly! That's what i'm refering to. It's not an issues of connection
32 > it's an
33 > issue of lazyness! It's like: "-- hey what are you doing this weekend? --
34 > don't
35 > know, it's cold and raining, i think i'm gonna sit in my throne and check
36 > what's
37 > new on 'app-vim' to improve my vimyness, if find something interesting
38 > i'll
39 > check the package webpage."
40 >
41 > For now i'm using 'questo':
42 > === script ====
43 > #!/bin/bash
44 > # lun may 2 20:57:24 ART 2005
45 > # conan - GPLed
46 > #
47 > # script to check for apps on rainy sunday morning
48 >
49 > BASE_DIR="/usr/portage/"
50 >
51 > [ $# -ne 1 ] && echo "Uso: questo <category>" && exit 0
52 >
53 > cd $BASE_DIR$1
54 > for package in * ; do
55 > eix "^$paquete\$"
56 > echo "Looking for: $1/$paquete. ENTER to continue..."
57 > read
58 > done
59 > === end script ====
60 >
61 > Now i took sugestion from Ciaran to look in metadata.xml, i check a couple
62 > by
63 > hand and see the 'longdesc' field but... with short descriptions! Now
64 > maybe i
65 > just choose two with bad luck, but i got a feeling that gentoo maintainers
66 > doesn't like to provide longdesc, although there is the posibility.
67 >
68 > I was thinking of doing a little script that gives longdesc found in
69 > metadata to
70 > confirm this, but since i don't know nothing about xml, think it gonna
71 > take a
72 > little bit more that if there were already an application to check '
73 > metadata.xml'
74 > fields. 'emerge', 'equery' and 'eix' wich are the administration tools i
75 > use
76 > everyday don't say nothing about this, i think all of them use de
77 > description
78 > field in ebuilds. I wonder if somebody knows another app to do this?
79 >
80 > If not, the idea of the script is more less this:
81 > lslongdesc package|category|all
82 >
83 > where:
84 > - 'package' gives longdesc of package
85 > - 'category' gives longdesc of all packages in category
86 > - and 'all' gives them all flooding your screen with info you never gonna
87 > eat...
88 > but that is there.
89 >
90 > It's so simple that i'm sure there must be an app (or compound of them)
91 > that
92 > already do this.
93 >
94 > --
95 > Fernando Canizo - http://www.lugmen.org.ar/~conan/
96 > Olmstead's Law:
97 > After all is said and done, a hell of a lot more is said than done.
98 > --
99 > gentoo-user@g.o mailing list
100 >
101 >
102
103
104 --
105 ________________________________
106 Michael E. Crute
107 Software Developer
108 SoftGroup Development Corporation
109
110 Linux, because reboots are for installing hardware.
111 "In a world without walls and fences, who needs windows and gates?"

Replies

Subject Author
Re: [gentoo-user] why gentoo doesn't have long description? David Morgan <david.morgan@×××××.com>
Re: [gentoo-user] why gentoo doesn't have long description? Jonas Geiregat <yux@××××××.org>