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 "FreeHEP Export and Save As Library".
The branch, build has been updated via f38279d36b370ee83c7311189b84a525192e9053 (commit) via 6121abcc55ff09fdb44c0329c1b97e287b5a8a9a (commit) via 4f8fa6a1878398ea6ff452acd39a9d2b28654e2f (commit) via a575acdde8eef595b81a413cecff9a727bbacc9f (commit) via 4180988ee325010c2ce96d1c2f90972fe1b56dce (commit) via 0c494878e95dba07bee7dcd13ddbd6258bab3d76 (commit) via 458cc1e43eab1e51c8f40d10b5f896e3ae76145f (commit) via e96f5e46db423ab5126175186ce990bdcc71c424 (commit) from dd85f58346e5cd2645dd22385408f92ab0414896 (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 f38279d36b370ee83c7311189b84a525192e9053 Merge: dd85f58 6121abc Author: Torsten Werner <twer...@debian.org> Date: Tue Aug 30 22:37:26 2011 +0200 Merge branch 'master' into build ----------------------------------------------------------------------- Summary of changes: debian/changelog | 19 +++++++++++++++++-- debian/control | 8 ++++---- debian/copyright | 2 +- debian/orig-tar.sh | 14 ++++++++++++++ debian/rules | 1 - debian/source/format | 1 + debian/watch | 6 ++++-- 7 files changed, 41 insertions(+), 10 deletions(-) diff --git a/debian/changelog b/debian/changelog index 282b0b1..66ea09f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,20 @@ +freehep-export (2.1.1-2) unstable; urgency=low + + * Team upload + + [ Giovanni Mascellani ] + * Added real watch file + * Fixed my email address. + + [ Torsten Werner ] + * Add missing Build-Depends: libjas-plotter-java. + * Switch to source format 3.0. + * Update Standards-Version: 3.9.1. + + -- Torsten Werner <twer...@debian.org> Tue, 30 Aug 2011 22:35:19 +0200 + freehep-export (2.1.1-1) unstable; urgency=low - * Initial release (Closes: #558345) + * Initial release (Closes: #558345) - -- Giovanni Mascellani <mascell...@poisson.phc.unipi.it> Tue, 19 Jan 2010 16:40:40 +0100 + -- Giovanni Mascellani <mascell...@poisson.phc.unipi.it> Wed, 03 Feb 2010 11:17:36 +0100 diff --git a/debian/control b/debian/control index 1732813..5fca2cb 100644 --- a/debian/control +++ b/debian/control @@ -2,12 +2,12 @@ Source: freehep-export Section: java Priority: optional Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org> -Uploaders: Giovanni Mascellani <mascell...@poisson.phc.unipi.it>, +Uploaders: Giovanni Mascellani <g...@debian.org>, Gabriele Giacone <1o5g4...@gmail.com> -Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper, quilt +Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper Build-Depends-Indep: libsurefire-java (>= 2.4.3), libfreehep-swing-java, - libmaven-exec-plugin-java -Standards-Version: 3.8.3 + libmaven-exec-plugin-java, libjas-plotter-java +Standards-Version: 3.9.1 Vcs-Git: git://git.debian.org/git/pkg-java/freehep/freehep-export.git Vcs-Browser: http://git.debian.org/?p=pkg-java/freehep/freehep-export.git;a=summary Homepage: http://java.freehep.org/ diff --git a/debian/copyright b/debian/copyright index 43e764a..0c3c3ff 100644 --- a/debian/copyright +++ b/debian/copyright @@ -16,7 +16,7 @@ License: LGPL-2.1+ and adopted license at <http://java.freehep.org/license.html> Files: debian/* -Copyright: 2010, Giovanni Mascellani <mascell...@poisson.phc.unipi.it> +Copyright: 2010, Giovanni Mascellani <g...@debian.org> 2010, Gabriele Giacone <1o5g4...@gmail.com> License: GPL-3+ On Debian GNU/Linux system you can find the complete text of the diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh new file mode 100755 index 0000000..949303a --- /dev/null +++ b/debian/orig-tar.sh @@ -0,0 +1,14 @@ +#!/bin/sh -e + +VERSION=$2 +DOWNLOADED_FILE=$3 +PACKAGE=$(dpkg-parsechangelog | sed -n 's/^Source: //p') +TAR=../${PACKAGE}_${VERSION}.orig.tar.gz +DIR=${PACKAGE}-${VERSION} + +svn export svn://svn.freehep.org/svn/freehep/tags/$PACKAGE-$VERSION $DIR +GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR +rm -rf $DIR + +rm -f $DOWNLOADED_FILE + diff --git a/debian/rules b/debian/rules index 90ab7ed..9873a98 100755 --- a/debian/rules +++ b/debian/rules @@ -2,7 +2,6 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/maven.mk -include /usr/share/cdbs/1/rules/patchsys-quilt.mk -include /usr/share/topgit/tg2quilt.mk JAVA_HOME := /usr/lib/jvm/default-java diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch index f1fc674..432d569 100644 --- a/debian/watch +++ b/debian/watch @@ -1,2 +1,4 @@ -# Watch file missing, because upstream releases are available only via -# SVN, but uscan is unable to read in a SVN repository. +version=3 +opts="uversionmangle=s/^.*-SNAPSHOT/~$1/,dversionmangle=s/\+dfsg[0-9]*//" \ + http://java.freehep.org/maven2/org/freehep/freehep-export/ \ + (\d.*)/ debian debian/orig-tar.sh hooks/post-receive -- FreeHEP Export and Save As Library _______________________________________________ pkg-java-commits mailing list pkg-java-comm...@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits