Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Jan 2015 10:16:49 +0000 (UTC)
From:      Johannes Jost Meixner <xmj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r377786 - in head/textproc: . py-qrcode
Message-ID:  <201501241016.t0OAGngY082149@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: xmj
Date: Sat Jan 24 10:16:48 2015
New Revision: 377786
URL: https://svnweb.freebsd.org/changeset/ports/377786
QAT: https://qat.redports.org/buildarchive/r377786/

Log:
  textproc/py-qrcode: Add port
  
  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
  
  PR:		196046
  Differential Revision:	https://reviews.freebsd.org/D1631
  Submitted by:	kyuupichan@gmail.com
  Approved by:	koobs (mentor)

Added:
  head/textproc/py-qrcode/
  head/textproc/py-qrcode/Makefile   (contents, props changed)
  head/textproc/py-qrcode/distinfo   (contents, props changed)
  head/textproc/py-qrcode/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sat Jan 24 10:09:10 2015	(r377785)
+++ head/textproc/Makefile	Sat Jan 24 10:16:48 2015	(r377786)
@@ -1208,6 +1208,7 @@
     SUBDIR += py-python-augeas
     SUBDIR += py-pytidylib
     SUBDIR += py-pyx12
+    SUBDIR += py-qrcode
     SUBDIR += py-qt4-xml
     SUBDIR += py-qt4-xmlpatterns
     SUBDIR += py-rdflib

Added: head/textproc/py-qrcode/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-qrcode/Makefile	Sat Jan 24 10:16:48 2015	(r377786)
@@ -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>

Added: head/textproc/py-qrcode/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-qrcode/distinfo	Sat Jan 24 10:16:48 2015	(r377786)
@@ -0,0 +1,2 @@
+SHA256 (qrcode-5.1.tar.gz) = 33bdee5e834fc99eb538e1dad198a3a5b70d0a88845629cacf4c592be1ce7f6a
+SIZE (qrcode-5.1.tar.gz) = 22259

Added: head/textproc/py-qrcode/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-qrcode/pkg-descr	Sat Jan 24 10:16:48 2015	(r377786)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501241016.t0OAGngY082149>