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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2B32138359 for ; Fri, 25 Sep 2020 22:54:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE087E07FA; Fri, 25 Sep 2020 22:54:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B457EE07FA for ; Fri, 25 Sep 2020 22:54:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 858CD33BDF8 for ; Fri, 25 Sep 2020 22:54:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0921B357 for ; Fri, 25 Sep 2020 22:54:06 +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: <1601074435.d5218b4731468b417aafae866f2c30924c9a337f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_xsendfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r1.ebuild X-VCS-Directories: www-apache/mod_xsendfile/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d5218b4731468b417aafae866f2c30924c9a337f X-VCS-Branch: master Date: Fri, 25 Sep 2020 22:54:06 +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: 4688e6ae-e340-4970-a73c-e4d02ecebb34 X-Archives-Hash: f1be5ed642a362b95be96ac8c001ebc1 commit: d5218b4731468b417aafae866f2c30924c9a337f Author: Sam James gentoo org> AuthorDate: Fri Sep 25 22:45:11 2020 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 25 22:53:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5218b47 www-apache/mod_xsendfile: port EAPI 4->6 We can't go to 7 yet because of the apache-module and depend.apache eclasses. Bug: https://bugs.gentoo.org/724212 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> .../mod_xsendfile-1.0_beta1-r1.ebuild | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r1.ebuild b/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r1.ebuild new file mode 100644 index 00000000000..f8147aa6a2b --- /dev/null +++ b/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit apache-module + +MY_PV="1.0b1" +DESCRIPTION="Apache module that processes X-SENDFILE headers registered by the output handler" +HOMEPAGE="https://tn123.org/mod_xsendfile/" +SRC_URI="https://tn123.org/mod_xsendfile/beta/${PN}-${MY_PV}.tar.gz" +S="${WORKDIR}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86 ~amd64-linux" + +APACHE2_MOD_CONF="50_${PN}" +APACHE2_MOD_DEFINE="XSENDFILE" +DOCFILES="docs/Readme.html" + +need_apache2 + +pkg_setup() { + _init_apache2 + _init_apache2_late +}