This is an automated email from the git hooks/post-receive script. seamlik-guest pushed a commit to branch master in repository lucene2.
commit e978ae026519d1d35e2adb7952483b4b39ce6583 Author: Jan-Pascal van Best <[email protected]> Date: Fri Aug 21 11:52:34 2009 +0000 2.9.0-dev as of 20090821 now builds --- debian/ant.properties | 2 +- debian/changelog | 5 +++-- debian/control | 2 +- debian/get-orig-source.sh | 13 +++++++++---- debian/rules | 7 ++----- 5 files changed, 16 insertions(+), 13 deletions(-) diff --git a/debian/ant.properties b/debian/ant.properties index 61f12c8..3d5b28c 100644 --- a/debian/ant.properties +++ b/debian/ant.properties @@ -2,7 +2,7 @@ # Version number for upstream source; errors in the # upstream source require that it be overridden. -version=2.4.1 +version=2.9.0~rc0 # javacc settings used by Lucene build javacc.home=/usr/share/java diff --git a/debian/changelog b/debian/changelog index d8a8e18..09c0ee8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,10 @@ -lucene2 (2.9-dev+ds1-1) unstable; urgency=low +lucene2 (2.9.0~rc0+ds1-1) unstable; urgency=low * New upstream version * Updated Debian patches for Lucene 2.9 + * Bumped standards version to 3.8.2 (no changes needed) - -- Jan-Pascal van Best <[email protected]> Thu, 20 Aug 2009 09:17:55 +0200 + -- Jan-Pascal van Best <[email protected]> Fri, 21 Aug 2009 13:51:10 +0200 lucene2 (2.4.1+ds1-1) unstable; urgency=low diff --git a/debian/control b/debian/control index 1787591..20de6fe 100644 --- a/debian/control +++ b/debian/control @@ -21,7 +21,7 @@ Build-Depends-Indep: libjtidy-java (>= 7), libcommons-logging-java (>= 1.0.4), libcommons-beanutils-java (>= 1.7.0), libcommons-compress-java -Standards-Version: 3.8.1 +Standards-Version: 3.8.2 Package: liblucene2-java Architecture: all diff --git a/debian/get-orig-source.sh b/debian/get-orig-source.sh index 5cd0797..b712c1f 100755 --- a/debian/get-orig-source.sh +++ b/debian/get-orig-source.sh @@ -4,11 +4,13 @@ DEHS=`( uscan --dehs )` URL=`echo $DEHS | xsltproc debian/uscan-url.xslt -` VERSION=`echo $DEHS | xsltproc debian/uscan-upstream-version.xslt -` +UPSTREAM_VERSION="2.9-dev" +VERSION="2.9.0~rc0" DEBIAN_SOURCE_VERSION="$VERSION+ds1" DESTDIR=$PWD/.. -SOURCEFILE=$DESTDIR/lucene-$VERSION-src.tar.gz -SIGFILE=$DESTDIR/lucene-$VERSION-src.tar.gz.asc +SOURCEFILE=$DESTDIR/lucene-$UPSTREAM_VERSION-src.tar.gz +SIGFILE=$DESTDIR/lucene-$UPSTREAM_VERSION-src.tar.gz.asc SOURCETAR=$DESTDIR/lucene2_$DEBIAN_SOURCE_VERSION.orig.tar KEYURL="http://www.apache.org/dist/lucene/java/KEYS" @@ -16,8 +18,11 @@ KEYFILE="debian/KEYS" KEYRING="debian/lucene-keyring.gpg" # Download source tarball and signature file -wget "$URL" -O $SOURCEFILE -wget "$URL.asc" -O $SIGFILE +if [ ! -r "$SOURCEFILE" ]; then + wget "$URL" -O $SOURCEFILE +fi + +#wget "$URL.asc" -O $SIGFILE # If necessary, recreate keyring used for signing # Only do this if the keyring is not yet downloaded diff --git a/debian/rules b/debian/rules index e517413..d177dec 100755 --- a/debian/rules +++ b/debian/rules @@ -33,6 +33,8 @@ clean:: rm -rf $(CURDIR)/contrib/benchmark/work/index rm -rf $(CURDIR)/contrib/benchmark/work/reuters rm -rf $(CURDIR)/contrib/benchmark/work/reuters-out + # Tags for backward compatibility testing + rm -rf $(CURDIR)/tags # remove keyring, since it is a binary file rm -f debian/lucene-keyring.gpg rm -f debian/KEYS @@ -56,10 +58,6 @@ install/liblucene2-java:: done install -d $(CURDIR)/debian/liblucene2-java/usr/bin/ install contrib/lucli/run.sh $(CURDIR)/debian/liblucene2-java/usr/bin/lucli - - # Install javascript example files as docfiles - install -d $(CURDIR)/debian/liblucene2-java/usr/share/doc/liblucene2-java - cp -a contrib/javascript $(CURDIR)/debian/liblucene2-java/usr/share/doc/liblucene2-java/ install/liblucene2-java-doc:: # Install the documentation into the liblucene2-java-doc package @@ -94,7 +92,6 @@ get-orig-source: check: lintian -i $(CHANGESFILE) - linda -i $(CHANGESFILE) zgrep "^---" ../lucene2_$(DEB_VERSION).diff.gz | grep -v debian ; [ $$? != 0 ] ( for p in $(DEB_ALL_PACKAGES); do \ dpkg --contents ../$${p}_$(DEB_VERSION)_all.deb ; \ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/lucene2.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

