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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AA82A158089 for ; Sun, 8 Oct 2023 10:03:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF6932BC02A; Sun, 8 Oct 2023 10:03:51 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AA8372BC02A for ; Sun, 8 Oct 2023 10:03:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8ADD1335CE3 for ; Sun, 8 Oct 2023 10:03:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F33A9BD3 for ; Sun, 8 Oct 2023 10:03:48 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1696759421.18ffadf7afb1fe8daebcefedcac0c8d80be45145.graaff@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-r3.ebuild X-VCS-Directories: www-apache/mod_xsendfile/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 18ffadf7afb1fe8daebcefedcac0c8d80be45145 X-VCS-Branch: master Date: Sun, 8 Oct 2023 10:03:48 +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: b0e19cff-2661-499e-a506-1d84302d3c08 X-Archives-Hash: 3dbd382a78818c431819405caae8c5c7 commit: 18ffadf7afb1fe8daebcefedcac0c8d80be45145 Author: Hans de Graaff gentoo org> AuthorDate: Fri Sep 29 06:40:27 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 8 10:03:41 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ffadf7 www-apache/mod_xsendfile: update EAPI 7 -> 8 Signed-off-by: Hans de Graaff gentoo.org> .../mod_xsendfile-1.0_beta1-r3.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r3.ebuild b/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r3.ebuild new file mode 100644 index 000000000000..b70dfc8ac59d --- /dev/null +++ b/www-apache/mod_xsendfile/mod_xsendfile-1.0_beta1-r3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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" + +need_apache2 + +src_install() { + APACHE2_MOD_CONF="50_${PN}" + APACHE2_MOD_DEFINE="XSENDFILE" + APACHE_MODULESDIR="/usr/$(get_libdir)/apache2/modules" + + apache-module_src_install + + dodoc docs/Readme.html +}