[pkg-java] r11327 - in trunk/maven-debian-helper: bin debian

Ludovic Claude ludovicc-guest at alioth.debian.org
Mon Jan 4 22:36:24 UTC 2010


Author: ludovicc-guest
Date: 2010-01-04 22:36:21 +0000 (Mon, 04 Jan 2010)
New Revision: 11327

Modified:
   trunk/maven-debian-helper/bin/mh_make
   trunk/maven-debian-helper/debian/changelog
   trunk/maven-debian-helper/debian/rules
Log:
mh_make falls back on EMAIL when DEBEMAIL is not set

Modified: trunk/maven-debian-helper/bin/mh_make
===================================================================
--- trunk/maven-debian-helper/bin/mh_make	2010-01-04 09:20:44 UTC (rev 11326)
+++ trunk/maven-debian-helper/bin/mh_make	2010-01-04 22:36:21 UTC (rev 11327)
@@ -35,6 +35,11 @@
 fi
 
 if [ -z "$DEBEMAIL" ]; then
+  # Fall back on EMAIL when DEBEMAIL is not defined
+  DEBEMAIL=$EMAIL
+fi
+
+if [ -z "$DEBEMAIL" ]; then
   echo "Please define the environment variable DEBEMAIL, e.g."
   echo "export DEBEMAIL=\"john.doe at where.no\""
   return;

Modified: trunk/maven-debian-helper/debian/changelog
===================================================================
--- trunk/maven-debian-helper/debian/changelog	2010-01-04 09:20:44 UTC (rev 11326)
+++ trunk/maven-debian-helper/debian/changelog	2010-01-04 22:36:21 UTC (rev 11327)
@@ -1,3 +1,9 @@
+maven-debian-helper (0.8) UNRELEASED; urgency=low
+
+  * mh_make falls back on EMAIL when DEBEMAIL is not set
+
+ -- Ludovic Claude <ludovic.claude at laposte.net>  Mon, 04 Jan 2010 23:13:29 +0100
+
 maven-debian-helper (0.7) unstable; urgency=low
 
   [Ludovic Claude]

Modified: trunk/maven-debian-helper/debian/rules
===================================================================
--- trunk/maven-debian-helper/debian/rules	2010-01-04 09:20:44 UTC (rev 11326)
+++ trunk/maven-debian-helper/debian/rules	2010-01-04 22:36:21 UTC (rev 11327)
@@ -53,7 +53,5 @@
 
 clean::
 	-rm -rf debian/tmp
-	$(RM) man/mvn-debian.1
-
-clean::
-	$(RM) man/mvn-debian.1
+	-$(RM) man/mvn-debian.1
+	mh_unpatchpoms -p$(PACKAGE)




More information about the pkg-java-commits mailing list