debian/0002755000000000000000000000000012142766237007202 5ustar debian/source/0002755000000000000000000000000012142766237010502 5ustar debian/source/format0000644000000000000000000000001412063074036011675 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000011312063074037010214 0ustar version=3 http://pypi.python.org/packages/source/o/odfpy/odfpy-(.*).tar.gz debian/control0000644000000000000000000000272112142716521010574 0ustar Source: python-odf Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: Thomas Bechtold , W. Martin Borgert Standards-Version: 3.9.4 Build-Depends: debhelper (>= 8), python-all, xmlto X-Python-Version: >= 2.7 Homepage: https://joinup.ec.europa.eu/software/odfpy/home Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-odf/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-odf/trunk/ Package: python-odf Architecture: all Depends: ${misc:Depends}, ${python:Depends} Description: Odfpy aims to be a complete API for OpenDocument in Python. Unlike other more convenient APIs, this one is essentially an abstraction layer just above the XML format. Odfpy is a library to read and write OpenDocument v. 1.1 files. The main focus has been to prevent the programmer from creating invalid documents. It has checks that raise an exception if the programmer adds an invalid element, adds an attribute unknown to the grammar, forgets to add a required attribute or adds text to an element that doesn't allow it. These checks and the API itself were generated from the RelaxNG schema, and then hand-edited. Therefore the API is complete and can handle all ODF constructions, but could be improved in its understanding of data types. Take a look at the Getting Started page then consult the Reference Manual. debian/changelog0000644000000000000000000000071012142716547011047 0ustar python-odf (0.9.6-2) unstable; urgency=low [Jakub Wilk Sun, 05 May 2013 16:03:01 +0200] * Use canonical URIs for Vcs-* fields. * New policy version, no changes. Upload to unstable. -- W. Martin Borgert Thu, 09 May 2013 12:57:04 +0000 python-odf (0.9.6-1) experimental; urgency=low * Initial release. (Closes: #484584) -- Thomas Bechtold Tue, 11 Dec 2012 17:15:17 +0100 debian/compat0000644000000000000000000000000212063074037010366 0ustar 8 debian/rules0000755000000000000000000000111112112441063010232 0ustar #!/usr/bin/make -f #DH_VERBOSE=1 PYTHON2=$(shell pyversions -vr) %: dh $@ --with python2 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) test-python%: cd tests; \ PYTHONPATH=../`python$* -c "import sys; print ':'.join(sys.path)"`; \ for F in `ls test*.py` ; do \ PYTHONPATH=$$PYTHONPATH python$* $$F; \ done override_dh_auto_test: $(PYTHON2:%=test-python%) endif override_dh_auto_build: for D in csv2ods mailodf odf2xhtml odf2mht odf2xml odfimgimport odflint odfmeta odfoutline odfuserfield xml2odf; do \ ( cd $$D && \ rm $$D.1 && \ $(MAKE) ) \ done dh_auto_build debian/copyright0000644000000000000000000000710412112371252011117 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: odfpy Source: https://joinup.ec.europa.eu/software/odfpy/home Files: * Copyright: 2006-2009 Søren Roug, European Environment Agency License: GPL-2+ and Apache-2 Files: csv2ods/* Copyright: 2008 Agustin Henze License: GPL-2+ and Apache-2 Files: examples/easylists.py Copyright: 2008 J. David Eisenberg License: GPL-2+ Files: examples/ods-currency.py Copyright: 2009 Brad Ralph License: GPL-2+ and Apache-2 Files: contrib/gutenberg/* Copyright: 2007 Søren Roug, European Environment Agency License: LGPL-2.1+ Files: contrib/xliff/* Copyright: 2000-2004 Juan David Ibáñez Palomar 2003 Roberto Quero, Eduardo Corrales 2004 Søren Roug License: GPL-2+ Files: odf/* Copyright: 2006-2009 Søren Roug, European Environment Agency License: LGPL-2.1+ Files: odf/easyliststyle.py odf/teletype.py Copyright: 2008 J. David Eisenberg License: GPL-2+ Files: odf/__init__.py odf/userfield.py Copyright: 2006-2009 Søren Roug, European Environment Agency License: GPL-2+ and Apache-2 Files: odf/thumbnail.py Copyright: The Document Foundation License: CC-BY-SA-3.0 License: CC-BY-SA-3.0 You are free: to Share (to copy, distribute and transmit the work) and to Remix (to adapt the work) under the following conditions: . Attribution — You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). . Share Alike — If you alter, transform, or build upon this work, you may distribute the resulting work only under the same, similar or a compatible license. . For more information, see http://creativecommons.org/licenses/by-sa/3.0/ License: Apache-2 On Debian systems, the full text of the Apache License version 2 can be found in the file `/usr/share/common-licenses/Apache-2.0'. License: LGPL-2.1+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. . You should have received a copy of the GNU Lesser 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 . On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL-2'. 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.debian/python-odf.examples0000644000000000000000000000001312063074037013011 0ustar examples/*