Re: Bug#288619: Shouldn't 1.5 provide 1.4 and 1.4 provide 1.3?

2005-01-05 Thread Jeroen van Wolffelaar
On Wed, Jan 05, 2005 at 11:12:53AM +0100, Arnaud Vandyck wrote: > Tue, 04 Jan 2005 12:07:35 -0600, > Jerry Haltom <[EMAIL PROTECTED]> wrote: > > > Package: java-package > > > > Shouldn't the Java 1.5 packages be made to provide the 1.4 packages, > > etc. To provide 1.5 means it obeys the 1.5 spe

Mime type in share as well as lib, or linda problem?

2005-01-05 Thread Eric Lavarde
Hi, I have a java package (i.e. Architecture all), freemind, and linda gives me the following warning: W: freemind; File /usr/lib/mime/packages/freemind contained in /usr/lib of Architecture: all package. I've seen, there is a /usr/share/mime/packages directory but nothing in it, I am supposed

Re: still need a sponsor for quik

2005-01-05 Thread Colin Watson
On Sun, Jan 02, 2005 at 06:25:38AM -0500, [EMAIL PROTECTED] wrote: > Ce jour Sun, 02 Jan 2005, simon raven a dit: > > i need a sponsor to upload quik, and i need to upload it ASAP. the > > upload i want to do closes a policy bug. i've run linda and lintian on > > it, and both check out a-ok. > > U

Re: still need a sponsor for quik

2005-01-05 Thread simon
Ce jour Wed, 05 Jan 2005, Colin Watson a dit: > On Sun, Jan 02, 2005 at 06:25:38AM -0500, [EMAIL PROTECTED] wrote: > > Ce jour Sun, 02 Jan 2005, simon raven a dit: > > > i need a sponsor to upload quik, and i need to upload it ASAP. the > > > upload i want to do closes a policy bug. i've run linda

Re: sponsor for tmsnc

2005-01-05 Thread Sven Mueller
Sergio Cayuqueo wrote on 05/01/2005 04:41: Hello I am sergio from argentina and i need a sponsor for tmsnc http://tmsnc.sourceforge.net and I attach the debian'files needed for building argl. Don't send attachments to the list. This annoys almost anyone subscribed to the list. Instead build t

Re: Mime type in share as well as lib, or linda problem?

2005-01-05 Thread Justin Pryzby
You may have found youself a lintian bug, as there is no real conclusion to last year's discussion: http://lists.debian.org/debian-mentors/2003/04/msg00094.html Justin On Wed, Jan 05, 2005 at 11:52:57AM +0100, Eric Lavarde wrote: > Hi, > > I have a java package (i.e. Architecture all), freemind,

Output of dpkg-scanpackages as XML

2005-01-05 Thread Frank S. Thomas
Hi, I want to publish on my homepage a list of packages, that are in my private package repository. Therefore it would be useful, if I could convert the output of 'dpkg-scanpackages' and 'dpkg-scansources' into XML, so that I only have to write the appropriate XSLT stylesheets. Is there any to

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread William Ballard
On Wed, Jan 05, 2005 at 09:57:26PM +0100, Frank S. Thomas wrote: > Hi, > > I want to publish on my homepage a list of packages, that are in my private > package repository. Therefore it would be useful, if I could convert the > output of 'dpkg-scanpackages' and 'dpkg-scansources' into XML, so th

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread William Ballard
On Wed, Jan 05, 2005 at 04:21:38PM -0500, William Ballard wrote: > If you want to include the short or long descriptions you'd have to > wrap those fields in CDATA tags, so you'd need an exta sed > expression to handle that. This outputs all fields and splits the short and long descriptions: echo

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread William Ballard
On Wed, Jan 05, 2005 at 04:32:07PM -0500, William Ballard wrote: > echo '' ^^^ Should have closed the CDATA tag here. The short description tag should probably be wrapped in CDATA too. If any package descriptions contain "]]>", it'll break it. You should probably wrap maintainer name

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread Justin Pryzby
On Wed, Jan 05, 2005 at 04:42:32PM -0500, William Ballard wrote: > On Wed, Jan 05, 2005 at 04:32:07PM -0500, William Ballard wrote: > > echo '' > ^^^ > > Should have closed the CDATA tag here. The short description > tag should probably be wrapped in CDATA too. If any package > descri

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread William Ballard
On Wed, Jan 05, 2005 at 04:44:45PM -0500, Justin Pryzby wrote: > On Wed, Jan 05, 2005 at 04:42:32PM -0500, William Ballard wrote: > > Is there a unicode shell which does all piping in Unicode? > > cmd.exe in NT has a switch that does all piping in Unicode > Does it make a difference? Shouldn't a p

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread David Given
William Ballard wrote: [...] Of course you're right. But building XML with shell commands was always a lot easier when I could count on all shell output being 2-byte Unicode. It was a neat bit of magic, ascii and utf-8 text files would get turned into Unicode and I'd pipe them to cscript.exe and

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread William Ballard
On Wed, Jan 05, 2005 at 10:36:53PM +, David Given wrote: > iconv is your friend: > > zcat Packages.gz | iconv -f utf8 -t ucs2-le | cscript In our case we're using sed. Is sed unicode-aware? (As an aside a lot of the commands you use in NT are builtins to cmd.exe and under this switch they

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread David Given
William Ballard wrote: [...] But back to Linux. $echo hi | iconv -f utf8 -t unicode | grep hi (no output) Not surprised; grep understands ASCII, AFAIK, so what you've just sent to it is: $ echo hi | iconv -f utf8 -t unicode | od -t x1 000 ff fe 68 00 69 00 0a 00 It can't find an 'h' and an 'i'

XOOPS Debian Package

2005-01-05 Thread Erick Vresnev Castellanos Hernández
Hi, I almost finish packing xoops: Package: xoops Description: Dynamic oject-oriented web portal system XOOPS is a program that allows administrators to easily create dynamic websites with great content and many outstanding features. It is an ideal tool for developing small to large dynamic co

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread Sven Mueller
William Ballard wrote on 05/01/2005 22:42: On Wed, Jan 05, 2005 at 04:32:07PM -0500, William Ballard wrote: echo '' ^^^ Should have closed the CDATA tag here. The short description tag should probably be wrapped in CDATA too. If any package descriptions contain "]]>", it'll break it. I

Re: XOOPS Debian Package

2005-01-05 Thread Matthew Palmer
On Wed, Jan 05, 2005 at 05:40:18PM -0600, Erick Vresnev Castellanos Hern?ndez wrote: > W: xoops: extra-license-file usr/share/xoops/docs/COPYING.txt > W: xoops: extra-license-file usr/share/xoops/html/class/mail/phpmailer/LICENSE > W: xoops: possible-bashism-in-maintainer-script postinst:23 > 'p{(

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread William Ballard
On Thu, Jan 06, 2005 at 12:28:47AM +0100, Sven Mueller wrote: >\2<\/CDATA> The only thing it can't contain is "]]>" You didn't use an actual CDATA node you used an element named CDATA. You can leave out the element. I forgot Depends/Recommends/Suggests/Conflicts lines will contain > and < cha

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread William Ballard
On Wed, Jan 05, 2005 at 07:11:06PM -0500, William Ballard wrote: > You can leave out the element. Forgot to mention parsers are not obligated to respect whitespace and newlines unless it's in a tag, though they usually do (and they have flags to control this). It's like the tag in HTML in t

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread Frank S. Thomas
On Wednesday 05 January 2005 22:21, William Ballard wrote: > This is trivial with grep-dctrl and sed. For example: Thanks, for making me aware of grep-dctrl. > echo '' > zcat /a/dists/latest/binary-i386/Packages.gz | \ > grep-dctrl -sPackage,Version . | \ > sed -r -e 's/([^:]+):(.+)/<\1>\2<

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread Sven Mueller
Frank S. Thomas wrote on 06/01/2005 01:46: Thanks so far. I think I'll write my own PHP script that will output a more structured XML document, so that I can create hyperlinks from the packages in the 'Depends' field and parse the quasi field 'Homepage'. I would appreciate it if you could make yo

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread Sven Mueller
Frank S. Thomas wrote on 06/01/2005 01:46: Thanks so far. I think I'll write my own PHP script that will output a more structured XML document, so that I can create hyperlinks from the packages in the 'Depends' field and parse the quasi field 'Homepage'. I would appreciate it if you could make yo

Re: Output of dpkg-scanpackages as XML

2005-01-05 Thread Frank S. Thomas
On Thursday 06 January 2005 02:14, Sven Mueller wrote: > Frank S. Thomas wrote on 06/01/2005 01:46: > > Thanks so far. I think I'll write my own PHP script that will output a > > more structured XML document, so that I can create hyperlinks from the > > packages in the 'Depends' field and parse the

RFS: cssed -- graphical CSS editor

2005-01-05 Thread David Moreno Garza
Hello, I've packaged cssed[1], which is a nice graphical editor for cascade style sheets, it rocks. It makes CSS dealing a charm. Description: graphical CSS editor Application to help create and maintain CSS style sheets for web developing. . CSSED is a small developer editor and validator, t