Bug#489597: [fslint] fslint: patch for bashism issue

2009-07-03 Thread Pádraig Brady
Raphael Geissert wrote:
 On Wednesday 17 September 2008 04:08:53 Pádraig Brady wrote:
 Adam D. Barratt wrote:
 Hi,

 On Mon, 2008-08-11 at 10:22 +0100, Pádraig Brady wrote:
 I've already addressed this in 2.27
 I'll try and release this ASAP.
 Any news on that? :)
 The new package is languishing on mentors as usual:
 http://mentors.debian.net/cgi-bin/maintainer-packages?action=details;packag
 e=fslint
 
 Sure, but not prodding and not requesting its sponsorship in the -mentors 
 mailing list doesn't help either.

I do prod the list occasionally.

 Will upload it in a moment.

thanks!
BTW I've joined the python apps packaging team
with a view to getting this in more quickly myself in future
https://alioth.debian.org/projects/python-apps/

cheers,
Pádraig.



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#489597: [fslint] fslint: patch for bashism issue

2009-07-03 Thread Raphael Geissert
On Friday 03 July 2009 04:05:16 Pádraig Brady wrote:
 Raphael Geissert wrote:
  Sure, but not prodding and not requesting its sponsorship in the -mentors
  mailing list doesn't help either.

 I do prod the list occasionally.

Correct me if I'm wrong, but I didn't see any RFS for fslint in -mentors since 
version .26.


  Will upload it in a moment.

 thanks!
 BTW I've joined the python apps packaging team
 with a view to getting this in more quickly myself in future
 https://alioth.debian.org/projects/python-apps/


Great. You can now make your package lintian clean (try other options such 
as -I, -E, and even --pedantic) and look for a sponsor there.

Cheers,
-- 
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#489597: [fslint] fslint: patch for bashism issue

2009-07-02 Thread Raphael Geissert
On Wednesday 17 September 2008 04:08:53 Pádraig Brady wrote:
 Adam D. Barratt wrote:
  Hi,
 
  On Mon, 2008-08-11 at 10:22 +0100, Pádraig Brady wrote:
  I've already addressed this in 2.27
  I'll try and release this ASAP.
 
  Any news on that? :)

 The new package is languishing on mentors as usual:
 http://mentors.debian.net/cgi-bin/maintainer-packages?action=details;packag
e=fslint

Sure, but not prodding and not requesting its sponsorship in the -mentors 
mailing list doesn't help either.

Will upload it in a moment.

Regards,
-- 
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net


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


Bug#489597: [fslint] fslint: patch for bashism issue

2008-09-17 Thread Pádraig Brady
Adam D. Barratt wrote:
 Hi,
 
 On Mon, 2008-08-11 at 10:22 +0100, Pádraig Brady wrote:
 I've already addressed this in 2.27
 I'll try and release this ASAP.
 
 Any news on that? :)

The new package is languishing on mentors as usual:
http://mentors.debian.net/cgi-bin/maintainer-packages?action=details;package=fslint

cheers,
Pádraig.



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



Bug#489597: [fslint] fslint: patch for bashism issue

2008-09-16 Thread Adam D. Barratt
Hi,

On Mon, 2008-08-11 at 10:22 +0100, Pádraig Brady wrote:
 I've already addressed this in 2.27
 I'll try and release this ASAP.

Any news on that? :)

Regards,

Adam



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



Bug#489597: [fslint] fslint: patch for bashism issue

2008-08-11 Thread Pádraig Brady
I've already addressed this in 2.27
I'll try and release this ASAP.

thanks,
Pádraig



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



Bug#489597: [fslint] fslint: patch for bashism issue

2008-08-06 Thread Davide
Package: fslint
Version: 2.26-2

--- Please enter the report below this line. ---
The attached (trivial) patch should fix the issue. It would be nice if
this could get into lenny, since fixing bashisms in /bin/sh scripts is a
release goal.

Regards,
Davide Cavalca

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.25-2-amd64

Debian Release: lenny/sid
  500 testing www.debian-multimedia.org 
  500 testing security.debian.org 
  500 testing mi.mirror.garr.it 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
| 

diff -Naur fslint-2.26/fslint/supprt/rmlint/fixdup.sh fslint-2.26a/fslint/supprt/rmlint/fixdup.sh
--- fslint-2.26/fslint/supprt/rmlint/fixdup.sh	2007-06-19 12:10:48.0 +0200
+++ fslint-2.26a/fslint/supprt/rmlint/fixdup.sh	2008-08-06 18:52:11.0 +0200
@@ -24,11 +24,11 @@
   elif [ nextfile = $keepfile ]; then
 keepfile=$file
 if [ $dryRun = 1 ]; then
-echo -ne \nkeeping $keepfile\t
+printf \nkeeping $keepfile\t
 if [ $link = 1 ]; then
-echo -ne hardlinking: 
+printf hardlinking: 
 else
-echo -ne deleting: 
+printf deleting: 
 fi
 fi
   else