commit:     b88810fd7ea38a25043a3fcca2283bddbc20e7ad
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 26 14:38:21 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 16:13:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b88810fd

dev-python/pyblake2: Drop old

 dev-python/pyblake2/Manifest                 |  1 -
 dev-python/pyblake2/pyblake2-0.9.3-r1.ebuild | 56 ----------------------------
 2 files changed, 57 deletions(-)

diff --git a/dev-python/pyblake2/Manifest b/dev-python/pyblake2/Manifest
index a4ccf78d2fb..28d0d589157 100644
--- a/dev-python/pyblake2/Manifest
+++ b/dev-python/pyblake2/Manifest
@@ -1,2 +1 @@
-DIST pyblake2-0.9.3.tar.gz 130641 BLAKE2B 
5165f104b5d6bc10bf8b72177b4ad08db55e1a92ad1f04efae2c3d73b6f3f52a0962cfb23832a5f5c1ed9d75c7c3a04be9c37643e381abfc7a2f843fefb43151
 SHA512 
6336a7f7e79bd3e6ff7f8ff4d279ae170e86f1464b9fa9e7ea7f0dbbac6fcc044caf225111e065f9cd9cdeea0f81fae8d373e1f65be3e418929f53fad063205e
 DIST pyblake2-1.1.0.tar.gz 125855 BLAKE2B 
46af4c24882040bbdd221f90e06652918798e4555c0a7307a596ca4c9ed3147f00297269a44d174782c2b0402eac03ecf5387b1c5a16efb57d036730b58b2630
 SHA512 
e13c7e4f3a35155cbf531e337895349ec01f0ac36908a4e746cecec063601adfc8a73a7961a9c310d01d3231f44f08d2cc92e891e9cb87659bc7170b9fee6102

diff --git a/dev-python/pyblake2/pyblake2-0.9.3-r1.ebuild 
b/dev-python/pyblake2/pyblake2-0.9.3-r1.ebuild
deleted file mode 100644
index 9245471a8a7..00000000000
--- a/dev-python/pyblake2/pyblake2-0.9.3-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
-inherit distutils-r1 flag-o-matic toolchain-funcs
-
-DESCRIPTION="BLAKE2 hash function extension module"
-HOMEPAGE="https://github.com/dchest/pyblake2 
https://pypi.python.org/pypi/pyblake2";
-SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
-
-LICENSE="CC0-1.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~mips ppc ppc64 ~sparc x86 ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-blake2_impl() {
-       local code='
-#if defined(__XOP__)
-       HAVE_XOP
-#elif defined(__AVX__)
-       HAVE_AVX
-#elif defined(__SSSE3__)
-       HAVE_SSSE3
-#elif defined(__SSE2__)
-       HAVE_SSE2
-#endif
-'
-       local res=$($(tc-getCC) -E -P ${CFLAGS} - <<<"${code}")
-
-       case ${res} in
-               *HAVE_XOP*)    echo XOP;;
-               # this does not actually do anything but implicitly enabled 
SSE4.1...
-               *HAVE_AVX*)    echo AVX;;
-               *HAVE_SSSE3*)  echo SSSE3;;
-               # note: SSE2 is 2.5x slower than pure REGS, so we ignore it
-               #*HAVE_SSE2*)  echo SSE2;;
-               *)             echo REGS;;
-       esac
-}
-
-python_prepare_all() {
-       # uncomment the implementation of choice
-       sed -i -e "/BLAKE2_COMPRESS_$(blake2_impl)/s:^#::" setup.py || die
-
-       distutils-r1_python_prepare_all
-}
-
-python_configure_all() {
-       # reported to break stuff, https://bugs.gentoo.org/638428
-       append-flags -fno-tree-vectorize
-}
-
-python_test() {
-       "${EPYTHON}" test/test.py || die "Tests fail with ${EPYTHON}"
-}

Reply via email to