[SCM] UNNAMED PROJECT branch, master, updated. 0.30-21-g61dab32
Niels Thykier
nthykier-guest at alioth.debian.org
Fri Jul 2 13:08:44 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 61dab3298ae9d4ffb23c8e4dd7d1fd4e33936464 (commit)
from f2759620fb4c18b55fc36363862d4b75fac16379 (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 61dab3298ae9d4ffb23c8e4dd7d1fd4e33936464
Author: Niels Thykier <niels at thykier.net>
Date: Fri Jul 2 15:07:20 2010 +0200
Made jh_depends create (>= ${source:Version}) depends rather than
(= ${binary:Version}), which breaks with binNMUs.
It could be upgraded to intelligently choosing the correct type of
dependency based on the package types.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 2 ++
jh_depends | 2 +-
2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 2d5afc5..69062cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -20,6 +20,8 @@ javatools (0.32) UNRELEASED; urgency=low
has been removed from the archive. "sun" is now an alias of "sun6".
* The --jvm "gcj" value for jh_depends now uses gcj-jre and not
java-gcj-compat, since the latter is now a virtual package.
+ * Made jh_depends produce (>= ${source:Version}) instead of
+ (= ${binary:Version}). The latter would break with binNMUs.
-- Niels Thykier <niels at thykier.net> Wed, 23 Jun 2010 16:16:59 +0200
diff --git a/jh_depends b/jh_depends
index 37eebbd..9964f8d 100755
--- a/jh_depends
+++ b/jh_depends
@@ -158,7 +158,7 @@ for p in $PACKAGES; do
echo "Checking: " $OLDDIR/debian/$j$realjar
fi
if [ -f $OLDDIR/debian/$j$realjar ]; then
- LOCALDEBDEPS="$LOCALDEBDEPS $j (= \${binary:Version})"
+ LOCALDEBDEPS="$LOCALDEBDEPS $j (\>= \${source:Version})"
else
NEWJARDEPS="$NEWJARDEPS $realjar"
fi
hooks/post-receive
--
UNNAMED PROJECT
More information about the pkg-java-commits
mailing list