Skip to content
Commits on Source (9)
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/javax.servlet.jar"/>
<classpathentry kind="lib" path="lib/urlrewrite-2.6.0.jar"/>
<classpathentry kind="lib" path="lib/ant-googlecode-0.0.1.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>kmlframework</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
# kmlframework
Automatically exported from code.google.com/p/kmlframework
<?xml version="1.0"?>
<project name="kmlframework" default="jar" basedir=".">
<property name="projectname" value="kmlframework"/>
<property name="src.dir" location="${basedir}/src"/>
<property name="lib.dir" location="${basedir}/lib"/>
<property name="doc.dir" location="${basedir}/docs"/>
<property name="javadoc.dir" location="${doc.dir}/javadoc"/>
<property name="bin.dir" location="${basedir}/bin"/>
<property name="jars.dir" location="jars"/>
<property name="distribution.dir" location="${basedir}/distribution"/>
<property file="build.properties"/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
<pathelement location="${basedir}"/>
<pathelement location="${bin.dir}"/>
</path>
<target name="compile">
<mkdir dir="${bin.dir}"/>
<javac srcdir="${src.dir}"
destdir="${bin.dir}"
debug="on"
classpathref="classpath"
/>
</target>
<target name="jar">
<tstamp />
<delete dir="${jars.dir}"/>
<mkdir dir="${jars.dir}"/>
<jar jarfile="${jars.dir}/org.boehn.kmlframework_${DSTAMP}.jar" basedir="${bin.dir}"/>
</target>
<target name="distribution" depends="jar,javadoc">
<tstamp />
<delete dir="${distribution.dir}"/>
<mkdir dir="${distribution.dir}"/>
<mkdir dir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}"/>
<copy file="${jars.dir}/org.boehn.kmlframework_${DSTAMP}.jar" todir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}"/>
<copy todir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}/documentation">
<fileset dir="${doc.dir}"/>
</copy>
<copy todir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}/src">
<fileset dir="${src.dir}"/>
</copy>
<zip destfile="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}.zip" basedir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}" keepcompression="true"/>
</target>
<target name="javadoc">
<javadoc
packagenames="org.boehn.kmlframework.*"
sourcepath="${src.dir}"
excludepackagenames="org.boehn.kmlframework.examples.*"
defaultexcludes="yes"
destdir="${javadoc.dir}"
author="true"
version="true"
use="true"
windowtitle="KML Framework API"
classpathref="classpath"
/>
</target>
<target name="deploy" depends="distribution">
<taskdef classname="net.bluecow.googlecode.ant.GoogleCodeUploadTask" classpath="${lib.dir}/ant-googlecode-0.0.1.jar" name="gcupload"/>
<gcupload
username="${gc.username}"
password="${gc.password}"
projectname="kmlframework"
filename="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}.zip"
targetfilename="org.boehn.kmlframework_${DSTAMP}.zip"
summary="Version ${DSTAMP}"
/>
</target>
<target name="clean">
<delete dir="${jars.dir}"/>
<delete dir="${bin.dir}"/>
</target>
</project>
\ No newline at end of file
libkmlframework-java (0.0.git20150825.a2e0518-1) unstable; urgency=medium
* Use git mode in watch file
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.3.0
-- Andreas Tille <tille@debian.org> Tue, 08 Jan 2019 16:25:27 +0100
libkmlframework-java (0.0.20110822.r24-2) unstable; urgency=medium
* Upstream moved from googlecode to github - no code changes
......
......@@ -3,14 +3,14 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Andreas Tille <tille@debian.org>
Section: java
Priority: optional
Build-Depends: debhelper (>= 10),
Build-Depends: debhelper (>= 11~),
javahelper,
default-jdk,
ant,
libservlet3.1-java
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/libkmlframework-java.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/libkmlframework-java.git
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/libkmlframework-java
Vcs-Git: https://salsa.debian.org/med-team/libkmlframework-java.git
Homepage: https://github.com/deinlandel/kmlframework
Package: libkmlframework-java
......
#!/bin/sh -e
# if you need to repack for whatever reason you can
# use this script via uscan or directly
#
# FIXME: currently the code is not conform to Debian Policy
# http://www.debian.org/doc/debian-policy/ch-source.html
# "get-orig-source (optional)"
# This target may be invoked in any directory, ...
# --> currently it is assumed the script is called in the
# source directory featuring the debian/ dir
cat <<EOT
This used to work on googlecode but project was moved to
https://github.com/deinlandel/kmlframework
and thus this script needs to be redesigned. Since the
project is deprecated anyway this was not done for the moment
EOT
exit 1
COMPRESS=xz
NAME=`dpkg-parsechangelog | awk '/^Source/ { print $2 }'`
VERSION=`dpkg-parsechangelog | awk '/^Version:/ { print $2 }' | sed 's/\([0-9\.]\+\)-[0-9]\+$/\1/'`
## NO tags no branches
SVNURI="http://kmlframework.googlecode.com/svn/trunk"
SVNSRCURI="$SVNURI/src"
SVNDOCURI="$SVNURI/docs"
revision=`LANG=C svn info ${SVNURI} | grep "^Last Changed Rev:" | sed 's/Last Changed Rev: *//'`
VERSION=`echo ${VERSION}| sed "s/\.r[0-9]\+$//"`.r${revision}
echo $VERSION
TARDIR=${NAME}-${VERSION}
mkdir -p ../tarballs
cd ../tarballs
# svn export conserves time stamps of the files, checkout does not
rm -rf ${TARDIR}
mkdir -p ${TARDIR}
cd ${TARDIR}
LC_ALL=C svn --quiet export ${SVNSRCURI}
LC_ALL=C svn --quiet export ${SVNDOCURI}
cd ..
GZIP="--best --no-name" tar --owner=root --group=root --mode=a+rX -caf "$NAME"_"$VERSION".orig.tar.${COMPRESS} "${TARDIR}"
rm -rf ${TARDIR}
......@@ -17,6 +17,3 @@ override_dh_clean:
ant -f src/build.xml clean
rm -rf lib
dh_clean
get-orig-source:
uscan --verbose --force-download --repack --rename
version=4
# no release tags (neither formerly at googlecode nor now at github)
opts=dversionmangle=s/.*/0.No-Release/ \
https://people.debian.org/~eriberto/ FakeWatchNoUpstreamReleaseForThisPackage-(\d\S+)\.gz
opts="mode=git,pretty=0.0.git%cd.%h" \
https://github.com/deinlandel/kmlframework.git HEAD