From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1EA1B13835A for ; Fri, 1 Jan 2021 00:14:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45F46E091B; Fri, 1 Jan 2021 00:14:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3010FE091B for ; Fri, 1 Jan 2021 00:14:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0CA62340EF1 for ; Fri, 1 Jan 2021 00:14:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82D2E488 for ; Fri, 1 Jan 2021 00:14:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1609460055.c2a8aff8669917bd72f828fe0ffe5ce2a0fb72ee.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pykerberos/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pykerberos/pykerberos-1.3.0.ebuild X-VCS-Directories: dev-python/pykerberos/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c2a8aff8669917bd72f828fe0ffe5ce2a0fb72ee X-VCS-Branch: master Date: Fri, 1 Jan 2021 00:14:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ac4850cd-408a-4d10-beaf-5cc0b89b6ebd X-Archives-Hash: 94cf8ba60552591411ed6de35bfe8e66 commit: c2a8aff8669917bd72f828fe0ffe5ce2a0fb72ee Author: Michał Górny gentoo org> AuthorDate: Fri Jan 1 00:05:06 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 1 00:14:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2a8aff8 dev-python/pykerberos: Remove py2 revision Signed-off-by: Michał Górny gentoo.org> dev-python/pykerberos/pykerberos-1.3.0.ebuild | 45 --------------------------- 1 file changed, 45 deletions(-) diff --git a/dev-python/pykerberos/pykerberos-1.3.0.ebuild b/dev-python/pykerberos/pykerberos-1.3.0.ebuild deleted file mode 100644 index 3dfef376e5b..00000000000 --- a/dev-python/pykerberos/pykerberos-1.3.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python2_7 python3_{6..9} ) -inherit distutils-r1 - -MY_P=PyKerberos-${PV} -DESCRIPTION="A high-level Python wrapper for Kerberos/GSSAPI operations" -HOMEPAGE=" - https://trac.calendarserver.org/wiki/PyKerberos - https://github.com/apple/ccs-pykerberos/ - https://pypi.org/project/kerberos/" -SRC_URI=" - https://github.com/apple/ccs-pykerberos/archive/${MY_P}.tar.gz" -S=${WORKDIR}/ccs-pykerberos-${MY_P} - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc64 x86" -# test environment is non-trivial to set up, so just use docker -# (see python_test below) -# also for alpha/beta Python releases support: -# https://github.com/apple/ccs-pykerberos/pull/83/commits/5f1130a1305b5f6e7d7d8b41067c4713f0c8950f -RESTRICT="test" - -RDEPEND="app-crypt/mit-krb5" -DEPEND="${RDEPEND}" - -python_test() { - set -- docker run \ - -v "${PWD}:/app" \ - -w /app \ - -e PYENV=$("${EPYTHON}" -c 'import sys; print(sys.version.split()[0])') \ - -e KERBEROS_USERNAME=administrator \ - -e KERBEROS_PASSWORD=Password01 \ - -e KERBEROS_REALM=example.com \ - -e KERBEROS_PORT=80 \ - ubuntu:16.04 \ - /bin/bash .travis.sh - echo "${@}" >&2 - "${@}" || die "Tests failed with ${EPYTHON}" -}