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/pyasn1/
Date: Mon, 11 May 2020 17:49:03
Message-Id: 1589218469.959f799a8439a7f0300954c1dafe900317e64456.mgorny@gentoo
1 commit: 959f799a8439a7f0300954c1dafe900317e64456
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 17:34:29 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 17:34:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=959f799a
7
8 dev-python/pyasn1: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyasn1/Manifest | 1 -
13 dev-python/pyasn1/pyasn1-0.4.3.ebuild | 40 -----------------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-python/pyasn1/Manifest b/dev-python/pyasn1/Manifest
17 index 76152d6fcaa..491c8954113 100644
18 --- a/dev-python/pyasn1/Manifest
19 +++ b/dev-python/pyasn1/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyasn1-0.4.3.tar.gz 118494 BLAKE2B 39c223e09d3996674e7e89306fadec9e47eb39284abafb7ca2b0f988ec420a3986247f6daf69a14bde0a671726c1e615976042228de6869606a3da2c7c65d7fd SHA512 a699b1ef58129860f8448e8c08a7017adfd7ead7844a45197b1026e12760424d20f89a421b3fe8caeab3922448d00a77f717c0a03841c36c6b1d1740b0d9707b
22 DIST pyasn1-0.4.8.tar.gz 146820 BLAKE2B 5c00b47c2014e599d1aa2e14c3004b3688786c7afd160c85709d5a0f324166abb1d29ebbd9f3e13100166e7176710e4dc6e1b8fcf80db5f5bdaa202912f8a023 SHA512 e64e70b325c8067f87ace7c0673149e82fe564aa4b0fa146d29b43cb588ecd6e81b1b82803b8cfa7a17d3d0489b6d88b4af5afb3aa0052bf92e8a1769fe8f7b0
23
24 diff --git a/dev-python/pyasn1/pyasn1-0.4.3.ebuild b/dev-python/pyasn1/pyasn1-0.4.3.ebuild
25 deleted file mode 100644
26 index 7d4690669bf..00000000000
27 --- a/dev-python/pyasn1/pyasn1-0.4.3.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="ASN.1 library for Python"
40 -HOMEPAGE="http://snmplabs.com/pyasn1/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD-2"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
46 -IUSE="doc"
47 -
48 -RDEPEND=""
49 -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 - doc? ( dev-python/sphinx )"
51 -
52 -python_test() {
53 - esetup.py test
54 -}
55 -
56 -src_compile() {
57 - if use doc; then
58 - python_setup
59 - esetup.py build_sphinx
60 - fi
61 - distutils-r1_src_compile
62 -}
63 -
64 -src_install() {
65 - local HTML_DOCS
66 - use doc && HTML_DOCS=( build/sphinx/html/. )
67 -
68 - distutils-r1_src_install
69 -}