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/http-parser/
Date: Sun, 16 Aug 2020 09:57:32
Message-Id: 1597571826.4e3b399a8d3cc9b193c4084f766e76d537517546.mgorny@gentoo
1 commit: 4e3b399a8d3cc9b193c4084f766e76d537517546
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 16 09:13:05 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 16 09:57:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3b399a
7
8 dev-python/http-parser: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/http-parser/Manifest | 1 -
13 dev-python/http-parser/http-parser-0.8.3.ebuild | 41 -------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/http-parser/Manifest b/dev-python/http-parser/Manifest
17 index 849b8b606ba..60d5c5e9c20 100644
18 --- a/dev-python/http-parser/Manifest
19 +++ b/dev-python/http-parser/Manifest
20 @@ -1,2 +1 @@
21 -DIST http-parser-0.8.3.tar.gz 83040 BLAKE2B 8ccfd15154e34756229159576340536e447a1b76375df7c3f56b96c79957a3b28569fd4a4e77303fd1d254aa5652478f7e319e7556150de563f5b12c58482de4 SHA512 aca583d976dcf172244179cc4199336f296dbb2e2838dded23e64d55f23298fe600f9c24ba6cb6d1d5faad3022710154949fd39adecaef763f7589a58d03fbd1
22 DIST http-parser-0.9.0.gh.tar.gz 101174 BLAKE2B 92b74dffd2c35672bc383ccda59f93723c0f83ecb0fbf0470f5daacdd37f68d4d63de7d4ea53f86d2109349a793b7535cc864f014311dee6ac5e67d0ca751931 SHA512 75e51bef43d9d7698aad69f8bfe651e24784b97603cac55f33bf4c12c86792c8c71d6206f31847d052e4d8621a5ea65a7b34eca5bebdb8189f58e6d98d33139d
23
24 diff --git a/dev-python/http-parser/http-parser-0.8.3.ebuild b/dev-python/http-parser/http-parser-0.8.3.ebuild
25 deleted file mode 100644
26 index 896c88cd6aa..00000000000
27 --- a/dev-python/http-parser/http-parser-0.8.3.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1 flag-o-matic
38 -
39 -DESCRIPTION="HTTP request/response parser for python in C"
40 -HOMEPAGE="https://github.com/benoitc/http-parser"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 s390 ~sparc x86"
46 -IUSE="examples"
47 -
48 -RDEPEND=""
49 -DEPEND="${RDEPEND}
50 - dev-python/setuptools[${PYTHON_USEDEP}]
51 - $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' 'python*')"
52 -
53 -python_compile() {
54 - if [[ ${EPYTHON} != python3* ]]; then
55 - local CFLAGS=${CFLAGS}
56 - append-cflags -fno-strict-aliasing
57 - fi
58 -
59 - distutils-r1_python_compile
60 -}
61 -
62 -python_install_all() {
63 - local DOCS=( README.rst )
64 - if use examples; then
65 - dodoc -r examples
66 - docompress -x /usr/share/doc/${PF}/examples
67 - fi
68 -
69 - distutils-r1_python_install_all
70 -}