[remotetea] 02/06: Imported Debian patch 1.0.7-2
Frédéric-Emmanuel Picca
picca at moszumanska.debian.org
Sat Nov 22 11:46:15 GMT 2014
This is an automated email from the git hooks/post-receive script.
picca pushed a commit to branch master
in repository remotetea.
commit 78b4b2bb9d860d8b963d015657460cbe95192cba
Author: Picca Frédéric-Emmanuel <picca at synchrotron-soleil.fr>
Date: Mon Jan 3 14:53:36 2011 +0100
Imported Debian patch 1.0.7-2
---
build.xml | 162 ----------------------------------
debian/changelog | 8 ++
debian/control | 2 +-
debian/copyright | 2 +-
debian/doc-base | 12 +++
debian/patches/debian/build.xml | 188 ++++++++++++++++++++++++++++++++++++++++
debian/patches/series | 1 +
debian/source/format | 1 +
8 files changed, 212 insertions(+), 164 deletions(-)
diff --git a/build.xml b/build.xml
deleted file mode 100644
index e78ccb1..0000000
--- a/build.xml
+++ /dev/null
@@ -1,162 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- $Header: /cvsroot-fuse/remotetea/remotetea/build.xml,v 1.7 2008/01/05 17:21:45 haraldalbrecht Exp $
-
- build.xml - contains the ANT rules for building Remote Tea
-
- -->
-<project name="Remote Tea" default="jar" basedir=".">
-
- <!-- -->
- <property name="buildDir" value="classes"/>
- <property name="srcDir" value="src"/>
- <property name="javadocDir" value="javadoc"/>
- <property name="distDir" value="dist"/>
-
- <property name="distVersion" value="1.0.8"/>
-
- <!-- -->
- <!-- ** SF patch #943219: add compile target ** -->
- <!-- Compile classes -->
- <target name="compile" description="compile classes">
- <mkdir dir="${buildDir}"/>
- <javac srcdir="${srcDir}" destdir="${buildDir}" debug="true" deprecation="true" optimize="true">
- </javac>
- </target>
-
- <target name="clean" description="clean build">
- <delete dir="${buildDir}"/>
- <delete dir="${javadocDir}"/>
- </target>
-
- <!-- Generate JAR files:
- * oncrpc.jar contains the ONC/RPC client and server functionality,
- * jrpcgen.jar contains the x-file protocol compiler,
- * jportmap.jar contains an ONC/RPC portmapper including base libraries
- (so older JREs have no problems executing it standalone).
- -->
- <!-- ** SF patch #943219: add compile target / compile dependency ** -->
- <target name="jar" description="generate jar files" depends="compile">
- <delete file="${buildDir}/oncrpc.jar"/>
- <jar jarfile="${buildDir}/oncrpc.jar" basedir="${buildDir}" includes="org/acplt/oncrpc/*.class,org/acplt/oncrpc/server/*.class">
- <manifest>
- <attribute name="Extension-Name" value="ONC/RPC"/>
- <attribute name="Specification-Title" value="Open Network Computing Remote Procedure Call (core)"/>
- <attribute name="Specification-Version" value="2.0"/>
- <attribute name="Specification-Vendor" value="Sun Microsystems, Inc"/>
- <attribute name="Implementation-Title" value="Open Network Computing Remote Procedure Call (core)"/>
- <attribute name="Implementation-Version" value="${distVersion}"/>
- <attribute name="Implementation-Vendor" value="RemoteTea SF Project"/>
- </manifest>
- </jar>
- <delete file="${buildDir}/jrpcgen.jar"/>
- <!-- ** SF patch #943215: include Ant task with jrpcgen.jar ** -->
- <jar jarfile="${buildDir}/jrpcgen.jar" basedir="${buildDir}" includes="org/acplt/oncrpc/apps/jrpcgen/**/*.class,org/acplt/oncrpc/ant/*.class">
- <manifest>
- <attribute name="Main-Class" value="org.acplt.oncrpc.apps.jrpcgen.jrpcgen"/>
- <attribute name="Extension-Name" value="ONC/RPC"/>
- <attribute name="Specification-Title" value="Open Network Computing Remote Procedure Call (rpcgen)"/>
- <attribute name="Specification-Version" value="unknown (rpcgen x.x)"/>
- <attribute name="Specification-Vendor" value="Sun Microsystems, Inc"/>
- <attribute name="Implementation-Title" value="Open Network Computing Remote Procedure Call (rpcgen)"/>
- <attribute name="Implementation-Version" value="${distVersion}"/>
- <attribute name="Implementation-Vendor" value="RemoteTea SF Project"/>
- </manifest>
- </jar>
- <delete file="${buildDir}/portmap.jar"/>
- <jar jarfile="${buildDir}/portmap.jar" basedir="${buildDir}" includes="org/acplt/oncrpc/*.class,org/acplt/oncrpc/server/*.class,org/acplt/oncrpc/apps/jportmap/*.class">
- <manifest>
- <attribute name="Main-Class" value="org.acplt.oncrpc.apps.jportmap.jportmap"/>
- <attribute name="Extension-Name" value="ONC/RPC"/>
- <attribute name="Specification-Title" value="Open Network Computing Remote Procedure Call (rpcbind)"/>
- <attribute name="Specification-Version" value="2.0"/>
- <attribute name="Specification-Vendor" value="Sun Microsystems, Inc"/>
- <attribute name="Implementation-Title" value="Open Network Computing Remote Procedure Call (rpcbind)"/>
- <attribute name="Implementation-Version" value="${distVersion}"/>
- <attribute name="Implementation-Vendor" value="RemoteTea SF Project"/>
- </manifest>
- </jar>
- </target>
-
- <!-- Generate JavaDoc -->
- <target name="javadoc" description="generate JavaDoc documentation files">
- <delete dir="${javadocDir}"/>
- <mkdir dir="${javadocDir}"/>
- <javadoc sourcepath="${srcDir}" destdir="${javadocDir}" classpath="${buildDir}" private="true" author="on">
- <package name="org.acplt.oncrpc"/>
- <package name="org.acplt.oncrpc.server"/>
- <package name="org.acplt.oncrpc.web"/>
- <package name="org.acplt.oncrpc.apps.jrpcgen"/>
- <package name="org.acplt.oncrpc.apps.jportmap"/>
- <package name="org.acplt.oncrpc.apps.ant"/>
- </javadoc>
- </target>
-
- <!-- Generate SF file packages -->
- <target name="sf" description="generate SF file packages" depends="jar,javadoc">
- <echo>generating SF file packages for version ${distVersion}...</echo>
- <mkdir dir="${distDir}"/>
- <!-- binary plus documentation distribution -->
- <zip zipfile="${distDir}/remotetea-bin-doc.zip">
- <zipfileset dir="." prefix="remotetea/">
- <include name="${buildDir}/*.jar"/>
- <include name="${javadocDir}/"/>
- </zipfileset>
- <zipfileset dir="." prefix="remotetea/">
- <include name="readme.html"/>
- <include name="changelog.html"/>
- <include name="docstyle.css"/>
- <include name="COPYING.LIB"/>
- <include name="build.xml"/>
- </zipfileset>
- </zip>
- <!-- source only distribution -->
- <zip zipfile="${distDir}/remotetea-src.zip">
- <zipfileset dir="." prefix="remotetea/">
- <include name=".project"/>
- <include name=".classpath"/>
- <include name="readme.html"/>
- <include name="changelog.html"/>
- <include name="docstyle.css"/>
- <include name="COPYING.LIB"/>
- </zipfileset>
- <zipfileset dir="." prefix="remotetea/">
- <include name="${srcDir}/"/>
- </zipfileset>
- </zip>
- </target>
-
- <!-- compile Jrpcgen test example and compile resulting Java files -->
- <target name="jrpcgen-test" description="run jrpcgen test">
- <echo>Cleaning up example mess...</echo>
- <delete><!-- make a fresh start so we don't get bitten by damaged example source code -->
- <fileset dir="${srcDir}/tests/org/acplt/oncrpc/jrpcgen" includes="*.java" excludes="demoClientExample.java demoServer.java"/>
- </delete>
- <echo>Compiling Jrpcgen protocol compiler...</echo>
- <antcall target="compile"/>
- <echo>Running Jrpcgen x protocol compiler on demo.x...</echo>
- <java classname="org.acplt.oncrpc.apps.jrpcgen.jrpcgen" classpath="${buildDir}" dir="${srcDir}/tests/org/acplt/oncrpc/jrpcgen" fork="yes">
- <arg value="-verbose"/>
- <arg value="-ser"/>
- <arg value="-bean"/>
- <arg value="-p"/>
- <arg value="tests.org.acplt.oncrpc.jrpcgen"/>
- <arg value="-nobackup"/>
- <arg value="demo.x"/>
- </java>
- <echo>Running Jrpcgen x protocol compiler on demo2.x...</echo>
- <java classname="org.acplt.oncrpc.apps.jrpcgen.jrpcgen" classpath="${buildDir}" dir="${srcDir}/tests/org/acplt/oncrpc/jrpcgen" fork="yes">
- <arg value="-verbose"/>
- <arg value="-p"/>
- <arg value="tests.org.acplt.oncrpc.jrpcgen"/>
- <arg value="-nobackup"/>
- <arg value="demo2.x"/>
- </java>
- <echo>Compiling example mess...</echo>
- <javac srcdir="${srcDir}/tests/org/acplt/oncrpc/jrpcgen" destdir="${buildDir}" debug="true" deprecation="true" optimize="true">
- </javac>
- <echo>Succeeded.</echo>
- </target>
-
-</project>
-<!-- End of build.xml -->
diff --git a/debian/changelog b/debian/changelog
index 35d1598..3266762 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+remotetea (1.0.7-2) unstable; urgency=low
+
+ * Bump Standards-Version to 3.9.1
+ * Switch to dpkg-source 3.0 (quilt) format.
+ * register the documentation with doc-base
+
+ -- Picca Frédéric-Emmanuel <picca at synchrotron-soleil.fr> Mon, 03 Jan 2011 14:53:36 +0100
+
remotetea (1.0.7-1) unstable; urgency=low
* Initial release (Closes: #539375)
diff --git a/debian/control b/debian/control
index 8bae93a..ba2dae3 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: java
Priority: extra
Maintainer: Picca Frédéric-Emmanuel <picca at synchrotron-soleil.fr>
Build-Depends: debhelper (>= 7.0.50), javahelper, default-jdk, ant
-Standards-Version: 3.8.2
+Standards-Version: 3.9.1
Homepage: http://remotetea.sourceforge.net
Package: remotetea
diff --git a/debian/copyright b/debian/copyright
index 28c2257..06b6f98 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -2,7 +2,7 @@ Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
Upstream-Author: Harald Albrecht <harald at plt.rwth-aachen.de>
Debianized-By: picca frederic <picca at synchrotron-soleil.fr>
Debianized-Date: Sat, 18 Nov 2006 18:52:07 +0100.
-Original-Source-Location: http://tango-controls.org/download
+Original-Source-Location: http://sourceforge.net/projects/remotetea/files/remotetea/
Files: debian/*
Copyright: © 2006-2008, picca frederic<picca at synchrotron-soleil.fr>
diff --git a/debian/doc-base b/debian/doc-base
new file mode 100644
index 0000000..54e339c
--- /dev/null
+++ b/debian/doc-base
@@ -0,0 +1,12 @@
+Document: remotetea-manual
+Title: remotetea documentation manual
+Author: Harald Albrecht <harald at plt.rwth-aachen.de>
+Abstract: remotetea_
+ This package implements Sun's Open Network Computing Remote
+ Procedure Call specification (see RFC 1831, RFC 1832, RFC 1833) in pure Java.
+ The utility jrpcgen is provided to compile .x files into Java classes.
+Section: Text
+
+Format: HTML
+Index: /usr/share/doc/remotetea/api/index.html
+Files: /usr/share/doc/remotetea/api/*
diff --git a/debian/patches/debian/build.xml b/debian/patches/debian/build.xml
new file mode 100644
index 0000000..2e6313e
--- /dev/null
+++ b/debian/patches/debian/build.xml
@@ -0,0 +1,188 @@
+Description: add the ant build.xml file
+ remotetea (1.0.7-2) unstable; urgency=low
+ .
+ * Bump Standards-Version to 3.9.1
+ * Switch to dpkg-source 3.0 (quilt) format.
+ * register the documentation with doc-base
+ .
+ The person named in the Author field signed this changelog entry.
+Author: Picca Frédéric-Emmanuel <picca at synchrotron-soleil.fr>
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- /dev/null
++++ remotetea-1.0.7/build.xml
+@@ -0,0 +1,162 @@
++<?xml version="1.0" encoding="UTF-8"?>
++<!--
++ $Header: /cvsroot-fuse/remotetea/remotetea/build.xml,v 1.7 2008/01/05 17:21:45 haraldalbrecht Exp $
++
++ build.xml - contains the ANT rules for building Remote Tea
++
++ -->
++<project name="Remote Tea" default="jar" basedir=".">
++
++ <!-- -->
++ <property name="buildDir" value="classes"/>
++ <property name="srcDir" value="src"/>
++ <property name="javadocDir" value="javadoc"/>
++ <property name="distDir" value="dist"/>
++
++ <property name="distVersion" value="1.0.8"/>
++
++ <!-- -->
++ <!-- ** SF patch #943219: add compile target ** -->
++ <!-- Compile classes -->
++ <target name="compile" description="compile classes">
++ <mkdir dir="${buildDir}"/>
++ <javac srcdir="${srcDir}" destdir="${buildDir}" debug="true" deprecation="true" optimize="true">
++ </javac>
++ </target>
++
++ <target name="clean" description="clean build">
++ <delete dir="${buildDir}"/>
++ <delete dir="${javadocDir}"/>
++ </target>
++
++ <!-- Generate JAR files:
++ * oncrpc.jar contains the ONC/RPC client and server functionality,
++ * jrpcgen.jar contains the x-file protocol compiler,
++ * jportmap.jar contains an ONC/RPC portmapper including base libraries
++ (so older JREs have no problems executing it standalone).
++ -->
++ <!-- ** SF patch #943219: add compile target / compile dependency ** -->
++ <target name="jar" description="generate jar files" depends="compile">
++ <delete file="${buildDir}/oncrpc.jar"/>
++ <jar jarfile="${buildDir}/oncrpc.jar" basedir="${buildDir}" includes="org/acplt/oncrpc/*.class,org/acplt/oncrpc/server/*.class">
++ <manifest>
++ <attribute name="Extension-Name" value="ONC/RPC"/>
++ <attribute name="Specification-Title" value="Open Network Computing Remote Procedure Call (core)"/>
++ <attribute name="Specification-Version" value="2.0"/>
++ <attribute name="Specification-Vendor" value="Sun Microsystems, Inc"/>
++ <attribute name="Implementation-Title" value="Open Network Computing Remote Procedure Call (core)"/>
++ <attribute name="Implementation-Version" value="${distVersion}"/>
++ <attribute name="Implementation-Vendor" value="RemoteTea SF Project"/>
++ </manifest>
++ </jar>
++ <delete file="${buildDir}/jrpcgen.jar"/>
++ <!-- ** SF patch #943215: include Ant task with jrpcgen.jar ** -->
++ <jar jarfile="${buildDir}/jrpcgen.jar" basedir="${buildDir}" includes="org/acplt/oncrpc/apps/jrpcgen/**/*.class,org/acplt/oncrpc/ant/*.class">
++ <manifest>
++ <attribute name="Main-Class" value="org.acplt.oncrpc.apps.jrpcgen.jrpcgen"/>
++ <attribute name="Extension-Name" value="ONC/RPC"/>
++ <attribute name="Specification-Title" value="Open Network Computing Remote Procedure Call (rpcgen)"/>
++ <attribute name="Specification-Version" value="unknown (rpcgen x.x)"/>
++ <attribute name="Specification-Vendor" value="Sun Microsystems, Inc"/>
++ <attribute name="Implementation-Title" value="Open Network Computing Remote Procedure Call (rpcgen)"/>
++ <attribute name="Implementation-Version" value="${distVersion}"/>
++ <attribute name="Implementation-Vendor" value="RemoteTea SF Project"/>
++ </manifest>
++ </jar>
++ <delete file="${buildDir}/portmap.jar"/>
++ <jar jarfile="${buildDir}/portmap.jar" basedir="${buildDir}" includes="org/acplt/oncrpc/*.class,org/acplt/oncrpc/server/*.class,org/acplt/oncrpc/apps/jportmap/*.class">
++ <manifest>
++ <attribute name="Main-Class" value="org.acplt.oncrpc.apps.jportmap.jportmap"/>
++ <attribute name="Extension-Name" value="ONC/RPC"/>
++ <attribute name="Specification-Title" value="Open Network Computing Remote Procedure Call (rpcbind)"/>
++ <attribute name="Specification-Version" value="2.0"/>
++ <attribute name="Specification-Vendor" value="Sun Microsystems, Inc"/>
++ <attribute name="Implementation-Title" value="Open Network Computing Remote Procedure Call (rpcbind)"/>
++ <attribute name="Implementation-Version" value="${distVersion}"/>
++ <attribute name="Implementation-Vendor" value="RemoteTea SF Project"/>
++ </manifest>
++ </jar>
++ </target>
++
++ <!-- Generate JavaDoc -->
++ <target name="javadoc" description="generate JavaDoc documentation files">
++ <delete dir="${javadocDir}"/>
++ <mkdir dir="${javadocDir}"/>
++ <javadoc sourcepath="${srcDir}" destdir="${javadocDir}" classpath="${buildDir}" private="true" author="on">
++ <package name="org.acplt.oncrpc"/>
++ <package name="org.acplt.oncrpc.server"/>
++ <package name="org.acplt.oncrpc.web"/>
++ <package name="org.acplt.oncrpc.apps.jrpcgen"/>
++ <package name="org.acplt.oncrpc.apps.jportmap"/>
++ <package name="org.acplt.oncrpc.apps.ant"/>
++ </javadoc>
++ </target>
++
++ <!-- Generate SF file packages -->
++ <target name="sf" description="generate SF file packages" depends="jar,javadoc">
++ <echo>generating SF file packages for version ${distVersion}...</echo>
++ <mkdir dir="${distDir}"/>
++ <!-- binary plus documentation distribution -->
++ <zip zipfile="${distDir}/remotetea-bin-doc.zip">
++ <zipfileset dir="." prefix="remotetea/">
++ <include name="${buildDir}/*.jar"/>
++ <include name="${javadocDir}/"/>
++ </zipfileset>
++ <zipfileset dir="." prefix="remotetea/">
++ <include name="readme.html"/>
++ <include name="changelog.html"/>
++ <include name="docstyle.css"/>
++ <include name="COPYING.LIB"/>
++ <include name="build.xml"/>
++ </zipfileset>
++ </zip>
++ <!-- source only distribution -->
++ <zip zipfile="${distDir}/remotetea-src.zip">
++ <zipfileset dir="." prefix="remotetea/">
++ <include name=".project"/>
++ <include name=".classpath"/>
++ <include name="readme.html"/>
++ <include name="changelog.html"/>
++ <include name="docstyle.css"/>
++ <include name="COPYING.LIB"/>
++ </zipfileset>
++ <zipfileset dir="." prefix="remotetea/">
++ <include name="${srcDir}/"/>
++ </zipfileset>
++ </zip>
++ </target>
++
++ <!-- compile Jrpcgen test example and compile resulting Java files -->
++ <target name="jrpcgen-test" description="run jrpcgen test">
++ <echo>Cleaning up example mess...</echo>
++ <delete><!-- make a fresh start so we don't get bitten by damaged example source code -->
++ <fileset dir="${srcDir}/tests/org/acplt/oncrpc/jrpcgen" includes="*.java" excludes="demoClientExample.java demoServer.java"/>
++ </delete>
++ <echo>Compiling Jrpcgen protocol compiler...</echo>
++ <antcall target="compile"/>
++ <echo>Running Jrpcgen x protocol compiler on demo.x...</echo>
++ <java classname="org.acplt.oncrpc.apps.jrpcgen.jrpcgen" classpath="${buildDir}" dir="${srcDir}/tests/org/acplt/oncrpc/jrpcgen" fork="yes">
++ <arg value="-verbose"/>
++ <arg value="-ser"/>
++ <arg value="-bean"/>
++ <arg value="-p"/>
++ <arg value="tests.org.acplt.oncrpc.jrpcgen"/>
++ <arg value="-nobackup"/>
++ <arg value="demo.x"/>
++ </java>
++ <echo>Running Jrpcgen x protocol compiler on demo2.x...</echo>
++ <java classname="org.acplt.oncrpc.apps.jrpcgen.jrpcgen" classpath="${buildDir}" dir="${srcDir}/tests/org/acplt/oncrpc/jrpcgen" fork="yes">
++ <arg value="-verbose"/>
++ <arg value="-p"/>
++ <arg value="tests.org.acplt.oncrpc.jrpcgen"/>
++ <arg value="-nobackup"/>
++ <arg value="demo2.x"/>
++ </java>
++ <echo>Compiling example mess...</echo>
++ <javac srcdir="${srcDir}/tests/org/acplt/oncrpc/jrpcgen" destdir="${buildDir}" debug="true" deprecation="true" optimize="true">
++ </javac>
++ <echo>Succeeded.</echo>
++ </target>
++
++</project>
++<!-- End of build.xml -->
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..6cc54c9
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+debian/build.xml
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)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/remotetea.git
More information about the pkg-java-commits
mailing list