[csw-devel] SF.net SVN: gar:[19383] csw/mgar/pkg/lang-python/pycrypto/trunk
bilko50000 at users.sourceforge.net
bilko50000 at users.sourceforge.net
Fri Oct 5 12:07:53 CEST 2012
Revision: 19383
http://gar.svn.sourceforge.net/gar/?rev=19383&view=rev
Author: bilko50000
Date: 2012-10-05 10:07:53 +0000 (Fri, 05 Oct 2012)
Log Message:
-----------
New release
Modified Paths:
--------------
csw/mgar/pkg/lang-python/pycrypto/trunk/Makefile
csw/mgar/pkg/lang-python/pycrypto/trunk/checksums
Removed Paths:
-------------
csw/mgar/pkg/lang-python/pycrypto/trunk/files/0001-On-Solaris-Use-sys-inttypes.h-instead-of-stdint.h.patch
csw/mgar/pkg/lang-python/pycrypto/trunk/files/0002-Substitute-hardcoded-usr-local-bin-python.patch
Modified: csw/mgar/pkg/lang-python/pycrypto/trunk/Makefile
===================================================================
--- csw/mgar/pkg/lang-python/pycrypto/trunk/Makefile 2012-10-05 08:44:54 UTC (rev 19382)
+++ csw/mgar/pkg/lang-python/pycrypto/trunk/Makefile 2012-10-05 10:07:53 UTC (rev 19383)
@@ -10,7 +10,7 @@
#
NAME = pycrypto
-VERSION = 2.3
+VERSION = 2.6
GARTYPE = v2
CATEGORIES = python
@@ -26,11 +26,7 @@
LICENSE = COPYRIGHT
PACKAGES = CSWpy-crypto
-RUNTIME_DEP_PKGS = CSWlibgmp
+RUNTIME_DEP_PKGS = CSWlibgmp10
RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0
-# c.f. https://bugs.launchpad.net/pycrypto/+bug/518871
-PATCHFILES += 0001-On-Solaris-Use-sys-inttypes.h-instead-of-stdint.h.patch
-PATCHFILES += 0002-Substitute-hardcoded-usr-local-bin-python.patch
-
include gar/category.mk
Modified: csw/mgar/pkg/lang-python/pycrypto/trunk/checksums
===================================================================
--- csw/mgar/pkg/lang-python/pycrypto/trunk/checksums 2012-10-05 08:44:54 UTC (rev 19382)
+++ csw/mgar/pkg/lang-python/pycrypto/trunk/checksums 2012-10-05 10:07:53 UTC (rev 19383)
@@ -1 +1 @@
-2b811cfbfc342d83ee614097effb8101 pycrypto-2.3.tar.gz
+270d1fe83a39e0467a66a22bb files/pycrypto-2.6.tar.gz
Deleted: csw/mgar/pkg/lang-python/pycrypto/trunk/files/0001-On-Solaris-Use-sys-inttypes.h-instead-of-stdint.h.patch
===================================================================
--- csw/mgar/pkg/lang-python/pycrypto/trunk/files/0001-On-Solaris-Use-sys-inttypes.h-instead-of-stdint.h.patch 2012-10-05 08:44:54 UTC (rev 19382)
+++ csw/mgar/pkg/lang-python/pycrypto/trunk/files/0001-On-Solaris-Use-sys-inttypes.h-instead-of-stdint.h.patch 2012-10-05 10:07:53 UTC (rev 19383)
@@ -1,70 +0,0 @@
-From 002603e46cedd91813e2aa0dd1b2b0e24497079e Mon Sep 17 00:00:00 2001
-From: Sebastian Kayser <skayser at opencsw.org>
-Date: Sat, 18 Jun 2011 12:54:05 +0200
-Subject: [PATCH] On Solaris, Use sys/inttypes.h instead of stdint.h
-
-Required because Solaris < 10 doesn't ship with stdint.h. On Solaris 10,
-both (sys/inttypes.h and stdint.h) end up including sys/int_types.h, so
-this should also be fine for Solaris 10.
----
- src/Blowfish.c | 6 ++++++
- src/RIPEMD160.c | 6 ++++++
- src/_counter.h | 5 +++++
- 3 files changed, 17 insertions(+), 0 deletions(-)
-
-diff --git a/src/Blowfish.c b/src/Blowfish.c
-index f0d8594..d6e4b7c 100644
---- a/src/Blowfish.c
-+++ b/src/Blowfish.c
-@@ -27,7 +27,13 @@
- */
-
- #include <assert.h>
-+
-+#if defined(__sun) || defined(__sun__)
-+#include <sys/inttypes.h>
-+#else
- #include <stdint.h>
-+#endif
-+
- #include <string.h>
- #include "Python.h"
-
-diff --git a/src/RIPEMD160.c b/src/RIPEMD160.c
-index da2e72c..51cfcac 100644
---- a/src/RIPEMD160.c
-+++ b/src/RIPEMD160.c
-@@ -44,7 +44,13 @@
- */
-
- #include <assert.h>
-+
-+#if defined(__sun) || defined(__sun__)
-+#include <sys/inttypes.h>
-+#else
- #include <stdint.h>
-+#endif
-+
- #include <string.h>
- #include "Python.h"
-
-diff --git a/src/_counter.h b/src/_counter.h
-index faaf63f..1f2a31c 100644
---- a/src/_counter.h
-+++ b/src/_counter.h
-@@ -24,7 +24,12 @@
- #ifndef PCT__COUNTER_H
- #define PCT__COUNTER_H
-
-+#if defined(__sun) || defined(__sun__)
-+#include <sys/inttypes.h>
-+#else
- #include <stdint.h>
-+#endif
-+
- #include "Python.h"
-
- typedef struct {
---
-1.7.5.4
-
Deleted: csw/mgar/pkg/lang-python/pycrypto/trunk/files/0002-Substitute-hardcoded-usr-local-bin-python.patch
===================================================================
--- csw/mgar/pkg/lang-python/pycrypto/trunk/files/0002-Substitute-hardcoded-usr-local-bin-python.patch 2012-10-05 08:44:54 UTC (rev 19382)
+++ csw/mgar/pkg/lang-python/pycrypto/trunk/files/0002-Substitute-hardcoded-usr-local-bin-python.patch 2012-10-05 10:07:53 UTC (rev 19383)
@@ -1,22 +0,0 @@
-From c2c98941699d20c6797d8dfd21938d0b299c5fd3 Mon Sep 17 00:00:00 2001
-From: Sebastian Kayser <skayser at opencsw.org>
-Date: Sat, 18 Jun 2011 14:27:02 +0200
-Subject: [PATCH] Substitute hardcoded /usr/local/bin/python
-
----
- lib/Crypto/Util/RFC1751.py | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/lib/Crypto/Util/RFC1751.py b/lib/Crypto/Util/RFC1751.py
-index 85e0e99..f25ed8f 100644
---- a/lib/Crypto/Util/RFC1751.py
-+++ b/lib/Crypto/Util/RFC1751.py
-@@ -1,4 +1,4 @@
--#!/usr/local/bin/python
-+#!/usr/bin/env python
- # rfc1751.py : Converts between 128-bit strings and a human-readable
- # sequence of words, as defined in RFC1751: "A Convention for
- # Human-Readable 128-bit Keys", by Daniel L. McDonald.
---
-1.7.5.4
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list