From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 9 22:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2027AE82 for ; Sun, 9 Jun 2013 22:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 0724B1A61 for ; Sun, 9 Jun 2013 22:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r59Mo0xN040240 for ; Sun, 9 Jun 2013 22:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r59Mo0gQ040239; Sun, 9 Jun 2013 22:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 9 Jun 2013 22:50:00 GMT Resent-Message-Id: <201306092250.r59Mo0gQ040239@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Neil Booth Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D6381D09 for ; Sun, 9 Jun 2013 22:43:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) by mx1.freebsd.org (Postfix) with ESMTP id AF107199A for ; Sun, 9 Jun 2013 22:43:04 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r59Mh4B0029053 for ; Sun, 9 Jun 2013 22:43:04 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r59Mh4bC029052; Sun, 9 Jun 2013 22:43:04 GMT (envelope-from nobody) Message-Id: <201306092243.r59Mh4bC029052@oldred.freebsd.org> Date: Sun, 9 Jun 2013 22:43:04 GMT From: Neil Booth To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/179447: New port: devel/py-slowaes Implementation of AES in pure Python X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jun 2013 22:50:01 -0000 >Number: 179447 >Category: ports >Synopsis: New port: devel/py-slowaes Implementation of AES in pure Python >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 09 22:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Neil Booth >Release: DragonFly >Organization: N/A >Environment: DragonFly athlon2.akihabara.co.uk 3.5-DEVELOPMENT DragonFly v3.5.0.301.ga29ef-DEVELOPMENT #1: Fri Jun 7 19:05:53 JST 2013 root@athlon2.akihabara.co.uk:/usr/obj/usr/src/sys/X86_64_GENERIC x86_64 >Description: This is a python library that is a dependency of the Electrum bitcoin client, which I have ported. portlint reports no problems and installed cleanly in poudriere in test mode. SHAR file attached (.txt extension) >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-slowaes # py-slowaes/pkg-descr # py-slowaes/distinfo # py-slowaes/Makefile # py-slowaes/pkg-plist # echo c - py-slowaes mkdir -p py-slowaes > /dev/null 2>&1 echo x - py-slowaes/pkg-descr sed 's/^X//' >py-slowaes/pkg-descr << 'END-of-py-slowaes/pkg-descr' XImplementation of AES in pure Python. X XAs such it will be slow (hence the project name) but still useful when Xfaster ones are not available (for example, for JavaScript clients in Xbrowsers, and Python servers on Google App Engine). END-of-py-slowaes/pkg-descr echo x - py-slowaes/distinfo sed 's/^X//' >py-slowaes/distinfo << 'END-of-py-slowaes/distinfo' XSHA256 (slowaes-0.1a1.tar.gz) = 83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09 XSIZE (slowaes-0.1a1.tar.gz) = 7017 END-of-py-slowaes/distinfo echo x - py-slowaes/Makefile sed 's/^X//' >py-slowaes/Makefile << 'END-of-py-slowaes/Makefile' X# Created by: Neil Booth X# $FreeBSD$ X XPORTNAME= slowaes XPORTVERSION= 0.1a1 XCATEGORIES= devel python XMASTER_SITES= ${MASTER_SITE_CHEESESHOP} XMASTER_SITE_SUBDIR= source/s/${PORTNAME} XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= kyuupichan@gmail.com XCOMMENT= Implementation of AES in pure Python X XUSE_PYTHON= yes XUSE_PYDISTUTILS= easy_install X X.include END-of-py-slowaes/Makefile echo x - py-slowaes/pkg-plist sed 's/^X//' >py-slowaes/pkg-plist << 'END-of-py-slowaes/pkg-plist' X%%PYTHON_SITELIBDIR%%/slowaes-0.1a1-py2.7.egg END-of-py-slowaes/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: