[med-svn] [mauve] 03/04: Re-add debian/ dir that was lost after git-import-orig ( :-( )

Andreas Tille tille at debian.org
Wed Apr 22 12:13:06 UTC 2015


This is an automated email from the git hooks/post-receive script.

tille pushed a commit to branch master
in repository mauve.

commit 9feb509b8718db551cb63c5fb4dcc9ca7c69f0d7
Author: Andreas Tille <tille at debian.org>
Date:   Wed Apr 22 14:10:21 2015 +0200

    Re-add debian/ dir that was lost after git-import-orig ( :-( )
---
 debian/README.Debian                |   7 +
 debian/bin/mauve                    |   9 ++
 debian/changelog                    |   5 +
 debian/compat                       |   1 +
 debian/control                      |  46 ++++++
 debian/copyright                    |  21 +++
 debian/get-orig-source              |  39 +++++
 debian/install                      |   2 +
 debian/patches/build_xml.patch      | 279 ++++++++++++++++++++++++++++++++++++
 debian/patches/debian_classes.patch |  34 +++++
 debian/patches/series               |   2 +
 debian/rules                        |  38 +++++
 debian/source/format                |   1 +
 debian/upstream/metadata            |  12 ++
 debian/watch                        |   1 +
 15 files changed, 497 insertions(+)

diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..5cc7e5c
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,7 @@
+libMems for Debian
+------------------
+
+This library is packaged as a precondition of the Mauve
+multiple genome alignment package.
+
+ -- Andreas Tille <tille at debian.org>  Fri, 17 Apr 2015 15:38:22 +0200
diff --git a/debian/bin/mauve b/debian/bin/mauve
new file mode 100644
index 0000000..7ff0258
--- /dev/null
+++ b/debian/bin/mauve
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+JAVA_CMD=java
+JAVA_ARGS="-Xms200M -Xmx500M"
+
+DEBJAR="/usr/share/java"
+
+$JAVA_CMD $JAVA_ARGS -DmauveDir=${DEBJAR}/ -classpath "${CLASSPATH}:${DEBJAR}/bytecode.jar:${DEBJAR}/commons-cli.jar:${DEBJAR}/jebl.jar" -jar ${DEBJAR}/Mauve.jar $@
+## :{DEBJAR}/postgresql-jdbc4.jar 
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e1eea8e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+mauve (2.4.0+4734-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #??????)
+
+ -- Andreas Tille <tille at debian.org>  Fri, 17 Apr 2015 15:38:22 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..5af45ef
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,46 @@
+Source: mauve
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
+Section: science
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-autoreconf,
+               javahelper,
+               default-jdk,
+               ant,
+               ant-contrib,
+               libbytecode-java,
+               libcommons-cli-java,
+               libdbus-java,
+               libjebl2-java,
+               libpostgresql-jdbc-java
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/mauve/
+Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/mauve/trunk/
+Homepage: http://darlinglab.org/mauve/
+
+Package: mauve
+Architecture: any
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
+Description: multiple genome alignment
+ Mauve is a system for efficiently constructing multiple genome alignments
+ in the presence of large-scale evolutionary events such as rearrangement
+ and inversion. Multiple genome alignment provides a basis for research
+ into comparative genomics and the study of evolutionary dynamics.  Aligning
+ whole genomes is a fundamentally different problem than aligning short
+ sequences.
+ .
+ Mauve has been developed with the idea that a multiple genome aligner
+ should require only modest computational resources. It employs algorithmic
+ techniques that scale well in the amount of sequence being aligned. For
+ example, a pair of Y. pestis genomes can be aligned in under a minute,
+ while a group of 9 divergent Enterobacterial genomes can be aligned in
+ a few hours.
+ .
+ Mauve computes and interactively visualizes genome sequence comparisons.
+ Using FastA or GenBank sequence data, Mauve constructs multiple genome
+ alignments that identify large-scale rearrangement, gene gain, gene loss,
+ indels, and nucleotide substutition.
+ .
+ Mauve is developed at the University of Wisconsin.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..516ac9b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,21 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: libMems
+Upstream-Contact: Aaron Darling <darling at cs.wisc.edu>
+Source: http://sourceforge.net/p/mauve/code/HEAD/tree/libMems/trunk/
+
+Files: *
+Copyright: 2003 - 2014 Aaron Darling -- darling at cs.wisc.edu
+License: GPL-2+
+
+Files: debian/*
+Copyright: 2015 Andreas Tille <tille at debian.org>
+License: GPL-2+
+
+License: GPL-2+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ On Debian systems, the complete text of the licenses can be found in:
+ GPL-2 - `/usr/share/common-licenses/GPL-2'
diff --git a/debian/get-orig-source b/debian/get-orig-source
new file mode 100755
index 0000000..d9e55f5
--- /dev/null
+++ b/debian/get-orig-source
@@ -0,0 +1,39 @@
+#!/bin/sh
+# get source for mauve from SVN because there is no source tarball distribution
+
+set -e
+NAME=`dpkg-parsechangelog | awk '/^Source/ { print $2 }'`
+
+if ! echo $@ | grep -q upstream-version ; then
+    VERSION=`dpkg-parsechangelog | awk '/^Version:/ { print $2 }' | sed 's/\([0-9\.]\+\)-[0-9]\+$/\1/'`
+else
+    VERSION=`echo $@ | sed "s?^.*--upstream-version \([0-9.]\+\) .*${NAME}.*?\1?"`
+    if echo "$VERSION" | grep -q "upstream-version" ; then
+        echo "Unable to parse version number"
+        exit
+    fi
+fi
+
+SVNURI="svn://svn.code.sf.net/p/mauve/code/mauve/trunk"
+revision=`LANG=C svn info ${SVNURI} | grep "^Last Changed Rev:" | sed 's/Last Changed Rev: *//'`
+VERSION=`echo ${VERSION}| sed "s/+[0-9]\+$//"`+${revision}
+
+TARDIR=${NAME}-${VERSION}
+
+mkdir -p ../tarballs
+cd ../tarballs
+# svn export conserves time stamps of the files, checkout does not
+LC_ALL=C svn export ${SVNURI} ${TARDIR} >/dev/null 2>/dev/null
+
+cd ${TARDIR}
+rm -rf osx win32 win64
+rm -rf linux-x64/mauveAligner linux-x86/mauveAligner linux-x64/progressiveMauve linux-x86/progressiveMauve
+for libjava in ant bytecode commons-cli dbus jebl postgres ; do
+   find . -name "*${libjava}*.jar" -delete
+done
+rm -rf build_support/retroweaver
+rm -rf build_support/[b-z]*
+cd ..
+
+tar --owner=root --group=root --mode=a+rX -caf "$NAME"_"$VERSION".orig.tar.xz "${TARDIR}"
+rm -rf "${NAME}"-"$VERSION"
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..0e291bb
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+debian/bin	usr	
+Mauve.jar	/usr/share/java
diff --git a/debian/patches/build_xml.patch b/debian/patches/build_xml.patch
new file mode 100644
index 0000000..a7fbd35
--- /dev/null
+++ b/debian/patches/build_xml.patch
@@ -0,0 +1,279 @@
+Author: Andreas Tille <tille at debian.org>
+Last-Updated: Fri, 17 Apr 2015 15:38:22 +0200
+Description: Drop OSX specific things from build.xml,
+ Prevent build from calling home at build time
+
+--- a/build.xml
++++ b/build.xml
+@@ -19,7 +19,6 @@
+ 	-->
+ 	<!-- deployment locations for standalone releases -->
+ 	<property name="deploy.address" value="darlini8 at darlinglab.org" />
+-	<property name="deploy.bareaddress" value="darlinglab.org" />
+ 	<property name="deploy.username" value="darlini8" />
+ 	<property name="deploy.win32.keyfile" value="C:\Documents and Settings\koadman\plonk.ppk" />
+ 	<property name="deploy.serverdir" value="/home3/darlini8/www/mauve/downloads" />
+@@ -44,14 +43,6 @@
+ 	<!-- get any environment variables -->	
+ 	<property environment="env" />
+ 
+-	<!-- osxant.jar creates Mac OS X disk images -->
+-	<taskdef name="dmg" classname="com.amberarcher.ant.osx.DmgTask">
+-		<classpath>
+-			<pathelement path="${support}/osxant.jar"/>
+-		</classpath>
+-	</taskdef>
+-	<!-- maverick-ant.jar supports secure FTP for deployment -->
+-    <taskdef name="ssh" classname="com.sshtools.ant.Ssh" classpath="${support}/maverick-ant.jar"/>
+ 	<taskdef resource="net/sf/antcontrib/antcontrib.properties">
+ 		<classpath>
+ 			<pathelement path="${support}/ant-contrib-1.0b3.jar"/>
+@@ -189,7 +180,7 @@
+ 		<copy todir="C:\htdocs" file="./jws/mauve.jnlp" />
+ 	</target>
+ 		
+-	<target name="dist" depends="jar,getChangeLog" description="generate the distribution" >
++	<target name="dist" depends="jar" description="generate the distribution" >
+ 		<!-- Create the distribution directory -->
+ 		<mkdir dir="${dist}" />
+ 		
+@@ -225,141 +216,6 @@
+ 		classname="com.oracle.appbundler.AppBundlerTask"   
+ 		classpath="build_support/appbundler-1.0.jar" />
+ 
+-<!-- Create a DMG - This only works on MacOSX (requires hdiutil) -->
+-<target name="dmg" depends="macdist" description="Create a DMG package for MacOSX (only works on MacOSX)">
+-    
+-    <!-- Set this property value to your application name -->
+-    <property name="app.name" value="Mauve-${release.version}"/>
+-    
+-    <!-- Set this property value to a directory where you can
+-     mount temporarily your images, for example /tmp -->
+-    <property name="mountdir"  value="/tmp"/>
+-    
+-    <!-- Delete previously created DMG -->
+-    <delete file="${dist}/${app.name}.dmg" quiet="yes" failonerror="false"/>
+-    
+-    <!-- Create a temporary Disk Image -->
+-    <exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
+-        <arg value="create"/>
+-        <arg value="-srcfolder"/>
+-        <arg value="staging"/>
+-        <arg value="-volname"/>
+-        <arg value="${app.name}"/>
+-        <arg value="-ov"/>
+-        <arg value="${dist}/${app.name}-tmp.dmg"/>
+-        <arg value="-format"/>
+-        <arg value="UDRW"/>
+-    </exec>
+-    
+-    <!-- Attach the temporary image -->
+-    <exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
+-        <arg value="attach"/>
+-        <arg value="${dist}/${app.name}-tmp.dmg"/>
+-        <arg value="-mountroot"/>
+-        <arg value="${mountdir}/"/>
+-    </exec>
+-    
+-    <!-- Copy the background, the volume icon and DS_Store files -->
+-    <mkdir dir="${mountdir}/${app.name}/.background"/>
+-    <copy file="osx/background.png" tofile="${mountdir}/${app.name}/.background/background.png" overwrite="true"/>
+-    <copy file="osx/mauve.icns" tofile="${mountdir}/${app.name}/.VolumeIcon.icns" overwrite="true"/>
+-    <copy file="osx/DS_Store" tofile="${mountdir}/${app.name}/.DS_Store" overwrite="true"/>
+-
+-
+-    <!-- Indicate that we want a custom icon -->
+-    <exec executable="SetFile" os="Mac OS X">
+-        <arg value="-a"/>
+-        <arg value="C"/>
+-        <arg value="${mountdir}/${app.name}"/>
+-    </exec>
+-    
+-    <!-- Add a symbolic link to the Applications directory -->
+-    <symlink link="${mountdir}/${app.name}" resource="/Applications"/>
+-
+-
+-
+-    <!-- Detach the temporary image -->
+-    <exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
+-        <arg value="detach"/>
+-        <arg value="${mountdir}/${app.name}"/>
+-    </exec>
+-    
+-    <!-- Compress it to a new image -->
+-    <exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
+-        <arg value="convert"/>
+-        <arg value="${dist}/${app.name}-tmp.dmg"/>
+-        <arg value="-format"/>
+-        <arg value="UDZO"/>
+-        <arg value="-o"/>
+-        <arg value="${dist}/${app.name}.dmg"/>
+-    </exec>
+-    
+-    <!-- Delete the temporary image -->
+-    <delete file="${dist}/${app.name}-tmp.dmg" quiet="yes" failonerror="false"/>
+-</target>
+-
+-
+-	<!-- Create an OS X application and disk image -->
+-	<target name="macdist" depends="jar,getChangeLog" description="Generate a Mac OS X disk image" >
+-		<!-- Create the distribution directory -->
+-		<mkdir dir="${dist}" />
+-		<delete dir="${dist}/Mauve.app"/>
+-
+-        <!-- get the java home -->
+-        <exec executable="/usr/libexec/java_home" os="Mac OS X" failonerror="true" outputproperty="osx.java.home"/>
+-		<bundleapp outputdirectory="${dist}"
+-			name="Mauve"
+-			displayname="Mauve ${release.version}"
+-			identifier="components.Mauve"
+-			icon="osx/mauve.icns"
+-			shortversion="${release.version}"
+-			copyright="(c) 2003-2015  http://darlinglab.org/mauve"
+-			mainclassname="org.gel.mauve.gui.Mauve">
+-			<classpath file="Mauve.jar" />
+-			<classpath file="ext/*.jar" />
+-			<librarypath file="osx/progressiveMauve" />
+-			<librarypath file="osx/mauveAligner" />
+-            <runtime dir="${osx.java.home}" />
+-            <option value="-Dapple.laf.useScreenMenuBar=false"/>
+-            <option value="-Xmx500m"/>
+-		</bundleapp>
+-		
+-		<!-- Create a staging directory for the Disk Image filesystem -->
+-		<mkdir dir="staging"/>
+-        <exec executable="ditto" failonerror="true">
+-                <arg value="-v"/>
+-                <arg value="${dist}/Mauve.app"/>
+-                <arg value="staging/Mauve.app"/>
+-        </exec>
+-		<copy todir="staging">
+-			<fileset dir="${basedir}">
+-				<include name="ChangeLog.html"/>
+-			</fileset>
+-		</copy>
+-		
+-		<!-- copy text files to the staging directory, adding .txt
+-		     to their filename -->
+-		<copy todir="staging">
+-			<fileset dir="${basedir}">
+-				<include name="COPYING"/>
+-			</fileset>
+-			<mapper type="glob" from="*" to="*.txt"/>
+-		</copy>
+-		<chmod file="staging/Mauve.app/Contents/MacOS/JavaAppLauncher" perm="755"/>
+-		<chmod file="staging/Mauve.app/Contents/MacOS/mauveAligner" perm="755"/>
+-		<chmod file="staging/Mauve.app/Contents/MacOS/progressiveMauve" perm="755"/>
+-
+-<!-- sign the app -->
+-<exec executable="/usr/bin/codesign" os="Mac OS X" failonerror="true">
+-    <arg value="-s"/>
+-    <arg value="Developer ID Application: Aaron Darling"/>
+-    <arg value="--deep"/>
+-    <arg value="staging/Mauve.app"/>
+-</exec>
+-<!---->
+-
+-<!--        <dmg destfile="${dist}/Mauve-${release.version}.dmg" name="Mauve ${release.version}" srcdir="staging" compressed="true"/> -->
+-	</target>
+ 
+ 	<target name="srcdist" depends="init" description="package a source distribution">
+ 		<tar destfile="${dist}/mauve_source_${datestamp}.tar.gz" compression="gzip">
+@@ -384,27 +240,6 @@
+ 		</tar>
+ 	</target>
+ 
+-	<target name="getChangeLog" >
+-		<get src="http://darlinglab.org/mauve/user-guide/versions.html" dest="ChangeLog.html" usetimestamp="true"/>
+-		<copy file="ChangeLog.html" tofile="ChangeLog"/>
+-	</target>
+-
+-	<target name="nsicompile" depends="jar,getChangeLog" description="make windows installer" >
+-
+-		<!-- create output directory -->
+-		<mkdir dir="${dist}" />
+-
+-		<!-- Make timestamp and timestampdash for installer making -->
+-		<property environment="env" />
+-		<echo message="Program files: ${env.ProgramFiles}"/>
+-		<exec executable="C:\Program Files (x86)\NSIS\makensis.exe" dir=".">
+-			<arg line="/V2 /NOCD win32\mauve.nsi" />
+-			<env key="release_version" value="${release.version}" />
+-			<env key="datestamp" value="${datestamp}" />
+-		</exec>
+-	</target>
+-		
+-	
+ 	<target name="run" depends="jar" description="run Mauve">
+ 		<java jar="Mauve.jar" fork="true" />
+ 	</target>
+@@ -439,68 +274,8 @@
+ 			</filterset>
+ 		</copy>
+ 
+-		<!-- copy unmodified files to the server -->
+-		<ssh host="${deploy.bareaddress}"
+-			username="${deploy.username}"
+-			version="2"
+-			keyfile="${deploy.win32.keyfile}">
+-			<sftp action="put" remotedir="${deploy.asapdir}" verbose="true" newer="true">
+-				<fileset dir=".">
+-					<include name="Mauve.jar" />
+-					<include name="mauveApplet.jar" />
+-				</fileset>
+-				<fileset dir="./ext">
+-					<include name="*.jar"/>
+-				</fileset>
+-				<fileset dir="./src/images">
+-					<include name="mauve_icon.gif" />
+-					<include name="mauve_logo.png" />
+-				</fileset>
+-				<fileset dir="${dist}">
+-					<include name="mauve.jnlp"/>
+-				</fileset>
+-			</sftp>
+-			<!-- set the permissions so others in the group can modify them -->
+-			<exec cmd="chgrp annotation ${deploy.asapdir}/*"/>
+-			<exec cmd="chmod 664 ${deploy.asapdir}/*"/>
+-			<!-- jar files should have the execute bit set -->
+-			<exec cmd="chmod 775 ${deploy.asapdir}/*.jar"/>
+-		</ssh>
+-	</target>
+-	
+-	<!-- assumes that an ssh key has been registered with the web server -->
+-	<target name="deployWin32" depends="nsicompile">
+-		<echo file="${dist}\latest" message="${datestamp}"/>
+-		<echo file="${dist}\latest.windows" message="${datestamp}"/>
+-		<ssh host="${deploy.bareaddress}"
+-			username="${deploy.username}"
+-			version="2"
+-			keyfile="${deploy.win32.keyfile}">
+-
+-			<sftp action="put" remotedir="${deploy.serverdir}" verbose="true">
+-				<fileset dir="${dist}">
+-					<include name="mauve_installer_${release.version}.exe"/>
+-					<include name="${dist}\latest"/>
+-					<include name="${dist}\latest.windows"/>
+-				</fileset>
+-			</sftp>
+-			<exec cmd="cp ${deploy.serverdir}/mauve_installer_${release.version}.exe ${deploy.serverdir}/mauve_installer_${datestamp}.exe"/>
+-		</ssh>
+-	</target>
+-
+-	<!-- assumes that passwordless ssh authentication has been configured to the web server -->
+-	<target name="deployMacOSX" depends="dmg">
+-		<exec executable="scp">
+-			<arg value="${dist}/Mauve-${release.version}.dmg" />
+-			<arg value="${deploy.address}:${deploy.serverdir}" />
+-		</exec>
+-		<echo file="${dist}/latest.mac" message="${datestamp}"/>
+-		<exec executable="scp">
+-			<arg value="${dist}/latest.mac" />
+-			<arg value="${deploy.address}:${deploy.serverdir}" />
+-		</exec>
+ 	</target>
+-
++	
+ 	<!-- assumes that passwordless ssh authentication has been configured to the web server -->
+ 	<target name="deployLinux" depends="dist">
+ 		<exec executable="scp">
diff --git a/debian/patches/debian_classes.patch b/debian/patches/debian_classes.patch
new file mode 100644
index 0000000..2291120
--- /dev/null
+++ b/debian/patches/debian_classes.patch
@@ -0,0 +1,34 @@
+Author: Andreas Tille <tille at debian.org>
+Last-Updated: Fri, 17 Apr 2015 15:38:22 +0200
+Description: Use Debian packaged classes
+
+--- a/build.xml
++++ b/build.xml
+@@ -30,6 +30,7 @@
+ 	<property name="build" location="bin"/>
+ 	<property name="dist"  location="dist"/>
+ 	<property name="ext" location="ext"/>
++        <property name="deblib" location="/usr/share/java" />
+  	<property name="support" location="build_support"/>
+ 
+ 	<!-- Make datestamp for update checks -->
+@@ -78,15 +79,15 @@
+ 		<javac
+ 			classpath="
+ 				${ext}/core-1.9.2-SNAPSHOT.jar;
+-				${ext}/bytecode-1.9.2-SNAPSHOT.jar;
++				${deblib}/bytecode.jar;
+ 				${ext}/gui-1.9.2-SNAPSHOT.jar;
+-				${ext}/commons-cli-1.2.jar;
++				${deblib}/commons-cli.jar;
+ 				${support}/junit.jar;
+ 				${ext}/zeus-jscl.jar;
+ 				${ext}/goose.jar;
+ 				${ext}/ant-1.7.1.jar;
+-				${ext}/dbus-2.6.jar;
+-				${ext}/jebl-0.4.jar;
++				${deblib}/dbus.jar;
++				${deblib}/jebl.jar;
+ 				${ext}/unix-0.5.jar"
+ 			srcdir="${src}"
+ 			destdir="${build}"
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..a204ff7
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+build_xml.patch
+debian_classes.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..89ef888
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,38 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# debian/rules file for mauve
+# Andreas Tille <tille at debian.org>
+# GPL
+
+#export DH_VERBOSE=1
+
+PACKAGE := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p')
+
+JAVA_HOME  := /usr/lib/jvm/default-java
+
+DEBJAR    := /usr/share/java
+CLASS_PATH := $(DEBJAR)/bytecode.jar:$(DEBJAR)/commons-cli.jar:$(DEBJAR)/dbus.jar:$(DEBJAR)/jebl.jar
+## :$(DEBJAR)/postgresql-jdbc4.jar 
+
+# to run the test suite
+JAVA       := $(JAVA_HOME)/bin/java
+ANT_HOME   := /usr/share/ant
+ANT_BIN    := $(ANT_HOME)/bin/ant
+ANT_ARGS   := -Dcompile.debug=true -Dcompile.optimize=true
+
+%:
+	dh $@ --with javahelper
+
+override_dh_auto_clean:
+	echo "Manual cleaning needed since build.xml has no clean target"
+	find . -name "*.class" -delete
+	rm -rf bin dist
+	rm -rf build.number src/version.properties
+	rm -rf Mauve.jar ChangeLog*
+
+override_dh_auto_build:
+	# CLASSPATH=$(CLASS_PATH)
+	ant dist
+
+get-orig-source:
+	. debian/get-orig-source
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/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..b38c69e
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,12 @@
+Reference:
+  Author: "Mauve: multiple alignment of conserved genomic sequence with rearrangements"
+  Title: Aaron C. E. Darling and Bob Mau and Frederick R. Blattner and Nicole T. Perna
+  Journal: Genome research
+  Year: 2004
+  Volume: 14
+  Number: 7
+  Pages: 1394-1403
+  DOI: 10.1101/gr.2289704 
+  PMID: 15231754
+  URL: http://genome.cshlp.org/content/14/7/1394.short
+  eprint: http://genome.cshlp.org/content/14/7/1394.full.pdf+html
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..cf22602
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1 @@
+# There is no tarball download location, libMuscle is only available in SVN

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/mauve.git



More information about the debian-med-commit mailing list