[pkg-java] r17147 - trunk/bnd/debian

Damien Raude-Morvan drazzib at alioth.debian.org
Thu Aug 15 13:32:52 UTC 2013


Author: drazzib
Date: 2013-08-15 13:32:51 +0000 (Thu, 15 Aug 2013)
New Revision: 17147

Modified:
   trunk/bnd/debian/changelog
   trunk/bnd/debian/rules
Log:
* d/rules: Don't fail clean target if there is no things to delete.
* Upload to unstable.

Modified: trunk/bnd/debian/changelog
===================================================================
--- trunk/bnd/debian/changelog	2013-08-15 12:46:11 UTC (rev 17146)
+++ trunk/bnd/debian/changelog	2013-08-15 13:32:51 UTC (rev 17147)
@@ -1,5 +1,6 @@
-bnd (1.50.0-6) UNRELEASED; urgency=low
+bnd (1.50.0-6) unstable; urgency=low
 
+  [ Emmanuel Bourg ]
   * Added a patch to compile with Ant 1.9 (Closes: #712343)
   * Fixed the unmappable character errors during the compilation
   * debian/watch: Updated to catch the recent releases on Github
@@ -9,6 +10,10 @@
   * debian/rules: Improved the clean target
   * Updated the Maven pom
 
+  [ Damien Raude-Morvan ]
+  * d/rules: Don't fail clean target if there is no things to delete.
+  * Upload to unstable.
+
  -- Emmanuel Bourg <ebourg at apache.org>  Fri, 26 Jul 2013 11:28:27 +0200
 
 bnd (1.50.0-5) unstable; urgency=low

Modified: trunk/bnd/debian/rules
===================================================================
--- trunk/bnd/debian/rules	2013-08-15 12:46:11 UTC (rev 17146)
+++ trunk/bnd/debian/rules	2013-08-15 13:32:51 UTC (rev 17147)
@@ -112,13 +112,13 @@
 	mv $(DEB_DESTDIR)/usr/bin/bnd.sh $(DEB_DESTDIR)/usr/bin/bnd
 
 clean::
-	rm -f debian/stamp-bootstrap
-	find -type l -name '*.jar' | xargs rm
+	-rm -f debian/stamp-bootstrap
+	-find -type l -name '*.jar' | xargs rm
 	jh_clean
 	mh_clean
 	-rm -rf install/
 	-rm -f debian/bnd.1
-	rm -Rf bootstrap
+	-rm -Rf bootstrap
 
 get-orig-source:
 	debian/orig-tar.sh "" $(VERSION)




More information about the pkg-java-commits mailing list