[Python-modules-commits] r29591 - in packages/django-xmlrpc/trunk/debian (6 files)

bam at users.alioth.debian.org bam at users.alioth.debian.org
Wed Jul 2 23:51:25 UTC 2014


    Date: Wednesday, July 2, 2014 @ 23:51:24
  Author: bam
Revision: 29591

[svn-inject] Applying Debian modifications (0.1.5-3) to trunk

Added:
  packages/django-xmlrpc/trunk/debian/patches/wtf
Modified:
  packages/django-xmlrpc/trunk/debian/changelog
  packages/django-xmlrpc/trunk/debian/control
  packages/django-xmlrpc/trunk/debian/rules
Deleted:
  packages/django-xmlrpc/trunk/debian/pycompat
  packages/django-xmlrpc/trunk/debian/python-django-xmlrpc.install

Modified: packages/django-xmlrpc/trunk/debian/changelog
===================================================================
--- packages/django-xmlrpc/trunk/debian/changelog	2014-07-02 23:50:58 UTC (rev 29590)
+++ packages/django-xmlrpc/trunk/debian/changelog	2014-07-02 23:51:24 UTC (rev 29591)
@@ -1,3 +1,10 @@
+django-xmlrpc (0.1.5-3) unstable; urgency=low
+
+  * Build python3 packages.
+  * Bump Standards version to 3.9.5.
+
+ -- Brian May <bam at debian.org>  Wed, 02 Jul 2014 10:53:12 +1000
+
 django-xmlrpc (0.1.5-2) unstable; urgency=low
 
   * We require python 2.6.

Modified: packages/django-xmlrpc/trunk/debian/control
===================================================================
--- packages/django-xmlrpc/trunk/debian/control	2014-07-02 23:50:58 UTC (rev 29590)
+++ packages/django-xmlrpc/trunk/debian/control	2014-07-02 23:51:24 UTC (rev 29591)
@@ -2,8 +2,10 @@
 Section: python
 Priority: optional
 Maintainer: Brian May <bam at debian.org>
-Build-Depends: debhelper (>=7.0.0), python (>= 2.6.6-3), cdbs (>= 0.4.90), python-setuptools
-Standards-Version: 3.9.4
+Build-Depends: debhelper (>=8.1.0), dh-python,
+ python-all (>= 2.6.6-3~), python-setuptools,
+ python3-all, python3-setuptools
+Standards-Version: 3.9.5
 X-Python-Version: >= 2.6
 Homepage: https://pypi.python.org/pypi/django-xmlrpc/
 
@@ -16,6 +18,15 @@
  django_xmlrpc offers a means by which a Django developer can expose their
  views (or indeed any other function) using XML-RPC.
 
+Package: python3-django-xmlrpc
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-django (>= 1.4.5)
+Replaces: django-xmlrpc (<< 0.1.5)
+Breaks: django-xmlrpc (<< 0.1.5)
+Description: XMLRPC library for Django
+ django_xmlrpc offers a means by which a Django developer can expose their
+ views (or indeed any other function) using XML-RPC.
+
 Package: django-xmlrpc
 Depends: python-django-xmlrpc, ${misc:Depends}
 Architecture: all

Added: packages/django-xmlrpc/trunk/debian/patches/wtf
===================================================================
--- packages/django-xmlrpc/trunk/debian/patches/wtf	                        (rev 0)
+++ packages/django-xmlrpc/trunk/debian/patches/wtf	2014-07-02 23:51:24 UTC (rev 29591)
@@ -0,0 +1,71 @@
+Description: <short summary of the patch>
+ TODO: Put a short summary on the line above and replace this paragraph
+ with a longer explanation of this change. Complete the meta-information
+ with other relevant fields (see below for details). To make it easier, the
+ information below has been extracted from the changelog. Adjust it or drop
+ it.
+ .
+ django-xmlrpc (0.1.5-3) unstable; urgency=low
+ .
+   * Build python3 packages.
+Author: Brian May <bam at debian.org>
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- django-xmlrpc-0.1.5.orig/django_xmlrpc/templates/xmlrpc_get.html
++++ django-xmlrpc-0.1.5/django_xmlrpc/templates/xmlrpc_get.html
+@@ -1,26 +1,28 @@
+-{% extends "admin/base_site.html" %}
++{% extends "main.html" %}
+ {% load i18n %}
+ 
+ {% block title %}{% trans "XML-RPC Service" %}{% endblock %}
+ 
+ {% block content %}
+-<h2>{% trans "XML-RPC Service" %}</h2>
++<div id="content-main">
++    <h2>{% trans "XML-RPC Service" %}</h2>
+ 
+-<p>{% trans "You need to invoke this service using an XML-RPC Client." %}</p>
++    <p>{% trans "You need to invoke this service using an XML-RPC Client." %}</p>
+ 
+-<h3>{% trans "The following methods are available :" %}</h3>
++    <h3>{% trans "The following methods are available :" %}</h3>
+ 
+-{% for m in methods %}
+-<div class="functions">
+-  <h4>{{ m.0 }}</h4>
+-  <div class="function_desc">
+-    <strong>{% trans "Types of argument" %}{{ m.1.args|length|pluralize }} :</strong> {{ m.1.args }}
+-    <br />
+-    <strong>{% trans "Type of return" %} :</strong> {{ m.1.returns }}
+-    <br />
+-    <pre class="function_doc">{{ m.2 }}</pre>
+-  </div>
++    {% for m in methods %}
++    <div class="functions">
++        <h4>{{ m.0 }}</h4>
++        <div class="function_desc">
++            <strong>{% trans "Types of argument" %}{{ m.1.args|length|pluralize }} :</strong> {{ m.1.args }}
++            <br />
++            <strong>{% trans "Type of return" %} :</strong> {{ m.1.returns }}
++            <br />
++            <pre class="function_doc">{{ m.2 }}</pre>
++        </div>
++    </div>
++    {% endfor %}
+ </div>
+-{% endfor %}
+ {% endblock %}
+ 

Deleted: packages/django-xmlrpc/trunk/debian/pycompat
===================================================================
--- packages/django-xmlrpc/trunk/debian/pycompat	2014-07-02 23:50:58 UTC (rev 29590)
+++ packages/django-xmlrpc/trunk/debian/pycompat	2014-07-02 23:51:24 UTC (rev 29591)
@@ -1 +0,0 @@
-2

Deleted: packages/django-xmlrpc/trunk/debian/python-django-xmlrpc.install
===================================================================
--- packages/django-xmlrpc/trunk/debian/python-django-xmlrpc.install	2014-07-02 23:50:58 UTC (rev 29590)
+++ packages/django-xmlrpc/trunk/debian/python-django-xmlrpc.install	2014-07-02 23:51:24 UTC (rev 29591)
@@ -1 +0,0 @@
-/usr

Modified: packages/django-xmlrpc/trunk/debian/rules
===================================================================
--- packages/django-xmlrpc/trunk/debian/rules	2014-07-02 23:50:58 UTC (rev 29590)
+++ packages/django-xmlrpc/trunk/debian/rules	2014-07-02 23:51:24 UTC (rev 29591)
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 # -*- makefile -*-
 
-#DEB_PYTHON2_MODULE_PACKAGES := python-django-xmlrpc
+export PYBUILD_NAME=django-xmlrpc
 
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/python-distutils.mk
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild




More information about the Python-modules-commits mailing list