www-apache/mod_depends: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Thu, 17 Oct 2019 12:21:54 +0000 (14:21 +0200)
committerMichał Górny <mgorny@gentoo.org>
Thu, 17 Oct 2019 12:21:54 +0000 (14:21 +0200)
Closes: https://bugs.gentoo.org/694608
Signed-off-by: Michał Górny <mgorny@gentoo.org>
profiles/package.mask
www-apache/mod_depends/Manifest [deleted file]
www-apache/mod_depends/files/0.7/09_mod_depends.conf [deleted file]
www-apache/mod_depends/metadata.xml [deleted file]
www-apache/mod_depends/mod_depends-0.7.0_p200702041.ebuild [deleted file]

index bb2a343ecd3d7ef397a3ca98d6e5b62422b2fd22..8d14fe729d9f9766d77a79d897c30cb9cd2d2f19 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_depends
 www-apache/mod_dnsbl_lookup
 www-apache/mod_flvx
 www-apache/mod_geoip2
diff --git a/www-apache/mod_depends/Manifest b/www-apache/mod_depends/Manifest
deleted file mode 100644 (file)
index 2bb4e57..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST mod_depends-0.7.0_p200702041.tar.bz2 232205 BLAKE2B 9cdf85de101b88af9d4b924c3d1f8e468174833e2356d83163778ecfe53e99fa988325c32d7862a59088e6adb0c5a697712eefb007f3d028cb24713d7c1777fe SHA512 2680a16e2907b3dae774e665ef2db1cc051634bf1b136b11fda822f0d56e6e4d6ec984016ec24dca300fbb70d1d65d53c2ea4331b1735da3be74bc9550722df7
diff --git a/www-apache/mod_depends/files/0.7/09_mod_depends.conf b/www-apache/mod_depends/files/0.7/09_mod_depends.conf
deleted file mode 100644 (file)
index ff2226e..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<IfDefine DEPENDS>
-LoadModule depends_module modules/mod_depends.so
-</IfDefine>
-
-# vim: ts=4 filetype=apache
diff --git a/www-apache/mod_depends/metadata.xml b/www-apache/mod_depends/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_depends/mod_depends-0.7.0_p200702041.ebuild b/www-apache/mod_depends/mod_depends-0.7.0_p200702041.ebuild
deleted file mode 100644 (file)
index 3dabf86..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils apache-module
-
-DESCRIPTION="An apache helper module for handling dependencies properly"
-SRC_URI="http://upstream.rm-rf.in/${PN}/${P}.tar.bz2"
-HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_depends/"
-
-SLOT="0"
-LICENSE="Apache-2.0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-APACHE2_MOD_CONF="0.7/09_${PN}"
-APACHE2_MOD_DEFINE="DEPENDS"
-
-need_apache2
-
-src_compile() {
-       econf --with-apxs="${APXS}" || die "configure failed"
-       emake || die "make failed"
-}
-
-src_install() {
-       AP_INCLUDEDIR=$(${APXS} -q INCLUDEDIR)
-
-       insinto ${AP_INCLUDEDIR}
-       doins include/mod_depends.h || die
-
-       mv -v src/.libs/{lib,}mod_depends.so
-
-       apache-module_src_install
-}
-
-# vim:ts=4