From owner-svn-ports-head@FreeBSD.ORG Sat Jan 24 10:16:50 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FC8ECD7; Sat, 24 Jan 2015 10:16:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 428C8D02; Sat, 24 Jan 2015 10:16:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0OAGn4n082153; Sat, 24 Jan 2015 10:16:49 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0OAGngY082149; Sat, 24 Jan 2015 10:16:49 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201501241016.t0OAGngY082149@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Sat, 24 Jan 2015 10:16:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377786 - in head/textproc: . py-qrcode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jan 2015 10:16:50 -0000 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 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