Author: twerner Date: 2007-11-27 19:04:00 +0000 (Tue, 27 Nov 2007) New Revision: 4858
Modified: trunk/libxstream-java/debian/changelog trunk/libxstream-java/debian/control trunk/libxstream-java/debian/copyright Log: update metadata Modified: trunk/libxstream-java/debian/changelog =================================================================== --- trunk/libxstream-java/debian/changelog 2007-11-27 14:17:13 UTC (rev 4857) +++ trunk/libxstream-java/debian/changelog 2007-11-27 19:04:00 UTC (rev 4858) @@ -1,5 +1,5 @@ libxstream-java (1.2.2-1) unstable; urgency=low - * initial version + * initial version (Closes: #453149) -- Torsten Werner <[EMAIL PROTECTED]> Sat, 24 Nov 2007 00:01:40 +0100 Modified: trunk/libxstream-java/debian/control =================================================================== --- trunk/libxstream-java/debian/control 2007-11-27 14:17:13 UTC (rev 4857) +++ trunk/libxstream-java/debian/control 2007-11-27 19:04:00 UTC (rev 4858) @@ -15,4 +15,32 @@ Package: libxstream-java Architecture: all Depends: java-gcj-compat | java1-runtime | java2-runtime -Description: FIXME +Description: Java library to serialize objects to XML and back again + The features of the XStream library are: + . + - Ease of use. A high level facade is supplied that simplifies common + use cases. + - No mappings required. Most objects can be serialized without need + for specifying mappings. + - Performance. Speed and low memory footprint are a crucial part of + the design, making it suitable for large object graphs or systems + with high message throughput. + - Clean XML. No information is duplicated that can be obtained via + reflection. This results in XML that is easier to read for humans + and more compact than native Java serialization. + - Requires no modifications to objects. Serializes internal fields, + including private and final. Supports non-public and inner classes. + Classes are not required to have default constructor. + - Full object graph support. Duplicate references encountered in the + object-model will be maintained. Supports circular references. + - Integrates with other XML APIs. By implementing an interface, + XStream can serialize directly to/from any tree structure (not just + XML). + - Customizable conversion strategies. Strategies can be registered + allowing customization of how particular types are represented as + XML. + - Error messages. When an exception occurs due to malformed XML, + detailed diagnostics are provided to help isolate and fix the + problem. + - Alternative output format. The modular design allows other output + formats. XStream ships currently with JSON support and morphing. Modified: trunk/libxstream-java/debian/copyright =================================================================== --- trunk/libxstream-java/debian/copyright 2007-11-27 14:17:13 UTC (rev 4857) +++ trunk/libxstream-java/debian/copyright 2007-11-27 19:04:00 UTC (rev 4858) @@ -3,25 +3,35 @@ It was downloaded from http://xstream.codehaus.org -FIXME -Upstream Author: Elliotte Rusty Harold <[EMAIL PROTECTED]> +Copyright (c) 2003-2006, Joe Walnes +Copyright (c) 2006-2007, XStream Committers +All rights reserved. -Copyrights: (C) 2004, 2005 Elliotte Rusty Harold - License: - This library is free software; you can redistribute it and/or modify - it under the terms of version 2.1 of the GNU Lesser General Public - License as published by the Free Software Foundation. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: - This library 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 Lesser General Public License for more details. + 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. - You should have received a copy of the GNU General Public License - along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Neither the name of XStream nor the names of its contributors may be + used to endorse or promote products derived from this software + without specific prior written permission. -On Debian systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + 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 OWNER 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. _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

