www-apache/mod_macro: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Thu, 17 Oct 2019 12:22:15 +0000 (14:22 +0200)
committerMichał Górny <mgorny@gentoo.org>
Thu, 17 Oct 2019 12:22:15 +0000 (14:22 +0200)
Closes: https://bugs.gentoo.org/694608
Signed-off-by: Michał Górny <mgorny@gentoo.org>
profiles/package.mask
www-apache/mod_macro/Manifest [deleted file]
www-apache/mod_macro/files/00_example.conf [deleted file]
www-apache/mod_macro/files/27_mod_macro.conf [deleted file]
www-apache/mod_macro/metadata.xml [deleted file]
www-apache/mod_macro/mod_macro-1.1.10.ebuild [deleted file]
www-apache/mod_macro/mod_macro-1.2.1.ebuild [deleted file]

index 22124b1e93a6786a913985b961c769e2a68bdfe7..d5280402f75015c11a58187a615359aaf3f1d40f 100644 (file)
@@ -453,7 +453,6 @@ sys-boot/systemrescuecd-x86-grub
 # Michał Górny <mgorny@gentoo.org> (2019-09-17)
 # Unmaintained EAPI 0 Apache modules + mod_access_dnsbl as a revdep.
 # Removal in 30 days.  Bug #694608.
-www-apache/mod_macro
 www-apache/mod_umask
 
 # Michał Górny <mgorny@gentoo.org> (2019-09-16)
diff --git a/www-apache/mod_macro/Manifest b/www-apache/mod_macro/Manifest
deleted file mode 100644 (file)
index 791ef74..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST mod_macro-1.1.10.tar.bz2 13517 BLAKE2B 9cf1e62e2bce43b2fd1438ff83d6693daa571cd781b30b153d6edee4b7818af08f5c5012e9883a588eeb025916422a029a53e53e899a38b35a14a41c58be3218 SHA512 65cc668de21afcb365d8e71369e8c50548270557f66d3905b9757625f0a24cad461c103fe929dcdcabc92438a8e74dcf77e9b807c00045b0c97396e8ce55d04e
-DIST mod_macro-1.2.1.tar.gz 16870 BLAKE2B 6d11763688631a4735fa1f78b9d2a6f9cee200a36ea34fd9f2133c8ad11e735e3b73f753c14607a66aef2a16a40bdec289c7586cfaee2b3e69055e1b18acd5fa SHA512 39e584d90dd576c67952338624ad54b6cd09b1abf88295e760fa9c48f677e96c00a5c0fbf4df1c83501c8a8985c82378014d40722620a03915ff300adaf3fad0
diff --git a/www-apache/mod_macro/files/00_example.conf b/www-apache/mod_macro/files/00_example.conf
deleted file mode 100644 (file)
index 5b60e92..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-# Definition of a MyVirtualHost Macro.
-<Macro MyVirtualHost $host $port $dir>
-       Listen $port
-
-       <VirtualHost $host:$port>
-               DocumentRoot $dir
-
-               <Directory $dir>
-                       # do something here...
-               </Directory>
-
-               # limit access to intranet subdir.
-               <Directory $dir/intranet>
-                       order deny,allow
-                       deny from all
-                       allow from 10.0.0.0/8
-               </Directory>
-       </VirtualHost>
-</Macro>
-
-# Use of MyVirtualHost with different arguments.
-#Use MyVirtualHost www.apache.org 80 /projects/apache/web
-#Use MyVirtualHost www.perl.com 8080 /projects/perl/web
-#Use MyVirtualHost www.ensmp.fr 1234 /projects/mines/web
-
-# vim: ts=4 filetype=apache
diff --git a/www-apache/mod_macro/files/27_mod_macro.conf b/www-apache/mod_macro/files/27_mod_macro.conf
deleted file mode 100644 (file)
index 67ce8e4..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-<IfDefine MACRO>
-LoadModule macro_module modules/mod_macro.so
-Include /etc/apache2/macros.d/*.conf
-</IfDefine>
-
-# vim: ts=4 filetype=apache
diff --git a/www-apache/mod_macro/metadata.xml b/www-apache/mod_macro/metadata.xml
deleted file mode 100644 (file)
index 6f49eba..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/www-apache/mod_macro/mod_macro-1.1.10.ebuild b/www-apache/mod_macro/mod_macro-1.1.10.ebuild
deleted file mode 100644 (file)
index c5d01e6..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit apache-module
-
-DESCRIPTION="An Apache2 module providing macros for the Apache config file"
-HOMEPAGE="http://www.coelho.net/mod_macro/"
-SRC_URI="http://www.coelho.net/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-APACHE2_MOD_CONF="27_${PN}"
-APACHE2_MOD_DEFINE="MACRO"
-
-DOCFILES="CHANGES INSTALL README mod_macro.html"
-
-need_apache2_2
-
-src_install() {
-       apache-module_src_install
-       keepdir "${APACHE_CONFDIR}"/macros.d/
-       insinto "${APACHE_CONFDIR}"/macros.d/
-       doins "${FILESDIR}"/00_example.conf
-}
diff --git a/www-apache/mod_macro/mod_macro-1.2.1.ebuild b/www-apache/mod_macro/mod_macro-1.2.1.ebuild
deleted file mode 100644 (file)
index 9a69ca2..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit apache-module
-
-DESCRIPTION="An Apache2 module providing macros for the Apache config file"
-HOMEPAGE="http://www.coelho.net/mod_macro/"
-#SRC_URI="http://www.coelho.net/${PN}/${P}.tar.bz2"
-SRC_URI="http://people.apache.org/~fabien/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-DEPEND="sys-devel/libtool"
-RDEPEND=""
-
-APACHE2_MOD_CONF="27_${PN}"
-APACHE2_MOD_DEFINE="MACRO"
-
-DOCFILES="CHANGES INSTALL README mod_macro.html"
-
-need_apache2_4
-
-src_install() {
-       apache-module_src_install
-       keepdir "${APACHE_CONFDIR}"/macros.d/
-       insinto "${APACHE_CONFDIR}"/macros.d/
-       doins "${FILESDIR}"/00_example.conf
-}