summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-04-05 09:24:41 +0200
committerMichał Górny <mgorny@gentoo.org>2017-04-05 10:15:57 +0200
commit28f82e7cf599a04e4334ed05960b2d8866e0efef (patch)
tree066dc403372585e2f5c56b6bf883bc19cf97d1ba /dev-python/ncrypt
parentx11-misc/cairo-dock: Remove (revdep of cairo-dock-plugins, to be rmed) (diff)
downloadsunrise-28f82e7cf599a04e4334ed05960b2d8866e0efef.tar.gz
sunrise-28f82e7cf599a04e4334ed05960b2d8866e0efef.tar.bz2
sunrise-28f82e7cf599a04e4334ed05960b2d8866e0efef.zip
Remove packages using old python eclasses
Diffstat (limited to 'dev-python/ncrypt')
-rw-r--r--dev-python/ncrypt/ChangeLog12
-rw-r--r--dev-python/ncrypt/Manifest5
-rw-r--r--dev-python/ncrypt/files/cinit.patch120
-rw-r--r--dev-python/ncrypt/metadata.xml5
-rw-r--r--dev-python/ncrypt/ncrypt-0.6.4.ebuild31
5 files changed, 0 insertions, 173 deletions
diff --git a/dev-python/ncrypt/ChangeLog b/dev-python/ncrypt/ChangeLog
deleted file mode 100644
index 8a56f822c..000000000
--- a/dev-python/ncrypt/ChangeLog
+++ /dev/null
@@ -1,12 +0,0 @@
-# ChangeLog for dev-python/ncrypt
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
- 29 Jul 2010; Laurento Frittella (mrfree) <laurento.frittella@gmail.com>
- ncrypt-0.6.4.ebuild:
- Usage doc added
-
- 29 Jul 2010; Laurento Frittella (mrfree) <laurento.frittella@gmail.com>
- +ncrypt-0.6.4.ebuild, +files/cinit.patch, +metadata.xml:
- New Ebuild for bug 139679 thanks to Tommy[D]
-
diff --git a/dev-python/ncrypt/Manifest b/dev-python/ncrypt/Manifest
deleted file mode 100644
index 965314b0c..000000000
--- a/dev-python/ncrypt/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX cinit.patch 4031 RMD160 ce7e4f49163a8d689ab93307cd564118a23e6922 SHA1 1a7f092b5d8abccdd421ae9115d217e95a25f550 SHA256 ae09d30249d3a5f2bbcb378bbf7e61ef870df6c8a6a3f33e25768b798e71bb58
-DIST ncrypt-0.6.4.tar.gz 30348 RMD160 d3a4576d048c4a608e8c9069186cd3f22dced3a0 SHA1 6156175e34ff09a3b3df7b14247b7279c7bb082c SHA256 fe50e60598aeb72ff47692e8a3025197cc93b33d430bca230991e58dfcb36a1d
-EBUILD ncrypt-0.6.4.ebuild 573 RMD160 322c504825d861bf1bf0efeee57a380c38e7ac17 SHA1 98ff41febe29288c786e88818a48695acf122722 SHA256 12de9fc270a218effce5100d0693a2d313da1ae7efee4c6d97203732ff257d35
-MISC ChangeLog 415 RMD160 d1f4994b7e4ff6082e79c4d62f55d465167e2b30 SHA1 1e2f52f17f55b460eb52c6183914da1051f3c0a2 SHA256 899b1083cef347b56ac849f05ce56754e41f3eb832faa7b2315606636c2f31df
-MISC metadata.xml 208 RMD160 c18611400760e42bdd001905be0a63c2e963bcea SHA1 595816105cac477cb85792a182e15888029118a1 SHA256 c4841c87f0c2b9b5e679a27dc72180be8d508fb3f5df0fbab2ec2c805c0a6d82
diff --git a/dev-python/ncrypt/files/cinit.patch b/dev-python/ncrypt/files/cinit.patch
deleted file mode 100644
index 7ddc1fdbf..000000000
--- a/dev-python/ncrypt/files/cinit.patch
+++ /dev/null
@@ -1,120 +0,0 @@
-diff -Naur ncrypt-0.6.4.orig/ncrypt_bignum.pyx ncrypt-0.6.4/ncrypt_bignum.pyx
---- ncrypt-0.6.4.orig/ncrypt_bignum.pyx 2006-10-09 09:36:51.000000000 +0200
-+++ ncrypt-0.6.4/ncrypt_bignum.pyx 2010-07-29 16:10:06.000632053 +0200
-@@ -29,7 +29,7 @@
- cdef class BigNum :
- cdef BIGNUM *bn
-
-- def __new__( self, x=None ) :
-+ def __cinit__( self, x=None ) :
- self.bn = BN_new()
-
- cdef _free( self ) :
-diff -Naur ncrypt-0.6.4.orig/ncrypt_cipher.pyx ncrypt-0.6.4/ncrypt_cipher.pyx
---- ncrypt-0.6.4.orig/ncrypt_cipher.pyx 2006-10-09 09:36:51.000000000 +0200
-+++ ncrypt-0.6.4/ncrypt_cipher.pyx 2010-07-29 16:09:08.733881668 +0200
-@@ -43,7 +43,7 @@
- cdef EVP_CIPHER *c
- cdef object cipherAlgo, cipherMode
-
-- def __new__( self, cipherAlgo, cipherMode ) :
-+ def __cinit__( self, cipherAlgo, cipherMode ) :
- self.c = NULL
-
- def __dealloc__( self ) :
-@@ -84,7 +84,7 @@
- cdef EVP_CIPHER_CTX *ctx
- cdef int cipherFinalized
-
-- def __new__( self, cipherType, key, iv, encryptFlag ) :
-+ def __cinit__( self, cipherType, key, iv, encryptFlag ) :
- self.outBuffer = NULL
- self.outBufferSize = 0
- self.ctx = AllocCipherContext()
-diff -Naur ncrypt-0.6.4.orig/ncrypt_dh.pyx ncrypt-0.6.4/ncrypt_dh.pyx
---- ncrypt-0.6.4.orig/ncrypt_dh.pyx 2006-10-09 09:36:51.000000000 +0200
-+++ ncrypt-0.6.4/ncrypt_dh.pyx 2010-07-29 16:09:34.944631842 +0200
-@@ -50,7 +50,7 @@
- class DHError( ncrypt_err.BaseLibraryError ) : pass
-
- cdef class DH :
-- def __new__( self ) :
-+ def __cinit__( self ) :
- self.dh = DH_new()
-
- def __dealloc__( self ) :
-diff -Naur ncrypt-0.6.4.orig/ncrypt_digest.pyx ncrypt-0.6.4/ncrypt_digest.pyx
---- ncrypt-0.6.4.orig/ncrypt_digest.pyx 2006-10-09 09:36:51.000000000 +0200
-+++ ncrypt-0.6.4/ncrypt_digest.pyx 2010-07-29 16:08:22.175632123 +0200
-@@ -32,7 +32,7 @@
- ALGORITHMS = ('MD5','SHA1','SHA224','SHA256','SHA384','SHA512')
-
- cdef class DigestType :
-- def __new__( self, evpMd ) :
-+ def __cinit__( self, evpMd ) :
- self.m = NULL
-
- def __dealloc__( self ) :
-@@ -60,7 +60,7 @@
- cdef int digestFinalized
- cdef readonly object digestType
-
-- def __new__( self, digestType ) :
-+ def __cinit__( self, digestType ) :
- self.ctx = NULL
- self.digestFinalized = 0
-
-diff -Naur ncrypt-0.6.4.orig/ncrypt_rsa.pyx ncrypt-0.6.4/ncrypt_rsa.pyx
---- ncrypt-0.6.4.orig/ncrypt_rsa.pyx 2006-10-09 09:36:52.000000000 +0200
-+++ ncrypt-0.6.4/ncrypt_rsa.pyx 2010-07-29 16:09:23.573880691 +0200
-@@ -117,7 +117,7 @@
- PADDING_PKCS1_OAEP = 1
-
- cdef class RSAKey :
-- def __new__( self ) :
-+ def __cinit__( self ) :
- self.rsa = RSA_new()
-
- def __dealloc__( self ) :
-diff -Naur ncrypt-0.6.4.orig/ncrypt_ssl.pyx ncrypt-0.6.4/ncrypt_ssl.pyx
---- ncrypt-0.6.4.orig/ncrypt_ssl.pyx 2006-10-09 09:36:52.000000000 +0200
-+++ ncrypt-0.6.4/ncrypt_ssl.pyx 2010-07-29 16:09:54.873632053 +0200
-@@ -172,7 +172,7 @@
- cdef class SSLContext :
- cdef SSL_CTX *c
-
-- def __new__( self, sslMethod, sslMethodType=-1 ) :
-+ def __cinit__( self, sslMethod, sslMethodType=-1 ) :
- self.c = NULL
-
- def __dealloc__( self ) :
-@@ -245,7 +245,7 @@
- cdef object sslContext
- cdef readonly object sock
-
-- def __new__( self, sslContext, sock ) :
-+ def __cinit__( self, sslContext, sock ) :
- self.s = NULL
-
- def __dealloc__( self ) :
-diff -Naur ncrypt-0.6.4.orig/ncrypt_x509.pyx ncrypt-0.6.4/ncrypt_x509.pyx
---- ncrypt-0.6.4.orig/ncrypt_x509.pyx 2006-10-09 09:36:52.000000000 +0200
-+++ ncrypt-0.6.4/ncrypt_x509.pyx 2010-07-29 16:08:47.989640504 +0200
-@@ -128,7 +128,7 @@
- cdef class X509Name :
- cdef X509_NAME *xn
-
-- def __new__( self ) :
-+ def __cinit__( self ) :
- self.xn = NULL
-
- def __dealloc__( self ) :
-@@ -203,7 +203,7 @@
- raise X509Error, 'unable to find field name: %s' % fieldName
-
- cdef class X509Certificate :
-- def __new__( self, data=None ) :
-+ def __cinit__( self, data=None ) :
- self.x = NULL
-
- def __dealloc__( self ) :
diff --git a/dev-python/ncrypt/metadata.xml b/dev-python/ncrypt/metadata.xml
deleted file mode 100644
index 31dc017fa..000000000
--- a/dev-python/ncrypt/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
-</pkgmetadata>
diff --git a/dev-python/ncrypt/ncrypt-0.6.4.ebuild b/dev-python/ncrypt/ncrypt-0.6.4.ebuild
deleted file mode 100644
index 338b57e26..000000000
--- a/dev-python/ncrypt/ncrypt-0.6.4.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils eutils python
-
-DESCRIPTION="A python wrapper for OpenSSL"
-HOMEPAGE="http://tachyon.in/ncrypt/"
-SRC_URI="http://fs.tachyon.in.s3.amazonaws.com/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="dev-libs/openssl
- dev-python/pyrex"
-RDEPEND="${DEPEND}"
-
-RESTRICT_PYTHON_ABIS="3.*"
-
-DOCS="website/usage.txt"
-
-src_prepare() {
- epatch "${FILESDIR}/cinit.patch"
-}