RFC: synfig packaging (a 2D vector animation studio)

2006-01-10 Thread Paul Wise
Hi all,

I've packaged synfig[1] (a 2D vector animation studio), and found a
sponsor for it. Since neither of us have much experience with shared
libraries, I would like some comments on the packaging, particularly if
the libraries are ok, the package split is ok and any problems you can
find. You can find the source packages here:

http://mentors.debian.net/debian/pool/main/s/synfig/
http://mentors.debian.net/debian/pool/main/s/synfigstudio/

Oh, and by the way, if anyone wants to co-maintain this, you are
welcome, particularly if you know about shared libraries. We will be
creating an svn repository where we can collaborate on it.

 1. http://www.synfig.com

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


signature.asc
Description: This is a digitally signed message part


Removing an ITP

2006-01-10 Thread Felipe Sateler
Hello. Some time ago I filed an ITP[1] for the package kompile, and later on I 
asked for sponsor, but got no response. Since there is apparently no interest 
in that package (with mine decreasing too), I'd like to remove/close the ITP 
bug. How do I do this? Or it is not my responsability to do this?


1: http://bugs.debian.org/338092
-- 


 Felipe Sateler


pgpquSJJlTToc.pgp
Description: PGP signature


Re: RFS: plotdrop - A minimal GNOME frontend to GNUPlot

2006-01-10 Thread Jordan Mantha

Romain Beauxis wrote:
>   Hi!
> 
> Le Mercredi 11 Janvier 2006 01:31, Jordan Mantha a écrit :
> 
>>It can be shared, the reason the source packages are different now is
>>because I fixed debian/rules
> 
> 
> I think he was speaking about the .orig tarball...
> 
> 
> Romain

hmm, well the .orig.tar.gz files are the same (as far as I can tell). I
didn't intentially change anything.

-Jordan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: RFS: plotdrop - A minimal GNOME frontend to GNUPlot

2006-01-10 Thread Romain Beauxis
Hi!

Le Mercredi 11 Janvier 2006 01:31, Jordan Mantha a écrit :
> It can be shared, the reason the source packages are different now is
> because I fixed debian/rules

I think he was speaking about the .orig tarball...


Romain
-- 
Took us away from civilization
Brought us to slave in this big plantation
Fussing and fighting, among ourselves
Nothing to achieve this way, it's worser than hell, I say



Re: RFS: plotdrop - A minimal GNOME frontend to GNUPlot

2006-01-10 Thread Jordan Mantha

Matt Zimmerman wrote:
> On Tue, Jan 10, 2006 at 04:03:53PM -0800, Jordan Mantha wrote:
> 
>>  I am looking for somebody to sponsor a new package for me. I recently
>>packaged it for Ubuntu and it was accepted into the universe repository.
>>I have now made a Debian sid source package, [...]
> 
> 
> Is there a reason why the source package needs to be different between
> Debian and Ubuntu, or can it be shared?
> 

It can be shared, the reason the source packages are different now is
because I fixed debian/rules so that it cleans the patch-stamps and
debian/patched after it was accepted into Ubuntu and it was suggested
that I move to debhelper 5. If plotdrop is accepted into sid I will then
sync Ubuntu so there won't be any ubuntuX version.

-Jordan Mantha


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: RFS: plotdrop - A minimal GNOME frontend to GNUPlot

2006-01-10 Thread Matt Zimmerman
On Tue, Jan 10, 2006 at 04:03:53PM -0800, Jordan Mantha wrote:
>   I am looking for somebody to sponsor a new package for me. I recently
> packaged it for Ubuntu and it was accepted into the universe repository.
> I have now made a Debian sid source package, [...]

Is there a reason why the source package needs to be different between
Debian and Ubuntu, or can it be shared?

-- 
 - mdz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



RFS: plotdrop - A minimal GNOME frontend to GNUPlot

2006-01-10 Thread Jordan Mantha
Hi!
  I am looking for somebody to sponsor a new package for me. I recently
packaged it for Ubuntu and it was accepted into the universe repository.
I have now made a Debian sid source package, built it with pbuilder, and
installed it into a sid chroot to verify that it installs and works
correctly.

Thanks,
Jordan Mantha

Package: plotdrop
Version: 0.5-1
Section: math
Priority: optional
License: GPL
Maintainer: Jordan Mantha <[EMAIL PROTECTED]>
Description: A minimal GNOME frontend to GNUPlot
  PlotDrop is designed for quick simple visualisation of 2D data series.
It is intended to be used in tandem with an external filesystem browser
such as GNOME's nautilus or KDE's konqueror. Files containing data are
added by dragging them from the browser to the file list. The homepage
for plotdrop is : http://icculus.org/~jcspray/plotdrop/


The source and i386.deb can be found at: http://chem.unr.edu/~mantha/debian/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: rpath from `avifile-config --libs`

2006-01-10 Thread Justin Pryzby
On Tue, Jan 10, 2006 at 10:26:56PM +0200, Simo Kauppi wrote:
> Hi,
> 
> While packaging swftools, I noticed that `avifile-config --libs` gives
> -Wl,-rpath,/usr/lib -laviplay. lintian/linda obviously are not happy
> with rpath.
It is even more annoying because /usr/lib is in the default library
search path.

> I can work around that, but I thought I ask if that should be
> considered a bug in the libavifile-0.7-dev package.
Agree.

> And while I'm at it, what would be the best way around if
> `something-config --libs` gives rpath?
File a bug, and in the interum, pass the output of foo-config through
sed (or use static, manually modified output)?

  # TODO: remove the sed after bug #XXX is closed.
  foo-config |sed -e 's/[^ ]*rpath[^ ]*/ /'

-- 
Clear skies,
Justin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: rpath from `avifile-config --libs`

2006-01-10 Thread Kevin B. McCarty
Simo Kauppi wrote:

> While packaging swftools, I noticed that `avifile-config --libs` gives
> -Wl,-rpath,/usr/lib -laviplay. lintian/linda obviously are not happy
> with rpath.
> 
> I can work around that, but I thought I ask if that should be
> considered a bug in the libavifile-0.7-dev package.

I think it's considered a bug, although AFAIK Policy doesn't explicitly
forbid rpath.  Junichi Uekawa writes "To remove -rpath in the upstream
level, it is usually non-invasive to request upstream to special-case
/usr/lib, to not add -rpath.":
http://www.netfort.gr.jp/~dancer/column/libpkg-guide/libpkg-guide.html

If avifile-config is a shell script (I haven't checked), it shouldn't be
too hard to submit a patch for that.

> And while I'm at it, what would be the best way around if
> `something-config --libs` gives rpath?

`something-config --libs | sed 's/-Wl,-rpath,[^[:space:]]*//g'` would be
the first thing I tried.

regards,

-- 
Kevin B. McCarty <[EMAIL PROTECTED]>   Physics Department
WWW: http://www.princeton.edu/~kmccarty/Princeton University
GPG: public key ID 4F83C751 Princeton, NJ 08544


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



rpath from `avifile-config --libs`

2006-01-10 Thread Simo Kauppi
Hi,

While packaging swftools, I noticed that `avifile-config --libs` gives
-Wl,-rpath,/usr/lib -laviplay. lintian/linda obviously are not happy
with rpath.

I can work around that, but I thought I ask if that should be
considered a bug in the libavifile-0.7-dev package.

And while I'm at it, what would be the best way around if
`something-config --libs` gives rpath?

Simo
-- 
:r ~/.signature


signature.asc
Description: Digital signature


Re: RFS: tikiwiki

2006-01-10 Thread Christoph Haas
On Tuesday 10 January 2006 13:13, Marcus Better wrote:
> I am renewing my request for a sponsor for Tikiwiki. I would like to
> upload it to experimental for easier access, so that I can get it more
> widely tested.

Roughly checked and uploaded to experimental. Good luck with the package.

Kindly
 Christoph
-- 
Never trust a system administrator who wears a tie and suit.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



mozilla extension installation - is not seen on some boxes

2006-01-10 Thread Yaroslav Halchenko
Dear Gurus,

I am a sponsored maintainer  of mozilla-imagezoom package. I just
upgraded it to the most recent upstream version so I could have it
working with the recent firefox. I believe I had similar problem before
but now I have it again: on some boxes (where I believe I used to
have it installed in my local account) it doesn't appear in the list of
extensions no matter what I do (including moving ~/.mozilla away to start
with fresh local settings). But it works nicely on some other boxes...

So what did I miss in my package?

In the debian/rules I do

dtmp = $(CURDIR)/debian/mozilla-imagezoom
extdir = $(dtmp)/usr/share/mozilla-extensions/imagezoom
uuid = 1A2D0EC4-75F5-4c91-89C4-3656F6E44B68
.
install:
 .
cp -rp chrome defaults $(extdir)
install -m 644 debian/chrome.d debian/extensions.d install.rdf \
$(extdir)
install -m 644 debian/Uninstall $(extdir)/uninstall

and in debian/postinst
I do

if [ "$1" = configure ]; then
for update in update-mozilla-chrome \
  update-mozilla-snapshot-chrome \
  update-mozilla-firefox-chrome \
  update-mozilla-thunderbird-chrome; do
if searchpath "$update"; then
"$update"
fi
done
fi

Fresh version of the package will be duploaded by the sponsor as soon as
he gets my email, but for now I have it available from my local
repository if you are willing to have a look at it
http://itanix.rutgers.edu/rumba/dists/unstable/perspect/binary-all/web/mozilla-imagezoom_0.2.2-1_all.deb

Thank you in advance for the hints
-- 
  .-.
=--   /v\  =
Keep in touch// \\ (yoh@|www.)onerussian.com
Yaroslav Halchenko  /(   )\   ICQ#: 60653192
   Linux User^^-^^[17]




pgpGkicnaoLUx.pgp
Description: PGP signature


Re: [Pkg-icecast-devel] RFC libshout 2.2 and icecast 2.3.1 against it

2006-01-10 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, 09 Jan 2006 20:18:43 +0100
Rakotomandimby Mihamina <[EMAIL PROTECTED]>
wrote:

> libshout 2.2 was out, I built it and request your comments
> Just add it to your sources.list
> 
> deb ftp://infogerance.locataire-serveur.info/debian/ testing main
> deb-src ftp://infogerance.locataire-serveur.info/debian/ testing main
> deb ftp://infogerance.locataire-serveur.info/debian/ unstable main
> deb-src ftp://infogerance.locataire-serveur.info/debian/ unstable main

Thanks.

I failed locating the sources for your packaging, though.

If you did anything but building against newer source and bumping up
cersion number, could you perhaps provide just the patch (either a
URL or directly attached to an email sent here)?


Why is debian-mentors cc'ed? Just curious, they are welcome :-)


 - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

 - Enden er nær: http://www.shibumi.org/eoti.htm
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDw+yNn7DbMsAkQLgRAufsAKCWshkXauygEXDRglVrBa4lDP85DgCfZ/V2
lFBPZE38rad2lY6ZZY7cEVQ=
=B5d8
-END PGP SIGNATURE-



Re: R-F-NMU: saods9: imtool for astronomy -- #344317: kubuntu patch

2006-01-10 Thread Kevin B. McCarty
Kevin B. McCarty wrote:
> Justin Pryzby wrote:
> 
>>>This is a request for an NMU, or 1-time sponsorship, whichever you
>>>prefer.  Aurelien is typically busy; I don't see the need to bug him
>>>for a 1 line patch :)
>>>
>>>Please apply the patch given at #344317: "saods9: fix for FTBFS in
>>>kubuntu dapper and breezy".
>>>
>>>  http://bugs.debian.org/344317
> 
> I can get this for you today if no one else has already volunteered.
> I'll start building it as an NMU now -- just let me know ASAP if someone
> else has beaten me to the punch.

saods9 4.0b7-1.1 just uploaded.

best regards,

-- 
Kevin B. McCarty <[EMAIL PROTECTED]>   Physics Department
WWW: http://www.princeton.edu/~kmccarty/Princeton University
GPG: public key ID 4F83C751 Princeton, NJ 08544


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: R-F-NMU: saods9: imtool for astronomy -- #344317: kubuntu patch

2006-01-10 Thread Kevin B. McCarty
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Justin Pryzby wrote:

> This is a request for an NMU, or 1-time sponsorship, whichever you
> prefer.  Aurelien is typically busy; I don't see the need to bug him
> for a 1 line patch :)
> 
> Please apply the patch given at #344317: "saods9: fix for FTBFS in
> kubuntu dapper and breezy".
> 
>   http://bugs.debian.org/344317

Hi Justin,

I can get this for you today if no one else has already volunteered.
I'll start building it as an NMU now -- just let me know ASAP if someone
else has beaten me to the punch.

best regards,

- --
Kevin B. McCarty <[EMAIL PROTECTED]>   Physics Department
WWW: http://www.princeton.edu/~kmccarty/Princeton University
GPG: public key ID 4F83C751 Princeton, NJ 08544
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDw8qbfYxAIk+Dx1ERAtuEAKDLVxFobxR3GDTAhQ7pQF15MtKdlACcD0ZP
dgp5ktGYxDtrmBZwTB0VuSg=
=MrLx
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: RFS: Kraptor and Kball

2006-01-10 Thread Miriam Ruiz
Thanks, I've corrected the watch files in both packages and added the bug
closure in the changelog for kraptor.

The new versions are availabe again at:

http://baby.yi.org/packages/kronos/

Greetings,
Miry


 --- Steve Langasek <[EMAIL PROTECTED]> escribió:

> On Tue, Jan 10, 2006 at 03:19:00AM -0800, Steve Langasek wrote:
> 
> > Already uploaded kball, actually; you should've received some email about
> > that by now.  Looks like bug #345244 wasn't closed in the changelog,
> though,
> > so I'll go close it by hand.  Also, you might want to fix the broken
> > debian/watch file that you added in -3, as it points to kraptor
> upstream...
> 
> > I'll take a look at kraptor as well, since it has a similar RC bug.
> 
> ... and I see that kball's watch file ended up in the kraptor packaging. 
> Whoops.  If you'd care to fix this issue, and also document the closure of
> bug #345249 in the changelog, I can sponsor kraptor tomorrow.




__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y moviles desde 1 centimo por minuto. 
http://es.voice.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: RFS: tikiwiki

2006-01-10 Thread Marcus Better
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

I am renewing my request for a sponsor for Tikiwiki. I would like to
upload it to experimental for easier access, so that I can get it more
widely tested.

>   Package name: tikiwiki
>   Version : 1.9.2
>   Upstream Author : Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
>   URL or Web page : http://tikiwiki.org
>   License : LGPL
>   Description : groupware and content management system
> 
>  Tiki CMS/Groupware, also known as TikiWiki, can be used to create all
>  sorts of web applications, web sites or portals. It offers a very
>  large number of features and is highly configurable and modular. All
>  features are administered through a web-based interface.

The package is available from mentors.debian.net.

Thanks,

Marcus
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDw6TZXjXn6TzcAQkRArpqAKDU37Jx7LUhosKQbGMvq75vDrBVZACgq1U/
X87GV3RU/GJbRfrJlqcQC40=
=VUGx
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: RFS: Kraptor and Kball

2006-01-10 Thread Steve Langasek
On Tue, Jan 10, 2006 at 03:19:00AM -0800, Steve Langasek wrote:

> Already uploaded kball, actually; you should've received some email about
> that by now.  Looks like bug #345244 wasn't closed in the changelog, though,
> so I'll go close it by hand.  Also, you might want to fix the broken
> debian/watch file that you added in -3, as it points to kraptor upstream...

> I'll take a look at kraptor as well, since it has a similar RC bug.

... and I see that kball's watch file ended up in the kraptor packaging. 
Whoops.  If you'd care to fix this issue, and also document the closure of
bug #345249 in the changelog, I can sponsor kraptor tomorrow.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Re: RFS: Kraptor and Kball

2006-01-10 Thread Steve Langasek
On Tue, Jan 10, 2006 at 11:35:01AM +0100, Miriam Ruiz wrote:
> Kraptor and Kball are two games currently in debian repositories,

> Kraptor is a classic shoot 'em up scroller game, where you must fight against
> tons of bad dudes.
> The game offers high speed action, with massive destruction and lots of fun.
> Kraptor features a powerful engine for 2D shooter scroller games.
> Massive destruction, powerful weapons, all that you always wanted in this kind
> of games!

> http://kraptor.sourceforge.net/

> KBall is a game of skill and reflexes, non violent, suitable for all ages.
> The idea is to move a ball around the map, without falling, without running
> out of time, and getting the prizes, in order to reach the exit.
> The map has different traps, such as slides, pushers, jumps, falls, walls,
> etc.
> Maps are viewed from top view, and the walls and player's ball are real-time
> rendered in beautiful 3D.

> http://kball.sourceforge.net/

> New packages are temporarily available at http://baby.yi.org/packages/kronos/
> . It seems all my usual sponsors are quite busy right now, so if somebody has
> the time for having a look and sponsoring them, you're welcome.

Already uploaded kball, actually; you should've received some email about
that by now.  Looks like bug #345244 wasn't closed in the changelog, though,
so I'll go close it by hand.  Also, you might want to fix the broken
debian/watch file that you added in -3, as it points to kraptor upstream...

I'll take a look at kraptor as well, since it has a similar RC bug.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


RFS: Kraptor and Kball

2006-01-10 Thread Miriam Ruiz
Kraptor and Kball are two games currently in debian repositories,

Kraptor is a classic shoot 'em up scroller game, where you must fight against
tons of bad dudes.
The game offers high speed action, with massive destruction and lots of fun.
Kraptor features a powerful engine for 2D shooter scroller games.
Massive destruction, powerful weapons, all that you always wanted in this kind
of games!

http://kraptor.sourceforge.net/

KBall is a game of skill and reflexes, non violent, suitable for all ages.
The idea is to move a ball around the map, without falling, without running
out of time, and getting the prizes, in order to reach the exit.
The map has different traps, such as slides, pushers, jumps, falls, walls,
etc.
Maps are viewed from top view, and the walls and player's ball are real-time
rendered in beautiful 3D.

http://kball.sourceforge.net/

New packages are temporarily available at http://baby.yi.org/packages/kronos/
. It seems all my usual sponsors are quite busy right now, so if somebody has
the time for having a look and sponsoring them, you're welcome.

Greetings and thanks in  advance,
Miry




__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y moviles desde 1 centimo por minuto. 
http://es.voice.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



RFS: dbacl_1.11-3

2006-01-10 Thread Zak B. Elep
Hi mentors!

As some of you may have read in -devel, Clint has some packages up for
sale,[0] and I intend to adopt dbacl and bricolage.  Well, here's dbacl
now, at version 1.11-3, source freely available at mentors.[1]

[0]  http://lists.debian.org/debian-devel/2006/01/msg00449.html
[1]  http://mentors.debian.net/debian/pool/main/d/dbacl/

Here's the source.changes:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 10 Jan 2006 14:42:54 +0800
Source: dbacl
Binary: dbacl
Architecture: source
Version: 1.11-3
Distribution: unstable
Urgency: low
Maintainer: Zak B. Elep <[EMAIL PROTECTED]>
Changed-By: Zak B. Elep <[EMAIL PROTECTED]>
Description:
 dbacl  - digramic Bayesian text classifier
Changes:
 dbacl (1.11-3) unstable; urgency=low
 .
   * New maintainer.
   * Switch to cdbs + debhelper.
 - Move docs in share/dbacl to proper Debian location.
 - Fix permissions on TREC files.
 - Add lintian override on binary-without-manpage (for hypex).  Ugly.
   * debian/control:
 - Remove `A' from one-line Description.
 - Add Homepage in full Description.
Files:
 a1fc5f7efcf804b7cdbbaaa67a062834 604 text optional dbacl_1.11-3.dsc
 d8fa97193308033a3e8261a6c693583a 774572 text optional dbacl_1.11.orig.tar.gz
 27fb2b2748ad4a5d394a3ea9445a8218 2010 text optional dbacl_1.11-3.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDw2BJV4ex/fpThR0RAngHAJoDKSwFvmZbLv28FAqO9sp8od2cWwCdGXn5
h4R4l4NUa2smKYb2fDR6Y70=
=Qdcw
-END PGP SIGNATURE-

Paul Wise (pabs3) tells me that Clint can't sponsor, so I'm looking for
others who are willing to.  I welcome anybody's (constructive) comments
as well ;)

Cheers,

Zakame

--
Zak B. Elep  ||  http://zakame.spunge.org
[EMAIL PROTECTED]  ||  [EMAIL PROTECTED]
1486 7957 454D E529 E4F1  F75E 5787 B1FD FA53 851D