summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-17 14:22:15 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-17 14:22:15 +0200
commitb94005cf576e5d5d1302e339bed92e04ec6e1d70 (patch)
tree6b3e0e619bc6b607387df40396a7f48540ff4271 /www-apache
parentwww-apache/mod_geoip2: Remove last-rited pkg (diff)
downloadgentoo-b94005cf576e5d5d1302e339bed92e04ec6e1d70.tar.gz
gentoo-b94005cf576e5d5d1302e339bed92e04ec6e1d70.tar.bz2
gentoo-b94005cf576e5d5d1302e339bed92e04ec6e1d70.zip
www-apache/mod_macro: Remove last-rited pkg
Closes: https://bugs.gentoo.org/694608 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'www-apache')
-rw-r--r--www-apache/mod_macro/Manifest2
-rw-r--r--www-apache/mod_macro/files/00_example.conf26
-rw-r--r--www-apache/mod_macro/files/27_mod_macro.conf6
-rw-r--r--www-apache/mod_macro/metadata.xml5
-rw-r--r--www-apache/mod_macro/mod_macro-1.1.10.ebuild32
-rw-r--r--www-apache/mod_macro/mod_macro-1.2.1.ebuild33
6 files changed, 0 insertions, 104 deletions
diff --git a/www-apache/mod_macro/Manifest b/www-apache/mod_macro/Manifest
deleted file mode 100644
index 791ef745b274..000000000000
--- a/www-apache/mod_macro/Manifest
+++ /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
index 5b60e92ca830..000000000000
--- a/www-apache/mod_macro/files/00_example.conf
+++ /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
index 67ce8e4d2688..000000000000
--- a/www-apache/mod_macro/files/27_mod_macro.conf
+++ /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
index 6f49eba8f496..000000000000
--- a/www-apache/mod_macro/metadata.xml
+++ /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
index c5d01e6b6765..000000000000
--- a/www-apache/mod_macro/mod_macro-1.1.10.ebuild
+++ /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
index 9a69ca21aab8..000000000000
--- a/www-apache/mod_macro/mod_macro-1.2.1.ebuild
+++ /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
-}