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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A6048158094 for ; Fri, 15 Jul 2022 07:24:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAD31E1092; Fri, 15 Jul 2022 07:24:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2D66E1064 for ; Fri, 15 Jul 2022 07:24:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D798D3412D8 for ; Fri, 15 Jul 2022 07:24:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89C4653D for ; Fri, 15 Jul 2022 07:24: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: <1657869860.f79b8c105e55659a9dcfd66b2911584d93c624c4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/http-parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/http-parser/http-parser-0.9.0.ebuild X-VCS-Directories: dev-python/http-parser/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f79b8c105e55659a9dcfd66b2911584d93c624c4 X-VCS-Branch: master Date: Fri, 15 Jul 2022 07:24: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: 27df871b-d212-468f-b297-bb0ba454b40b X-Archives-Hash: c4f336339423b75bcb022588d8011fb3 commit: f79b8c105e55659a9dcfd66b2911584d93c624c4 Author: Michał Górny gentoo org> AuthorDate: Fri Jul 15 07:22:15 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 15 07:24:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f79b8c10 dev-python/http-parser: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/http-parser/http-parser-0.9.0.ebuild | 41 ------------------------- 1 file changed, 41 deletions(-) diff --git a/dev-python/http-parser/http-parser-0.9.0.ebuild b/dev-python/http-parser/http-parser-0.9.0.ebuild deleted file mode 100644 index dc270dee7e5c..000000000000 --- a/dev-python/http-parser/http-parser-0.9.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="HTTP request/response parser for python in C" -HOMEPAGE="https://github.com/benoitc/http-parser" -SRC_URI=" - https://github.com/benoitc/http-parser/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~s390 ~sparc x86" -IUSE="examples" - -BDEPEND="dev-python/cython[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -python_compile() { - if [[ ${EPYTHON} != python3* ]]; then - local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" - fi - - distutils-r1_python_compile -} - -python_install_all() { - local DOCS=( README.rst ) - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all -}