summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirkjan Ochtman <djc@gentoo.org>2013-10-20 08:47:26 +0000
committerDirkjan Ochtman <djc@gentoo.org>2013-10-20 08:47:26 +0000
commit37b0370e62bfc732c266533c5234b19d7291bc83 (patch)
treed8b5674b89b6fc726a62dd49076ef5b5c454d3ad /dev-python/pycrypto
parentVersion bump wrt #488634 by Michael Cook (diff)
downloadgentoo-2-37b0370e62bfc732c266533c5234b19d7291bc83.tar.gz
gentoo-2-37b0370e62bfc732c266533c5234b19d7291bc83.tar.bz2
gentoo-2-37b0370e62bfc732c266533c5234b19d7291bc83.zip
Remove old versions.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 30380381)
Diffstat (limited to 'dev-python/pycrypto')
-rw-r--r--dev-python/pycrypto/ChangeLog7
-rw-r--r--dev-python/pycrypto/pycrypto-2.3.ebuild61
-rw-r--r--dev-python/pycrypto/pycrypto-2.4.1.ebuild64
-rw-r--r--dev-python/pycrypto/pycrypto-2.5.ebuild64
-rw-r--r--dev-python/pycrypto/pycrypto-2.6-r1.ebuild53
-rw-r--r--dev-python/pycrypto/pycrypto-2.6.ebuild53
6 files changed, 6 insertions, 296 deletions
diff --git a/dev-python/pycrypto/ChangeLog b/dev-python/pycrypto/ChangeLog
index e47dbd9cd2df..e9436a5a294c 100644
--- a/dev-python/pycrypto/ChangeLog
+++ b/dev-python/pycrypto/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/pycrypto
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/ChangeLog,v 1.143 2013/09/14 22:53:41 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/ChangeLog,v 1.144 2013/10/20 08:47:25 djc Exp $
+
+ 20 Oct 2013; Dirkjan Ochtman <djc@gentoo.org> -pycrypto-2.3.ebuild,
+ -pycrypto-2.4.1.ebuild, -pycrypto-2.5.ebuild, -pycrypto-2.6-r1.ebuild,
+ -pycrypto-2.6.ebuild:
+ Remove old versions.
14 Sep 2013; Mike Gilbert <floppym@gentoo.org> pycrypto-2.6-r2.ebuild:
Add -fno-strict-aliasing for python2.
diff --git a/dev-python/pycrypto/pycrypto-2.3.ebuild b/dev-python/pycrypto/pycrypto-2.3.ebuild
deleted file mode 100644
index e9ed45ef5510..000000000000
--- a/dev-python/pycrypto/pycrypto-2.3.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.3.ebuild,v 1.12 2012/02/20 15:34:16 patrick Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-DISTUTILS_SRC_TEST="setup.py"
-
-inherit distutils eutils
-
-DESCRIPTION="Python Cryptography Toolkit"
-HOMEPAGE="http://www.dlitz.net/software/pycrypto/ http://pypi.python.org/pypi/pycrypto"
-SRC_URI="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/${P}.tar.gz"
-
-LICENSE="PSF-2 public-domain"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc +gmp"
-
-RDEPEND="gmp? ( dev-libs/gmp )"
-DEPEND="${RDEPEND}
- doc? ( dev-python/docutils >=dev-python/epydoc-3 )"
-
-# Some tests fail with some limit of inlining of functions.
-# Avoid warnings about breaking strict-aliasing rules.
-PYTHON_CFLAGS=("2.* + -fno-inline-functions -fno-strict-aliasing")
-
-DOCS="ACKS ChangeLog README TODO"
-PYTHON_MODNAME="Crypto"
-
-src_prepare() {
- distutils_src_prepare
- epatch "${FILESDIR}/${PN}-2.1.0-gmp.patch"
-}
-
-src_configure() {
- use gmp \
- && export USE_GMP="1" \
- || export USE_GMP="0"
-}
-
-src_compile() {
- distutils_src_compile
-
- if use doc; then
- einfo "Generation of documentation"
- rst2html.py Doc/pycrypt.rst > Doc/index.html
- PYTHONPATH="$(ls -d build-$(PYTHON --ABI -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed"
- fi
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml Doc/index.html || die "dohtml failed"
- dohtml Doc/apidoc/* || die "dohtml failed"
- fi
-}
diff --git a/dev-python/pycrypto/pycrypto-2.4.1.ebuild b/dev-python/pycrypto/pycrypto-2.4.1.ebuild
deleted file mode 100644
index 5cc98ab67a2a..000000000000
--- a/dev-python/pycrypto/pycrypto-2.4.1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.4.1.ebuild,v 1.9 2012/04/01 15:20:17 armin76 Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-DISTUTILS_SRC_TEST="setup.py"
-
-inherit distutils eutils
-
-DESCRIPTION="Python Cryptography Toolkit"
-HOMEPAGE="http://www.dlitz.net/software/pycrypto/ http://pypi.python.org/pypi/pycrypto"
-SRC_URI="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/${P}.tar.gz"
-
-LICENSE="PSF-2 public-domain"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc +gmp"
-
-RDEPEND="gmp? ( dev-libs/gmp )"
-DEPEND="${RDEPEND}
- doc? ( dev-python/docutils >=dev-python/epydoc-3 )"
-
-# Some tests fail with some limit of inlining of functions.
-# Avoid warnings about breaking strict-aliasing rules.
-PYTHON_CFLAGS=("2.* + -fno-inline-functions -fno-strict-aliasing")
-
-DOCS="ACKS ChangeLog README TODO"
-PYTHON_MODNAME="Crypto"
-
-src_prepare() {
- distutils_src_prepare
-}
-
-src_configure() {
- #This part comes from progress overlay, thanks to Arfrever
- if use gmp; then
- ac_cv_lib_mpir___gmpz_init="no" econf || die "econf failed"
- else
- ac_cv_lib_gmp___gmpz_init="no" ac_cv_lib_mpir___gmpz_init="no" econf ||
- die "econf failed"
- fi
-}
-
-src_compile() {
- distutils_src_compile
-
- if use doc; then
- einfo "Generation of documentation"
- rst2html.py Doc/pycrypt.rst > Doc/index.html
- PYTHONPATH="$(ls -d build-$(PYTHON --ABI -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed"
- fi
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml Doc/index.html || die "dohtml failed"
- dohtml Doc/apidoc/* || die "dohtml failed"
- fi
-}
diff --git a/dev-python/pycrypto/pycrypto-2.5.ebuild b/dev-python/pycrypto/pycrypto-2.5.ebuild
deleted file mode 100644
index c2c7072dcc6d..000000000000
--- a/dev-python/pycrypto/pycrypto-2.5.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.5.ebuild,v 1.1 2012/02/20 07:41:24 patrick Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-DISTUTILS_SRC_TEST="setup.py"
-
-inherit distutils eutils
-
-DESCRIPTION="Python Cryptography Toolkit"
-HOMEPAGE="http://www.dlitz.net/software/pycrypto/ http://pypi.python.org/pypi/pycrypto"
-SRC_URI="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/${P}.tar.gz"
-
-LICENSE="PSF-2 public-domain"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc +gmp"
-
-RDEPEND="gmp? ( dev-libs/gmp )"
-DEPEND="${RDEPEND}
- doc? ( dev-python/docutils >=dev-python/epydoc-3 )"
-
-# Some tests fail with some limit of inlining of functions.
-# Avoid warnings about breaking strict-aliasing rules.
-PYTHON_CFLAGS=("2.* + -fno-inline-functions -fno-strict-aliasing")
-
-DOCS="ACKS ChangeLog README TODO"
-PYTHON_MODNAME="Crypto"
-
-src_prepare() {
- distutils_src_prepare
-}
-
-src_configure() {
- #This part comes from progress overlay, thanks to Arfrever
- if use gmp; then
- ac_cv_lib_mpir___gmpz_init="no" econf || die "econf failed"
- else
- ac_cv_lib_gmp___gmpz_init="no" ac_cv_lib_mpir___gmpz_init="no" econf ||
- die "econf failed"
- fi
-}
-
-src_compile() {
- distutils_src_compile
-
- if use doc; then
- einfo "Generation of documentation"
- rst2html.py Doc/pycrypt.rst > Doc/index.html
- PYTHONPATH="$(ls -d build-$(PYTHON --ABI -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed"
- fi
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml Doc/index.html || die "dohtml failed"
- dohtml Doc/apidoc/* || die "dohtml failed"
- fi
-}
diff --git a/dev-python/pycrypto/pycrypto-2.6-r1.ebuild b/dev-python/pycrypto/pycrypto-2.6-r1.ebuild
deleted file mode 100644
index 5ff7bcca9173..000000000000
--- a/dev-python/pycrypto/pycrypto-2.6-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.6-r1.ebuild,v 1.1 2012/11/19 20:24:53 floppym Exp $
-
-EAPI="4"
-PYTHON_DEPEND="*"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="*-jython 2.7-pypy-*"
-DISTUTILS_SRC_TEST="setup.py"
-
-inherit distutils
-
-DESCRIPTION="Python Cryptography Toolkit"
-HOMEPAGE="http://www.dlitz.net/software/pycrypto/ http://pypi.python.org/pypi/pycrypto"
-SRC_URI="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/${P}.tar.gz"
-
-LICENSE="PSF-2 public-domain"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc +gmp"
-
-RDEPEND="gmp? ( dev-libs/gmp )"
-DEPEND="${RDEPEND}
- doc? ( dev-python/docutils >=dev-python/epydoc-3 )"
-
-PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
-
-DOCS="ACKS ChangeLog README TODO"
-PYTHON_MODNAME="Crypto"
-
-src_configure() {
- econf \
- $(use_with gmp) \
- --without-mpir
-}
-
-src_compile() {
- distutils_src_compile
-
- if use doc; then
- einfo "Generation of documentation"
- rst2html.py Doc/pycrypt.rst > Doc/index.html
- PYTHONPATH="$(ls -d build-$(PYTHON --ABI -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed"
- fi
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml Doc/apidoc/* Doc/index.html
- fi
-}
diff --git a/dev-python/pycrypto/pycrypto-2.6.ebuild b/dev-python/pycrypto/pycrypto-2.6.ebuild
deleted file mode 100644
index b20f4759eaef..000000000000
--- a/dev-python/pycrypto/pycrypto-2.6.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.6.ebuild,v 1.10 2012/08/01 19:17:31 ulm Exp $
-
-EAPI="4"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-DISTUTILS_SRC_TEST="setup.py"
-
-inherit distutils
-
-DESCRIPTION="Python Cryptography Toolkit"
-HOMEPAGE="http://www.dlitz.net/software/pycrypto/ http://pypi.python.org/pypi/pycrypto"
-SRC_URI="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/${P}.tar.gz"
-
-LICENSE="PSF-2 public-domain"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc +gmp"
-
-RDEPEND="gmp? ( dev-libs/gmp )"
-DEPEND="${RDEPEND}
- doc? ( dev-python/docutils >=dev-python/epydoc-3 )"
-
-PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
-
-DOCS="ACKS ChangeLog README TODO"
-PYTHON_MODNAME="Crypto"
-
-src_configure() {
- econf \
- $(use_with gmp) \
- --without-mpir
-}
-
-src_compile() {
- distutils_src_compile
-
- if use doc; then
- einfo "Generation of documentation"
- rst2html.py Doc/pycrypt.rst > Doc/index.html
- PYTHONPATH="$(ls -d build-$(PYTHON --ABI -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed"
- fi
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml Doc/apidoc/* Doc/index.html
- fi
-}