Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security py-SSLCrypto: removed, does not build any longer



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a43b3b466467
branches:  trunk
changeset: 432554:a43b3b466467
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat May 23 09:06:19 2020 +0000

description:
py-SSLCrypto: removed, does not build any longer

diffstat:

 security/Makefile                      |   3 +--
 security/py-SSLCrypto/DESCR            |  18 ------------------
 security/py-SSLCrypto/Makefile         |  21 ---------------------
 security/py-SSLCrypto/PLIST            |   3 ---
 security/py-SSLCrypto/buildlink3.mk    |  15 ---------------
 security/py-SSLCrypto/distinfo         |   7 -------
 security/py-SSLCrypto/patches/patch-aa |  13 -------------
 7 files changed, 1 insertions(+), 79 deletions(-)

diffs (118 lines):

diff -r 0b91d8322110 -r a43b3b466467 security/Makefile
--- a/security/Makefile Sat May 23 09:04:04 2020 +0000
+++ b/security/Makefile Sat May 23 09:06:19 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.759 2020/05/02 13:35:39 taca Exp $
+# $NetBSD: Makefile,v 1.760 2020/05/23 09:06:19 adam Exp $
 #
 
 COMMENT=       Security tools
@@ -410,7 +410,6 @@
 SUBDIR+=       py-Des
 SUBDIR+=       py-OTXv2
 SUBDIR+=       py-OpenSSL
-SUBDIR+=       py-SSLCrypto
 SUBDIR+=       py-acme
 SUBDIR+=       py-acme-tiny
 SUBDIR+=       py-aes
diff -r 0b91d8322110 -r a43b3b466467 security/py-SSLCrypto/DESCR
--- a/security/py-SSLCrypto/DESCR       Sat May 23 09:04:04 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-SSLCrypto is a package for Python that dramatically eases the task of
-adding encryption to Python programs.
-
-It provides a unified API that is almost totally compatible with that
-of ezPyCrypto, except that it takes advantage of the OpenSSL Crypto
-Library to deliver massive improvements in speed and security.
-
-After using ezPyCrypto myself, I found that while it performed ok with
-smaller public key sizes, it proved impossibly slow with larger keys.
-This slowness, resulting from non-optimal code in its backend (the
-Python Cryptography Toolkit) meant that on a 1.5 GHz Athlon XP, it was
-taking several minutes to generate 4096-bit keys.  Completely
-unacceptable if you need real security.
-
-Performance is absolutely critical for an encryption API.  If slowness
-deters people from using adequate-sized keys, security will be
-severely compromised, almost to the extent that there's little point
-in using encryption in the first place.
diff -r 0b91d8322110 -r a43b3b466467 security/py-SSLCrypto/Makefile
--- a/security/py-SSLCrypto/Makefile    Sat May 23 09:04:04 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-# $NetBSD: Makefile,v 1.23 2020/04/24 11:41:37 nia Exp $
-
-DISTNAME=      SSLCrypto-0.1.1
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   8
-CATEGORIES=    security python
-MASTER_SITES=  http://www.freenet.org.nz/python/SSLCrypto/
-
-MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      http://www.freenet.org.nz/python/SSLCrypto/
-COMMENT=       Python bindings for openssl
-
-BROKEN=                "Fails to build with OpenSSL 1.1"
-
-DEPENDS+=      ${PYPKGPREFIX}-pyrex>=0.9.4.1:../../lang/py-pyrex
-
-PYTHON_VERSIONS_ACCEPTED=      27 # py-pyrex
-
-.include "../../lang/python/distutils.mk"
-.include "../../security/openssl/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r 0b91d8322110 -r a43b3b466467 security/py-SSLCrypto/PLIST
--- a/security/py-SSLCrypto/PLIST       Sat May 23 09:04:04 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2014/01/21 13:59:06 wiz Exp $
-${PYSITELIB}/${EGG_FILE}
-${PYSITELIB}/SSLCrypto.so
diff -r 0b91d8322110 -r a43b3b466467 security/py-SSLCrypto/buildlink3.mk
--- a/security/py-SSLCrypto/buildlink3.mk       Sat May 23 09:04:04 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.8 2013/02/16 12:07:26 wiz Exp $
-
-BUILDLINK_TREE+=       py-SSLCrypto
-
-.if !defined(PY_SSLCRYPTO_BUILDLINK3_MK)
-PY_SSLCRYPTO_BUILDLINK3_MK:=
-
-BUILDLINK_API_DEPENDS.py-SSLCrypto+=   ${PYPKGPREFIX}-SSLCrypto>=0.1.1
-BUILDLINK_ABI_DEPENDS.py-SSLCrypto+=   ${PYPKGPREFIX}-SSLCrypto>=0.1.1nb4
-BUILDLINK_PKGSRCDIR.py-SSLCrypto?=     ../../security/py-SSLCrypto
-
-#.include "../../security/openssl/buildlink3.mk"
-.endif # PY_SSLCRYPTO_BUILDLINK3_MK
-
-BUILDLINK_TREE+=       -py-SSLCrypto
diff -r 0b91d8322110 -r a43b3b466467 security/py-SSLCrypto/distinfo
--- a/security/py-SSLCrypto/distinfo    Sat May 23 09:04:04 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-$NetBSD: distinfo,v 1.3 2015/11/04 01:18:03 agc Exp $
-
-SHA1 (SSLCrypto-0.1.1.tar.gz) = 3e33e86ed6ad0db5546f53d6809008398d7b8ae5
-RMD160 (SSLCrypto-0.1.1.tar.gz) = c2dfaaed00105ff0d039cda3b1a2f19cca556632
-SHA512 (SSLCrypto-0.1.1.tar.gz) = 3a599a329491b6a379d338764bb6410423f4e212d50233c85bc0228a7dc24798d9c5ba52507983759c9a86f7095eeea28ae6af7fffa022952bae46bd8e0ffa6f
-Size (SSLCrypto-0.1.1.tar.gz) = 141376 bytes
-SHA1 (patch-aa) = 708dec7a73ac84f878d570ae447b838ae5cc36df
diff -r 0b91d8322110 -r a43b3b466467 security/py-SSLCrypto/patches/patch-aa
--- a/security/py-SSLCrypto/patches/patch-aa    Sat May 23 09:04:04 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2009/02/11 23:25:59 joerg Exp $
-
---- setup.py.orig      2009-02-12 00:04:33.000000000 +0100
-+++ setup.py
-@@ -9,7 +9,7 @@ if sys.platform == 'win32':
-     extra_link_args = []
- else:
-     sslLibs = []
--    extra_link_args = ['/usr/lib/libcrypto.a']
-+    extra_link_args = ['-lcrypto']
- 
- setup(
-   name = "SSLCrypto",



Home | Main Index | Thread Index | Old Index