Author: tille Date: 2012-01-27 08:42:16 +0000 (Fri, 27 Jan 2012) New Revision: 9447
Added: trunk/packages/phy-spread/trunk/ trunk/packages/phy-spread/trunk/debian/ trunk/packages/phy-spread/trunk/debian/changelog trunk/packages/phy-spread/trunk/debian/compat trunk/packages/phy-spread/trunk/debian/control trunk/packages/phy-spread/trunk/debian/copyright trunk/packages/phy-spread/trunk/debian/libkmlframework-java.jlibs trunk/packages/phy-spread/trunk/debian/patches/ trunk/packages/phy-spread/trunk/debian/patches/build_xml.patch trunk/packages/phy-spread/trunk/debian/patches/series trunk/packages/phy-spread/trunk/debian/rules trunk/packages/phy-spread/trunk/debian/source/ trunk/packages/phy-spread/trunk/debian/source/format trunk/packages/phy-spread/trunk/debian/watch Log: finalise renaming Added: trunk/packages/phy-spread/trunk/debian/changelog =================================================================== --- trunk/packages/phy-spread/trunk/debian/changelog (rev 0) +++ trunk/packages/phy-spread/trunk/debian/changelog 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1,5 @@ +libkmlframework-java (0.0.20090718-1) UNRELEASED; urgency=low + + * Initial release Closes: #???? + + -- Andreas Tille <[email protected]> Tue, 17 Jan 2012 13:12:16 +0100 Added: trunk/packages/phy-spread/trunk/debian/compat =================================================================== --- trunk/packages/phy-spread/trunk/debian/compat (rev 0) +++ trunk/packages/phy-spread/trunk/debian/compat 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1 @@ +8 Added: trunk/packages/phy-spread/trunk/debian/control =================================================================== --- trunk/packages/phy-spread/trunk/debian/control (rev 0) +++ trunk/packages/phy-spread/trunk/debian/control 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1,20 @@ +Source: libkmlframework-java +Section: java +Priority: optional +Maintainer: Debian Med Packaging Team <[email protected]> +DM-Upload-Allowed: yes +Uploaders: Andreas Tille <[email protected]> +Build-Depends: debhelper (>= 8), javahelper (>=0.25), default-jdk, ant, libservlet2.5-java +Standards-Version: 3.9.2 +Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/libkmlframework-java/trunk/ +Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/libkmlframework-java/trunk/ +Homepage: http://code.google.com/p/kmlframework/ + +Package: libkmlframework-java +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${java:Depends} +Recommends: ${java:Recommends} +Description: library/framework for generating Google Earth KML + The KML Framework is a library/framework for generating Google Earth + KML (Keyhole Markup Language) documents. The framework is based on the + work done by Eivind Bøhn as a part of his Master Thesis. Added: trunk/packages/phy-spread/trunk/debian/copyright =================================================================== --- trunk/packages/phy-spread/trunk/debian/copyright (rev 0) +++ trunk/packages/phy-spread/trunk/debian/copyright 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1,32 @@ +Format: http://dep.debian.net/deps/dep5/ +Upstream-Name: KML framework +Upstream-Contact: Eivind Bøhn <[email protected]> +Source: http://code.google.com/p/kmlframework/downloads/list + +Files: * +Copyright: © 2007-2009 Eivind Bøhn <[email protected]> +License: BSD 2-Clause License + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Files: debian/* +Copyright: © 2012 Andreas Tille +License: BSD 2-Clause License + Same as source code itself Added: trunk/packages/phy-spread/trunk/debian/libkmlframework-java.jlibs =================================================================== --- trunk/packages/phy-spread/trunk/debian/libkmlframework-java.jlibs (rev 0) +++ trunk/packages/phy-spread/trunk/debian/libkmlframework-java.jlibs 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1 @@ +lib/*.jar Added: trunk/packages/phy-spread/trunk/debian/patches/build_xml.patch =================================================================== --- trunk/packages/phy-spread/trunk/debian/patches/build_xml.patch (rev 0) +++ trunk/packages/phy-spread/trunk/debian/patches/build_xml.patch 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1,49 @@ +--- /dev/null ++++ libkmlframework-java-20090718/src/build.xml +@@ -0,0 +1,46 @@ ++<project name="kmlframework" basedir="." default="dist"> ++ ++ <property environment="env" /> ++ ++ <property name="version" value="1.2" /> ++ <property name="build.nb" value="0" /> ++ ++ <patternset id="java.libs" includes="*.jar" /> ++ <path id="mylibs"> ++ <fileset dir="/usr/share/java"> ++ <patternset refid="java.libs" /> ++ </fileset> ++ </path> ++ ++ <property name="src.dir" value="." /> ++ <property name="bin.dir" value="../bin" /> ++ <property name="lib.dir" value="../lib" /> ++ ++ <patternset id="java.libs" includes="*.jar" /> ++ ++ <target name="clean" description="Delete all generated files"> ++ <delete dir="${bin.dir}" /> ++ </target> ++ ++ <target name="compile" description="Compile src files" ++ depends="clean"> ++ <delete dir="${bin.dir}" /> ++ <mkdir dir="${bin.dir}" /> ++ <javac classpathref="mylibs" srcdir="${src.dir}" destdir="${bin.dir}"> ++ </javac> ++ </target> ++ ++ <target name="create-jar" description="Create jar file" depends="compile"> ++ <jar destfile="${lib.dir}/org.boehn.kmlframework.jar" basedir="${bin.dir}" ++ update="true"> ++ <manifest> ++ <!-- <attribute name="Main-Class" value="THE MAIN CLASS OF THE PROGRAM" /> --> ++ <attribute name="Implementation-Version" value="${version}" /> ++ <attribute name="Implementation-Build" value="${build.nb}" /> ++ </manifest> ++ </jar> ++ </target> ++ ++ <target name="dist" depends="create-jar" /> ++ ++</project> Added: trunk/packages/phy-spread/trunk/debian/patches/series =================================================================== --- trunk/packages/phy-spread/trunk/debian/patches/series (rev 0) +++ trunk/packages/phy-spread/trunk/debian/patches/series 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1 @@ +build_xml.patch Added: trunk/packages/phy-spread/trunk/debian/rules =================================================================== --- trunk/packages/phy-spread/trunk/debian/rules (rev 0) +++ trunk/packages/phy-spread/trunk/debian/rules 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1,19 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules file for libkmlframework-java +# Andreas Tille <[email protected]> +# GPL + +%: + dh $@ --with javahelper + +override_dh_auto_build: + ant -f src/build.xml + +override_dh_clean: + ant -f src/build.xml clean + rm -rf lib + dh_clean + +get-orig-source: + uscan --verbose --force-download --repack --rename Property changes on: trunk/packages/phy-spread/trunk/debian/rules ___________________________________________________________________ Added: svn:executable + * Added: trunk/packages/phy-spread/trunk/debian/source/format =================================================================== --- trunk/packages/phy-spread/trunk/debian/source/format (rev 0) +++ trunk/packages/phy-spread/trunk/debian/source/format 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1 @@ +3.0 (quilt) Added: trunk/packages/phy-spread/trunk/debian/watch =================================================================== --- trunk/packages/phy-spread/trunk/debian/watch (rev 0) +++ trunk/packages/phy-spread/trunk/debian/watch 2012-01-27 08:42:16 UTC (rev 9447) @@ -0,0 +1,2 @@ +version=3 +http://googlecode.debian.net/p/kmlframework/org.boehn.kmlframework_(\d+).zip _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
