This is an automated email from the git hooks/post-receive script. nomadium pushed a commit to annotated tag debian/1.50.0-7 in repository bnd.
commit d999b0f75e5764a76bc8d23466d6ba7752c591f2 Author: Damien Raude-Morvan <[email protected]> Date: Thu Aug 15 13:32:51 2013 +0000 * d/rules: Don't fail clean target if there is no things to delete. * Upload to unstable. --- debian/changelog | 7 ++++++- debian/rules | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 05d465f..591f368 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 @@ bnd (1.50.0-6) UNRELEASED; urgency=low * 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 <[email protected]> Fri, 26 Jul 2013 11:28:27 +0200 bnd (1.50.0-5) unstable; urgency=low diff --git a/debian/rules b/debian/rules index e6d0e25..fff8edc 100755 --- a/debian/rules +++ b/debian/rules @@ -112,13 +112,13 @@ binary-post-install/$(PACKAGE):: 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) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/bnd.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

