Index: head/graphics/py-sorl-thumbnail/files/patch-docs_conf.py =================================================================== --- head/graphics/py-sorl-thumbnail/files/patch-docs_conf.py (revision 530950) +++ head/graphics/py-sorl-thumbnail/files/patch-docs_conf.py (nonexistent) @@ -1,17 +0,0 @@ ---- docs/conf.py.orig 2017-11-21 00:08:00 UTC -+++ docs/conf.py -@@ -15,10 +15,13 @@ import os - import sphinx - import sys - -+if sys.version_info < (3,): -+ range = xrange -+ - sys.path.insert(0, os.path.pardir) - import sorl - --for j in xrange(0, len(sphinx.__version__)): -+for j in range(0, len(sphinx.__version__)): - try: - version = float(sphinx.__version__[:-j]) - break Property changes on: head/graphics/py-sorl-thumbnail/files/patch-docs_conf.py ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/graphics/py-sorl-thumbnail/Makefile =================================================================== --- head/graphics/py-sorl-thumbnail/Makefile (revision 530950) +++ head/graphics/py-sorl-thumbnail/Makefile (revision 530951) @@ -1,53 +1,54 @@ # Created by: Kevin Golding # $FreeBSD$ PORTNAME= sorl-thumbnail -PORTVERSION= 12.4.1 -PORTREVISION= 2 +PORTVERSION= 12.6.3 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@caomhin.org COMMENT= Sorl-thumbnail provides an easy way to generate image thumbnails LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.8:www/py-django111@${PY_FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=1.11:www/py-django22@${PY_FLAVOR} -USES= python -USE_PYTHON= autoplist distutils +USES= python:3.5+ +USE_PYTHON= autoplist concurrent distutils + NO_ARCH= yes PORTDOCS= * OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= PILLOW OPTIONS_SINGLE= IMAGELIB OPTIONS_GROUP= CACHING OPTIONS_SINGLE_IMAGELIB= GRAPHICSMAGICK IMAGEMAGICK PILLOW WAND OPTIONS_GROUP_CACHING= REDIS DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} DOCS_VARS= PYDISTUTILS_BUILD_TARGET+="build_sphinx -a -E" GRAPHICSMAGICK_RUN_DEPENDS= ${LOCALBASE}/bin/gm:graphics/GraphicsMagick IMAGEMAGICK_RUN_DEPENDS= ${LOCALBASE}/bin/convert:graphics/ImageMagick6 PILLOW_RUN_DEPENDS= ${PY_PILLOW} REDIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>0:databases/py-redis@${PY_FLAVOR} WAND_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Wand>0:graphics/py-wand@${PY_FLAVOR} GRAPHICSMAGICK_DESC= Use GraphicsMagick for image processing (faster) IMAGEMAGICK_DESC= Use ImageMagick for image processing PILLOW_DESC= Use internal image processing REDIS_DESC= Use REDIS as Key Value Store WAND_DESC= Use Wand with ImageMagick post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/build/sphinx/html && \ ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \ "! -name .buildinfo -and ! -name objects.inv") .include Index: head/graphics/py-sorl-thumbnail/distinfo =================================================================== --- head/graphics/py-sorl-thumbnail/distinfo (revision 530950) +++ head/graphics/py-sorl-thumbnail/distinfo (revision 530951) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526248144 -SHA256 (sorl-thumbnail-12.4.1.tar.gz) = 1cc6d913fe4f1224e479f25a23ec2ad3ca71c3154919a2c9463b07e7fbe11ac2 -SIZE (sorl-thumbnail-12.4.1.tar.gz) = 533008 +TIMESTAMP = 1586027494 +SHA256 (sorl-thumbnail-12.6.3.tar.gz) = 66771521f3c0ed771e1ce8e1aaf1639ebff18f7f5a40cfd3083da8f0fe6c7c99 +SIZE (sorl-thumbnail-12.6.3.tar.gz) = 536608 Index: head/graphics/py-sorl-thumbnail/pkg-descr =================================================================== --- head/graphics/py-sorl-thumbnail/pkg-descr (revision 530950) +++ head/graphics/py-sorl-thumbnail/pkg-descr (revision 530951) @@ -1,18 +1,18 @@ The sorl-thumbnail package provides an easy way to generate image thumbnails. Some of its features: - Storage support -- Pluggable Engine support for Pillow, GraphicsMagick, ImageMagick and Wand +- Pluggable Engine support for Pillow, GraphicsMagick, ImageMagick and Wand - Pluggable Key Value Store support (cached db and redis) - Pluggable Backend support - Admin integration with possibility to delete - Dummy generation (placeholders) - Flexible, simple syntax, generates no html - ImageField for model that deletes thumbnails - CSS style cropping options - Back smart cropping, and remove borders from the images when cropping - Margin calculation for vertical positioning - Alternative resolutions versions of a thumbnail WWW: https://github.com/jazzband/sorl-thumbnail