commit:     b94005cf576e5d5d1302e339bed92e04ec6e1d70
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 17 12:22:15 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Oct 17 12:22:15 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b94005cf

www-apache/mod_macro: Remove last-rited pkg

Closes: https://bugs.gentoo.org/694608
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 profiles/package.mask                        |  1 -
 www-apache/mod_macro/Manifest                |  2 --
 www-apache/mod_macro/files/00_example.conf   | 26 ----------------------
 www-apache/mod_macro/files/27_mod_macro.conf |  6 -----
 www-apache/mod_macro/metadata.xml            |  5 -----
 www-apache/mod_macro/mod_macro-1.1.10.ebuild | 32 ---------------------------
 www-apache/mod_macro/mod_macro-1.2.1.ebuild  | 33 ----------------------------
 7 files changed, 105 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 22124b1e93a..d5280402f75 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -453,7 +453,6 @@ sys-boot/systemrescuecd-x86-grub
 # Michał Górny <[email protected]> (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 <[email protected]> (2019-09-16)

diff --git a/www-apache/mod_macro/Manifest b/www-apache/mod_macro/Manifest
deleted file mode 100644
index 791ef745b27..00000000000
--- 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 5b60e92ca83..00000000000
--- 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 67ce8e4d268..00000000000
--- 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 6f49eba8f49..00000000000
--- 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 c5d01e6b676..00000000000
--- 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 9a69ca21aab..00000000000
--- 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
-}

Reply via email to