commit:     9d9536eea5099f2f8b48876d0955251665003c7f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 10:46:26 2016 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 24 10:52:44 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d9536ee

www-apache/mod-auth-mysql: Remove last-rited pkg, #382055

 profiles/package.mask                              |   4 -
 www-apache/mod-auth-mysql/Manifest                 |   2 -
 .../mod-auth-mysql/files/12_mod_auth_mysql.conf    | 132 ---------------------
 www-apache/mod-auth-mysql/metadata.xml             |   8 --
 .../mod-auth-mysql/mod-auth-mysql-4.3.9-r1.ebuild  |  60 ----------
 5 files changed, 206 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index cf865cd..231b7d0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -284,10 +284,6 @@ net-p2p/microdc2
 # (#363513). Removal in a month.
 media-tv/freevo
 
-# Pacho Ramos <[email protected]> (12 Jun 2016)
-# Obsolete mod, also buggy (#382055). Removal in a month.
-www-apache/mod-auth-mysql
-
 # Patrice Clement <[email protected]> (5 Jun 2016)
 # Unmaintained ebuilds. Upstream is either dead or AWOL. Also, most of these
 # ebuilds are still sitting in ~arch after years in the tree.

diff --git a/www-apache/mod-auth-mysql/Manifest 
b/www-apache/mod-auth-mysql/Manifest
deleted file mode 100644
index e056fbd..0000000
--- a/www-apache/mod-auth-mysql/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST mod-auth-mysql_4.3.9-13.diff.gz 20317 SHA256 
3c99e3e62dd147ecdc1fe01732bcfe46aac29838e6aadefdb896d6433e3bbc55 SHA512 
d738e9996dfa6a8bc89c19fb472bb43521ee915599a0cccd0b3de5546b10951f7ad4ce7cf1a98a6fc078ab9ea66b37c6b9761ad20bd77a09fb97bcaca5d1f41c
 WHIRLPOOL 
cf1a5934da0ffb254337bdaec62d572291688a0cfce9e3a9da9ad5cb22c35c7c0f2b660382d54c2e7becb51c70c1ffe4d7cc44f9d5ad9f85a1d13c5e34c879a5
-DIST mod-auth-mysql_4.3.9.orig.tar.gz 48479 SHA256 
ed0d42547808fe9a213cf62e93ffef65e518da774bb497138d126f2de4a54d2e SHA512 
292c167706f31542c74f24e481a227a36dfdfea57fc51f471188e2fd5188dc785789bd060f9c9d90d94a67492dc7ec64331a1af83fade4f70549cb9ddfb32f16
 WHIRLPOOL 
51ff68311b82a46bf541d056770911e3b5ad310dac44ddf7f33a8b3a16d399b01a62bdafc6341af63d5a13e693529a8bcb1642c9b42b50205734010a466e60ac

diff --git a/www-apache/mod-auth-mysql/files/12_mod_auth_mysql.conf 
b/www-apache/mod-auth-mysql/files/12_mod_auth_mysql.conf
deleted file mode 100644
index e2d52c1..0000000
--- a/www-apache/mod-auth-mysql/files/12_mod_auth_mysql.conf
+++ /dev/null
@@ -1,132 +0,0 @@
-<IfDefine AUTH_MYSQL>
-LoadModule auth_mysql_module modules/apache2_mod_auth_mysql.so
-
-# mod_auth_mysql can be used to limit access to documents by checking
-# data in a MySQL database.
-
-# This will enable user-based MySQL authentication of everything
-# within /home/httpd.  You'll need to do the following as the MySQL
-# root user beforehand:
-#
-#    CREATE DATABASE auth;
-#    USE auth;
-#    CREATE TABLE users (
-#      user_name CHAR(30) NOT NULL,
-#      user_passwd CHAR(20) NOT NULL,
-#      PRIMARY KEY (user_name)
-#    );
-#    GRANT SELECT
-#      ON auth.users
-#      TO authuser@localhost
-#      IDENTIFIED BY 'PaSsW0Rd';
-#
-#    INSERT INTO users VALUES ('testuser', ENCRYPT('testpass'));
-#
-#<Directory /home/httpd>
-#      # If you want tot make mod_auth_mysql work with apache-2.2, please 
uncomment
-#      # the following line:
-#      #AuthBasicAuthoritative Off
-#      AuthName "MySQL authenticated zone"
-#      AuthType Basic
-#
-#      AuthMySQLUser authuser
-#      AuthMySQLPassword PaSsW0Rd
-#      AuthMySQLDB auth
-#      AuthMySQLUserTable users
-#      AuthMySQLNameField user_name
-#      AuthMySQLPasswordField user_passwd
-#
-#      require valid-user
-#</Directory>
-
-# This will enable group-based MySQL authentication of everything
-# within /home/httpd.  You'll need to do the following as the MySQL
-# root user beforehand:
-#
-#    CREATE DATABASE auth;
-#    USE auth;
-#    CREATE TABLE users (
-#      user_name CHAR(30) NOT NULL,
-#      user_passwd CHAR(20) NOT NULL,
-#      user_group CHAR(20) NOT NULL,
-#      PRIMARY KEY (user_name)
-#    );
-#    GRANT SELECT
-#      ON auth.users
-#      TO authuser@localhost
-#      IDENTIFIED BY 'PaSsW0Rd';
-#
-#    INSERT INTO users VALUES ('testuser',  ENCRYPT('testpass'), 'user');
-#    INSERT INTO users VALUES ('testadmin', ENCRYPT('testpass'), 'admin');
-#
-#<Directory /home/httpd>
-#      # If you want tot make mod_auth_mysql work with apache-2.2, please 
uncomment
-#      # the following line:
-#      #AuthBasicAuthoritative Off
-#      AuthName "MySQL group authenticated zone"
-#      AuthType Basic
-#
-#      AuthMySQLUser authuser
-#      AuthMySQLPassword PaSsW0Rd
-#      AuthMySQLDB auth
-#      AuthMySQLUserTable users
-#      AuthMySQLNameField user_name
-#      AuthMySQLPasswordField user_passwd
-#      AuthMySQLGroupField user_group
-#
-#      require group admin
-#</Directory>
-
-# Like the above this enables group-based MySQL authentication of
-# everything within /home/httpd, but this configuration allows users to
-# belong to more than one group.  You'll need to do the following as
-# the MySQL root user beforehand:
-#
-#    CREATE DATABASE auth;
-#    USE auth;
-#    CREATE TABLE users (
-#      user_name CHAR(30) NOT NULL,
-#      user_passwd CHAR(20) NOT NULL,
-#      PRIMARY KEY (user_name)
-#    );
-#    CREATE TABLE groups (
-#      user_name CHAR(30) NOT NULL,
-#      user_group CHAR(20) NOT NULL,
-#      PRIMARY KEY (user_name, user_group)
-#    );
-#    GRANT SELECT
-#      ON auth.users
-#      TO authuser@localhost
-#      IDENTIFIED BY 'PaSsW0Rd';
-#    GRANT SELECT
-#      ON auth.groups
-#      TO authuser@localhost
-#      IDENTIFIED BY 'PaSsW0Rd';
-#
-#    INSERT INTO users VALUES ('testuser',  ENCRYPT('testpass'));
-#    INSERT INTO groups VALUES ('testuser', 'user');
-#    INSERT INTO users VALUES ('testadmin', ENCRYPT('testpass'));
-#    INSERT INTO groups VALUES ('testadmin', 'admin');
-#    INSERT INTO groups VALUES ('testadmin', 'user');
-#
-#<Directory /home/httpd>
-#      # If you want tot make mod_auth_mysql work with apache-2.2, please 
uncomment
-#      # the following line:
-#      #AuthBasicAuthoritative Off
-#      AuthName "MySQL group authenticated zone"
-#      AuthType Basic
-#
-#      AuthMySQLUser authuser
-#      AuthMySQLPassword PaSsW0Rd
-#      AuthMySQLDB auth
-#      AuthMySQLUserTable users
-#      AuthMySQLNameField user_name
-#      AuthMySQLPasswordField user_passwd
-#      AuthMySQLGroupTable groups
-#      AuthMySQLGroupField user_group
-#
-#      require group user
-#</Directory>
-</IfDefine>
-
-# vim: ts=4 filetype=apache

diff --git a/www-apache/mod-auth-mysql/metadata.xml 
b/www-apache/mod-auth-mysql/metadata.xml
deleted file mode 100644
index 357d7d0..0000000
--- a/www-apache/mod-auth-mysql/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="project">
-               <email>[email protected]</email>
-               <name>MySQL</name>
-       </maintainer>
-</pkgmetadata>

diff --git a/www-apache/mod-auth-mysql/mod-auth-mysql-4.3.9-r1.ebuild 
b/www-apache/mod-auth-mysql/mod-auth-mysql-4.3.9-r1.ebuild
deleted file mode 100644
index 48d2208..0000000
--- a/www-apache/mod-auth-mysql/mod-auth-mysql-4.3.9-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit apache-module eutils
-
-DESCRIPTION="Apache 2 module enabling HTTP authentication against MySQL 
databases. "
-HOMEPAGE="http://packages.debian.org/source/mod-auth-mysql";
-DEBIAN_PV="13"
-MY_P="${PN}_${PV/-/_}"
-DEBIAN_URI="mirror://debian/pool/main/${PN:0:1}/${PN}"
-DEBIAN_PATCH="${MY_P}-${DEBIAN_PV}.diff.gz"
-DEBIAN_SRC="${MY_P}.orig.tar.gz"
-SRC_URI="${DEBIAN_URI}/${DEBIAN_SRC} ${DEBIAN_URI}/${DEBIAN_PATCH}"
-
-LICENSE="Apache-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="virtual/mysql"
-RDEPEND="${DEPEND}
-               !www-apache/mod_auth_mysql"
-
-APACHE2_MOD_FILE="${S}/apache2_mod_auth_mysql.so"
-APACHE2_MOD_CONF="12_${PN//-/_}"
-APACHE2_MOD_DEFINE="AUTH_MYSQL"
-
-DOCFILES="USAGE DIRECTIVES"
-
-need_apache2_2
-
-src_unpack() {
-       unpack "${DEBIAN_SRC}"
-}
-
-src_prepare() {
-       EPATCH_OPTS="-p1" epatch "${DISTDIR}"/"${DEBIAN_PATCH}"
-       for i in $(<"${S}"/debian/patches/00list) ; do
-               epatch "${S}"/debian/patches/${i}*
-       done
-       epatch_user
-}
-
-src_configure() {
-       econf \
-               --enable-apache2 \
-               --disable-apache13 \
-               --with-apxs2=/usr/sbin/apxs2
-}
-
-src_compile() {
-       default
-}
-
-src_install() {
-       apache-module_src_install
-}

Reply via email to