Re: variables from shell output in makefile

2006-11-25 Thread Michael Tautschnig
Hi!

[...]

> 
> # EXT_DIR=`/usr/bin/php-config --extension-dir`;
>   EXT_DIR = $(shell /usr/bin/php-config --extension-dir);
> 
>   mkdir -p ${CURDIR}/debian/php-java-bridge/var/lib/tomcat5/webapps; \
>   cp ${CURDIR}/debian/php-java-bridge/${EXT_DIR}/JavaBridge.war
> ${CURDIR}/debian/php-java-bridge/var/lib/tomcat5/webapps; 
>
Just to avoid all the variable-assignment-tests - what about the following, does
that work?

mkdir -p ${CURDIR}/debian/php-java-bridge/var/lib/tomcat5/webapps; \
  cp ${CURDIR}/debian/php-java-bridge/`/usr/bin/php-config 
--extension-dir`/JavaBridge.war \
  ${CURDIR}/debian/php-java-bridge/var/lib/tomcat5/webapps

HTH,
Michael



pgpcG8jZaz7h6.pgp
Description: PGP signature


Help About: to propose package

2006-11-25 Thread Salokine
Hi,

I learn to create my first new package (tremulous-mappack). I've finished to 
create it and download to ftp//mentors.debian.net.

What must I do now to continue integration process ?
Why my package isn't to "My Packages" view ?
Why don't I received email confirmation ?
Where can I say "Need Sponsor = Yes" ?
Is my package too big ?

Sorry for my basic questions ...
Thanks and have a nice day.

@+
Salokine


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



Help About: to propose package

2006-11-25 Thread Salokine
Hi,

I learn to create my first new package (tremulous-mappack). I've finished to 
create it and download to ftp//mentors.debian.net.

What must I do now to continue integration process ?
Why my package isn't to "My Packages" view ?
Why don't I received email confirmation ?
Where can I say "Need Sponsor = Yes" ?
Is my package too big ?

Sorry for my basic questions ...
Thanks and have a nice day.

@+
Salokine


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



Re: RFC: AKFQuiz (was: new here)

2006-11-25 Thread James Westby
On (25/11/06 06:30), Andreas K. Foerster wrote:
> Am Freitag, dem 24. Nov 2006 schrieb James Westby:
> > No, don't delete them, they are there for a reason, please read
> > /usr/share/doc/autotools-dev/README.Debian.gz
> > where it is explained. 
> 
> Now I'm really confused.
> The text just talks about autoconf and automake. As I've written before
> my package doesn't use neither autoconf nor automake nor libtool.
> So for what reason do I need these files? I don't find it in that text.


Did you read the section "Calling GNU configure properly"?

If you don't even have a configure script to call then I apologise for
this sub thread, go ahead and delete the code. I assumed that this code
would only be generated if you had a configure script.

James

-- 
  James Westby   --GPG Key ID: B577FE13-- http://jameswestby.net/
  seccure key - (3+)k7|M*edCX/.A:n*N!>|&7U.L#9E)Tu)T0>AM - secp256r1/nistp256


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



Re: Updated bmpx

2006-11-25 Thread James Westby
On (25/11/06 07:05), Frédéric Brin wrote:
> Dear mentors,
> 
> I've built updated packages of bmpx. This packages now uses cdbs and correct 
> the three bugs for bmpx on the bug database.
> I also plan to include the firefox plugin in a next release. I currently have 
> no news from the current maintainer.
> 

Does this mean that you are not the maintainer of bmpx? You are not
listed as the maintainer on the PTS.

James

-- 
  James Westby   --GPG Key ID: B577FE13-- http://jameswestby.net/
  seccure key - (3+)k7|M*edCX/.A:n*N!>|&7U.L#9E)Tu)T0>AM - secp256r1/nistp256


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



Re: variables from shell output in makefile

2006-11-25 Thread Michael Tautschnig
> Hello,
> Unfortunately, it does not work.
> The debian/rules processing uses make.
> And make does not expand "`" as an external shell command directive,
> like bash.
> It has the $(shell command) directive, instead.
> Thanks for your suggestion.
>
Surely it does, if used within a rule (and the mkdir thing must be part of a
rule). 

Feel free to mail me your complete Makefile or paste it to paste.debian.net (and
send the link). I'm using this kind of expansion fairly often in my Makefiles.

Best,
Michael




pgpBESaIodGYL.pgp
Description: PGP signature


Re: variables from shell output in makefile

2006-11-25 Thread André Felipe Machado
Hello,
Unfortunately, it does not work.
The debian/rules processing uses make.
And make does not expand "`" as an external shell command directive,
like bash.
It has the $(shell command) directive, instead.
Thanks for your suggestion.

Does someone knows about a package having a debian/rules with similar
needs?

Andre Felipe Machado



Em Sáb, 2006-11-25 às 10:36 +0100, Michael Tautschnig escreveu:
> Hi!
> 
> [...]
> 
> > 
> > #   EXT_DIR=`/usr/bin/php-config --extension-dir`;
> > EXT_DIR = $(shell /usr/bin/php-config --extension-dir);
> > 
> > mkdir -p ${CURDIR}/debian/php-java-bridge/var/lib/tomcat5/webapps; \
> > cp ${CURDIR}/debian/php-java-bridge/${EXT_DIR}/JavaBridge.war
> > ${CURDIR}/debian/php-java-bridge/var/lib/tomcat5/webapps; 
> >
> Just to avoid all the variable-assignment-tests - what about the following, 
> does
> that work?
> 
> mkdir -p ${CURDIR}/debian/php-java-bridge/var/lib/tomcat5/webapps; \
>   cp ${CURDIR}/debian/php-java-bridge/`/usr/bin/php-config 
> --extension-dir`/JavaBridge.war \
>   ${CURDIR}/debian/php-java-bridge/var/lib/tomcat5/webapps
> 
> HTH,
> Michael
> 


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



Re: Updated bmpx

2006-11-25 Thread Daniel Baumann
Frédéric Brin wrote:
> I've built updated packages of bmpx. This packages now uses cdbs and correct 
> the three bugs for bmpx on the bug database.
> I also plan to include the firefox plugin in a next release. I currently have 
> no news from the current maintainer.

I'm the sponsor for bmpx. Thierry, the maintainer of bmpx, is not MIA.
Therefore, you should send patches to him instead of repackging bmpx.

> I would be glad if someone uploaded this package for me.

Even if the maintainer would be MIA, the package would need to be
orphaned before when not fixing release-critical bugs. Everything else
is considered abusive.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: RFS: dnshistory

2006-11-25 Thread Daniel Baumann
Matthias Julius wrote:
> - dget 
> http://mentors.debian.net/debian/pool/main/d/dnshistory/dnshistory_1.2-1.dsc

please fix the following things:

  * remove the useless empty line at the end of changelog.

  * ${misc:Depends} is useless here

  * this:

---snip---
 Homepage: http://www.stedee.id.au/dnshistory/
---snap---

   should be this:

---snip---
  Homepage: http://www.stedee.id.au/dnshistory/
---snap---

   note the two leading speaces before homepage.

  * debian/dirs is useless, the build system just creates
the directory on its own.

  * cleanup postinst/postrm:

- remove the useless commented things
- remove the empty lines at the end of the files

  * cleanup rules:

- remove the useless commented things
- don't use two empty lines as seperator, one is just enough.
- you should update config.sub/config.guess within clean:,
  look at libextractor on how to do it.
- dh_installman is useless, remove it.

  * remove the useless commented things in watch

if you fix above things, i'm happy to sponsor it.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: RFS: meep

2006-11-25 Thread Daniel Baumann
Loïc Le Guyader wrote:
> Tried again on powerpc from a fresh sid chroot. No problem. This time with
> libctl and libharminv from debian.

It does not build on i386 and also not on amd64 with todays sid. Given
that i386 and amd64 represents the extremely large majority of all
users, I consider a non-arch specific library useless as long as fails
to build on those archs. Please fix it.

> I think you do something wrong.

I don't think so, Tim.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: RFS: knetstats

2006-11-25 Thread Daniel Baumann
Daniel Baumann wrote:
> if you fix above things, i'm happy to sponsor the package.

did you fix the package already?

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



RFS: sitebar (updated package, fixes RC bug)

2006-11-25 Thread Kevin Coyner


Dear friends:

I am looking for a sponsor for the updated version 3.3.8-3
of my package "sitebar".  It closes a RC bug that was recently
filed, so I'm obviously anxious to see this updated.

The package is lintian/linda clean except for a warning about a
partially translated question in a couple .po files.  I've run
podebconf-report-po and hopefully will receive responses.  But until
then, I'd still like to see this updated package be uploaded since
it has the RC bug fix.  Many thanks to Andreas Henriksson for the RC
bug patch.

It builds these binary packages:
sitebar - A web based bookmark manager written in PHP

The upload would fix these bugs: 297812, 301474, 398545

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/s/sitebar
- Source repository: deb-src http://mentors.debian.net/debian unstable main 
contrib non-free
- dget http://mentors.debian.net/debian/pool/main/s/sitebar/sitebar_3.3.8-3.dsc

I would be glad if someone uploaded this package for me.

Happy holidays,
Kevin

-- 
Kevin Coyner  GnuPG key: 1024D/8CE11941


signature.asc
Description: Digital signature


Re: RFS: sitebar (updated package, fixes RC bug)

2006-11-25 Thread Daniel Baumann
Kevin Coyner wrote:
> I would be glad if someone uploaded this package for me.

done. write[0] me off-list if you need further sponsoring.

[0] http://people.debian.org/~daniel/documents/sponsoring.html#contact

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: Bug#400234: ITP: tdmenu -- tdmenu offers a new menu-method for the menu package

2006-11-25 Thread Michelle Konzack
Next one...

Am 2006-11-24 19:40:06, schrieb Michelle Konzack:
> Hello,
> 
> since 0.2.0 was build without errors I have uploaded 0.3.0.
> Currently I am working on 0.4.0 which containg 44 languages.
> 
> I think, I get the weekend the 5 missing languages from menu 2.1.32.
> 
> Does anyone know, which Debian-Package I must install to have Khmer
> in Katoob and The Gimp?
- END OF REPLIED MESSAGE -


Release 0.4.0 is currently in the upload and arrive in some minutes
on .  Font for Khmer is still missing.

Since I have gotten the new menu package version 2.1.32 I will
update "tdmenu" this weekend to the missing languages.

TODO:   Add infos on usefull fonts to the readme.DEBIAN file.
(For new users it is THE HELL to get the right fonts and the
right Debian packages installed)

Note:   defoma does not recognize all fonts under Sarge and Etch and
I have to add manualy "FontPath" lines to the Xorg config plus
creating the font.scaled and font.dir files.  This behaviour
show up since Debian use /usr/share/fonts/truetype and not more
/usr/X11R6/lib/X11/fonts/TrueType.  All fonts in the later
directory are recognized by X and the WM the new directory only
by X-Apps.

The lines:
FontPath "/usr/lib/defoma/x-ttcidfont-conf.d/CID"
FontPath "/usr/lib/defoma/x-ttcidfont-conf.d/TrueType"
do not work (except for X-Apps) but the added ones:
FontPath"/usr/share/fonts/truetype"
FontPath"/usr/share/fonts/truetype/alee"
FontPath"/usr/share/fonts/truetype/ttf-bitstream-vera"
FontPath"/usr/share/fonts/truetype/ttf-arabeyes"
FontPath"/usr/share/fonts/truetype/openoffice"
FontPath"/usr/share/fonts/truetype/freefont"
FontPath"/usr/share/fonts/truetype/ttf-bengali-fonts"
FontPath"/usr/share/fonts/truetype/ttf-farsiweb"
FontPath"/usr/share/fonts/truetype/ttf-kacst"
FontPath"/usr/share/fonts/truetype/ttf-paktype"
FontPath"/usr/share/fonts/truetype/arhangai"
FontPath"/usr/share/fonts/truetype/arphic"
FontPath"/usr/share/fonts/truetype/baekmuk"
FontPath"/usr/share/fonts/truetype/ttf-mgopen"
FontPath"/usr/share/fonts/truetype/kochi"
FontPath"/usr/share/fonts/truetype/ttf-devanagari-fonts"
FontPath"/usr/share/fonts/truetype/ttf-gujarati-fonts"
FontPath"/usr/share/fonts/truetype/ttf-kannada-fonts"
FontPath"/usr/share/fonts/truetype/ttf-malayalam-fonts"
FontPath"/usr/share/fonts/truetype/ttf-oriya-fonts"
FontPath"/usr/share/fonts/truetype/ttf-punjabi-fonts"
FontPath"/usr/share/fonts/truetype/ttf-tamil-fonts"
FontPath"/usr/share/fonts/truetype/ttf-telugu-fonts"
FontPath"/usr/share/fonts/truetype/ttf-junicode"
FontPath"/usr/share/fonts/truetype/ttf-summersby"
FontPath"/usr/share/fonts/truetype/thryomanes"
FontPath"/usr/share/fonts/truetype/ttf-tmuni"
FontPath"/usr/share/fonts/truetype/unfonts"
FontPath"/usr/share/fonts/truetype/uralic"
FontPath"/usr/share/fonts/truetype/thai"
Which I generate from a script automaticaly


Thanks, Greetings and nice Day
Michelle Konzack
Systemadministrator
Tamay Dogan Network
Debian GNU/Linux Consultant






-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
   50, rue de Soultz MSM LinuxMichi
0033/6/6192519367100 Strasbourg/France   IRC #Debian (irc.icq.com)


signature.pgp
Description: Digital signature


Re: Updated bmpx

2006-11-25 Thread Frédéric Brin
Le samedi 25 novembre 2006 à 16:49 +0100, Daniel Baumann a écrit :
> Frédéric Brin wrote:
> > I've built updated packages of bmpx. This packages now uses cdbs and 
> > correct the three bugs for bmpx on the bug database.
> > I also plan to include the firefox plugin in a next release. I currently 
> > have no news from the current maintainer.
> 
> I'm the sponsor for bmpx. Thierry, the maintainer of bmpx, is not MIA.
> Therefore, you should send patches to him instead of repackging bmpx.
> 

I sent a mail to Thierry this week, but had no answer from him. Well I
will try to get in touch with him again. Is the address randrianiriana
at gmail.com still ok ?

> > I would be glad if someone uploaded this package for 
> 
> Even if the maintainer would be MIA, the package would need to be
> orphaned before when not fixing release-critical bugs. Everything else
> is considered abusive.

Sorry about this :( I just wanted to give some help.

> 
> -- 
> Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
> Email:  [EMAIL PROTECTED]
> Internet:   http://people.panthera-systems.net/~daniel-baumann/
> 
> 


signature.asc
Description: Ceci est une partie de message	numériquement signée


Re: RFC: AKFQuiz (was: new here)

2006-11-25 Thread Andreas K. Foerster
Am Samstag, dem 25. Nov 2006 schrieb James Westby:

> If you don't even have a configure script to call then I apologise for
> this sub thread, go ahead and delete the code. I assumed that this code
> would only be generated if you had a configure script.

I do have a configure script, one I have written on my own though.
Please read the first posting of this thread.

My configure script doesn't support "--build" and "--host" (yet).
Although I tried to be compatible to the GNU Coding Standards 
(section 7.1) as much as was feasible for me. So my script accepts 
these parameters, but it just prints a warning, that they are 
still unsupported (some others are silently ignored).

BTW. The programs are not written in C, but in Pascal. The autotools
have IMHO no support for Pascal (yet?).

-- 
AKFoerster


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



RFS: uncrustify

2006-11-25 Thread Johann Rudloff
Dear mentors,

I am looking for a sponsor for my package "uncrustify".

* Package name: uncrustify
  Version : 0.30-1
  Upstream Author : Ben Gardner 
* URL : http://uncrustify.sourceforge.net/
* License : GPL
  Section : devel

It builds these binary packages:
uncrustify - C, C++, C#, D, Java and Pawn source code beautifier

The package is lintian and pbuilder clean.

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/u/uncrustify
- Source repository: deb-src http://mentors.debian.net/debian unstable main 
contrib non-free
- dget 
http://mentors.debian.net/debian/pool/main/u/uncrustify/uncrustify_0.30-1.dsc

I would be glad if someone uploaded this package for me.

Johann Rudloff


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



Re: Updated bmpx

2006-11-25 Thread Daniel Baumann
Frédéric Brin wrote:
> I sent a mail to Thierry this week, but had no answer from him. Well I
> will try to get in touch with him again. Is the address randrianiriana
> at gmail.com still ok ?

The address is correct. However, is maybe just busy right now, or on
vacances, or.. who knows after only waiting for a few days.

> Sorry about this :( I just wanted to give some help.

Sure, no problem.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: RFS: meep

2006-11-25 Thread Daniel Baumann
Daniel Baumann wrote:
> I consider a non-arch specific library useless as long as fails
> to build on those archs.

s/library/package/

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: RFC: AKFQuiz (was: new here)

2006-11-25 Thread Andreas K. Foerster
Am Freitag, dem 24. Nov 2006 schrieb Thibaut Paumard:

> One more thing: if it's not done already, submit an ITP bug.

Done
Bug#400310

> Have it closed from your changelog.

it's too early...?

-- 
AKFoerster


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



Re: RFS: knetstats

2006-11-25 Thread Ritesh Raj Sarraf
Daniel Baumann wrote:

> Daniel Baumann wrote:
>> if you fix above things, i'm happy to sponsor the package.
> 
> did you fix the package already?
> 

I didn't receive your earlier message for some reason. Sorry. 
I did check my mailbox (along with the spam folder) but couldn't find the email.

Thanks for the points you've mentioned. I'll try fixing those problems and
re-upload.

Thanks,
Ritesh
-- 
Ritesh Raj Sarraf
RESEARCHUT - http://www.researchut.com
"Necessity is the mother of invention."
"Stealing logic from one person is plagiarism, stealing from many is research."
"The great are those who achieve the impossible, the petty are those who
cannot - rrs"


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



Re: RFS: meep

2006-11-25 Thread Loïc Le Guyader
Daniel Baumann  debian.org> writes:
> Please fix it.

After discussion on #debian-devel-mentors, we found that the Build-Depends was
not correct. It was atlas3-base-dev | lapack3-dev, like for mpb, but it should
be atlas3-base-dev, lapack3-dev.

I think there is a bug in mpb, as from the doc, meep and mpb both need BLAS
*and* LAPACK to be build.

At least now it should compile with pbuilder.

New package on mentors.debian.net
http://mentors.debian.net/debian/pool/main/m/meep/

Cheers.


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



Re: RFS: knetstats

2006-11-25 Thread Daniel Baumann
Ritesh Raj Sarraf wrote:
> I didn't receive your earlier message for some reason. Sorry. 
> I did check my mailbox (along with the spam folder) but couldn't find the 
> email.

I didn't sent it to you personally, but to the mailinglist (which you
oviously should check when asking for sponsoring there).

> Thanks for the points you've mentioned. I'll try fixing those problems and
> re-upload.

good.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: RFS: meep

2006-11-25 Thread Daniel Baumann
Loïc Le Guyader wrote:
> I think there is a bug in mpb, as from the doc, meep and mpb both need BLAS
> *and* LAPACK to be build.

can you check that for mpb and, if needed, report a bug against it?

> At least now it should compile with pbuilder.

yes, uploaded, thanks.

write me off-list if you want/need further sponsoring.
http://people.debian.org/~daniel/documents/sponsoring.html#contact

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: RFS: uncrustify

2006-11-25 Thread Daniel Baumann
Johann Rudloff wrote:
> - dget 
> http://mentors.debian.net/debian/pool/main/u/uncrustify/uncrustify_0.30-1.dsc

  * imho, priority optional is here better than extra.

  * ${misc:Depends} is useless here

  * your debian/copyright is incomplete, there are files copyrighted by
others than you mentioned in debain/copyright. look at
tinyerp-client from unstable how to do a multiple-copyright-holder
copyright file.

  * NEWS and README installed by debian/docs do not contain any usuefull
information, remove them.

  * remove the useless commented stuff in debian/rules.

  * don't use two empty lines as seperator in debian/rules, one is just
enough.

the rest is good. if you fix above things, i'm happy to sponsor it.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: Help About: to propose package

2006-11-25 Thread Matthew Palmer
On Sat, Nov 25, 2006 at 02:15:35PM +0100, Salokine wrote:
> I learn to create my first new package (tremulous-mappack). I've finished to 
> create it and download to ftp//mentors.debian.net.
> 
> What must I do now to continue integration process ?
> Why my package isn't to "My Packages" view ?
> Why don't I received email confirmation ?
> Where can I say "Need Sponsor = Yes" ?
> Is my package too big ?
> 
> Sorry for my basic questions ...

The FAQ list might answer some of your questions:
http://people.debian.org/~mpalmer/debian-mentors_FAQ.html

- Matt


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