Skip to content
Commits on Source (4)
forester (0.0+20171208-1) UNRELEASED; urgency=low
forester (0.0+20180205-1) UNRELEASED; urgency=low
[ Olivier Sallou ]
* Initial release (Closes: #674269)
......
......@@ -10,7 +10,7 @@ cd ../tarballs
# need to clean up the tarballs dir first because upstream tarball might
# contain a directory with unpredictable name
rm -rf *
git clone --quiet https://github.com/cmzmasek/forester
git clone --quiet https://github.com/cmzmasek/forester $NAME
cd $NAME
VERSION=${MVERSION}+`date -d @$(git show --format="%at" | head -n1) +%Y%m%d`
# for esthetical reasons set file timestamps (if git-restore-mtime is installed)
......@@ -19,7 +19,6 @@ cd ..
TARDIR=${NAME}-${VERSION}
mv ${NAME} ${TARDIR}
rm -rf ${TARDIR}/.git
find ${TARDIR} -name "*.jar" -delete
GZIP="--best --no-name" tar --owner=root --group=root --mode=a+rX -caf "$NAME"_"$VERSION".orig.tar.${COMPRESS} "${TARDIR}"
rm -rf ${TARDIR}
......@@ -4,7 +4,7 @@
<property name="src.dir" value="src" />
<property name="classes.dir" value="classes" />
<property name="jars.dir" value="resources" />
<property name="itextjar" value="${jars.dir}/itextpdf-5.5.9.jar" />
<property name="itextjar" value="${jars.dir}/itextpdf-5.5.13.jar" />
<property name="commonscodecjar" value="${jars.dir}/commons-codec-1.5.jar" />
<property name="openchartjar" value="${jars.dir}/openchart.jar" />
<property name="forester_jar" value="forester.jar" />
......@@ -25,7 +25,7 @@
<target name="compile" description="Compiles the Task" depends="clean">
<mkdir dir="${classes.dir}" />
<javac source="1.8" target="1.8" debug="true" debuglevel="lines,source" srcdir="${src.dir}" destdir="${classes.dir}" optimize="on" verbose="false" classpath="${itextjar};${commonscodecjar};${openchartjar}">
<javac source="1.9" target="1.9" debug="true" debuglevel="lines,source" srcdir="${src.dir}" destdir="${classes.dir}" optimize="on" verbose="false" classpath="${itextjar};${commonscodecjar};${openchartjar}">
<compilerarg value="-Xlint:deprecation" />
<compilerarg value="-Xlint:unchecked" />
</javac>
......
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation with the addition of the following permission added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY 1T3XT, 1T3XT DISCLAIMS THE WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation with the addition of the following permission added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY iText Group NV, iText Group NV DISCLAIMS THE WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program; if not, see http://www.gnu.org/licenses or write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA, 02110-1301 USA, or download the license from the following URL:
......