Skip to content
Snippets Groups Projects
Commit 4da99f98 authored by Samuel Thibault's avatar Samuel Thibault
Browse files

Initial packaging

parent 3f4f8bb9
No related branches found
No related tags found
No related merge requests found
isorelax (20041111-1) unstable; urgency=low
* Initial release (Closes: #544556)
-- Samuel Thibault <sthibault@debian.org> Tue, 01 Sep 2009 15:53:03 +0200
7
Source: isorelax
Priority: extra
Maintainer: Samuel Thibault <sthibault@debian.org>
Build-Depends: debhelper (>= 7)
Build-Depends-Indep: default-jdk, ant
Standards-Version: 3.8.3
Section: java
Homepage: http://sourceforge.net/projects/iso-relax/
Vcs-Browser: http://git.debian.org/?p=collab-maint/isorelax.git;a=summary
Vcs-Git: git://git.debian.org/git/collab-maint/isorelax.git
Package: libisorelax-java
Section: java
Architecture: all
Depends: ${misc:Depends}, default-jre | java2-runtime, ant
Description: Interface for applications to support RELAX Core
The ISO RELAX project hosts the public interfaces useful for
applications to support RELAX Core.
More details about RELAX NG can be found on
http://relaxng.sourceforge.net/
Package: libisorelax-java-doc
Section: doc
Architecture: all
Depends: ${misc:Depends}
Description: Interface for applications to support RELAX Core - documentation
The ISO RELAX project hosts the public interfaces useful for
applications to support RELAX Core.
More details about RELAX NG can be found on
http://relaxng.sourceforge.net/
.
This package provides the documentation.
This package was debianized by Samuel Thibault <sthibault@debian.org> on
Tue, 01 Sep 2009 15:53:03 +0200.
It was downloaded from http://sourceforge.net/projects/iso-relax/
Copyright:
Copyright 2001-2002
SourceForge ISO-RELAX Project
Tomoharu Asami (asami@zeomtech.com)
Daisuke Okajima
Kohsuke Kawaguchi (kk@kohsuke.org)
Makoto Murata (mura034@attglobal.net)
License:
Part of org/iso_relax/verifier/VerifierFactory.java is provided under the Apache
Software License 1.1:
Copyright (C) The Apache Software Foundation. All rights reserved.
This software is published under the terms of the Apache Software License
version 1.1, a copy of which has been included with this distribution in
the LICENSE file.
The Apache Software License, Version 1.1
Copyright (c) 2000 The Apache Software Foundation. All rights
reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
3. The end-user documentation included with the redistribution,
if any, must include the following acknowledgment:
"This product includes software developed by the
Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself,
if and wherever such third-party acknowledgments normally appear.
4. The names "Apache" and "Apache Software Foundation" must
not be used to endorse or promote products derived from this
software without prior written permission. For written
permission, please contact apache@apache.org.
5. Products derived from this software may not be called "Apache",
nor may "Apache" appear in their name, without prior written
permission of the Apache Software Foundation.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
====================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Apache Software Foundation. For more
information on the Apache Software Foundation, please see
<http://www.apache.org/>.
Portions of this software are based upon public domain software
originally written at the National Center for Supercomputing Applications,
University of Illinois, Urbana-Champaign.
The rest is provided under the MIT license:
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The Debian packaging is:
Copyright (C) 2009 Samuel Thibault <sthibault@debian.org>
and is licensed under the GPL version 3,
see `/usr/share/common-licenses/GPL-3'.
api
isorelax.jar /usr/share/java
#!/usr/bin/make -f
JAVAC=javac
JAVADOC=javadoc
JAR=jar
JAVACLASSES=/usr/share/java
JAVAFLAGS=-classpath $(JAVACLASSES)/ant.jar
JARFILE=isorelax.jar
build: build-stamp
build-stamp:
dh_testdir
$(JAVAC) $(JAVAFLAGS) `find . -name \*.java`
$(JAVADOC) -d api `find . -name \*.java`
$(JAR) c `find . -name \*.class -o -name \*.rxm -o -name \*.rxg -o -name \*.dtd -o -name \*.mod -o -name \*.MF` > $(JARFILE)
touch $@
clean:
dh_testdir
dh_testroot
rm -f `find . -name \*.class`
rm -f $(JARFILE)
rm -fr api
dh_clean
binary-indep: install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_install
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
......@@ -101,4 +101,8 @@ public class ValidatingDocumentBuilderFactory extends DocumentBuilderFactory
{ _WrappedFactory.setIgnoringElementContentWhitespace(whitespace); }
public void setNamespaceAware(boolean awareness)
{ _WrappedFactory.setNamespaceAware(awareness); }
public boolean getFeature(String name) throws ParserConfigurationException
{ return _WrappedFactory.getFeature(name); }
public void setFeature(String name, boolean value) throws ParserConfigurationException
{ _WrappedFactory.setFeature(name, value); }
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment