Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/certifi/
Date: Fri, 01 Jan 2021 00:14:31
Message-Id: 1609460062.03bc729a121c01c614c3e778a00f8796fb980355.mgorny@gentoo
1 commit: 03bc729a121c01c614c3e778a00f8796fb980355
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 00:10:13 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 00:14:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03bc729a
7
8 dev-python/certifi: Remove py2 revision
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/certifi/certifi-10001.ebuild | 32 --------------------------------
13 1 file changed, 32 deletions(-)
14
15 diff --git a/dev-python/certifi/certifi-10001.ebuild b/dev-python/certifi/certifi-10001.ebuild
16 deleted file mode 100644
17 index 73805ba347c..00000000000
18 --- a/dev-python/certifi/certifi-10001.ebuild
19 +++ /dev/null
20 @@ -1,32 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -DISTUTILS_USE_SETUPTOOLS=no
27 -PYTHON_COMPAT=( python2_7 python3_{6..9} pypy3 )
28 -
29 -inherit distutils-r1
30 -
31 -MY_P=certifi-shim-${PV}
32 -DESCRIPTION="Thin replacement for certifi using system certificate store"
33 -HOMEPAGE="
34 - https://github.com/mgorny/certifi-shim
35 - https://pypi.org/project/certifi"
36 -SRC_URI="
37 - https://github.com/mgorny/certifi-shim/archive/v${PV}.tar.gz
38 - -> ${MY_P}.tar.gz"
39 -S=${WORKDIR}/${MY_P}
40 -
41 -LICENSE="CC0-1.0"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
44 -
45 -RDEPEND="app-misc/ca-certificates"
46 -
47 -distutils_enable_tests unittest
48 -
49 -src_prepare() {
50 - sed -i -e "s^/etc^${EPREFIX}/etc^" certifi/core.py || die
51 - distutils-r1_src_prepare
52 -}