New Upstream Snapshot - django-xmlrpc

Ready changes

Summary

Merged new upstream version: 0.1.8+git20171014.3.6cf59c5 (was: 0.1.8+git20171014.2.6cf59c5).

Resulting package

Built on 2023-01-22T07:15 (took 10m2s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots python3-django-xmlrpc

Lintian Result

Diff

diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..8efdc93
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,24 @@
+Copyright (c) 2007-2008, Graham Binns
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+    * 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.
+    * Neither the name of this application nor the
+      names of its contributors may be used to endorse or promote products
+      derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY GRAHAM BINNS ''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 GRAHAM BINNS 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.
diff --git a/PKG-INFO b/PKG-INFO
index 5703ba3..8244d85 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,76 +1,14 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: django-xmlrpc
 Version: 0.1.8
 Summary: XML-RPC Server App for the Django framework.
 Home-page: https://github.com/Fantomas42/django-xmlrpc
-Author: Fantomas42
-Author-email: fantomas42@gmail.com
+Author: Graham Binns
+Author-email: graham.binns@gmail.com
+Maintainer: Fantomas42
+Maintainer-email: fantomas42@gmail.com
 License: New BSD License
-Description-Content-Type: UNKNOWN
-Description: ==============
-        Django XML-RPC
-        ==============
-        
-        **Django_xmlrpc** offers a means by which a Django developer can expose their
-        views (or indeed any other function) using XML-RPC.
-        
-        This is a fork of the original version made by Svetlyak40wt compatible with
-        Django >= 1.8 and Python >= 2.5.
-        
-        If you want to use **django_xmlrpc** for an older version of Django or Python,
-        please use an old release.
-        
-        .. contents::
-        
-        Installation
-        ============
-        
-        You could retrieve the last sources from
-        http://github.com/Fantomas42/django-xmlrpc and run the installation script
-        ::
-        
-          $ python setup.py install
-        
-        or use pip ::
-        
-          $ pip install -e git://github.com/Fantomas42/django-xmlrpc.git#egg=django-xmlrpc
-        
-        Usage
-        =====
-        
-        Register **django_xmlrpc** in your INSTALLED_APPS section of your project'
-        settings.
-        
-        There are two ways to register methods that you want to handle:
-        
-        In your project's settings. ::
-        
-          XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
-                            ('path.to.your.othermethod', 'Other Method name'),)
-        
-        In a file called ``xmlrpc.py`` in your application directory. ::
-        
-          XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
-                            ('path.to.your.othermethod', 'Other Method name'),)
-        
-        A registered method should look like this: ::
-        
-          from django_xmlrpc.decorators import xmlrpc_func
-        
-          @xmlrpc_func(returns='string', args=['string'])
-          def test_xmlrpc(text):
-              """Simply returns the args passed to it as a string"""
-              return "Here's a response! %s" % str(text)
-        
-        Finally we need to register the url of the XML-RPC server. Insert something
-        like this in your project's urls.py: ::
-        
-          from django_xmlrpc.views import handle_xmlrpc
-        
-          url(r'^xmlrpc/$', handle_xmlrpc, name='xmlrpc'),
-        
 Keywords: django,service,xmlrpc
-Platform: UNKNOWN
 Classifier: Framework :: Django
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Web Environment
@@ -79,3 +17,66 @@ Classifier: Programming Language :: Python :: 3
 Classifier: Intended Audience :: Developers
 Classifier: Operating System :: OS Independent
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
+License-File: LICENSE
+
+==============
+Django XML-RPC
+==============
+
+**Django_xmlrpc** offers a means by which a Django developer can expose their
+views (or indeed any other function) using XML-RPC.
+
+This is a fork of the original version made by Svetlyak40wt compatible with
+Django >= 1.8 and Python >= 2.5.
+
+If you want to use **django_xmlrpc** for an older version of Django or Python,
+please use an old release.
+
+.. contents::
+
+Installation
+============
+
+You could retrieve the last sources from
+http://github.com/Fantomas42/django-xmlrpc and run the installation script
+::
+
+  $ python setup.py install
+
+or use pip ::
+
+  $ pip install -e git://github.com/Fantomas42/django-xmlrpc.git#egg=django-xmlrpc
+
+Usage
+=====
+
+Register **django_xmlrpc** in your INSTALLED_APPS section of your project'
+settings.
+
+There are two ways to register methods that you want to handle:
+
+In your project's settings. ::
+
+  XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
+                    ('path.to.your.othermethod', 'Other Method name'),)
+
+In a file called ``xmlrpc.py`` in your application directory. ::
+
+  XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
+                    ('path.to.your.othermethod', 'Other Method name'),)
+
+A registered method should look like this: ::
+
+  from django_xmlrpc.decorators import xmlrpc_func
+
+  @xmlrpc_func(returns='string', args=['string'])
+  def test_xmlrpc(text):
+      """Simply returns the args passed to it as a string"""
+      return "Here's a response! %s" % str(text)
+
+Finally we need to register the url of the XML-RPC server. Insert something
+like this in your project's urls.py: ::
+
+  from django_xmlrpc.views import handle_xmlrpc
+
+  url(r'^xmlrpc/$', handle_xmlrpc, name='xmlrpc'),
diff --git a/debian/changelog b/debian/changelog
index dcb7d7b..c45d34b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+django-xmlrpc (0.1.8+git20171014.3.6cf59c5-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+  * New upstream snapshot.
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Sun, 22 Jan 2023 07:08:45 -0000
+
 django-xmlrpc (0.1.8-4) unstable; urgency=medium
 
   [ Debian Janitor ]
diff --git a/django_xmlrpc.egg-info/PKG-INFO b/django_xmlrpc.egg-info/PKG-INFO
index 5703ba3..8244d85 100644
--- a/django_xmlrpc.egg-info/PKG-INFO
+++ b/django_xmlrpc.egg-info/PKG-INFO
@@ -1,76 +1,14 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: django-xmlrpc
 Version: 0.1.8
 Summary: XML-RPC Server App for the Django framework.
 Home-page: https://github.com/Fantomas42/django-xmlrpc
-Author: Fantomas42
-Author-email: fantomas42@gmail.com
+Author: Graham Binns
+Author-email: graham.binns@gmail.com
+Maintainer: Fantomas42
+Maintainer-email: fantomas42@gmail.com
 License: New BSD License
-Description-Content-Type: UNKNOWN
-Description: ==============
-        Django XML-RPC
-        ==============
-        
-        **Django_xmlrpc** offers a means by which a Django developer can expose their
-        views (or indeed any other function) using XML-RPC.
-        
-        This is a fork of the original version made by Svetlyak40wt compatible with
-        Django >= 1.8 and Python >= 2.5.
-        
-        If you want to use **django_xmlrpc** for an older version of Django or Python,
-        please use an old release.
-        
-        .. contents::
-        
-        Installation
-        ============
-        
-        You could retrieve the last sources from
-        http://github.com/Fantomas42/django-xmlrpc and run the installation script
-        ::
-        
-          $ python setup.py install
-        
-        or use pip ::
-        
-          $ pip install -e git://github.com/Fantomas42/django-xmlrpc.git#egg=django-xmlrpc
-        
-        Usage
-        =====
-        
-        Register **django_xmlrpc** in your INSTALLED_APPS section of your project'
-        settings.
-        
-        There are two ways to register methods that you want to handle:
-        
-        In your project's settings. ::
-        
-          XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
-                            ('path.to.your.othermethod', 'Other Method name'),)
-        
-        In a file called ``xmlrpc.py`` in your application directory. ::
-        
-          XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
-                            ('path.to.your.othermethod', 'Other Method name'),)
-        
-        A registered method should look like this: ::
-        
-          from django_xmlrpc.decorators import xmlrpc_func
-        
-          @xmlrpc_func(returns='string', args=['string'])
-          def test_xmlrpc(text):
-              """Simply returns the args passed to it as a string"""
-              return "Here's a response! %s" % str(text)
-        
-        Finally we need to register the url of the XML-RPC server. Insert something
-        like this in your project's urls.py: ::
-        
-          from django_xmlrpc.views import handle_xmlrpc
-        
-          url(r'^xmlrpc/$', handle_xmlrpc, name='xmlrpc'),
-        
 Keywords: django,service,xmlrpc
-Platform: UNKNOWN
 Classifier: Framework :: Django
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Web Environment
@@ -79,3 +17,66 @@ Classifier: Programming Language :: Python :: 3
 Classifier: Intended Audience :: Developers
 Classifier: Operating System :: OS Independent
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
+License-File: LICENSE
+
+==============
+Django XML-RPC
+==============
+
+**Django_xmlrpc** offers a means by which a Django developer can expose their
+views (or indeed any other function) using XML-RPC.
+
+This is a fork of the original version made by Svetlyak40wt compatible with
+Django >= 1.8 and Python >= 2.5.
+
+If you want to use **django_xmlrpc** for an older version of Django or Python,
+please use an old release.
+
+.. contents::
+
+Installation
+============
+
+You could retrieve the last sources from
+http://github.com/Fantomas42/django-xmlrpc and run the installation script
+::
+
+  $ python setup.py install
+
+or use pip ::
+
+  $ pip install -e git://github.com/Fantomas42/django-xmlrpc.git#egg=django-xmlrpc
+
+Usage
+=====
+
+Register **django_xmlrpc** in your INSTALLED_APPS section of your project'
+settings.
+
+There are two ways to register methods that you want to handle:
+
+In your project's settings. ::
+
+  XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
+                    ('path.to.your.othermethod', 'Other Method name'),)
+
+In a file called ``xmlrpc.py`` in your application directory. ::
+
+  XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
+                    ('path.to.your.othermethod', 'Other Method name'),)
+
+A registered method should look like this: ::
+
+  from django_xmlrpc.decorators import xmlrpc_func
+
+  @xmlrpc_func(returns='string', args=['string'])
+  def test_xmlrpc(text):
+      """Simply returns the args passed to it as a string"""
+      return "Here's a response! %s" % str(text)
+
+Finally we need to register the url of the XML-RPC server. Insert something
+like this in your project's urls.py: ::
+
+  from django_xmlrpc.views import handle_xmlrpc
+
+  url(r'^xmlrpc/$', handle_xmlrpc, name='xmlrpc'),
diff --git a/django_xmlrpc.egg-info/SOURCES.txt b/django_xmlrpc.egg-info/SOURCES.txt
index 824b5e4..b4b13ea 100644
--- a/django_xmlrpc.egg-info/SOURCES.txt
+++ b/django_xmlrpc.egg-info/SOURCES.txt
@@ -1,3 +1,4 @@
+LICENSE
 MANIFEST.in
 README.rst
 setup.cfg

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details