From f589ac5062381c9c1ca835b1958c8034b1053649 Mon Sep 17 00:00:00 2001
From: Adam Mercer <ram+local@macports.org>
Date: Sun, 14 Nov 2010 13:03:31 -0600
Subject: [PATCH 2/2] python/py25-crypto: update to 2.3, closes #27309
---
python/py25-crypto/Portfile | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/python/py25-crypto/Portfile b/python/py25-crypto/Portfile
index affee85..f9bbab8 100644
a
|
b
|
PortSystem 1.0 |
4 | 4 | PortGroup python25 1.0 |
5 | 5 | |
6 | 6 | name py25-crypto |
7 | | version 2.0.1 |
| 7 | version 2.3 |
8 | 8 | |
9 | 9 | categories python security |
10 | 10 | platforms darwin freebsd |
… |
… |
long_description collection of cryptographic algorithms and protocols, \ |
15 | 15 | ARC2, Blowfish, CAST, DES, Triple-DES, IDEA, RC5, ARC4, simple XOR, \ |
16 | 16 | RSA, DSA, ElGamal, qNEW. |
17 | 17 | |
18 | | homepage http://www.amk.ca/python/code/crypto.html |
19 | | master_sites http://www.amk.ca/files/python/crypto/ |
| 18 | homepage http://www.dlitz.net/software/pycrypto/ |
| 19 | master_sites http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/ |
20 | 20 | distname pycrypto-${version} |
21 | 21 | |
22 | | checksums sha1 c77cdefdfb06e4749690013a9a9e1600ab14e26f |
| 22 | checksums md5 2b811cfbfc342d83ee614097effb8101 \ |
| 23 | sha1 96b33b77e729893bd0837a09a6aa7a12b5070037 \ |
| 24 | rmd160 5b7b15aab3f5e33113ba197a2edd629c72595374 |
23 | 25 | |
24 | | #test.run yes |
25 | | #test.cmd ${python.bin} test.py |
26 | | test.target |
| 26 | test.run yes |
| 27 | test.target test |
27 | 28 | |
28 | | post-destroot { |
| 29 | post-destroot { |
29 | 30 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
30 | | xinstall -m 644 -W ${worksrcpath} ACKS ChangeLog LICENSE README TODO \ |
| 31 | xinstall -m 644 -W ${worksrcpath} ACKS ChangeLog COPYRIGHT README TODO \ |
31 | 32 | ${destroot}${prefix}/share/doc/${name} |
32 | 33 | } |
33 | 34 | |