Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_diagnostics/files/, profiles/, www-apache/mod_diagnostics/
Date: Thu, 10 Oct 2019 12:32:38
Message-Id: 1570710584.6657ab83db4d2c22d910ff9207944f64b9e933e9.mgorny@gentoo
1 commit: 6657ab83db4d2c22d910ff9207944f64b9e933e9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 10 12:29:44 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 10 12:29:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6657ab83
7
8 www-apache/mod_diagnostics: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/693938
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 profiles/package.mask | 6 -----
14 www-apache/mod_diagnostics/Manifest | 1 -
15 .../mod_diagnostics/files/20_mod_diagnostics.conf | 5 ----
16 www-apache/mod_diagnostics/metadata.xml | 5 ----
17 .../mod_diagnostics/mod_diagnostics-0.0.1.ebuild | 28 ----------------------
18 5 files changed, 45 deletions(-)
19
20 diff --git a/profiles/package.mask b/profiles/package.mask
21 index c96c6f223d3..7b1a7cafe3a 100644
22 --- a/profiles/package.mask
23 +++ b/profiles/package.mask
24 @@ -809,12 +809,6 @@ www-apps/metadot
25 # Removal in 30 days. Bug #693940.
26 www-apps/browser-config
27
28 -# Michał Górny <mgorny@g.o> (2019-09-09)
29 -# Unmaintained. Added in 2005. Last upstream update in 2003. EAPI 0.
30 -# No amd64 keyword.
31 -# Removal in 30 days. Bug #693938.
32 -www-apache/mod_diagnostics
33 -
34 # Lars Wendler <polynomial-c@g.o> (2019-09-04)
35 # Unofficial build. Superseded by official 2.49.5 release.
36 # Masked for removal.
37
38 diff --git a/www-apache/mod_diagnostics/Manifest b/www-apache/mod_diagnostics/Manifest
39 deleted file mode 100644
40 index 46c7176e1bb..00000000000
41 --- a/www-apache/mod_diagnostics/Manifest
42 +++ /dev/null
43 @@ -1 +0,0 @@
44 -DIST mod_diagnostics-0.0.1.c 6373 BLAKE2B 4cc76a6abaef0eadfa6f6e1ba2d5c6852b6d73da0d17593b676e5112b855d9357754aef79b1a84bcfc279f7cf6056c84da8b6881bdac0ac822403d4e71852dd7 SHA512 b6f6498f70e37279508ca732aa3bbeb7180175ac35f16cfb88fa2c7558edec64b1cc3659b4516909888119f7984d51a98cadc9ef07480fdff5eac72174e8835b
45
46 diff --git a/www-apache/mod_diagnostics/files/20_mod_diagnostics.conf b/www-apache/mod_diagnostics/files/20_mod_diagnostics.conf
47 deleted file mode 100644
48 index 7600654ea7f..00000000000
49 --- a/www-apache/mod_diagnostics/files/20_mod_diagnostics.conf
50 +++ /dev/null
51 @@ -1,5 +0,0 @@
52 -<IfDefine DIAGNOSTICS>
53 -LoadModule diagnostic_filter_module modules/mod_diagnostics.so
54 -</IfDefine>
55 -
56 -# vim: ts=4 filetype=apache
57
58 diff --git a/www-apache/mod_diagnostics/metadata.xml b/www-apache/mod_diagnostics/metadata.xml
59 deleted file mode 100644
60 index 6f49eba8f49..00000000000
61 --- a/www-apache/mod_diagnostics/metadata.xml
62 +++ /dev/null
63 @@ -1,5 +0,0 @@
64 -<?xml version="1.0" encoding="UTF-8"?>
65 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
66 -<pkgmetadata>
67 -<!-- maintainer-needed -->
68 -</pkgmetadata>
69
70 diff --git a/www-apache/mod_diagnostics/mod_diagnostics-0.0.1.ebuild b/www-apache/mod_diagnostics/mod_diagnostics-0.0.1.ebuild
71 deleted file mode 100644
72 index a76bbf3ee64..00000000000
73 --- a/www-apache/mod_diagnostics/mod_diagnostics-0.0.1.ebuild
74 +++ /dev/null
75 @@ -1,28 +0,0 @@
76 -# Copyright 1999-2019 Gentoo Authors
77 -# Distributed under the terms of the GNU General Public License v2
78 -
79 -EAPI=0
80 -
81 -inherit apache-module
82 -
83 -KEYWORDS="x86"
84 -
85 -DESCRIPTION="An Apache2 module which can do debugging of modules in the Apache2 Filter Chain"
86 -HOMEPAGE="http://apache.webthing.com/mod_diagnostics/"
87 -SRC_URI="mirror://gentoo/${P}.c"
88 -LICENSE="Apache-1.1"
89 -SLOT="0"
90 -IUSE=""
91 -
92 -DEPEND=""
93 -RDEPEND=""
94 -
95 -APACHE2_MOD_CONF="20_${PN}"
96 -APACHE2_MOD_DEFINE="DIAGNOSTICS"
97 -
98 -need_apache2
99 -
100 -src_unpack() {
101 - mkdir -p "${S}" || die "mkdir S failed"
102 - cp -f "${DISTDIR}/${P}.c" "${S}/${PN}.c" || die "source copy failed"
103 -}