Re: ports/149423: Update port: security/py-pycrypto

2010-08-11 Thread Keith Gaughan
The following reply was made to PR ports/149423; it has been noted by GNATS.

From: Keith Gaughan 
To: bug-follo...@freebsd.org
Cc:  
Subject: Re: ports/149423: Update port: security/py-pycrypto
Date: Wed, 11 Aug 2010 18:19:56 +0100

 --3MwIy2ne0vdjdPXF
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 Tested. Fixed an issue with the setup.py patch involving tabs where
 there ought to have been spaces. Otherwise the patch was good. Fixed
 patch is attached.
 
 -- 
 Keith Gaughan - k...@stereochro.me - http://stereochro.me/ - CF9F6473
 ... you've left the lens cap on your mind again.
 -- from "Pinky and The Brain"
 
 --3MwIy2ne0vdjdPXF
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: attachment; filename="pycrypto.2.2.patch.txt"
 
 diff -ruNd py-pycrypto.bak/Makefile py-pycrypto/Makefile
 --- py-pycrypto.bak/Makefile   2010-04-19 11:43:41.0 +0100
 +++ py-pycrypto/Makefile   2010-08-09 13:14:28.0 +0100
 @@ -6,8 +6,7 @@
  #
  
  PORTNAME= pycrypto
 -PORTVERSION=  2.1.0
 -PORTREVISION= 1
 +PORTVERSION=  2.2
  CATEGORIES=   security python
  MASTER_SITES= http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/
  PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX}
 diff -ruNd py-pycrypto.bak/distinfo py-pycrypto/distinfo
 --- py-pycrypto.bak/distinfo   2010-01-01 04:47:56.0 +
 +++ py-pycrypto/distinfo   2010-08-09 13:14:28.0 +0100
 @@ -1,3 +1,3 @@
 -MD5 (pycrypto-2.1.0.tar.gz) = 1d3eb04f06e6f09a080bc37fb019f9bf
 -SHA256 (pycrypto-2.1.0.tar.gz) = 
253e1c22ea0249f0429df4f7e2eb973b119c83b146c0f421298f5e8e6822d8a2
 -SIZE (pycrypto-2.1.0.tar.gz) = 265388
 +MD5 (pycrypto-2.2.tar.gz) = 4f0ed728b14b98f09120cb2ec461ec98
 +SHA256 (pycrypto-2.2.tar.gz) = 
9219449bc85ab4f4ff61fc83b0cbe0ec23d46943caab3d5413c6ba52da6f922c
 +SIZE (pycrypto-2.2.tar.gz) = 331270
 diff -ruNd py-pycrypto.bak/files/patch-setup.py 
py-pycrypto/files/patch-setup.py
 --- py-pycrypto.bak/files/patch-setup.py   2010-01-01 04:47:56.0 
+
 +++ py-pycrypto/files/patch-setup.py   2010-08-09 13:18:10.0 +0100
 @@ -1,14 +1,14 @@
  ./setup.py.orig   2009-12-13 21:39:29.0 +0100
 -+++ ./setup.py2009-12-14 16:48:47.0 +0100
 -@@ -136,6 +136,7 @@
 +--- setup.py.orig 2010-08-08 14:02:23.895825034 +0200
  setup.py  2010-08-08 14:04:31.663792751 +0200
 +@@ -139,6 +139,7 @@
   # especially helps the DES modules.
   self.__add_compiler_option("-O3")
   self.__add_compiler_option("-fomit-frame-pointer")
  +self.__add_compiler_option("-D_WCHAR_T_DEFINED")
   # Don't include debug symbols unless debugging
   self.__remove_compiler_option("-g")
 - if USE_GCOV:
 -@@ -152,7 +153,7 @@
 + # Don't include profiling information (incompatible with 
-fomit-frame-pointer)
 +@@ -157,7 +158,7 @@
   self.compiler.include_dirs.insert(0, "src/inc-msvc/")
   
   # Detect libgmp and don't build _fastmath if it is missing.
 @@ -17,7 +17,7 @@
   if not (self.compiler.find_library_file(lib_dirs, 'gmp')):
   print >>sys.stderr, "warning: GMP library not found; Not 
building Crypto.PublicKey._fastmath."
   self.__remove_extensions(["Crypto.PublicKey._fastmath"])
 -@@ -259,6 +260,7 @@
 +@@ -264,6 +265,7 @@
   Extension("Crypto.PublicKey._fastmath",
 include_dirs=['src/'],
 libraries=['gmp'],
 diff -ruNd py-pycrypto.bak/pkg-plist py-pycrypto/pkg-plist
 --- py-pycrypto.bak/pkg-plist  2010-01-01 04:47:56.0 +
 +++ py-pycrypto/pkg-plist  2010-08-09 13:14:28.0 +0100
 @@ -175,6 +175,9 @@
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/PublicKey/test_RSA.py
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/PublicKey/test_RSA.pyc
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/PublicKey/test_RSA.pyo
 +%%PYTHON_SITELIBDIR%%/Crypto/SelfTest/PublicKey/test_importKey.py
 +%%PYTHON_SITELIBDIR%%/Crypto/SelfTest/PublicKey/test_importKey.pyc
 +%%PYTHON_SITELIBDIR%%/Crypto/SelfTest/PublicKey/test_importKey.pyo
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Random/Fortuna/__init__.py
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Random/Fortuna/__init__.pyc
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Random/Fortuna/__init__.pyo
 @@ -217,6 +220,9 @@
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/__init__.py
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/__init__.pyc
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/__init__.pyo
 +%%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/test_asn1.py
 +%%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/test_asn1.pyc
 +%%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/test_asn1.pyo
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/test_Counter.py
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/test_Counter.pyc
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/Util/test_Counter.pyo
 @@ -232,6 +238,9 @@
  %%PYTHON_SITELIBDIR%%/Crypto/SelfTest/st_common.py
  %%PYTHON_SITELIBDIR

Re: ports/149336: [PATCH] devel/py-RPyC: Restrict Python version to 2.5+

2010-08-11 Thread glarkin
Synopsis: [PATCH] devel/py-RPyC: Restrict Python version to 2.5+

State-Changed-From-To: feedback->closed
State-Changed-By: glarkin
State-Changed-When: Wed Aug 11 13:46:41 EDT 2010
State-Changed-Why: 
Committed after email approval from wen.

http://www.freebsd.org/cgi/query-pr.cgi?pr=149336
___
freebsd-python@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"



Re: ports/149336: commit references a PR

2010-08-11 Thread dfilter service
The following reply was made to PR ports/149336; it has been noted by GNATS.

From: dfil...@freebsd.org (dfilter service)
To: bug-follo...@freebsd.org
Cc:  
Subject: Re: ports/149336: commit references a PR
Date: Wed, 11 Aug 2010 17:48:50 + (UTC)

 glarkin 2010-08-11 17:46:16 UTC
 
   FreeBSD ports repository
 
   Modified files:
 devel/py-RPyCMakefile 
   Log:
   - Restricted Python version to 2.5+, since 2.4 exits with a syntax
 error during the build.
   
   PR: ports/149336
   Submitted by:   glarkin
   Approved by:wen (via email)
   
   Revision  ChangesPath
   1.6   +1 -1  ports/devel/py-RPyC/Makefile
 ___
 cvs-...@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"
 
___
freebsd-python@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"