This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository commons-beanutils.
commit bd14ab69005e22d68bc7c063678ed744764915c7 Author: Wolfgang Bär <[email protected]> Date: Sat Oct 1 18:51:13 2005 +0000 commons-beanutils (1.7.0-1) unstable; urgency=low * New upstream release (closes: #264529) * Added myself to uploaders --- build.xml | 453 -------------------------- debian/ant.properties | 3 + debian/changelog | 9 + debian/control | 11 +- debian/copyright | 235 +++++++++---- debian/libcommons-beanutils-java-doc.doc-base | 12 + debian/libcommons-beanutils-java.links | 3 +- debian/patches/01_build_xml.patch | 11 + debian/rules | 25 +- 9 files changed, 228 insertions(+), 534 deletions(-) diff --git a/build.xml b/build.xml deleted file mode 100644 index 05a0641..0000000 --- a/build.xml +++ /dev/null @@ -1,453 +0,0 @@ -<project name="Bean Utilities" default="compile" basedir="."> - - -<!-- - "Bean Utilities" component of the Jakarta Commons Subproject - $Id$ ---> - - -<!-- ========== Initialize Properties ===================================== --> - - - <property file="build.properties"/> <!-- Component local --> - <property file="../build.properties"/> <!-- Commons local --> - <property file="${user.home}/build.properties"/> <!-- User local --> - - -<!-- ========== External Dependencies ===================================== --> - - - <!-- The home directory for the Commons collection classes distribution --> - <property name="commons-collections.home" value="../collections/dist"/> - - <!-- The home directory for the Commons collection classes distribution --> - <property name="commons-logging.home" value="../logging/dist"/> - - <!-- The directory containing your binary distribution of JUnit, - version 3.7 or later --> - <property name="junit.home" value="/usr/local/junit3.7"/> - - -<!-- ========== Derived Values ============================================ --> - - - <!-- The pathname of the collections classes JAR file --> - <property name="commons-collections.jar" value="${commons-collections.home}/commons-collections.jar"/> - - <!-- The pathname of the logging classes JAR file --> - <property name="commons-logging.jar" value="${commons-logging.home}/commons-logging.jar"/> - - <!-- The pathname of the "junit.jar" JAR file --> - <property name="junit.jar" value="${junit.home}/junit.jar"/> - - -<!-- ========== Component Declarations ==================================== --> - - - <!-- The name of this component --> - <property name="component.name" value="beanutils"/> - - <!-- The primary package name of this component --> - <property name="component.package" value="org.apache.commons.beanutils"/> - - <!-- The title of this component --> - <property name="component.title" value="Bean Introspection Utilities"/> - - <!-- The current version number of this component --> - <property name="component.version" value="1.6.1"/> - - <!-- The base directory for compilation targets --> - <property name="build.home" value="target"/> - - <!-- The base directory for component configuration files --> - <property name="conf.home" value="src/conf"/> - - <!-- The base directory for distribution targets --> - <property name="dist.home" value="dist"/> - - <!-- The base directory for component sources --> - <property name="source.home" value="src/java"/> - - <!-- The base directory for unit test sources --> - <property name="test.home" value="src/test"/> - - -<!-- ========== Compiler Defaults ========================================= --> - - - <!-- Should Java compilations set the 'debug' compiler option? --> - <property name="compile.debug" value="true"/> - - <!-- Should Java compilations set the 'deprecation' compiler option? --> - <property name="compile.deprecation" value="false"/> - - <!-- Should Java compilations set the 'optimize' compiler option? --> - <property name="compile.optimize" value="true"/> - - <!-- Construct compile classpath --> - <path id="compile.classpath"> - <pathelement location="${build.home}/classes"/> - <pathelement location="${commons-collections.jar}"/> - <pathelement location="${commons-logging.jar}"/> - </path> - - -<!-- ========== Test Execution Defaults =================================== --> - - - <!-- Construct unit test classpath --> - <path id="test.classpath"> - <pathelement location="${build.home}/classes"/> - <pathelement location="${build.home}/tests"/> - <pathelement location="${commons-collections.jar}"/> - <pathelement location="${commons-logging.jar}"/> - <pathelement location="${junit.jar}"/> - </path> - - <!-- Should all tests fail if one does? --> - <property name="test.failonerror" value="true"/> - - <!-- The test runner to execute --> - <property name="test.runner" value="junit.textui.TestRunner"/> - - <!-- The Commons Logger LogFactory implementation to use --> - <property name="test.factory" - value="org.apache.commons.logging.impl.LogFactoryImpl"/> - - <!-- The Commons Logger Log implementation to use (standard factory) --> - <property name="test.log" - value="org.apache.commons.logging.impl.SimpleLog"/> - - <!-- The Commons Logger SimpleLog level for testing --> - <property name="test.level" value="error"/> - - -<!-- ========== Executable Targets ======================================== --> - - - <target name="init" - description="Initialize and evaluate conditionals"> - <echo message="-------- ${component.name} ${component.version} --------"/> - <filter token="name" value="${component.name}"/> - <filter token="package" value="${component.package}"/> - <filter token="version" value="${component.version}"/> - </target> - - - <target name="prepare" depends="init" - description="Prepare build directory"> - <mkdir dir="${build.home}"/> - <mkdir dir="${build.home}/classes"/> - <mkdir dir="${build.home}/conf"/> - <mkdir dir="${build.home}/tests"/> - </target> - - - <target name="static" depends="prepare" - description="Copy static files to build directory"> - <tstamp/> - <copy todir="${build.home}/conf" filtering="on"> - <fileset dir="${conf.home}" includes="*.MF"/> - </copy> - </target> - - - <target name="compile" depends="static" - description="Compile shareable components"> - <javac srcdir="${source.home}" - destdir="${build.home}/classes" - debug="${compile.debug}" - source="1.3" - deprecation="${compile.deprecation}" - optimize="${compile.optimize}"> - <classpath refid="compile.classpath"/> - </javac> - <copy todir="${build.home}/classes" filtering="on"> - <fileset dir="${source.home}" excludes="**/*.java"/> - </copy> - </target> - - - <target name="compile.tests" depends="compile" - description="Compile unit test cases"> - <javac srcdir="${test.home}" - destdir="${build.home}/tests" - debug="${compile.debug}" - deprecation="${compile.deprecation}" - optimize="${compile.optimize}"> - <classpath refid="test.classpath"/> - </javac> - <copy todir="${build.home}/tests" filtering="on"> - <fileset dir="${test.home}" excludes="**/*.java"/> - </copy> - </target> - - - <target name="clean" - description="Clean build and distribution directories"> - <delete dir="${build.home}"/> - <delete dir="${dist.home}"/> - </target> - - - <target name="all" depends="clean,compile" - description="Clean and compile all components"/> - - - <target name="javadoc" depends="compile" - description="Create component Javadoc documentation"> - <mkdir dir="${dist.home}"/> - <mkdir dir="${dist.home}/docs"/> - <mkdir dir="${dist.home}/docs/api"/> - <javadoc sourcepath="${source.home}" - destdir="${dist.home}/docs/api" - packagenames="org.apache.commons.*" - author="true" - private="true" - version="true" - overview="src/java/overview.html" - doctitle="<h1>${component.title} (Version ${component.version})</h1>" - windowtitle="${component.title} (Version ${component.version})" - bottom="Copyright (c) 2001-2003 - Apache Software Foundation"> - <classpath refid="compile.classpath"/> - </javadoc> - </target> - - - <target name="dist" depends="compile,javadoc" - description="Create binary distribution"> - <mkdir dir="${dist.home}"/> -<!-- - <copy file="LICENSE.txt" - todir="${dist.home}"/> - <copy file="RELEASE-NOTES.txt" - todir="${dist.home}"/> ---> - <antcall target="jar"/> - </target> - - - <target name="jar" depends="compile" - description="Create jar"> - <mkdir dir="${dist.home}"/> - <mkdir dir="${build.home}/classes/META-INF"/> - <copy file="LICENSE.txt" - tofile="${build.home}/classes/META-INF/LICENSE.txt"/> - <jar jarfile="${dist.home}/commons-${component.name}.jar" - basedir="${build.home}/classes" - manifest="${build.home}/conf/MANIFEST.MF"/> - </target> - - - <target name="install-jar" depends="jar" - description="--> Installs jar file in ${lib.repo}"> - <copy todir="${lib.repo}" filtering="no"> - <fileset dir="${dist.home}"> - <include name="commons-${component.name}.jar"/> - </fileset> - </copy> - </target> - - -<!-- ========== Unit Test Targets ========================================= --> - - - <target name="test" depends="compile.tests, - test.basic.dynabean, - test.wrap.dynabean, - test.dyna.property, - test.property, - test.dyna.bean, - test.bean, - test.convert, - test.method, - test.dyna.result, - test.dyna.row, - test.bean.comparator, - test.locale.converters - " - description="Run all unit test cases"> - </target> - - - <target name="test.basic.dynabean" depends="compile.tests"> - <echo message="Running BasicDynaBean tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.BasicDynaBeanTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.wrap.dynabean" depends="compile.tests"> - <echo message="Running WrapDynaBean tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.WrapDynaBeanTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.dyna.property" depends="compile.tests"> - <echo message="Running DynaBean PropertyUtils tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.DynaPropertyUtilsTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.property" depends="compile.tests"> - <echo message="Running PropertyUtils tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.PropertyUtilsTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.dyna.bean" depends="compile.tests"> - <echo message="Running DynaBean BeanUtils tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.DynaBeanUtilsTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.bean" depends="compile.tests"> - <echo message="Running BeanUtils tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.BeanUtilsTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.convert" depends="compile.tests"> - <echo message="Running ConvertUtils tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.ConvertUtilsTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.method" depends="compile.tests"> - <echo message="Running MethodUtils tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.MethodUtilsTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.dyna.result" depends="compile.tests"> - <echo message="Running DynaBean ResultSet tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.DynaResultSetTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.dyna.row" depends="compile.tests"> - <echo message="Running DynaBean RowSet tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.DynaRowSetTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.bean.comparator" depends="compile.tests"> - <echo message="Running BeanComparator tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.BeanComparatorTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> - - <target name="test.locale.converters" depends="compile.tests"> - <echo message="Running Locale converters tests ..."/> - <java classname="${test.runner}" fork="yes" - failonerror="${test.failonerror}"> - <sysproperty key="org.apache.commons.logging.LogFactory" - value="${test.factory}"/> - <sysproperty key="org.apache.commons.logging.Log" - value="${test.log}"/> - <sysproperty key="org.apache.commons.logging.simplelog.defaultlog" - value="${test.level}"/> - <arg value="org.apache.commons.beanutils.locale.converters.DateLocaleConverterTestCase"/> - <classpath refid="test.classpath"/> - </java> - </target> -</project> diff --git a/debian/ant.properties b/debian/ant.properties new file mode 100644 index 0000000..45ebb60 --- /dev/null +++ b/debian/ant.properties @@ -0,0 +1,3 @@ +junit.jar=/usr/share/java/junit.jar +commons-logging.jar=/usr/share/java/commons-logging.jar +test.failonerror=false diff --git a/debian/changelog b/debian/changelog index ff1ba51..fa760f4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +commons-beanutils (1.7.0-1) unstable; urgency=low + + * New upstream release (closes: #264529) + + Updated copyright to Apache 2.0 License + + Depends on commons-collections3 + * Added myself to uploaders + + -- Wolfgang Baer <[email protected]> Sat, 24 Sep 2005 00:32:01 +0200 + commons-beanutils (1.6.1-5) unstable; urgency=low * debian/control (Build-Depends-Indep): ant transition diff --git a/debian/control b/debian/control index df4cd07..14a6293 100644 --- a/debian/control +++ b/debian/control @@ -2,13 +2,13 @@ Source: commons-beanutils Section: libs Priority: optional Maintainer: Debian Java Maintainers <[email protected]> -Uploaders: Takashi Okamoto <[email protected]>, Arnaud Vandyck <[email protected]> -Build-Depends-Indep: kaffe (>= 2:1.1.4.PRE1.1.5-7), jikes, debhelper (>> 4.0.0), cdbs, ant, libcommons-collections-java, libcommons-logging-java +Uploaders: Takashi Okamoto <[email protected]>, Arnaud Vandyck <[email protected]>, Wolfgang Baer <[email protected]> +Build-Depends-Indep: kaffe (>= 2:1.1.5-3), jikes, debhelper (>= 4.2.30), cdbs, ant, ant-optional, libcommons-collections3-java, libcommons-logging-java, junit Standards-Version: 3.6.2 Package: libcommons-beanutils-java Architecture: all -Depends: kaffe (>= 1:1.1.3) | java2-runtime | java1-runtime, libcommons-collections-java, libcommons-logging-java +Depends: kaffe | java1-runtime | java2-runtime, libcommons-collections3-java, libcommons-logging-java Suggests: libcommons-beanutils-java-doc Description: utility for manipulating JavaBeans The BeanUtils Component contains a set of Java classes that provide @@ -18,6 +18,7 @@ Description: utility for manipulating JavaBeans #Package: libcommons-beanutils-java-doc #Architecture: all -#Description: Documentation for libcommons-collections-java -# Documentation for libcommons-collections-java which is utility for +#Suggests: libcommons-beanutils-java +#Description: Javadoc API for libcommons-beanutils-java +# The javadocs API for libcommons-beanutils-java which is utility for # manipulating JavaBeans. diff --git a/debian/copyright b/debian/copyright index 80fad07..e79fb94 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,63 +1,182 @@ This package was debianized by Takashi Okamoto <[email protected]> on Mon, 5 Nov 2001 08:57:47 +0900. -It was downloaded from http://jakarta.apache.org/commons/ +It was downloaded from <http://jakarta.apache.org/commons/> Copyright: -/* - * - * ==================================================================== - * - * The Apache Software License, Version 1.1 - * - * Copyright (c) 1999-2001 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 acknowlegement: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. - * - * 4. The names "The Jakarta Project", "Commons", 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 [email protected]. - * - * 5. Products derived from this software may not be called "Apache" - * nor may "Apache" appear in their names without prior written - * permission of the Apache Group. - * - * 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/>. - * - */ + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. diff --git a/debian/libcommons-beanutils-java-doc.doc-base b/debian/libcommons-beanutils-java-doc.doc-base new file mode 100644 index 0000000..f7b5097 --- /dev/null +++ b/debian/libcommons-beanutils-java-doc.doc-base @@ -0,0 +1,12 @@ +Document: libcommons-beanutils-java-doc +Title: Programmer API for Beanutils +Author: Apache Beanutils developers +Abstract: Programmer API of the Beanutils library, a library providing + static utility methods useful in manipulating Java classes that conform + to the JavaBeans Specification naming patterns for bean properties in a + dynamic fashion. +Section: Programming + +Format: HTML +Index: /usr/share/doc/libcommons-beanutils-java-doc/api/index.html +Files: /usr/share/doc/libcommons-beanutils-java-doc/api/* diff --git a/debian/libcommons-beanutils-java.links b/debian/libcommons-beanutils-java.links index 8f952c5..9e90189 100644 --- a/debian/libcommons-beanutils-java.links +++ b/debian/libcommons-beanutils-java.links @@ -1,2 +1 @@ -/usr/share/java/commons-beanutils-1.6.1.jar /usr/share/java/commons-beanutils.jar - +/usr/share/java/commons-beanutils-1.7.0.jar /usr/share/java/commons-beanutils.jar diff --git a/debian/patches/01_build_xml.patch b/debian/patches/01_build_xml.patch new file mode 100644 index 0000000..b8cf278 --- /dev/null +++ b/debian/patches/01_build_xml.patch @@ -0,0 +1,11 @@ +--- build.xml.orig 2005-09-18 19:32:39.000000000 +0200 ++++ build.xml 2005-09-18 19:33:13.000000000 +0200 +@@ -164,7 +164,7 @@ + destdir="${build.home}/classes" + debug="${compile.debug}" + deprecation="${compile.deprecation}" +- optimize="${compile.optimize}"> ++ optimize="${compile.optimize}" target="1.3"> + <classpath refid="compile.classpath"/> + </javac> + <copy todir="${build.home}/classes" filtering="on"> diff --git a/debian/rules b/debian/rules index 9a9ebbc..4d887a1 100644 --- a/debian/rules +++ b/debian/rules @@ -1,28 +1,21 @@ #!/usr/bin/make -f -# debian/rules file for libcommons-logging-java (uses cdbs) +# debian/rules file for libcommons-beanutils-java (uses cdbs) include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk include /usr/share/cdbs/1/class/ant.mk -# These two must be specified + JAVA_HOME := /usr/lib/kaffe ANT_HOME := /usr/share/ant -# Additional JARs to add to the class path, either full path or just the -# basename for JARs in /usr/share/java. The ".jar" suffix may also be ommitted -DEB_JARS := commons-logging commons-collections $(ANT_HOME)/lib/ant-launcher.jar - -# Build compiler +DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar commons-logging commons-collections3 junit DEB_ANT_COMPILER := jikes +DEB_ANT_BUILD_TARGET := dist -# Defaults to debian/ant.properties -#DEB_ANT_PROPERTYFILE := build.properties - -# Defaults to build.xml (Ant default) in $(DEB_BUILDDIR) -#DEB_ANT_BUILDFILE := build.xml - -DEB_ANT_BUILD_TARGET := jar javadoc +clean:: + -rm -Rf optional/bean-collections/dist + -rm -Rf optional/bean-collections/target install/libcommons-beanutils-java:: - install -m 644 dist/commons-beanutils.jar debian/libcommons-beanutils-java/usr/share/java/commons-beanutils-1.6.1.jar - + install -m 644 dist/commons-beanutils.jar debian/libcommons-beanutils-java/usr/share/java/commons-beanutils-1.7.0.jar -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/commons-beanutils.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

