diff options
Diffstat (limited to 'textproc/py-qrcode')
-rw-r--r-- | textproc/py-qrcode/Makefile | 21 | ||||
-rw-r--r-- | textproc/py-qrcode/distinfo | 2 | ||||
-rw-r--r-- | textproc/py-qrcode/pkg-descr | 10 |
3 files changed, 33 insertions, 0 deletions
diff --git a/textproc/py-qrcode/Makefile b/textproc/py-qrcode/Makefile new file mode 100644 index 000000000000..2494aa326845 --- /dev/null +++ b/textproc/py-qrcode/Makefile @@ -0,0 +1,21 @@ +# Created by: Neil Booth +# $FreeBSD$ + +PORTNAME= qrcode +PORTVERSION= 5.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kyuupichan@gmail.com +COMMENT= QR Code image generator + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}pillow>=2.6:${PORTSDIR}/graphics/py-pillow + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> diff --git a/textproc/py-qrcode/distinfo b/textproc/py-qrcode/distinfo new file mode 100644 index 000000000000..3f689064db1e --- /dev/null +++ b/textproc/py-qrcode/distinfo @@ -0,0 +1,2 @@ +SHA256 (qrcode-5.1.tar.gz) = 33bdee5e834fc99eb538e1dad198a3a5b70d0a88845629cacf4c592be1ce7f6a +SIZE (qrcode-5.1.tar.gz) = 22259 diff --git a/textproc/py-qrcode/pkg-descr b/textproc/py-qrcode/pkg-descr new file mode 100644 index 000000000000..60c7569b416a --- /dev/null +++ b/textproc/py-qrcode/pkg-descr @@ -0,0 +1,10 @@ +This module uses image libraries, Python Imaging Library (PIL) by +default, to generate QR Codes. + +A Quick Response code is a two-dimensional pictographic code used +for its fast readability and comparatively large storage capacity. +The code consists of black modules arranged in a square pattern on +a white background. The information encoded can be made up of any +kind of data (e.g., binary, alphanumeric, or Kanji symbols) + +WWW: https://github.com/lincolnloop/python-qrcode |