forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
www-apache/mod_wsgi: version bump to 4.5.11
Package-Manager: Portage-2.3.0, Repoman-2.3.1
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
DIST mod_wsgi-4.4.21.tar.gz 541367 SHA256 69e0b83e6735d04e4b0b75472d178eaf3b935f4f83788f138a2610b67b635187 SHA512 b77523839e6d57b4d6920d8093d2f042c8de1fc965c64dfef425a1c909f7d08e6cce8e2c30cfc7b9956127bfc57233583ecf51a0cbd2c56c540e67c2e408480c WHIRLPOOL e19f5cae4608f8d481d9bb607fa667b0d8686f5f21275265a9ec0a48f16f9624e81ba0c59dc4b420c1afd9848c46a907c926bccbfeba30cb3967689e0922a6c6 | ||
DIST mod_wsgi-4.4.22.tar.gz 654877 SHA256 23fd112dfe3b0d2b3ce8db6bbd470fcde89809ed2d50dcea4cb3f032d46e8e79 SHA512 acf5ad6b42079caedcc51b21c58d2f1a726f445427a76bcaf8339862a8b02effdfb2acc8dcab91a44c51c487e3c90f921005d49ba53235aef69e6daeb6808968 WHIRLPOOL 868b4c68f614c19ae4395f7293db2c4273c8c18adb6b52f736d2bb96a40b0a04fe6c476687a2669123ef13e1641044b232c2d4fcfcd0a4ecc22370fa2d59199b | ||
DIST mod_wsgi-4.5.11.tar.gz 676696 SHA256 10df952206fe33e28a2fc2450be328ed5842af9c4e8915aac7fa3c4de851662f SHA512 b3a3856620c7aa9f21f78be1e16f933acb17d2804660a21b9a2752ff3846e11aeb18c265918a10d33b902cf23d924a39f526157f2b57483881c087d68a777bca WHIRLPOOL da29639d19cf47e63967caabe5daaaa76c56f305686b1f35ec84f8fa254521d9de9ed73dda6bfdf321cb3ea21ef4a2f91ab86cb292b9e6fc6838a776a3b0cb43 | ||
DIST mod_wsgi-4.5.2.tar.gz 660046 SHA256 c7684d50d53cdc24a47679b8d6a7e0bf1b7ce8fe884f8b792b99fc3e0a864e27 SHA512 973122ab18661b1fea85bf9027dbbd0db2e63df87c46a6f9926f0f19f92eafad7b150bc4c1368dc4251920ba76a63363b74047f54778f44d70293f989afc4d3c WHIRLPOOL d06345b0d7e8a1778f1c3a00cbe6db6114ac54e13c9766441ac0cd89f361940fb56ebd76751b4f2363f1e80da71fb30930d3f034f64cb246246c0b5ef99465ae | ||
DIST mod_wsgi-4.5.7.tar.gz 666846 SHA256 8d84a7bc6983c776ca50ba8183b450cc6f75fd8cca8ae0bc9a582073f8e4eeec SHA512 99771eb21db8273bac399e9aae8c91598b1b2523259f04456d8f32466113ce044aad1162259afb8c872285e47f217ac7b8d3b38659720a6bb7772106d7b6d33c WHIRLPOOL 34ed4661709f7df3d5859cc17621b1aa2e1863afcb20ab6eb1514cf196f4bc0432e537c9cc7f1ba62c55f74595ad3599dd1d619c3e12a662690f512b5cd92062 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
|
||
PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) | ||
PYTHON_REQ_USE="threads" | ||
|
||
inherit apache-module eutils 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 ~ppc ~x86" | ||
IUSE="" | ||
|
||
DEPEND="" | ||
RDEPEND="" | ||
|
||
APACHE2_MOD_CONF="70_${PN}" | ||
APACHE2_MOD_DEFINE="WSGI" | ||
APACHE2_MOD_FILE="${S}/src/server/.libs/${PN}.so" | ||
|
||
DOCFILES="README.rst" | ||
|
||
need_apache2 | ||
|
||
src_configure() { | ||
econf --with-apxs=${APXS} --with-python=${PYTHON} | ||
} | ||
|
||
src_compile() { | ||
default | ||
} |