[libsaxon-java] 26/33: Update saxon
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Mon Jun 19 12:26:40 UTC 2017
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository libsaxon-java.
commit 2c843fff3d31e60799db61ac9ad26ad40f6b67b9
Author: Mathieu Malaterre <malat at debian.org>
Date: Wed May 15 12:32:35 2013 +0000
Update saxon
---
debian/changelog | 9 +++++++
debian/compat | 2 +-
debian/control | 2 +-
debian/libsaxon-java.manpages | 1 +
debian/rules | 15 +++++++++++
debian/saxon-xslt.1 | 63 +++++++++++++++++++++++++++++++++++++++++++
debian/saxon-xslt.1.in | 8 ++++++
7 files changed, 98 insertions(+), 2 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 387cf55..dd264a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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 <malat at debian.org> Wed, 15 May 2013 14:32:10 +0200
+
libsaxon-java (1:6.5.5-9) experimental; urgency=low
[ Eugene Zhukov ]
diff --git a/debian/compat b/debian/compat
index 7f8f011..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+9
diff --git a/debian/control b/debian/control
index e37470e..0d665ec 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Eugene Zhukov <jevgeni.zh at gmail.com>
-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
diff --git a/debian/libsaxon-java.manpages b/debian/libsaxon-java.manpages
new file mode 100644
index 0000000..5fb7a5c
--- /dev/null
+++ b/debian/libsaxon-java.manpages
@@ -0,0 +1 @@
+debian/saxon-xslt.1
diff --git a/debian/rules b/debian/rules
index a13323c..d14e788 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,6 +14,17 @@ JDOM=com/icl/saxon/jdom
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 @@ endif
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
diff --git a/debian/saxon-xslt.1 b/debian/saxon-xslt.1
new file mode 100644
index 0000000..7789398
--- /dev/null
+++ b/debian/saxon-xslt.1
@@ -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 <malat at debian.org> for
+the Debian GNU/Linux system, but may be used by others.
diff --git a/debian/saxon-xslt.1.in b/debian/saxon-xslt.1.in
new file mode 100644
index 0000000..72a7255
--- /dev/null
+++ b/debian/saxon-xslt.1.in
@@ -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 <malat at debian.org> for
+the Debian GNU/Linux system, but may be used by others.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libsaxon-java.git
More information about the pkg-java-commits
mailing list