Well,
here my first patch proposal
The issue :
On my system, the svn info output is :
Chemin : .
URL :
https://[email protected]/sv ... inux/trunk
Racine du dépôt :
https://[email protected]/sv ... lite-linux
UUID du dépôt : 127b21dd-08f5-0310-b4b7-95ae10353056
Révision : 4371
Type de nœud : répertoire
Tâche programmée : normale
Auteur de la dernière modification : another_cmdr
Révision de la dernière modification : 4371
Date de la dernière modification: 2011-02-17 20:58:05 +0100 (jeu. 17 févr. 2011)
It is due to my locale : fr_FR.utf8. In english the revision line is "Revision: 4371"
I've made the following modification in the Makefile :
#SVNREVISION := $(shell svn info | grep Revision | cut -d ' ' -f 2)
SVNREVISION := $(shell svn info | grep -e '^[A-Za-z][A-Za-z]*.: [0-9][0-9]*' | cut -d ' ' -f 2)
It work now both with french and english locale on my system, a Debian testing.
The package built correctly without any other change. I've used make -f Makefile pkg-debsnapshot
Regards,
B.