Re: Sponsor for mcplay package.

2002-07-15 Thread Marc Leeman

> > > The package is locate at pumuki.hispalinux.es/debian/mcplay/
> Is it packed? cannot find it from packages.debian.org in any of the
> debs.

Yes, but not in debian (yet)
deb http://lesbos.esat.kuleuven.ac.be/~mleeman/debian unstable/
deb-src http://lesbos.esat.kuleuven.ac.be/~mleeman/debian unstable/

There is still some work to be done on it (it seems).

> Can change it to mcp123 or similar.

Dunno what the appropriate procedure would be for these things, but I'm
afraid that upstream (in my case) might start wondering why he has to
make all the changes for Debian ;)
Anyway, honousty obliges me to say that mcplay is not a critical
application in the package (it's a tool that, like I said, puts v4l
streams on a subnet).
Haven't tested it, but from the description I had from upstream (dang,
still have to write the manpages), you could have a machine with e.g. a
capture card or camera and broadcast the information on the subnet.
Anyone running the mc tools (mccatch and mcplay) would be able to play
the stream on his/her client.

> Will contact upstream devel for suggestions.

Any "mentor" suggestions?

-- 
greetz, marc
 
The air conditioning water supply pipe ruptured over the machine room
 Key fingerprint = 890C E47F 1589 F240 9CC8  C60C 510A 63D3 D356 2DE1
Linux mykene 2.4.19-pre4 #1 Tue Apr 2 22:47:06 CEST 2002 i686 unknown



msg06613/pgp0.pgp
Description: PGP signature


Looking for somebody to sponsor an upload

2002-07-15 Thread Florian Weps

Hi

I recently adopted the oo2c package. 

  Bug #129590 - ITA: oo2c -- Optimizing Oberon-2 to ANSI-C Compiler

I updated the package to the current upstream version, and would like
someone to look at it and perhaps sponsor an upload for me, as my
usual sponsor, Andreas Tille, is on vacations.

Thanks

Florian




msg06614/pgp0.pgp
Description: PGP signature


Re: Looking for somebody to sponsor an upload

2002-07-15 Thread Colin Watson

On Mon, Jul 15, 2002 at 11:55:45AM +0200, Florian Weps wrote:
> I recently adopted the oo2c package. 
> 
>   Bug #129590 - ITA: oo2c -- Optimizing Oberon-2 to ANSI-C Compiler
> 
> I updated the package to the current upstream version, and would like
> someone to look at it and perhaps sponsor an upload for me, as my
> usual sponsor, Andreas Tille, is on vacations.

Drop me a mail with a pointer to the packages and I'll sort it out.

Incidentally, there was a problem with voberon which I always meant to
do a QA upload for: voberon-dev depends on liboo2cx11-dev, which appears
to be obsolete because oo2c conflicts with it. I think voberon-dev
should depend on libooc-x11-dev instead, but I don't know anything about
Oberon. Any comments?

-- 
Colin Watson  [[EMAIL PROTECTED]]


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




needing to run configure multiple time

2002-07-15 Thread Alexandre

Hello,

I'm facing the following problem. I need to get python-gtk for
python2.2. The package uses the default python version which is 2.1, and
I'm trying to change it so that it builds both python2.1-gtk and
python2.2-gtk. 

The problem or rather in the configuration process which uses autoconf.
It seems to me that I need to run ./configure twice, once with
PYTHON=python2.1 and the other one with PYTHON=python2.2

Is it OK to have debian/rules looking like:

build: build2.1-stamp build2.2-stamp

build2.1-stamp: configure2.1
#do stuff for py2.1

build2.2-stamp: configure2.2
# do stuff for py2.2

configure2.1:
dh_testdir
./configure --prefix=/usr --with-gtkhtml --disable-numpy \
PYTHON=python2.1

configure2.2:
dh_testdir
./configure --prefix=/usr --with-gtkhtml --disable-numpy \
PYTHON=python2.2

clean:
# bla bla
install: 
# bla bla
binary-arch:
# bla bla
binary-indep:
# bla bla
 
This means essentially removing the configure and the configure-stamp rules 
(and therefore reconfiguring everything each time we need to build). 


Alexandre Fayolle
-- 
LOGILAB, Paris (France).
http://www.logilab.com   http://www.logilab.fr  http://www.logilab.org
Narval, the first software agent available as free software (GPL).


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




Re: needing to run configure multiple time

2002-07-15 Thread Gergely Nagy

> The problem or rather in the configuration process which uses autoconf.
> It seems to me that I need to run ./configure twice, once with
> PYTHON=python2.1 and the other one with PYTHON=python2.2

How about this:

build/python2.1/config.status: configure
install -d build/python2.1
cd build/python2.1 && PYTHON=python2.1 ../../configure ...

build-python21: build/python2.1/config.status
${MAKE}

This has the advantage that after a build, you'll have both binary
versions at hand. Useful for debugging. OTOH, it means more disc space.

Also, using config.status means that you don't reconfigure upon each
build if you didn't run a make clean. This might speed things up
considerably.

And not using build2.1-stamp and the like means that if you changed one
source file, it'll get rebuilt. If you use a stamp-file, it won't, and
the problem may go unnoticed. It means a dummy make run tho, which might
not be wise if even a dummy run takes long.

(I think it is a justifiable compromise in many cases)

Oh, and your approach should work too, even if it is not the best way to
accomplis the goal.

Cheers,
-- 
Gergely Nagy


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




Bug #148398 - cvs-autoreleasedeb: file/etc/cron.d/cvs-autoreleasedeb not registered

2002-07-15 Thread Daniel Ruoso


Hi,

I received this bug report, and I'm a little confused of how to handle
it.

My package (cvs-autoreleasedeb) creates its cron job in the postinst
script, because it asks the user if it wants cvs-autoreleasedeb to be
runned in cron. So, as the file is created in the postinst, it doesn't
really belongs to the package.

Any comments?



signature.asc
Description: PGP signature


Re: Bug #148398 - cvs-autoreleasedeb: file /etc/cron.d/cvs-autoreleasedeb not registered

2002-07-15 Thread Gergely Nagy

> My package (cvs-autoreleasedeb) creates its cron job in the postinst
> script, because it asks the user if it wants cvs-autoreleasedeb to be
> runned in cron. So, as the file is created in the postinst, it doesn't
> really belongs to the package.

How about including the cron job in the .deb, but making the run
conditional?

It could run a script, which sources /etc/default/cvs-autoreleasedeb, in
which you can put an exit 0 or something like that.

I'd vote for nuking the install-time question, and disabling it by
default, and noting in README.Debian on how to turn it on.


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




Novo Nokia 7650

2002-07-15 Thread informacao

LOJADOTELEMOVEL.COM 15 de Julho 2002
http://www.lojadotelemovel.com


TELEMÓVEIS
Esta  semana destacamos o lançamento do Nokia 7650.
É o mais avançado telemóvel da Nokia equipado com
Câmara fotográfica.
Veja mais detalhes e reserve já o seu em:
http://www.lojadotelemovel.com/product_info.php3?products_id=3755

CARCAÇAS
Temos a maior selecção de carcaças completas e frentes para todo o tipo
de telemóveis.
Novidades da semana:
· Carcaça para o Nokia 8210 a imitar o Nokia 5210
http://www.lojadotelemovel.com/product_info.php3?products_id=3746
· Carcaças para diversos telemóveis com a foto do icone do Séc XX
Che Guevara. Stock Limitado.
http://www.lojadotelemovel.com/default.php3?cPath=509&SESSAO=
· Carcaças completas para o Alcatel 311
http://www.lojadotelemovel.com/default.php3?cPath=509_616&SESSAO=
· Carcaça mais vendida
A carcaça mutante para transformar completamente o seu velho Nokia 8210 no
topo de gama 8850, sem dispender muito dinheiro.

http://www.lojadotelemovel.com/product_info.php3?cPath=509_513&products_id=3
393&SESSAO=

ACESSÓRIOS
Temos já disponíveis os modernos auriculares stereo para os Nokias. De
design moderno estes auriculares dispoem de suporte para para cada um dos
auscultadores para quando não estão a ser utilizados.
Veja em:
http://www.lojadotelemovel.com/product_info.php3?cPath=3_9_168&products_id=3
754&SESSAO=

WIRELESS/BLUETOOTH
Renovamos a nossa secção destinada aos equipamentos tecnológicamente mais
avançados.
Destaque especial para os auriculares HBH20 compatíveis com todos os
telemóveis equipados com a tecnologia Bluetooth.

http://www.lojadotelemovel.com/product_info.php3?cPath=572&products_id=3681&;
SESSAO=

ORGANIZERS
Juntámos uma variada gama de PDA's da prestigiada marca COMPAC.
http://www.lojadotelemovel.com/default.php3?cPath=573&SESSAO=

DIVERSOS
Dispositivo infra-vermelhos para o seu computador comunicar com o seu
telemóvel.

http://www.lojadotelemovel.com/product_info.php3?cPath=5&products_id=2518&SE
SSAO=

---
Está a receber este e-mail porque se inscreveu na LOJADOTELEMOVEL.com,
indicando o seu endereço de e-mail.
Para deixar de receber as nossas mensagens dirija-se a http://www.lojadotelemovel.com 
e insira o seu endereço na caixa apropriada.




-
lojadotelemovel.com
#1 em telemoveis e acessorios





-
lojadotelemovel.com
#1 em telemoveis e acessorios


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




sponsor wanted for liboak-perl and liboak-web-perl

2002-07-15 Thread Daniel Ruoso

Hi,

I would like to know if someone wants to sponsor the debian packages for
the perl-oak project hosted at sourceforge. I had already generated the
debian packages using dh-make-perl. Ola Lundqvist already sponsored me
with cvs-autoreleasedeb, I would like not to overwhelm him, so I'm
looking for another sponsor for this two packages.

P.S.: I'm already in the nm process, so I will need a sponsor probably
for this release only (I hope)...

The home-page of the perl-oak project is:
http://perl-oak.sourceforge.net

and the debian packages and related files are available at:
http://sourceforge.net/project/showfiles.php?group_id=32735

--daniel



signature.asc
Description: PGP signature


request for sponsor: GtkSpell

2002-07-15 Thread Ari Pollak

I've created packages for GtkSpell2 by Evan Martin, an updated version 
of GtkSpell for GTK+2.
Description: a spell-checking addon for GTK's TextView widget
  GtkSpell provides MSWord/MacOSX-style highlighting of misspelled words 
in a GtkTextView widget.  Right-clicking a misspelled word pops up a 
menu of suggested replacements.

The packages can be found at . 
Suggestions welcome.

-- 
___   ___
   / _ | / _ \   Ari Pollak - [EMAIL PROTECTED] - www.aripollak.com
  / __ |/ ___/
/_/ |_/_/


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




Re: Bug #148398 - cvs-autoreleasedeb: file /etc/cron.d/cvs-autoreleasedeb not registered

2002-07-15 Thread Colin Watson

On Mon, Jul 15, 2002 at 02:59:40PM -0300, Daniel Ruoso wrote:
> I received this bug report, and I'm a little confused of how to handle
> it.
> 
> My package (cvs-autoreleasedeb) creates its cron job in the postinst
> script, because it asks the user if it wants cvs-autoreleasedeb to be
> runned in cron. So, as the file is created in the postinst, it doesn't
> really belongs to the package.

There are certainly other ways to handle it, as Gergely points out, but
it's not a bug as such. Policy explicitly allows for configuration files
in /etc that are not conffiles and so aren't in the .deb and aren't
listed in 'dpkg -S' output, so long as they follow the rules for how
configuration files must be handled.

-- 
Colin Watson  [[EMAIL PROTECTED]]


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




Re: request for sponsor: GtkSpell

2002-07-15 Thread Colin Walters

On Mon, 2002-07-15 at 19:40, Ari Pollak wrote:

> The packages can be found at . 
> Suggestions welcome.

Hmm..the .orig.tar.gz seems to be missing.



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




Re: request for sponsor: GtkSpell

2002-07-15 Thread Ari Pollak

Ack, woops. It should be up there now.

Colin Walters wrote:
> On Mon, 2002-07-15 at 19:40, Ari Pollak wrote:
> 
> 
>>The packages can be found at . 
>>Suggestions welcome.
> 
> 
> Hmm..the .orig.tar.gz seems to be missing.



-- 
___   ___
   / _ | / _ \   Ari Pollak - [EMAIL PROTECTED] - www.aripollak.com
  / __ |/ ___/
/_/ |_/_/


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




Mentor Request

2002-07-15 Thread Philip S. Hempel

  My name is Philip Hempel, I am looking for someone that would be 
willing to sponser me for a package called MessageWall from 
http://messagewall.org.

This package hase two libraries that it depends on. The first is 
libfirestring, a package used for parsing and managing configurations.  
The second is libfiredns, used for DNS queries. The two packages are 
from the same upstream maintainer, [EMAIL PROTECTED] I have sent a 
request to upstream requesting his blessing and have been told that one 
other is hoping to place the libs and dsbl-testers into Debian (Andres 
Salomon, a present Debian maintainer), as of today and at least two 
e-mails to the developer he has not responded but once and his statement 
is that he is still working on his libs. I have sent one e-mail 
requesting a time for uploads and have not had a return answer. I would 
like to see this package available and used widely, mainly to stop 
spamming at the source.

The package requires a mail-transport-agent, svtools, libssl, 
dameontools that are presently available for debian. This package is a 
spam prevention and virus protector for your MTA.
This is my first package but have been sucsessfully using it as a debian 
package on my system since June 22, 2002 and the libraries since May 18 
2002.
These packages seem, from my checking not to have any conflicts with any 
other packages. I have been maintaining MessageWal for my mail server 
since version 0.1.19 and have at present 19 revisions.

Thanks and I hope that this package will be allowed into Debian with the 
support of a mentor. Please feel free to e-mail me if any further 
information is needed.

-- 
-
Philip S. Hempel
Webmaster, Network Admin, Network Engineer
Need networking services? Website built? 
E-Mail me or Call 616.208.2665



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




Re: request for sponsor: GtkSpell

2002-07-15 Thread Colin Walters

On Mon, 2002-07-15 at 21:53, Ari Pollak wrote:
> Ack, woops. It should be up there now.

Ok, I got a chance to look at your package; it looks good to me.  I will
be happy to sponsor you.

I see your GPG key is already signed by a Debian Developer; that's a
good sign.

You should file an ITP bug now, and be sure to close it in the
changelog.  Let me know if you have any questions!


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




Re: Sponsor for mcplay package.

2002-07-15 Thread Marc Leeman
> The package is locate at pumuki.hispalinux.es/debian/mcplay/
> 
> mcplay is a c-clone of the popular python frontend for mpg123/ogg123
> which seems to be as powerfull as the parent package.

The nvrec software also has a binary called mcplay
together with mcthrow and mccatch (multicast), it enbles putting video
streams on a netwerk.

-- 
greetz, marc
 
Change in Earth's rotational speed
 Key fingerprint = 890C E47F 1589 F240 9CC8  C60C 510A 63D3 D356 2DE1
Linux mykene 2.4.19-pre4 #1 Tue Apr 2 22:47:06 CEST 2002 i686 unknown


pgpfpJtdIBfHD.pgp
Description: PGP signature


Re: Sponsor for mcplay package.

2002-07-15 Thread Jesus Climent
On Mon, Jul 15, 2002 at 08:33:33AM +0200, Marc Leeman wrote:
> > The package is locate at pumuki.hispalinux.es/debian/mcplay/
> > 
> > mcplay is a c-clone of the popular python frontend for mpg123/ogg123
> > which seems to be as powerfull as the parent package.
> 
> The nvrec software also has a binary called mcplay
> together with mcthrow and mccatch (multicast), it enbles putting video
> streams on a netwerk.

Is it packed? cannot find it from packages.debian.org in any of the
debs.

Can change it to mcp123 or similar.

Will contact upstream devel for suggestions.

J

-- 
Jesus Climent | Unix System Admin | Helsinki, Finland.
http://www.HispaLinux.es/~data/  |  data.pandacrew.org
--
Please, encrypt mail address to me: GnuPG ID: 86946D69
FP: BB64 2339 1CAA 7064 E429  7E18 66FC 1D7F 8694 6D69
--
Registered Linux user #66350 Debian 3.0 & Linux 2.4.19

I say you are Lord, and I should know. I've followed a few.
--Arthur (Life of Brian)


pgp6v629x1czh.pgp
Description: PGP signature


Re: Sponsor for mcplay package.

2002-07-15 Thread Marc Leeman
> > > The package is locate at pumuki.hispalinux.es/debian/mcplay/
> Is it packed? cannot find it from packages.debian.org in any of the
> debs.

Yes, but not in debian (yet)
deb http://lesbos.esat.kuleuven.ac.be/~mleeman/debian unstable/
deb-src http://lesbos.esat.kuleuven.ac.be/~mleeman/debian unstable/

There is still some work to be done on it (it seems).

> Can change it to mcp123 or similar.

Dunno what the appropriate procedure would be for these things, but I'm
afraid that upstream (in my case) might start wondering why he has to
make all the changes for Debian ;)
Anyway, honousty obliges me to say that mcplay is not a critical
application in the package (it's a tool that, like I said, puts v4l
streams on a subnet).
Haven't tested it, but from the description I had from upstream (dang,
still have to write the manpages), you could have a machine with e.g. a
capture card or camera and broadcast the information on the subnet.
Anyone running the mc tools (mccatch and mcplay) would be able to play
the stream on his/her client.

> Will contact upstream devel for suggestions.

Any "mentor" suggestions?

-- 
greetz, marc
 
The air conditioning water supply pipe ruptured over the machine room
 Key fingerprint = 890C E47F 1589 F240 9CC8  C60C 510A 63D3 D356 2DE1
Linux mykene 2.4.19-pre4 #1 Tue Apr 2 22:47:06 CEST 2002 i686 unknown


pgpYxMwodNnOI.pgp
Description: PGP signature


Looking for somebody to sponsor an upload

2002-07-15 Thread Florian Weps
Hi

I recently adopted the oo2c package. 

  Bug #129590 - ITA: oo2c -- Optimizing Oberon-2 to ANSI-C Compiler

I updated the package to the current upstream version, and would like
someone to look at it and perhaps sponsor an upload for me, as my
usual sponsor, Andreas Tille, is on vacations.

Thanks

Florian



pgpq9Jm6ENaM7.pgp
Description: PGP signature


Re: Looking for somebody to sponsor an upload

2002-07-15 Thread Colin Watson
On Mon, Jul 15, 2002 at 11:55:45AM +0200, Florian Weps wrote:
> I recently adopted the oo2c package. 
> 
>   Bug #129590 - ITA: oo2c -- Optimizing Oberon-2 to ANSI-C Compiler
> 
> I updated the package to the current upstream version, and would like
> someone to look at it and perhaps sponsor an upload for me, as my
> usual sponsor, Andreas Tille, is on vacations.

Drop me a mail with a pointer to the packages and I'll sort it out.

Incidentally, there was a problem with voberon which I always meant to
do a QA upload for: voberon-dev depends on liboo2cx11-dev, which appears
to be obsolete because oo2c conflicts with it. I think voberon-dev
should depend on libooc-x11-dev instead, but I don't know anything about
Oberon. Any comments?

-- 
Colin Watson  [EMAIL PROTECTED]


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



needing to run configure multiple time

2002-07-15 Thread Alexandre
Hello,

I'm facing the following problem. I need to get python-gtk for
python2.2. The package uses the default python version which is 2.1, and
I'm trying to change it so that it builds both python2.1-gtk and
python2.2-gtk. 

The problem or rather in the configuration process which uses autoconf.
It seems to me that I need to run ./configure twice, once with
PYTHON=python2.1 and the other one with PYTHON=python2.2

Is it OK to have debian/rules looking like:

build: build2.1-stamp build2.2-stamp

build2.1-stamp: configure2.1
#do stuff for py2.1

build2.2-stamp: configure2.2
# do stuff for py2.2

configure2.1:
dh_testdir
./configure --prefix=/usr --with-gtkhtml --disable-numpy \
PYTHON=python2.1

configure2.2:
dh_testdir
./configure --prefix=/usr --with-gtkhtml --disable-numpy \
PYTHON=python2.2

clean:
# bla bla
install: 
# bla bla
binary-arch:
# bla bla
binary-indep:
# bla bla
 
This means essentially removing the configure and the configure-stamp rules 
(and therefore reconfiguring everything each time we need to build). 


Alexandre Fayolle
-- 
LOGILAB, Paris (France).
http://www.logilab.com   http://www.logilab.fr  http://www.logilab.org
Narval, the first software agent available as free software (GPL).


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



Re: needing to run configure multiple time

2002-07-15 Thread Gergely Nagy
> The problem or rather in the configuration process which uses autoconf.
> It seems to me that I need to run ./configure twice, once with
> PYTHON=python2.1 and the other one with PYTHON=python2.2

How about this:

build/python2.1/config.status: configure
install -d build/python2.1
cd build/python2.1 && PYTHON=python2.1 ../../configure ...

build-python21: build/python2.1/config.status
${MAKE}

This has the advantage that after a build, you'll have both binary
versions at hand. Useful for debugging. OTOH, it means more disc space.

Also, using config.status means that you don't reconfigure upon each
build if you didn't run a make clean. This might speed things up
considerably.

And not using build2.1-stamp and the like means that if you changed one
source file, it'll get rebuilt. If you use a stamp-file, it won't, and
the problem may go unnoticed. It means a dummy make run tho, which might
not be wise if even a dummy run takes long.

(I think it is a justifiable compromise in many cases)

Oh, and your approach should work too, even if it is not the best way to
accomplis the goal.

Cheers,
-- 
Gergely Nagy


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



Bug #148398 - cvs-autoreleasedeb: file /etc/cron.d/cvs-autoreleasedeb not registered

2002-07-15 Thread Daniel Ruoso

Hi,

I received this bug report, and I'm a little confused of how to handle
it.

My package (cvs-autoreleasedeb) creates its cron job in the postinst
script, because it asks the user if it wants cvs-autoreleasedeb to be
runned in cron. So, as the file is created in the postinst, it doesn't
really belongs to the package.

Any comments?


signature.asc
Description: PGP signature


Re: Bug #148398 - cvs-autoreleasedeb: file /etc/cron.d/cvs-autoreleasedeb not registered

2002-07-15 Thread Gergely Nagy
> My package (cvs-autoreleasedeb) creates its cron job in the postinst
> script, because it asks the user if it wants cvs-autoreleasedeb to be
> runned in cron. So, as the file is created in the postinst, it doesn't
> really belongs to the package.

How about including the cron job in the .deb, but making the run
conditional?

It could run a script, which sources /etc/default/cvs-autoreleasedeb, in
which you can put an exit 0 or something like that.

I'd vote for nuking the install-time question, and disabling it by
default, and noting in README.Debian on how to turn it on.


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



Novo Nokia 7650

2002-07-15 Thread informacao
LOJADOTELEMOVEL.COM 15 de Julho 2002
http://www.lojadotelemovel.com


TELEMÓVEIS
Esta  semana destacamos o lançamento do Nokia 7650.
É o mais avançado telemóvel da Nokia equipado com
Câmara fotográfica.
Veja mais detalhes e reserve já o seu em:
http://www.lojadotelemovel.com/product_info.php3?products_id=3755

CARCAÇAS
Temos a maior selecção de carcaças completas e frentes para todo o tipo
de telemóveis.
Novidades da semana:
· Carcaça para o Nokia 8210 a imitar o Nokia 5210
http://www.lojadotelemovel.com/product_info.php3?products_id=3746
· Carcaças para diversos telemóveis com a foto do icone do Séc XX
Che Guevara. Stock Limitado.
http://www.lojadotelemovel.com/default.php3?cPath=509&SESSAO=
· Carcaças completas para o Alcatel 311
http://www.lojadotelemovel.com/default.php3?cPath=509_616&SESSAO=
· Carcaça mais vendida
A carcaça mutante para transformar completamente o seu velho Nokia 8210 no
topo de gama 8850, sem dispender muito dinheiro.

http://www.lojadotelemovel.com/product_info.php3?cPath=509_513&products_id=3
393&SESSAO=

ACESSÓRIOS
Temos já disponíveis os modernos auriculares stereo para os Nokias. De
design moderno estes auriculares dispoem de suporte para para cada um dos
auscultadores para quando não estão a ser utilizados.
Veja em:
http://www.lojadotelemovel.com/product_info.php3?cPath=3_9_168&products_id=3
754&SESSAO=

WIRELESS/BLUETOOTH
Renovamos a nossa secção destinada aos equipamentos tecnológicamente mais
avançados.
Destaque especial para os auriculares HBH20 compatíveis com todos os
telemóveis equipados com a tecnologia Bluetooth.

http://www.lojadotelemovel.com/product_info.php3?cPath=572&products_id=3681&;
SESSAO=

ORGANIZERS
Juntámos uma variada gama de PDA's da prestigiada marca COMPAC.
http://www.lojadotelemovel.com/default.php3?cPath=573&SESSAO=

DIVERSOS
Dispositivo infra-vermelhos para o seu computador comunicar com o seu
telemóvel.

http://www.lojadotelemovel.com/product_info.php3?cPath=5&products_id=2518&SE
SSAO=

---
Está a receber este e-mail porque se inscreveu na LOJADOTELEMOVEL.com,
indicando o seu endereço de e-mail.
Para deixar de receber as nossas mensagens dirija-se a 
http://www.lojadotelemovel.com e insira o seu endereço na caixa apropriada.




-
lojadotelemovel.com
#1 em telemoveis e acessorios





-
lojadotelemovel.com
#1 em telemoveis e acessorios


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



sponsor wanted for liboak-perl and liboak-web-perl

2002-07-15 Thread Daniel Ruoso
Hi,

I would like to know if someone wants to sponsor the debian packages for
the perl-oak project hosted at sourceforge. I had already generated the
debian packages using dh-make-perl. Ola Lundqvist already sponsored me
with cvs-autoreleasedeb, I would like not to overwhelm him, so I'm
looking for another sponsor for this two packages.

P.S.: I'm already in the nm process, so I will need a sponsor probably
for this release only (I hope)...

The home-page of the perl-oak project is:
http://perl-oak.sourceforge.net

and the debian packages and related files are available at:
http://sourceforge.net/project/showfiles.php?group_id=32735

--daniel


signature.asc
Description: PGP signature


request for sponsor: GtkSpell

2002-07-15 Thread Ari Pollak
I've created packages for GtkSpell2 by Evan Martin, an updated version 
of GtkSpell for GTK+2.

Description: a spell-checking addon for GTK's TextView widget
 GtkSpell provides MSWord/MacOSX-style highlighting of misspelled words 
in a GtkTextView widget.  Right-clicking a misspelled word pops up a 
menu of suggested replacements.


The packages can be found at . 
Suggestions welcome.


--
   ___   ___
  / _ | / _ \   Ari Pollak - [EMAIL PROTECTED] - www.aripollak.com
 / __ |/ ___/
/_/ |_/_/


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



Re: Bug #148398 - cvs-autoreleasedeb: file /etc/cron.d/cvs-autoreleasedeb not registered

2002-07-15 Thread Colin Watson
On Mon, Jul 15, 2002 at 02:59:40PM -0300, Daniel Ruoso wrote:
> I received this bug report, and I'm a little confused of how to handle
> it.
> 
> My package (cvs-autoreleasedeb) creates its cron job in the postinst
> script, because it asks the user if it wants cvs-autoreleasedeb to be
> runned in cron. So, as the file is created in the postinst, it doesn't
> really belongs to the package.

There are certainly other ways to handle it, as Gergely points out, but
it's not a bug as such. Policy explicitly allows for configuration files
in /etc that are not conffiles and so aren't in the .deb and aren't
listed in 'dpkg -S' output, so long as they follow the rules for how
configuration files must be handled.

-- 
Colin Watson  [EMAIL PROTECTED]


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



Re: request for sponsor: GtkSpell

2002-07-15 Thread Colin Walters
On Mon, 2002-07-15 at 19:40, Ari Pollak wrote:

> The packages can be found at . 
> Suggestions welcome.

Hmm..the .orig.tar.gz seems to be missing.



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



Re: request for sponsor: GtkSpell

2002-07-15 Thread Ari Pollak

Ack, woops. It should be up there now.

Colin Walters wrote:

On Mon, 2002-07-15 at 19:40, Ari Pollak wrote:


The packages can be found at . 
Suggestions welcome.



Hmm..the .orig.tar.gz seems to be missing.




--
   ___   ___
  / _ | / _ \   Ari Pollak - [EMAIL PROTECTED] - www.aripollak.com
 / __ |/ ___/
/_/ |_/_/


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



Mentor Request

2002-07-15 Thread Philip S. Hempel
 My name is Philip Hempel, I am looking for someone that would be 
willing to sponser me for a package called MessageWall from 
http://messagewall.org.


This package hase two libraries that it depends on. The first is 
libfirestring, a package used for parsing and managing configurations.  
The second is libfiredns, used for DNS queries. The two packages are 
from the same upstream maintainer, [EMAIL PROTECTED] I have sent a 
request to upstream requesting his blessing and have been told that one 
other is hoping to place the libs and dsbl-testers into Debian (Andres 
Salomon, a present Debian maintainer), as of today and at least two 
e-mails to the developer he has not responded but once and his statement 
is that he is still working on his libs. I have sent one e-mail 
requesting a time for uploads and have not had a return answer. I would 
like to see this package available and used widely, mainly to stop 
spamming at the source.


The package requires a mail-transport-agent, svtools, libssl, 
dameontools that are presently available for debian. This package is a 
spam prevention and virus protector for your MTA.
This is my first package but have been sucsessfully using it as a debian 
package on my system since June 22, 2002 and the libraries since May 18 
2002.
These packages seem, from my checking not to have any conflicts with any 
other packages. I have been maintaining MessageWal for my mail server 
since version 0.1.19 and have at present 19 revisions.


Thanks and I hope that this package will be allowed into Debian with the 
support of a mentor. Please feel free to e-mail me if any further 
information is needed.


--
-
Philip S. Hempel
   Webmaster, Network Admin, Network Engineer
Need networking services? Website built? 
   E-Mail me or Call 616.208.2665




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



Re: request for sponsor: GtkSpell

2002-07-15 Thread Colin Walters
On Mon, 2002-07-15 at 21:53, Ari Pollak wrote:
> Ack, woops. It should be up there now.

Ok, I got a chance to look at your package; it looks good to me.  I will
be happy to sponsor you.

I see your GPG key is already signed by a Debian Developer; that's a
good sign.

You should file an ITP bug now, and be sure to close it in the
changelog.  Let me know if you have any questions!


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