[Python-modules-commits] r29419 - in packages/django-simple-captcha/trunk/debian (8 files)
bam at users.alioth.debian.org
bam at users.alioth.debian.org
Fri Jun 20 06:14:41 UTC 2014
Date: Friday, June 20, 2014 @ 06:14:39
Author: bam
Revision: 29419
[svn-inject] Applying Debian modifications (0.4.2-3) to trunk
Added:
packages/django-simple-captcha/trunk/debian/patches/
packages/django-simple-captcha/trunk/debian/patches/depends
packages/django-simple-captcha/trunk/debian/patches/series
packages/django-simple-captcha/trunk/debian/patches/tests
Modified:
packages/django-simple-captcha/trunk/debian/changelog
packages/django-simple-captcha/trunk/debian/control
packages/django-simple-captcha/trunk/debian/copyright
packages/django-simple-captcha/trunk/debian/rules
Modified: packages/django-simple-captcha/trunk/debian/changelog
===================================================================
--- packages/django-simple-captcha/trunk/debian/changelog 2014-06-20 05:51:02 UTC (rev 29418)
+++ packages/django-simple-captcha/trunk/debian/changelog 2014-06-20 06:14:39 UTC (rev 29419)
@@ -1,3 +1,11 @@
+django-simple-captcha (0.4.2-3) unstable; urgency=low
+
+ * Initial upload to Debian. Closes: #752140.
+ * Rename package to python-django-captcha, and provide dummy package for
+ upgrades.
+
+ -- Brian May <bam at debian.org> Fri, 20 Jun 2014 13:47:38 +1000
+
django-simple-captcha (0.4.2-2) unstable; urgency=low
* Remove depends on python-pillow, it isn't needed. We
Modified: packages/django-simple-captcha/trunk/debian/control
===================================================================
--- packages/django-simple-captcha/trunk/debian/control 2014-06-20 05:51:02 UTC (rev 29418)
+++ packages/django-simple-captcha/trunk/debian/control 2014-06-20 06:14:39 UTC (rev 29419)
@@ -2,14 +2,23 @@
Section: python
Priority: optional
Maintainer: Brian May <bam at debian.org>
-Build-Depends: debhelper (>=8.1.0), python (>= 2.6.6-3~), python-setuptools, python-imaging (>= 1.1.7)
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>=8.1.0), dh-python, python-all (>= 2.6.6-3~), python-setuptools, python-django, python-imaging (>= 1.1.7), python-six
Standards-Version: 3.9.5
Homepage: https://github.com/mbi/django-simple-captcha
X-Python-Version: >= 2.6
-Package: django-simple-captcha
+Package: python-django-captcha
Architecture: all
+Replaces: django-simple-captcha (<< 0.4.2-3)
+Breaks: django-simple-captcha (<< 0.4.2-3)
Depends: ${misc:Depends}, ${python:Depends}, python-django (>= 1.4), python-imaging (>= 1.1.7), python-six
Description: Django Simple Captcha Django application
Django Simple Captcha is an extremely simple, yet highly customizable Django
application to add captcha images to any Django form.
+
+Package: django-simple-captcha
+Architecture: all
+Depends: ${misc:Depends}, python-django-captcha
+Description: Django Simple Captcha Django application
+ This is a dummy package to aid switching to python-django-captcha.
Modified: packages/django-simple-captcha/trunk/debian/copyright
===================================================================
--- packages/django-simple-captcha/trunk/debian/copyright 2014-06-20 05:51:02 UTC (rev 29418)
+++ packages/django-simple-captcha/trunk/debian/copyright 2014-06-20 06:14:39 UTC (rev 29419)
@@ -1,7 +1,7 @@
-This package was debianized by Sam Morrison
+This package was debianized by Brian May
on Tue, 25 May 2010 15:04:41 +1200.
-It was downloaded from http://code.google.com/p/django-simple-captcha/
+It was downloaded from https://pypi.python.org/pypi/django-simple-captcha
Upstream Author:
Added: packages/django-simple-captcha/trunk/debian/patches/depends
===================================================================
--- packages/django-simple-captcha/trunk/debian/patches/depends (rev 0)
+++ packages/django-simple-captcha/trunk/debian/patches/depends 2014-06-20 06:14:39 UTC (rev 29419)
@@ -0,0 +1,13 @@
+Index: django-simple-captcha-0.4.2/setup.py
+===================================================================
+--- django-simple-captcha-0.4.2.orig/setup.py 2014-06-20 15:42:53.022183080 +1000
++++ django-simple-captcha-0.4.2/setup.py 2014-06-20 15:58:01.617183367 +1000
+@@ -3,7 +3,7 @@
+
+ install_requires = [
+ 'setuptools',
+- 'six >=1.2.0',
++ 'six >=1.1.0',
+ 'Django >= 1.4'
+ ]
+
Added: packages/django-simple-captcha/trunk/debian/patches/series
===================================================================
--- packages/django-simple-captcha/trunk/debian/patches/series (rev 0)
+++ packages/django-simple-captcha/trunk/debian/patches/series 2014-06-20 06:14:39 UTC (rev 29419)
@@ -0,0 +1,2 @@
+tests
+depends
Added: packages/django-simple-captcha/trunk/debian/patches/tests
===================================================================
--- packages/django-simple-captcha/trunk/debian/patches/tests (rev 0)
+++ packages/django-simple-captcha/trunk/debian/patches/tests 2014-06-20 06:14:39 UTC (rev 29419)
@@ -0,0 +1,12 @@
+Index: django-simple-captcha-0.4.2/setup.py
+===================================================================
+--- django-simple-captcha-0.4.2.orig/setup.py 2014-06-20 15:20:19.989457655 +1000
++++ django-simple-captcha-0.4.2/setup.py 2014-06-20 15:42:53.022183080 +1000
+@@ -35,5 +35,6 @@
+ ],
+ include_package_data=True,
+ zip_safe=False,
+- install_requires=install_requires
++ install_requires=install_requires,
++ test_suite=None,
+ )
Modified: packages/django-simple-captcha/trunk/debian/rules
===================================================================
--- packages/django-simple-captcha/trunk/debian/rules 2014-06-20 05:51:02 UTC (rev 29418)
+++ packages/django-simple-captcha/trunk/debian/rules 2014-06-20 06:14:39 UTC (rev 29419)
@@ -1,5 +1,7 @@
#!/usr/bin/make -f
# -*- makefile -*-
+export PYBUILD_NAME=django-captcha
+
%:
- dh $@ --with python2
+ dh $@ --with python2 --buildsystem=pybuild
More information about the Python-modules-commits
mailing list