pkgsrc/www/py-django-photologue/Makefile

23 lines
818 B
Makefile
Raw Normal View History

2018-09-25 22:22:54 +02:00
# $NetBSD: Makefile,v 1.12 2018/09/25 20:22:54 joerg Exp $
py-django-photologue: updated to 3.8.1 3.8.1: - Admin thumbnails were not displaying correctly. 3.8: - Added support for Django 2.0. - Dropped support for Django 1.8 and 1.10. - Did not really work with Django 1.11 - sortedm2m library was broken. Upgraded sortedm2m and it now works with 1.11. - New translation for Ukranian; updated translation for Spanish. - Fixed template tag that was broken in Django 1.11. 3.7: - Now works with Django 1.11. Deprecated support for Django 1.9. - Fixed the management commands to work in the latest versions of Django. - Fixed an issue with some photo sizes not being created. - Updated translations for French and Basque. 3.6: - Now works with Django 1.10 (to be precise: Photologue worked, but the unit tests did not). - Updated urlpatterns in docs, tests and example project for Django 1.8+ - Enhance Python 2.7 EXIF info. - Updated docs (contributed by lizwalsh). - Fixed command plcreatesize (contributed by Mikel Larreategi). - Fixed deprecated template settings (contributed by Justin Dugger). - Updated translations for German and Russian. 3.5.1: - Photologue 3.5 failed to install under Python 2.7. Looks like distutils does not like files with non-ascii filenames. - Fix for issue 149 - bug with projects that extend ImageModel. 3.5: - Increased length of 'title' fields to 250 chars in order to store longer title. - Rotate image before resize, to comply with height/width constraints. - Added forgotten migration. - Changing "Photo" image leaves extra files on server. - Normalize filenames to ASCII so they work across all filesystems. - Updated Hungarian translation.
2018-03-05 15:13:22 +01:00
DISTNAME= django-photologue-3.8.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www python
2016-06-08 19:43:20 +02:00
MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-photologue/}
MAINTAINER= pkgsrc-users@NetBSD.org
py-django-photologue: updated to 3.8.1 3.8.1: - Admin thumbnails were not displaying correctly. 3.8: - Added support for Django 2.0. - Dropped support for Django 1.8 and 1.10. - Did not really work with Django 1.11 - sortedm2m library was broken. Upgraded sortedm2m and it now works with 1.11. - New translation for Ukranian; updated translation for Spanish. - Fixed template tag that was broken in Django 1.11. 3.7: - Now works with Django 1.11. Deprecated support for Django 1.9. - Fixed the management commands to work in the latest versions of Django. - Fixed an issue with some photo sizes not being created. - Updated translations for French and Basque. 3.6: - Now works with Django 1.10 (to be precise: Photologue worked, but the unit tests did not). - Updated urlpatterns in docs, tests and example project for Django 1.8+ - Enhance Python 2.7 EXIF info. - Updated docs (contributed by lizwalsh). - Fixed command plcreatesize (contributed by Mikel Larreategi). - Fixed deprecated template settings (contributed by Justin Dugger). - Updated translations for German and Russian. 3.5.1: - Photologue 3.5 failed to install under Python 2.7. Looks like distutils does not like files with non-ascii filenames. - Fix for issue 149 - bug with projects that extend ImageModel. 3.5: - Increased length of 'title' fields to 250 chars in order to store longer title. - Rotate image before resize, to comply with height/width constraints. - Added forgotten migration. - Changing "Photo" image leaves extra files on server. - Normalize filenames to ASCII so they work across all filesystems. - Updated Hungarian translation.
2018-03-05 15:13:22 +01:00
HOMEPAGE= https://github.com/jdriscoll/django-photologue
COMMENT= Plug-in photo management application for the Django framework
LICENSE= modified-bsd
py-django-photologue: updated to 3.8.1 3.8.1: - Admin thumbnails were not displaying correctly. 3.8: - Added support for Django 2.0. - Dropped support for Django 1.8 and 1.10. - Did not really work with Django 1.11 - sortedm2m library was broken. Upgraded sortedm2m and it now works with 1.11. - New translation for Ukranian; updated translation for Spanish. - Fixed template tag that was broken in Django 1.11. 3.7: - Now works with Django 1.11. Deprecated support for Django 1.9. - Fixed the management commands to work in the latest versions of Django. - Fixed an issue with some photo sizes not being created. - Updated translations for French and Basque. 3.6: - Now works with Django 1.10 (to be precise: Photologue worked, but the unit tests did not). - Updated urlpatterns in docs, tests and example project for Django 1.8+ - Enhance Python 2.7 EXIF info. - Updated docs (contributed by lizwalsh). - Fixed command plcreatesize (contributed by Mikel Larreategi). - Fixed deprecated template settings (contributed by Justin Dugger). - Updated translations for German and Russian. 3.5.1: - Photologue 3.5 failed to install under Python 2.7. Looks like distutils does not like files with non-ascii filenames. - Fix for issue 149 - bug with projects that extend ImageModel. 3.5: - Increased length of 'title' fields to 250 chars in order to store longer title. - Rotate image before resize, to comply with height/width constraints. - Added forgotten migration. - Changing "Photo" image leaves extra files on server. - Normalize filenames to ASCII so they work across all filesystems. - Updated Hungarian translation.
2018-03-05 15:13:22 +01:00
DEPENDS+= ${PYPKGPREFIX}-Pillow>=4.3.0:../../graphics/py-Pillow
DEPENDS+= ${PYPKGPREFIX}-django>=1.11:../../www/py-django
DEPENDS+= ${PYPKGPREFIX}-django-sortedm2m>=1.5.0:../../www/py-django-sortedm2m
DEPENDS+= ${PYPKGPREFIX}-exifread>=2.1.2:../../graphics/py-exifread
2018-09-25 22:22:54 +02:00
BUILD_DEPENDS+= ${PYPKGPREFIX}-pip-[0-9]*:../../devel/py-pip
py-django-photologue: updated to 3.8.1 3.8.1: - Admin thumbnails were not displaying correctly. 3.8: - Added support for Django 2.0. - Dropped support for Django 1.8 and 1.10. - Did not really work with Django 1.11 - sortedm2m library was broken. Upgraded sortedm2m and it now works with 1.11. - New translation for Ukranian; updated translation for Spanish. - Fixed template tag that was broken in Django 1.11. 3.7: - Now works with Django 1.11. Deprecated support for Django 1.9. - Fixed the management commands to work in the latest versions of Django. - Fixed an issue with some photo sizes not being created. - Updated translations for French and Basque. 3.6: - Now works with Django 1.10 (to be precise: Photologue worked, but the unit tests did not). - Updated urlpatterns in docs, tests and example project for Django 1.8+ - Enhance Python 2.7 EXIF info. - Updated docs (contributed by lizwalsh). - Fixed command plcreatesize (contributed by Mikel Larreategi). - Fixed deprecated template settings (contributed by Justin Dugger). - Updated translations for German and Russian. 3.5.1: - Photologue 3.5 failed to install under Python 2.7. Looks like distutils does not like files with non-ascii filenames. - Fix for issue 149 - bug with projects that extend ImageModel. 3.5: - Increased length of 'title' fields to 250 chars in order to store longer title. - Rotate image before resize, to comply with height/width constraints. - Added forgotten migration. - Changing "Photo" image leaves extra files on server. - Normalize filenames to ASCII so they work across all filesystems. - Updated Hungarian translation.
2018-03-05 15:13:22 +01:00
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"