[Python-modules-commits] r30346 - in packages/pyxb/tags (7 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Fri Aug 29 05:57:03 UTC 2014


    Date: Friday, August 29, 2014 @ 05:57:02
  Author: fladi-guest
Revision: 30346

[svn-buildpackage] Tagging pyxb 1.2.3+dfsg-2

Added:
  packages/pyxb/tags/1.2.3+dfsg-2/
  packages/pyxb/tags/1.2.3+dfsg-2/debian/changelog
    (from rev 28653, packages/pyxb/trunk/debian/changelog)
  packages/pyxb/tags/1.2.3+dfsg-2/debian/control
    (from rev 28653, packages/pyxb/trunk/debian/control)
  packages/pyxb/tags/1.2.3+dfsg-2/debian/python-pyxb.install
    (from rev 28653, packages/pyxb/trunk/debian/python-pyxb.install)
Deleted:
  packages/pyxb/tags/1.2.3+dfsg-2/debian/changelog
  packages/pyxb/tags/1.2.3+dfsg-2/debian/control
  packages/pyxb/tags/1.2.3+dfsg-2/debian/python-pyxb.install

Deleted: packages/pyxb/tags/1.2.3+dfsg-2/debian/changelog
===================================================================
--- packages/pyxb/trunk/debian/changelog	2014-04-25 17:16:17 UTC (rev 28652)
+++ packages/pyxb/tags/1.2.3+dfsg-2/debian/changelog	2014-08-29 05:57:02 UTC (rev 30346)
@@ -1,12 +0,0 @@
-pyxb (1.2.3+dfsg-2) UNRELEASED; urgency=low
-
-  * Remove override_dh_install target from debian/rules as it contained
-    left-over debugging code.
-
- -- Michael Fladischer <FladischerMichael at fladi.at>  Fri, 25 Apr 2014 19:11:38 +0200
-
-pyxb (1.2.3+dfsg-1) unstable; urgency=low
-
-  * Initial release (Closes: #651170).
-
- -- Michael Fladischer <FladischerMichael at fladi.at>  Tue, 22 Apr 2014 14:56:08 +0200

Copied: packages/pyxb/tags/1.2.3+dfsg-2/debian/changelog (from rev 28653, packages/pyxb/trunk/debian/changelog)
===================================================================
--- packages/pyxb/tags/1.2.3+dfsg-2/debian/changelog	                        (rev 0)
+++ packages/pyxb/tags/1.2.3+dfsg-2/debian/changelog	2014-08-29 05:57:02 UTC (rev 30346)
@@ -0,0 +1,15 @@
+pyxb (1.2.3+dfsg-2) unstable; urgency=low
+
+  * Remove override_dh_install target from debian/rules as it contained
+    left-over debugging code.
+  * Wrap Dependencies in debian/control.
+  * Remove emtpy line at the end of debian/control.
+  * Sort patterns for installed files in debian/python-pyxb.install.
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Fri, 25 Apr 2014 19:20:07 +0200
+
+pyxb (1.2.3+dfsg-1) unstable; urgency=low
+
+  * Initial release (Closes: #651170).
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Tue, 22 Apr 2014 14:56:08 +0200

Deleted: packages/pyxb/tags/1.2.3+dfsg-2/debian/control
===================================================================
--- packages/pyxb/trunk/debian/control	2014-04-25 17:16:17 UTC (rev 28652)
+++ packages/pyxb/tags/1.2.3+dfsg-2/debian/control	2014-08-29 05:57:02 UTC (rev 30346)
@@ -1,184 +0,0 @@
-Source: pyxb
-Section: python
-Priority: extra
-Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Uploaders: Michael Fladischer <FladischerMichael at fladi.at>
-Build-Depends: debhelper (>= 9),
-               docbook-to-man,
-               python-all,
-               python-sphinx (>= 1.0.7+dfsg),
-               python-unittest2
-Standards-Version: 3.9.5
-X-Python-Version: >= 2.5
-Homepage: http://pyxb.sourceforge.net/
-Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pyxb/trunk/
-Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pyxb/trunk/
-
-Package: python-pyxb
-Architecture: all
-Depends: ${misc:Depends}, ${python:Depends}
-Suggests: python-pyxb-doc
-Description: Python XML Schema Bindings
- PyXB is a pure Python package that generates Python code for classes that
- correspond to data structures defined by XMLSchema. In concept it is similar to
- JAXB for Java and CodeSynthesis XSD for C++.
- .
- The major goals of PyXB are:
-  * Provide a generated Python interface that is “Pythonic”, meaning similar to
-    one that would have been hand-written:
-    + Attributes and elements are Python properties, with name conflicts
-      resolved in favor of elements
-    + Elements with maxOccurs larger than 1 are stored as Python lists
-    + Bindings for type extensions inherit from the binding for the base type
-    + Enumeration constraints are exposed as class (constant) variables
-  * Support bi-directional conversion (document to Python and back)
-  * Allow easy customization of the generated bindings to provide functionality
-    along with content
-  * Support all XMLSchema features that are in common use, including:
-    + complex content models (nested all/choice/sequence)
-    + cross-namespace dependencies
-    + include and import directives
-    + constraints on simple types
-  * Validate the documents against their schema
-
-Package: python-pyxb-doc
-Section: doc
-Architecture: all
-Depends: ${misc:Depends}, ${sphinxdoc:Depends}
-Description: Python XML Schema Bindings (Documentation)
- PyXB is a pure Python package that generates Python code for classes that
- correspond to data structures defined by XMLSchema. In concept it is similar to
- JAXB for Java and CodeSynthesis XSD for C++.
- .
- The major goals of PyXB are:
-  * Provide a generated Python interface that is “Pythonic”, meaning similar to
-    one that would have been hand-written:
-    + Attributes and elements are Python properties, with name conflicts
-      resolved in favor of elements
-    + Elements with maxOccurs larger than 1 are stored as Python lists
-    + Bindings for type extensions inherit from the binding for the base type
-    + Enumeration constraints are exposed as class (constant) variables
-  * Support bi-directional conversion (document to Python and back)
-  * Allow easy customization of the generated bindings to provide functionality
-    along with content
-  * Support all XMLSchema features that are in common use, including:
-    + complex content models (nested all/choice/sequence)
-    + cross-namespace dependencies
-    + include and import directives
-    + constraints on simple types
-  * Validate the documents against their schema
- .
- This package contains the documentation.
-
-Package: python-pyxb-bundles-common
-Architecture: all
-Depends: python-pyxb (= ${binary:Version}), ${misc:Depends}, ${python:Depends}
-Description: Python XML Schema Bindings (common bindings)
- PyXB is a pure Python package that generates Python code for classes that
- correspond to data structures defined by XMLSchema. In concept it is similar to
- JAXB for Java and CodeSynthesis XSD for C++.
- .
- The major goals of PyXB are:
-  * Provide a generated Python interface that is “Pythonic”, meaning similar to
-    one that would have been hand-written:
-    + Attributes and elements are Python properties, with name conflicts
-      resolved in favor of elements
-    + Elements with maxOccurs larger than 1 are stored as Python lists
-    + Bindings for type extensions inherit from the binding for the base type
-    + Enumeration constraints are exposed as class (constant) variables
-  * Support bi-directional conversion (document to Python and back)
-  * Allow easy customization of the generated bindings to provide functionality
-    along with content
-  * Support all XMLSchema features that are in common use, including:
-    + complex content models (nested all/choice/sequence)
-    + cross-namespace dependencies
-    + include and import directives
-    + constraints on simple types
-  * Validate the documents against their schema
- .
- This package contains the prebuilt common XML bindings.
-
-Package: python-pyxb-bundles-wssplat
-Architecture: all
-Depends: python-pyxb (= ${binary:Version}), ${misc:Depends}, ${python:Depends}
-Description: Python XML Schema Bindings (WS-* bindings)
- PyXB is a pure Python package that generates Python code for classes that
- correspond to data structures defined by XMLSchema. In concept it is similar to
- JAXB for Java and CodeSynthesis XSD for C++.
- .
- The major goals of PyXB are:
-  * Provide a generated Python interface that is “Pythonic”, meaning similar to
-    one that would have been hand-written:
-    + Attributes and elements are Python properties, with name conflicts
-      resolved in favor of elements
-    + Elements with maxOccurs larger than 1 are stored as Python lists
-    + Bindings for type extensions inherit from the binding for the base type
-    + Enumeration constraints are exposed as class (constant) variables
-  * Support bi-directional conversion (document to Python and back)
-  * Allow easy customization of the generated bindings to provide functionality
-    along with content
-  * Support all XMLSchema features that are in common use, including:
-    + complex content models (nested all/choice/sequence)
-    + cross-namespace dependencies
-    + include and import directives
-    + constraints on simple types
-  * Validate the documents against their schema
- .
- This package contains the prebuilt WS-* bindings.
-
-Package: python-pyxb-bundles-dc
-Architecture: all
-Depends: python-pyxb (= ${binary:Version}), ${misc:Depends}, ${python:Depends}
-Description: Python XML Schema Bindings (Dublin Core bindings)
- PyXB is a pure Python package that generates Python code for classes that
- correspond to data structures defined by XMLSchema. In concept it is similar to
- JAXB for Java and CodeSynthesis XSD for C++.
- .
- The major goals of PyXB are:
-  * Provide a generated Python interface that is “Pythonic”, meaning similar to
-    one that would have been hand-written:
-    + Attributes and elements are Python properties, with name conflicts
-      resolved in favor of elements
-    + Elements with maxOccurs larger than 1 are stored as Python lists
-    + Bindings for type extensions inherit from the binding for the base type
-    + Enumeration constraints are exposed as class (constant) variables
-  * Support bi-directional conversion (document to Python and back)
-  * Allow easy customization of the generated bindings to provide functionality
-    along with content
-  * Support all XMLSchema features that are in common use, including:
-    + complex content models (nested all/choice/sequence)
-    + cross-namespace dependencies
-    + include and import directives
-    + constraints on simple types
-  * Validate the documents against their schema
- .
- This package contains the prebuilt Dublin Core Metadata Initiative bindings.
-
-Package: python-pyxb-bundles-saml20
-Architecture: all
-Depends: python-pyxb (= ${binary:Version}), ${misc:Depends}, ${python:Depends}
-Description: Python XML Schema Bindings (SAML bindings)
- PyXB is a pure Python package that generates Python code for classes that
- correspond to data structures defined by XMLSchema. In concept it is similar to
- JAXB for Java and CodeSynthesis XSD for C++.
- .
- The major goals of PyXB are:
-  * Provide a generated Python interface that is “Pythonic”, meaning similar to
-    one that would have been hand-written:
-    + Attributes and elements are Python properties, with name conflicts
-      resolved in favor of elements
-    + Elements with maxOccurs larger than 1 are stored as Python lists
-    + Bindings for type extensions inherit from the binding for the base type
-    + Enumeration constraints are exposed as class (constant) variables
-  * Support bi-directional conversion (document to Python and back)
-  * Allow easy customization of the generated bindings to provide functionality
-    along with content
-  * Support all XMLSchema features that are in common use, including:
-    + complex content models (nested all/choice/sequence)
-    + cross-namespace dependencies
-    + include and import directives
-    + constraints on simple types
-  * Validate the documents against their schema
- .
- This package contains the prebuilt Security Assertion Markup Language bindings.
-

Copied: packages/pyxb/tags/1.2.3+dfsg-2/debian/control (from rev 28653, packages/pyxb/trunk/debian/control)
===================================================================
--- packages/pyxb/tags/1.2.3+dfsg-2/debian/control	                        (rev 0)
+++ packages/pyxb/tags/1.2.3+dfsg-2/debian/control	2014-08-29 05:57:02 UTC (rev 30346)
@@ -0,0 +1,193 @@
+Source: pyxb
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <FladischerMichael at fladi.at>
+Build-Depends: debhelper (>= 9),
+               docbook-to-man,
+               python-all,
+               python-sphinx (>= 1.0.7+dfsg),
+               python-unittest2
+Standards-Version: 3.9.5
+X-Python-Version: >= 2.5
+Homepage: http://pyxb.sourceforge.net/
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pyxb/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pyxb/trunk/
+
+Package: python-pyxb
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Suggests: python-pyxb-doc
+Description: Python XML Schema Bindings
+ PyXB is a pure Python package that generates Python code for classes that
+ correspond to data structures defined by XMLSchema. In concept it is similar to
+ JAXB for Java and CodeSynthesis XSD for C++.
+ .
+ The major goals of PyXB are:
+  * Provide a generated Python interface that is “Pythonic”, meaning similar to
+    one that would have been hand-written:
+    + Attributes and elements are Python properties, with name conflicts
+      resolved in favor of elements
+    + Elements with maxOccurs larger than 1 are stored as Python lists
+    + Bindings for type extensions inherit from the binding for the base type
+    + Enumeration constraints are exposed as class (constant) variables
+  * Support bi-directional conversion (document to Python and back)
+  * Allow easy customization of the generated bindings to provide functionality
+    along with content
+  * Support all XMLSchema features that are in common use, including:
+    + complex content models (nested all/choice/sequence)
+    + cross-namespace dependencies
+    + include and import directives
+    + constraints on simple types
+  * Validate the documents against their schema
+
+Package: python-pyxb-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends},
+         ${sphinxdoc:Depends}
+Description: Python XML Schema Bindings (Documentation)
+ PyXB is a pure Python package that generates Python code for classes that
+ correspond to data structures defined by XMLSchema. In concept it is similar to
+ JAXB for Java and CodeSynthesis XSD for C++.
+ .
+ The major goals of PyXB are:
+  * Provide a generated Python interface that is “Pythonic”, meaning similar to
+    one that would have been hand-written:
+    + Attributes and elements are Python properties, with name conflicts
+      resolved in favor of elements
+    + Elements with maxOccurs larger than 1 are stored as Python lists
+    + Bindings for type extensions inherit from the binding for the base type
+    + Enumeration constraints are exposed as class (constant) variables
+  * Support bi-directional conversion (document to Python and back)
+  * Allow easy customization of the generated bindings to provide functionality
+    along with content
+  * Support all XMLSchema features that are in common use, including:
+    + complex content models (nested all/choice/sequence)
+    + cross-namespace dependencies
+    + include and import directives
+    + constraints on simple types
+  * Validate the documents against their schema
+ .
+ This package contains the documentation.
+
+Package: python-pyxb-bundles-common
+Architecture: all
+Depends: python-pyxb (= ${binary:Version}),
+         ${misc:Depends},
+         ${python:Depends}
+Description: Python XML Schema Bindings (common bindings)
+ PyXB is a pure Python package that generates Python code for classes that
+ correspond to data structures defined by XMLSchema. In concept it is similar to
+ JAXB for Java and CodeSynthesis XSD for C++.
+ .
+ The major goals of PyXB are:
+  * Provide a generated Python interface that is “Pythonic”, meaning similar to
+    one that would have been hand-written:
+    + Attributes and elements are Python properties, with name conflicts
+      resolved in favor of elements
+    + Elements with maxOccurs larger than 1 are stored as Python lists
+    + Bindings for type extensions inherit from the binding for the base type
+    + Enumeration constraints are exposed as class (constant) variables
+  * Support bi-directional conversion (document to Python and back)
+  * Allow easy customization of the generated bindings to provide functionality
+    along with content
+  * Support all XMLSchema features that are in common use, including:
+    + complex content models (nested all/choice/sequence)
+    + cross-namespace dependencies
+    + include and import directives
+    + constraints on simple types
+  * Validate the documents against their schema
+ .
+ This package contains the prebuilt common XML bindings.
+
+Package: python-pyxb-bundles-wssplat
+Architecture: all
+Depends: python-pyxb (= ${binary:Version}),
+         ${misc:Depends},
+         ${python:Depends}
+Description: Python XML Schema Bindings (WS-* bindings)
+ PyXB is a pure Python package that generates Python code for classes that
+ correspond to data structures defined by XMLSchema. In concept it is similar to
+ JAXB for Java and CodeSynthesis XSD for C++.
+ .
+ The major goals of PyXB are:
+  * Provide a generated Python interface that is “Pythonic”, meaning similar to
+    one that would have been hand-written:
+    + Attributes and elements are Python properties, with name conflicts
+      resolved in favor of elements
+    + Elements with maxOccurs larger than 1 are stored as Python lists
+    + Bindings for type extensions inherit from the binding for the base type
+    + Enumeration constraints are exposed as class (constant) variables
+  * Support bi-directional conversion (document to Python and back)
+  * Allow easy customization of the generated bindings to provide functionality
+    along with content
+  * Support all XMLSchema features that are in common use, including:
+    + complex content models (nested all/choice/sequence)
+    + cross-namespace dependencies
+    + include and import directives
+    + constraints on simple types
+  * Validate the documents against their schema
+ .
+ This package contains the prebuilt WS-* bindings.
+
+Package: python-pyxb-bundles-dc
+Architecture: all
+Depends: python-pyxb (= ${binary:Version}),
+         ${misc:Depends},
+         ${python:Depends}
+Description: Python XML Schema Bindings (Dublin Core bindings)
+ PyXB is a pure Python package that generates Python code for classes that
+ correspond to data structures defined by XMLSchema. In concept it is similar to
+ JAXB for Java and CodeSynthesis XSD for C++.
+ .
+ The major goals of PyXB are:
+  * Provide a generated Python interface that is “Pythonic”, meaning similar to
+    one that would have been hand-written:
+    + Attributes and elements are Python properties, with name conflicts
+      resolved in favor of elements
+    + Elements with maxOccurs larger than 1 are stored as Python lists
+    + Bindings for type extensions inherit from the binding for the base type
+    + Enumeration constraints are exposed as class (constant) variables
+  * Support bi-directional conversion (document to Python and back)
+  * Allow easy customization of the generated bindings to provide functionality
+    along with content
+  * Support all XMLSchema features that are in common use, including:
+    + complex content models (nested all/choice/sequence)
+    + cross-namespace dependencies
+    + include and import directives
+    + constraints on simple types
+  * Validate the documents against their schema
+ .
+ This package contains the prebuilt Dublin Core Metadata Initiative bindings.
+
+Package: python-pyxb-bundles-saml20
+Architecture: all
+Depends: python-pyxb (= ${binary:Version}),
+         ${misc:Depends},
+         ${python:Depends}
+Description: Python XML Schema Bindings (SAML bindings)
+ PyXB is a pure Python package that generates Python code for classes that
+ correspond to data structures defined by XMLSchema. In concept it is similar to
+ JAXB for Java and CodeSynthesis XSD for C++.
+ .
+ The major goals of PyXB are:
+  * Provide a generated Python interface that is “Pythonic”, meaning similar to
+    one that would have been hand-written:
+    + Attributes and elements are Python properties, with name conflicts
+      resolved in favor of elements
+    + Elements with maxOccurs larger than 1 are stored as Python lists
+    + Bindings for type extensions inherit from the binding for the base type
+    + Enumeration constraints are exposed as class (constant) variables
+  * Support bi-directional conversion (document to Python and back)
+  * Allow easy customization of the generated bindings to provide functionality
+    along with content
+  * Support all XMLSchema features that are in common use, including:
+    + complex content models (nested all/choice/sequence)
+    + cross-namespace dependencies
+    + include and import directives
+    + constraints on simple types
+  * Validate the documents against their schema
+ .
+ This package contains the prebuilt Security Assertion Markup Language bindings.

Deleted: packages/pyxb/tags/1.2.3+dfsg-2/debian/python-pyxb.install
===================================================================
--- packages/pyxb/trunk/debian/python-pyxb.install	2014-04-25 17:16:17 UTC (rev 28652)
+++ packages/pyxb/tags/1.2.3+dfsg-2/debian/python-pyxb.install	2014-08-29 05:57:02 UTC (rev 30346)
@@ -1,8 +0,0 @@
-usr/bin/pyxb*
-usr/lib/python2.*/dist-packages/PyXB-*.egg-info
-usr/lib/python2.*/dist-packages/pyxb/*.py
-usr/lib/python2.*/dist-packages/pyxb/namespace/*.py
-usr/lib/python2.*/dist-packages/pyxb/binding/*.py
-usr/lib/python2.*/dist-packages/pyxb/utils/*.py
-usr/lib/python2.*/dist-packages/pyxb/xmlschema/*.py
-usr/lib/python2.*/dist-packages/pyxb/bundles/*.py

Copied: packages/pyxb/tags/1.2.3+dfsg-2/debian/python-pyxb.install (from rev 28653, packages/pyxb/trunk/debian/python-pyxb.install)
===================================================================
--- packages/pyxb/tags/1.2.3+dfsg-2/debian/python-pyxb.install	                        (rev 0)
+++ packages/pyxb/tags/1.2.3+dfsg-2/debian/python-pyxb.install	2014-08-29 05:57:02 UTC (rev 30346)
@@ -0,0 +1,8 @@
+usr/bin/pyxb*
+usr/lib/python2.*/dist-packages/PyXB-*.egg-info
+usr/lib/python2.*/dist-packages/pyxb/*.py
+usr/lib/python2.*/dist-packages/pyxb/binding/*.py
+usr/lib/python2.*/dist-packages/pyxb/bundles/*.py
+usr/lib/python2.*/dist-packages/pyxb/namespace/*.py
+usr/lib/python2.*/dist-packages/pyxb/utils/*.py
+usr/lib/python2.*/dist-packages/pyxb/xmlschema/*.py




More information about the Python-modules-commits mailing list