Author: malat Date: 2013-05-15 12:32:35 +0000 (Wed, 15 May 2013) New Revision: 16652
Added: trunk/libsaxon-java/debian/libsaxon-java.manpages trunk/libsaxon-java/debian/saxon-xslt.1 trunk/libsaxon-java/debian/saxon-xslt.1.in Modified: trunk/libsaxon-java/debian/changelog trunk/libsaxon-java/debian/compat trunk/libsaxon-java/debian/control trunk/libsaxon-java/debian/rules Log: Update saxon Modified: trunk/libsaxon-java/debian/changelog =================================================================== --- trunk/libsaxon-java/debian/changelog 2013-05-15 11:34:28 UTC (rev 16651) +++ trunk/libsaxon-java/debian/changelog 2013-05-15 12:32:35 UTC (rev 16652) @@ -1,3 +1,12 @@ +libsaxon-java (1:6.5.5-10) unstable; urgency=low + + * Team upload. + * Upload to sid + * Use dh(9); fix hardening-no-relro (lintian) + * Add missing man page + + -- Mathieu Malaterre <[email protected]> Wed, 15 May 2013 14:32:10 +0200 + libsaxon-java (1:6.5.5-9) experimental; urgency=low [ Eugene Zhukov ] Modified: trunk/libsaxon-java/debian/compat =================================================================== --- trunk/libsaxon-java/debian/compat 2013-05-15 11:34:28 UTC (rev 16651) +++ trunk/libsaxon-java/debian/compat 2013-05-15 12:32:35 UTC (rev 16652) @@ -1 +1 @@ -7 +9 Modified: trunk/libsaxon-java/debian/control =================================================================== --- trunk/libsaxon-java/debian/control 2013-05-15 11:34:28 UTC (rev 16651) +++ trunk/libsaxon-java/debian/control 2013-05-15 12:32:35 UTC (rev 16652) @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian Java Maintainers <[email protected]> Uploaders: Eugene Zhukov <[email protected]> -Build-Depends: debhelper (>= 7.0.50~), default-jdk, javahelper (>= 0.32~), +Build-Depends: debhelper (>= 9), default-jdk, javahelper (>= 0.32~), libjdom1-java, gcj-native-helper, maven-repo-helper Build-Depends-Indep: default-jdk-doc, libjdom1-java-doc Standards-Version: 3.9.4 Added: trunk/libsaxon-java/debian/libsaxon-java.manpages =================================================================== --- trunk/libsaxon-java/debian/libsaxon-java.manpages (rev 0) +++ trunk/libsaxon-java/debian/libsaxon-java.manpages 2013-05-15 12:32:35 UTC (rev 16652) @@ -0,0 +1 @@ +debian/saxon-xslt.1 Modified: trunk/libsaxon-java/debian/rules =================================================================== --- trunk/libsaxon-java/debian/rules 2013-05-15 11:34:28 UTC (rev 16651) +++ trunk/libsaxon-java/debian/rules 2013-05-15 12:32:35 UTC (rev 16652) @@ -14,6 +14,17 @@ CLASSPATH = /usr/share/java/jdom1.jar JAVADOC = $(JAVA_HOME)/bin/javadoc -encoding ISO-8859-1 +# hardening +#CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS) +CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) +LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) + +# pass compile option to gcj: +# CPPFLAGS is not use, since leads to: +# gcj: can't specify '-D' without '--main' +export AOT_GCJFLAGS=$(CFLAGS) +export AOT_LDFLAGS=$(LDFLAGS) + include /usr/share/gcj/debian_defaults ifneq (,$(filter $(DEB_HOST_ARCH), $(gcj_native_archs))) with_gcj_native := yes @@ -59,3 +70,7 @@ override_dh_auto_install: mh_installpoms -plibsaxon-java mh_installjar -plibsaxon-java debian/saxon.pom saxon.jar + +debian/saxon-xslt.1: debian/saxon-xslt.1.in + help2man --include=$< --output=$@ --help-option="-?" \ + --no-info `basename $@ .1` --version-string=$(UPSTREAM_VERSION) --no-discard-stderr Added: trunk/libsaxon-java/debian/saxon-xslt.1 =================================================================== --- trunk/libsaxon-java/debian/saxon-xslt.1 (rev 0) +++ trunk/libsaxon-java/debian/saxon-xslt.1 2013-05-15 12:32:35 UTC (rev 16652) @@ -0,0 +1,63 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.38.2. +.TH SAXON-XSLT "1" "May 2013" "saxon-xslt 6.5.5" "User Commands" +.SH NAME +saxon-xslt \- Apply a given style sheet to a given source XML document +.SH SYNOPSIS +.B java +\fIcom.icl.saxon.StyleSheet \fR[\fIoptions\fR] \fIsource-doc style-doc {param=value}\fR... +.SH DESCRIPTION +SAXON 6.5.5 from Michael Kay +.SH OPTIONS +.TP +\fB\-a\fR +Use xml\-stylesheet PI, not style\-doc argument +.TP +\fB\-ds\fR +Use standard tree data structure +.TP +\fB\-dt\fR +Use tinytree data structure (default) +.TP +\fB\-o\fR filename +Send output to named file or directory +.TP +\fB\-m\fR classname +Use specified Emitter class for xsl:message output +.TP +\fB\-r\fR classname +Use specified URIResolver class +.TP +\fB\-t\fR +Display version and timing information +.TP +\fB\-T\fR +Set standard TraceListener +.TP +\fB\-TL\fR classname +Set a specific TraceListener +.TP +\fB\-u\fR +Names are URLs not filenames +.TP +\fB\-w0\fR +Recover silently from recoverable errors +.TP +\fB\-w1\fR +Report recoverable errors and continue (default) +.TP +\fB\-w2\fR +Treat recoverable errors as fatal +.TP +\fB\-x\fR classname +Use specified SAX parser for source file +.TP +\fB\-y\fR classname +Use specified SAX parser for stylesheet +.TP +\-? +Display this message +.SH AUTHOR +SAXON 6.5.5 from Michael Kay + +This manual page was written by Mathieu Malaterre <[email protected]> for +the Debian GNU/Linux system, but may be used by others. Added: trunk/libsaxon-java/debian/saxon-xslt.1.in =================================================================== --- trunk/libsaxon-java/debian/saxon-xslt.1.in (rev 0) +++ trunk/libsaxon-java/debian/saxon-xslt.1.in 2013-05-15 12:32:35 UTC (rev 16652) @@ -0,0 +1,8 @@ +[NAME] +saxon-xslt \- Apply a given style sheet to a given source XML document + +[AUTHOR] +SAXON 6.5.5 from Michael Kay + +This manual page was written by Mathieu Malaterre <[email protected]> for +the Debian GNU/Linux system, but may be used by others. _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

