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 60B6D15808E for ; Fri, 29 Apr 2022 10:22:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5767E08A0; Fri, 29 Apr 2022 10:21:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 85797E08A0 for ; Fri, 29 Apr 2022 10:21:57 +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 A03CD341AB1 for ; Fri, 29 Apr 2022 10:21:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13C0A463 for ; Fri, 29 Apr 2022 10:21:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1651227667.ed5b736b06785e7ad8237a9312d970300b5ac962.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_wsgi/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild X-VCS-Directories: www-apache/mod_wsgi/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ed5b736b06785e7ad8237a9312d970300b5ac962 X-VCS-Branch: master Date: Fri, 29 Apr 2022 10:21:53 +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: 0fa1b50f-e110-4667-a6f3-f132eaffde52 X-Archives-Hash: 17b96b41c1a234f41a06f4d7eb6b9121 commit: ed5b736b06785e7ad8237a9312d970300b5ac962 Author: Sam James gentoo org> AuthorDate: Fri Apr 29 09:37:19 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 29 10:21:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed5b736b www-apache/mod_wsgi: drop 4.7.1 Signed-off-by: Sam James gentoo.org> www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild | 51 ------------------------------- 1 file changed, 51 deletions(-) diff --git a/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild b/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild deleted file mode 100644 index 7621b99b57d4..000000000000 --- a/www-apache/mod_wsgi/mod_wsgi-4.7.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{7,8} ) -PYTHON_REQ_USE="threads(+)" - -inherit apache-module python-single-r1 - -DESCRIPTION="An Apache2 module for running Python WSGI applications" -HOMEPAGE="https://github.com/GrahamDumpleton/mod_wsgi" -SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="" -RDEPEND="${PYTHON_DEPS}" - -APACHE2_MOD_CONF="70_${PN}" -APACHE2_MOD_DEFINE="WSGI" -APACHE2_MOD_FILE="${S}/src/server/.libs/${PN}.so" - -DOCFILES="README.rst" - -need_apache2 - -pkg_setup() { - python-single-r1_pkg_setup - - # Calling depend.apache_pkg_setup fails because we do not have - # "apache2" in IUSE but the function expects this in order to call - # _init_apache2_late which sets the APACHE_MODULESDIR variable. - _init_apache2 - _init_apache2_late -} - -src_configure() { - # configure.ac contains bashisms - # (https://github.com/GrahamDumpleton/mod_wsgi/issues/567) - CONFIG_SHELL="/bin/bash" \ - econf --with-apxs="${APXS}" --with-python="${PYTHON}" -} - -src_compile() { - default -}