debian/0000755000000000000000000000000012151751144007167 5ustar debian/maven.rules0000644000000000000000000000172512151750035011354 0ustar # Maven rules - transform Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ junit junit jar s/4\..*/4.x/ * * s/ant/org.apache.ant/ * * s/.*/debian/ * * s/jdom/org.jdom/ * * s/.*/debian/ * * debian/maven.ignoreRules0000644000000000000000000000177712151750035012527 0ustar # Maven ignore rules - ignore some Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM # junit junit jar s/3\\..*/3.x/ org.apache.maven.plugins maven-eclipse-plugin * * * * org.apache.maven.plugins maven-javadoc-plugin * * * * org.apache.maven.plugins maven-project-info-reports-plugin * * * * org.codehaus.mojo build-helper-maven-plugin * * * * org.jvnet.wagon-svn wagon-svn * * * * debian/maven.publishedRules0000644000000000000000000000164212151750035013212 0ustar # Maven published rules - additional rules to publish, to help # the packaging work of Debian maintainers using mh_make # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ debian/control0000644000000000000000000000212312151750035010566 0ustar Source: msv Section: java Priority: extra Maintainer: Debian Java Maintainers Uploaders: Giovanni Mascellani Build-Depends: debhelper (>= 7.0.50~), maven-debian-helper, default-jdk, cdbs, libisorelax-java, libjdom1-java, librelaxng-datatype-java, libxalan2-java, libxerces2-java, libxml-commons-resolver1.1-java, ant Standards-Version: 3.9.4 Homepage: http://java.net/projects/msv Vcs-Git: git://anonscm.debian.org/pkg-java/msv.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/msv.git;a=summary Package: libmsv-java Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, ${maven:Depends} Description: Sun multi-schema XML validator The Sun Multi-Schema XML Validator is a Java tool to validate XML documents against several kinds of XML schemata. It supports DTD, RELAX Namespace, RELAX Core, RELAX NG, TREX, and a subset of W3C XML Schema Part 1. . It features both a command line utility that can read XML documents and validate them against a schema and a library that can be incorporated in a Java program. debian/orig-tar.sh0000755000000000000000000000063712151750035011256 0ustar #!/bin/bash set -e VERSION="$2" DOWNLOADED_FILE="$3" PACKAGE="$(dpkg-parsechangelog | sed -n 's/^Source: //p')" TEMPDIR="$(mktemp -d)" DIR="${PACKAGE}-${VERSION}" rm -f "$DOWNLOADED_FILE" svn export "https://svn.java.net/svn/msv~svn/tags/msv-$VERSION" "$TEMPDIR/$DIR" find "$TEMPDIR/$DIR" -name '*.vsd' -delete GZIP=--best tar -c -z -f "../${PACKAGE}_$VERSION.orig.tar.gz" -C "$TEMPDIR" "$DIR" rm -fr "$TEMPDIR" debian/changelog0000644000000000000000000000252612151750035011044 0ustar msv (2009.1+dfsg1-4) unstable; urgency=low [Tony Mancill] * Team upload. * Update Vcs-Git URL in d/control. [Ludovic Claude] * Add --no-parent option to the parent POM, * Add --has-package-version to all POM files. * Ignore relames subproject [ Emmanuel Bourg ] * Added a watch file monitoring the upstream SVN tags [ Giovanni Mascellani ] * Add a script to checkout the canonical tarball from SVN. * Install more documentation files (closes: #692219). * Fix some lintian issues. + Bump Standards-Version to 3.9.4 (no changes required). + Use canonical values from Vcs-* fields. -- Giovanni Mascellani Fri, 31 May 2013 00:17:59 +0200 msv (2009.1+dfsg1-3) unstable; urgency=low * Team upload. * Update d/libmsv-java.poms for new d-m-h behavior. (Closes: #671202) - Thanks to Juergen Kahrs. * Bump standards version to 3.9.3 (no changes). * Update d/copyright FSF address and format. -- tony mancill Wed, 02 May 2012 22:13:12 -0700 msv (2009.1+dfsg1-2) unstable; urgency=low * Team upload. * Ignore test failures. (Closes: #642691) -- Torsten Werner Sat, 24 Sep 2011 23:17:54 +0200 msv (2009.1+dfsg1-1) unstable; urgency=low * Initial release (closes: #612440). -- Giovanni Mascellani Mon, 15 Aug 2011 13:58:12 +0200 debian/rules0000755000000000000000000000043112151750035010243 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/maven.mk JAVA_HOME := /usr/lib/jvm/default-java DEB_INSTALL_CHANGELOGS_ALL := msv/doc/ChangeLog.txt debian/watch0000644000000000000000000000023412151750035010215 0ustar version=3 opts=dversionmangle=s/\+dfsg.*// \ https://java.net/projects/msv/sources/svn/show/tags .*/msv-([0-9]{4}\.[\d\.]+)\?.* debian ./debian/orig-tar.sh debian/TODO0000644000000000000000000000002412151750035007651 0ustar - fix test failures debian/copyright0000644000000000000000000003126712151750035011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: msv Source: http://java.net/projects/msv Files: * Copyright: © 1998-2009, Sun Microsystems, Inc. License: BSD All Rights Reserved. . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . - Redistribution in binary form must reproduct the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . Neither the name of Sun Microsystems, Inc. or the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. . This software is provided "AS IS," without a warranty of any kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT OF OR RELATING TO USE, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. X-Comment: The licensing terms are not consistently reported in every subproject. However, since the upstream site reports the project as being under the BSD license, I assume that these terms apply to any file and directory not having other explicit licensing statements. Files: testharness/* Copyright: © 2001, Sun Microsystems, Inc. License: BSD__ All rights reserved. . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . * 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. . * Neither the name of Sun Microsystems, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS 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 COPYRIGHT HOLDERS OR 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. Files: msv/src/com/sun/msv/util/Uri.java Copyright: © 2001, 2002, Thai Open Source Software Center Ltd License: BSD_ All rights reserved. . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 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. . Neither the name of the Thai Open Source Software Center Ltd nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS 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 REGENTS OR 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. Files: msv/src/com/sun/msv/reader/xmlschema/DOMLSInputImpl.java Copyright: Contributors of the Apache Software Foundation License: Apache-2.0 Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache License version 2.0 can be found in `/usr/share/common-licenses/Apache-2.0'. Files: xsdlib/src-apache/com/sun/msv/datatype/regexp/RegexParser.java xsdlib/src-apache/com/sun/msv/datatype/regexp/ParseException.java xsdlib/src-apache/com/sun/msv/datatype/regexp/Token.java xsdlib/src-apache/com/sun/msv/datatype/regexp/RegularExpression.java xsdlib/src-apache/com/sun/msv/datatype/regexp/RangeToken.java xsdlib/src-apache/com/sun/msv/datatype/regexp/Op.java xsdlib/src-apache/com/sun/msv/datatype/regexp/REUtil.java xsdlib/src-apache/com/sun/msv/datatype/regexp/Match.java xsdlib/src-apache/com/sun/msv/datatype/regexp/ParserForXMLSchema.java xsdlib/src-apache/com/sun/msv/datatype/regexp/BMPattern.java Copyright: © 1999-2002, The Apache Software Foundation License: Apache-1.1 This product includes software developed by the Apache Software Foundation (http://www.apache.org/). . 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 "Xerces" 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 and was originally based on software copyright (c) 1999, International Business Machines, Inc., http://www.apache.org. For more information on the Apache Software Foundation, please see . Files: msv/contrib/sunmsv.el Copyright: © Stuart Popejoy License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . 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 General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". Files: parent/pom.xml Copyright: © 2009, Benson I. Margulies License: BSD___ All rights reserved. . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY Benson I. Margulies ''AS IS'' AND ANY EXPRESS 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 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. Files: debian/* Copyright: © 2011, Giovanni Mascellani License: GPL-3+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. . This package 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 General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". debian/README.source0000644000000000000000000000075612151750035011354 0ustar msv package for Debian ---------------------- The original tarball for the package msv was obtained exporting a copy of the tag msv-2009.1 from the upstream SVN repository (https://svn.java.net/svn/msv~svn) and then performing the following actions to make it DFSG-compliant: * remove all the precompiled .zip and .jar files; * remove the whole generator/ subdirectory, that is non-free; * remove two documentation .vsd files, that are non-free. Giovanni Mascellani debian/compat0000644000000000000000000000000212151750035010363 0ustar 7 debian/maven.cleanIgnoreRules0000644000000000000000000000150112151750035013453 0ustar # Maven clean ignore rules - ignore some Maven dependencies and plugins # during the clean phase of a Maven build # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM before mvn clean is called # junit junit jar s/3\\..*/3.x/ debian/maven.properties0000644000000000000000000000003712151750035012411 0ustar maven.test.failure.ignore=true debian/patches/0000755000000000000000000000000012151750035010614 5ustar debian/patches/series0000644000000000000000000000011312151750035012024 0ustar 0001-Add-classpath-to-JAR.patch 0002-Do-not-compile-module-generator.patch debian/patches/0001-Add-classpath-to-JAR.patch0000644000000000000000000000130012151750035015707 0ustar From: Giovanni Mascellani Date: Thu, 17 Feb 2011 11:07:04 +0100 Subject: Add classpath to JAR. Instruct maven to add classpath information to the generated JARs. --- msv/pom.xml | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/msv/pom.xml b/msv/pom.xml index d5a2f84..081eaf6 100644 --- a/msv/pom.xml +++ b/msv/pom.xml @@ -64,6 +64,7 @@ EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. com.sun.msv.driver.textui.Driver + true -- debian/patches/0002-Do-not-compile-module-generator.patch0000644000000000000000000000126012151750035020250 0ustar From: Giovanni Mascellani Date: Tue, 16 Aug 2011 14:12:30 +0200 Subject: Do not compile module generator. Module generator is distributed with a non-free license, so it must be removed from the Debian package. --- pom.xml | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/pom.xml b/pom.xml index e1d0a50..dd1af49 100644 --- a/pom.xml +++ b/pom.xml @@ -60,7 +60,6 @@ EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. xsdlib testharness msv - generator rngconverter -- debian/docs0000644000000000000000000000036712151750035010046 0ustar readme.html msv/doc/acceptor.html msv/doc/commandline.html msv/doc/developer.html msv/doc/JARV_API.gif msv/doc/JARV.html msv/doc/JAXPmasquerading.html msv/doc/nativeAPI.html msv/doc/README.txt msv/doc/RNGDatatypeLibrary.html msv/doc/SAXfilter.gif debian/libmsv-java.poms0000644000000000000000000000336712151750035012311 0ustar # List of POM files for the package # Format of this file is: # [option]* # where option can be: # --ignore: ignore this POM or # --no-parent: remove the tag from the POM # --package=: an alternative package to use when installing this POM # and its artifact # --has-package-version: to indicate that the original version of the POM is the same as the upstream part # of the version for the package. # --keep-elements=: a list of XML elements to keep in the POM # during a clean operation with mh_cleanpom or mh_installpom # --artifact=: path to the build artifact associated with this POM, # it will be installed when using the command mh_install # --java-lib: install the jar into /usr/share/java to comply with Debian # packaging guidelines # --usj-name=: name to use when installing the library in /usr/share/java # --usj-version=: version to use when installing the library in /usr/share/java # --no-usj-versionless: don't install the versionless link in /usr/share/java # --dest-jar=: the destination for the real jar # it will be installed with mh_install. # --classifier=: Optional, the classifier for the jar. Empty by default. # --ignore-pom: don't install the POM with mh_install or mh_installpoms. To use with POM files that are created # temporarily for certain artifacts such as Javadoc jars. # pom.xml --java-lib --no-parent --has-package-version parent/pom.xml --java-lib --has-package-version xsdlib/pom.xml --java-lib --has-package-version testharness/pom.xml --java-lib --has-package-version msv/pom.xml --java-lib --has-package-version rngconverter/pom.xml --java-lib --has-package-version relames/pom.xml --ignore debian/source/0000755000000000000000000000000012151750035010465 5ustar debian/source/format0000644000000000000000000000001412151750035011673 0ustar 3.0 (quilt)