[SCM] UNNAMED PROJECT branch, master, updated. 0.34-3-gaea5dbd

Niels Thykier nthykier at alioth.debian.org
Sat May 14 09:22:17 UTC 2011


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  aea5dbd98c12821d082a5087ec740119f78f2a33 (commit)
      from  1b9079521b94acb0b5698610c861181b9c6d2b1b (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 aea5dbd98c12821d082a5087ec740119f78f2a33
Author: Niels Thykier <niels at thykier.net>
Date:   Sat May 14 11:19:13 2011 +0200

    Made jh_depends ignore links as it will process the target anyway

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

Summary of changes:
 debian/changelog |    3 +++
 jh_depends       |    4 +++-
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a240ea9..9884093 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,9 @@ javatools (0.35) UNRELEASED; urgency=low
     FTBFS instead of silently not shipping a jar file.
     (Closes: #626327)
   * Improved support for --no-act in jh_manifest.
+  * Made jh_depends ignore links to jars as these most likely points
+    to real jar files that it will end up processing any way.
+    (Closes: #610817)
 
  -- Niels Thykier <niels at thykier.net>  Sat, 14 May 2011 10:35:48 +0200
 
diff --git a/jh_depends b/jh_depends
index 1bce83c..c191afe 100755
--- a/jh_depends
+++ b/jh_depends
@@ -113,7 +113,9 @@ for p in $PACKAGES; do
       echo "Searching $PACKAGEDIR for $p"
    fi
 
-   JARS=`find $PACKAGEDIR -name '*.jar'`
+   # Assume all links to jars points to real jars, so we do not
+   #  have to process links... hopefully.
+   JARS=`find $PACKAGEDIR -type f -a -name '*.jar'`
 
    if [ -n "$VERBOSE" ]; then
       echo "Searching" $JARS


hooks/post-receive
-- 
UNNAMED PROJECT



More information about the pkg-java-commits mailing list