RFS: amispammer (updated package)

2011-07-13 Thread Julián Moreno Patiño
Dear mentors,

I am looking for a sponsor for the new version 3.2-1 of my package amispammer.

It builds these binary packages:
amispammer - Powerful Mail Server checker on blacklists

The package appears to be lintian clean.

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/a/amispammer
- Source repository: deb-src http://mentors.debian.net/debian unstable main 
contrib non-free
- dget 
http://mentors.debian.net/debian/pool/main/a/amispammer/amispammer_3.2-1.dsc

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

Kind regards,

-- 
Julián Moreno Patiño
 .''`. Debian GNU/{Linux,KfreeBSD}
: :' : Free Operating Systems
`. `'  http://debian.org/
  `-   PGP KEY ID 6168BF60
Registered GNU Linux User ID 488513


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110713060333.GA4912@r2d2



Re: RFS: amispammer (updated package)

2011-07-13 Thread Salvatore Bonaccorso
Hi Julian

On Wed, Jul 13, 2011 at 01:03:34AM -0500, Julián Moreno Patiño wrote:
 Dear mentors,
 
 I am looking for a sponsor for the new version 3.2-1 of my package 
 amispammer.
 
 It builds these binary packages:
 amispammer - Powerful Mail Server checker on blacklists
 
 The package appears to be lintian clean.
 
 The package can be found on mentors.debian.net:
 - URL: http://mentors.debian.net/debian/pool/main/a/amispammer
 - Source repository: deb-src http://mentors.debian.net/debian unstable main 
 contrib non-free
 - dget 
 http://mentors.debian.net/debian/pool/main/a/amispammer/amispammer_3.2-1.dsc
 
 I would be glad if someone uploaded this package for me.

I have uploaded the package.

Many thanks for your work.

Regards
Salvatore


signature.asc
Description: Digital signature


Re: RFS: amispammer (updated package)

2011-07-13 Thread Paul Wise
It is already uploaded, but why do you need bzip2 compression in the
.deb for such a tiny package??

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAKTje6F+ziW=g60+uposrsd6h17es2bdzeghhkrovyp6wab...@mail.gmail.com



Re: RFS: amispammer

2010-05-04 Thread Julián Moreno Patiño
Hi,



 Also some comments about the upstream program:

  · 'require getopt.pl;'
   This is no longer maintained and deprecated.  It only exists for
   compatibility with Perl 4(!) programs.  getopt.pl suggests
   Getopt::Long or Getopt::Std as alternatives.

  · 'system(renice 20 $$  /dev/null) if ($OSNAME ne MSWin32);'
   Perl has a setpriority function.  See perlfunc(1).

  · Use of threads:
   I believe that using Net::DNS::Async instead of starting over 90
   threads for one DNS query each would make more sense.  Or use
   Net::RBLClient, a Perl module to query multiple RBLs in parallel.

  · auto_get_ip:
   Screen-scraping web pages is likely to break in the future.
   Also using split twice instead of /.../ to directly extract the IP
   address is bad.

  · Using use strict; and use warnings; is usually a good idea.


Upstream author has commented from BTS and will take these changes in next
releases, please see:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=579499

Kind Regards,

-- 
Julián Moreno Patiño
Registered GNU Linux User ID 488513
PGP KEY ID 6168BF60


Re: RFS: amispammer

2010-05-01 Thread Ansgar Burchardt
Hi,

Julián Moreno Patiño darkju...@gmail.com writes:

 * Package name   : amispammer
   Version  : 3.1-1

 The upload would fix these bugs: 579499

I am not a DD and cannot upload your package, but though I would give
some comments:

 · debian/rules: The override_dh_auto_install target is useless.
 · debian/amispammer.install, debian/amispammer.links:
   Why don't you install the script directly to /usr/bin?
 · debian/control: The last line of the description contains only a
   single dot.

Also some comments about the upstream program:

 · 'require getopt.pl;'
   This is no longer maintained and deprecated.  It only exists for
   compatibility with Perl 4(!) programs.  getopt.pl suggests
   Getopt::Long or Getopt::Std as alternatives.

 · 'system(renice 20 $$  /dev/null) if ($OSNAME ne MSWin32);'
   Perl has a setpriority function.  See perlfunc(1).

 · Use of threads:
   I believe that using Net::DNS::Async instead of starting over 90
   threads for one DNS query each would make more sense.  Or use
   Net::RBLClient, a Perl module to query multiple RBLs in parallel.

 · auto_get_ip:
   Screen-scraping web pages is likely to break in the future.
   Also using split twice instead of /.../ to directly extract the IP
   address is bad.

 · Using use strict; and use warnings; is usually a good idea.

Regards,
Ansgar


--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87d3xgjhtr@marvin.43-1.org



Re: RFS: amispammer

2010-05-01 Thread Julián Moreno Patiño
Hi Ansgar,


2010/5/1 Ansgar Burchardt ans...@43-1.org

 Hi,

 Julián Moreno Patiño darkju...@gmail.com writes:

  * Package name   : amispammer
Version  : 3.1-1
 
  The upload would fix these bugs: 579499

 I am not a DD and cannot upload your package, but though I would give
 some comments:

  · debian/rules: The override_dh_auto_install target is useless.
  · debian/amispammer.install, debian/amispammer.links:
   Why don't you install the script directly to /usr/bin?
  · debian/control: The last line of the description contains only a
   single dot.


Done, I fixed all, I've uploaded it again.



 Also some comments about the upstream program:

  · 'require getopt.pl;'
   This is no longer maintained and deprecated.  It only exists for
   compatibility with Perl 4(!) programs.  getopt.pl suggests
   Getopt::Long or Getopt::Std as alternatives.

  · 'system(renice 20 $$  /dev/null) if ($OSNAME ne MSWin32);'
   Perl has a setpriority function.  See perlfunc(1).

  · Use of threads:
   I believe that using Net::DNS::Async instead of starting over 90
   threads for one DNS query each would make more sense.  Or use
   Net::RBLClient, a Perl module to query multiple RBLs in parallel.

  · auto_get_ip:
   Screen-scraping web pages is likely to break in the future.
   Also using split twice instead of /.../ to directly extract the IP
   address is bad.

  · Using use strict; and use warnings; is usually a good idea.


Ok, I am going to write to upstream author to suggest these changes.



Kind Regards,

-- 
Julián Moreno Patiño
Registered GNU Linux User ID 488513
PGP KEY ID 6168BF60


RFS: amispammer

2010-04-30 Thread Julián Moreno Patiño
Dear mentors,

I am looking for a sponsor for my package amispammer.

* Package name: amispammer
  Version : 3.1-1
  Upstream Author : Lorenzo Martínez Rodríguez
* URL : http://www.lorenzomartinez.es/projs/amispammer/
* License : GPL-3
  Section : net

It builds these binary packages:
amispammer - Powerful Mail Server checker on blacklists

The package appears to be lintian clean.

The upload would fix these bugs: 579499

My motivation for maintaining this package is: Because is excelent tool to
check my Mail Servers.

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

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


Kind Regards,

-- 
Julián Moreno Patiño
Registered GNU Linux User ID 488513
PGP KEY ID 6168BF60