[Python-modules-commits] [sorl-thumbnail] 11/15: add support for Wand
Wolfgang Borgert
debacle at moszumanska.debian.org
Wed Oct 5 01:39:42 UTC 2016
This is an automated email from the git hooks/post-receive script.
debacle pushed a commit to branch master
in repository sorl-thumbnail.
commit db91039577177bb8a02981450666df7c8d34c0d8
Author: W. Martin Borgert <debacle at debian.org>
Date: Wed Oct 5 02:52:09 2016 +0200
add support for Wand
---
debian/control | 12 +++++++-----
debian/rules | 13 ++++---------
2 files changed, 11 insertions(+), 14 deletions(-)
diff --git a/debian/control b/debian/control
index e358f05..c109de1 100644
--- a/debian/control
+++ b/debian/control
@@ -16,12 +16,14 @@ Build-Depends: debhelper (>= 9),
python-pytest,
python-pytest-django,
python-setuptools,
+ python-wand,
python3-all,
python3-django,
python3-pil,
python3-pytest,
python3-pytest-django,
python3-setuptools,
+ python3-wand,
python-sphinx (>= 1.0.7+dfsg)
Build-Conflicts: locales-all (<< 2.21-1)
Standards-Version: 3.9.8
@@ -34,7 +36,7 @@ Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/sorl-thumbn
Package: python-sorl-thumbnail
Architecture: all
Depends: python-django,
- python-pil | python-pgmagick | imagemagick | graphicsmagick,
+ python-pil | python-pgmagick | imagemagick | graphicsmagick | python-wand,
${misc:Depends},
${python:Depends}
Suggests: python-redis
@@ -47,7 +49,7 @@ Description: thumbnail support for the Django framework
.
Other features include:
* Django storage support
- * Pluggable Engine support (PIL, pgmagick, ImageMagick or GraphicsMagick)
+ * Pluggable Engine support (PIL, pgmagick, ImageMagick, GraphicsMagick, or Wand)
* Pluggable Key Value Store support (Django cache, redis)
* Pluggable Backend support (i.e. different thumbnail filename schema)
* Dummy generation (placeholders)
@@ -58,7 +60,7 @@ Description: thumbnail support for the Django framework
Package: python3-sorl-thumbnail
Architecture: all
Depends: python3-django,
- python3-pil | imagemagick | graphicsmagick,
+ python3-pil | python3-pgmagick | imagemagick | graphicsmagick | python-wand,
${misc:Depends},
${python3:Depends}
Suggests: python3-redis
@@ -71,7 +73,7 @@ Description: thumbnail support for the Django framework (Python3 version)
.
Other features include:
* Django storage support
- * Pluggable Engine support (PIL, pgmagick, ImageMagick or GraphicsMagick)
+ * Pluggable Engine support (PIL, pgmagick, ImageMagick, GraphicsMagick, or Wand)
* Pluggable Key Value Store support (Django cache, redis)
* Pluggable Backend support (i.e. different thumbnail filename schema)
* Dummy generation (placeholders)
@@ -95,7 +97,7 @@ Description: thumbnail support for the Django framework (Documentation)
.
Other features include:
* Django storage support
- * Pluggable Engine support (PIL, pgmagick, ImageMagick or GraphicsMagick)
+ * Pluggable Engine support (PIL, pgmagick, ImageMagick, GraphicsMagick, or Wand)
* Pluggable Key Value Store support (Django cache, redis)
* Pluggable Backend support (i.e. different thumbnail filename schema)
* Dummy generation (placeholders)
diff --git a/debian/rules b/debian/rules
index 3ad38c1..907f735 100755
--- a/debian/rules
+++ b/debian/rules
@@ -22,15 +22,10 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
mkdir -p tmp-locales
localedef -i en_US -c -f UTF-8 tmp-locales/en_US.UTF-8
set -e; \
- for python in $(shell pyversions -r); do \
- for name in pil pgmagick imagemagick graphicsmagick; do \
- LOCPATH=$(CURDIR)/tmp-locales LC_ALL=en_US.UTF-8 PYTHONPATH=. LOCAL_BUILD=1 DJANGO_SETTINGS_MODULE=tests.settings.$$name $$python -m pytest ; \
- done; \
- done
- for python in $(shell py3versions -r); do \
- for name in pil imagemagick graphicsmagick; do \
- LOCPATH=$(CURDIR)/tmp-locales LC_ALL=en_US.UTF-8 PYTHONPATH=. LOCAL_BUILD=1 DJANGO_SETTINGS_MODULE=tests.settings.$$name $$python -m pytest ; \
- done; \
+ for python in $(shell pyversions -r) $(shell py3versions -r); do \
+ for name in pil pgmagick imagemagick graphicsmagick wand; do \
+ LOCPATH=$(CURDIR)/tmp-locales LC_ALL=en_US.UTF-8 PYTHONPATH=. LOCAL_BUILD=1 DJANGO_SETTINGS_MODULE=tests.settings.$$name $$python -m pytest ; \
+ done; \
done
rm -rf tmp-locales
endif
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/sorl-thumbnail.git
More information about the Python-modules-commits
mailing list