[SCM] UNNAMED PROJECT branch, master, updated. 0.30-44-g41d200f

Niels Thykier nthykier-guest at alioth.debian.org
Tue Aug 3 20:19:36 UTC 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "UNNAMED PROJECT".

The branch, master has been updated
       via  41d200fc0567ab5bd7375fc1f10b1d99d23ababf (commit)
      from  21687e5942bab1c6a6672322dfa56f41abf7a906 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 41d200fc0567ab5bd7375fc1f10b1d99d23ababf
Author: Niels Thykier <niels at thykier.net>
Date:   Tue Aug 3 22:19:18 2010 +0200

    Reordered the javahelper sequence so that jh_installlibs is now run
    before jh_classpath and jh_manifest.

-----------------------------------------------------------------------

Summary of changes:
 debian/changelog |    2 ++
 javahelper.pm    |    6 +++---
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d50609b..233a25e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -33,6 +33,8 @@ javatools (0.32) UNRELEASED; urgency=low
     - comments are now allowed in d/manifest files.
     - it will now produce a warning if a jar file listed in a d/manifest-
       file cannot be found (unless the jar was excluded).
+  * Reordered the javahelper sequence so that jh_installlibs is now run
+    before jh_classpath and jh_manifest.
 
   [ Matthew Johnson ]
   * If jars aren't specified by absolute path try finding them under
diff --git a/javahelper.pm b/javahelper.pm
index 5bedca8..b2fe5fd 100644
--- a/javahelper.pm
+++ b/javahelper.pm
@@ -3,10 +3,10 @@ use warnings;
 use strict;
 use Debian::Debhelper::Dh_Lib;
 
-insert_before("dh_compress", "jh_classpath");
+insert_before("dh_compress", "jh_installlibs");
+insert_after("jh_installlibs", "jh_classpath");
 insert_after("jh_classpath", "jh_manifest");
-insert_after("jh_manifest", "jh_installlibs");
-insert_after("jh_installlibs", "jh_exec");
+insert_after("jh_manifest", "jh_exec");
 insert_after("jh_exec", "jh_depends");
 insert_before("dh_installdocs", "jh_installjavadoc");
 insert_before("dh_clean", "jh_clean");


hooks/post-receive
-- 
UNNAMED PROJECT



More information about the pkg-java-commits mailing list