commit:     a5312c646cab22edee5af3d3ac20c2e8ed20a1e4
Author:     Wade Cline <wadecline <AT> hotmail <DOT> com>
AuthorDate: Mon Jul 23 05:33:03 2018 +0000
Commit:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Mon Jul 23 08:36:04 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5312c64

net-irc/atheme-services Remove old version

 net-irc/atheme-services/Manifest                   |  1 -
 .../atheme-services-7.2.9-r1.ebuild                | 89 ----------------------
 .../atheme-services-7.2.9-configure-logdir.patch   | 25 ------
 .../files/atheme-services-7.2.9-fix-docdir.patch   | 13 ----
 4 files changed, 128 deletions(-)

diff --git a/net-irc/atheme-services/Manifest b/net-irc/atheme-services/Manifest
index 050f15eb282..ca89021adb4 100644
--- a/net-irc/atheme-services/Manifest
+++ b/net-irc/atheme-services/Manifest
@@ -1,2 +1 @@
 DIST atheme-services-7.2.10_p2.tar.xz 21061364 BLAKE2B 
e02ea3b9b55c0a02bfd354da65ed45318c2f0a5d5d35cabe7984760cfe1683b9856cc779754f1de8861816b5b2d2323c898100697e8d365ffed039e90b42cde6
 SHA512 
c7e6654ddbf515b1565b77f0659cd9a77787d004fb532ecdee638189e823ec65afc283cbeafc6d7625ed6c210835e5546c5e33718e08ad0b280ccc7a2df7be48
-DIST atheme-services-7.2.9.tar.bz2 1179582 BLAKE2B 
ea8a52cccffae78a317dc060fc6eef4daf398ab5c3d91147aaad48252614df42fd0327ee0cc9eef237dd03d81edde6a64bb0fb498d68039e8424fbab1b92861c
 SHA512 
8852bcf4746ad3b8814e2e7ae8b435c538b442f26f6cf8479087d115c0c4d6877ea864f9e19ccaa9ae93ea8a116cfa53d1f22846fffb783f78bfad8e95fd26f7

diff --git a/net-irc/atheme-services/atheme-services-7.2.9-r1.ebuild 
b/net-irc/atheme-services/atheme-services-7.2.9-r1.ebuild
deleted file mode 100644
index 5fcdc6534d3..00000000000
--- a/net-irc/atheme-services/atheme-services-7.2.9-r1.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic perl-functions user
-
-DESCRIPTION="A portable and secure set of open-source and modular IRC services"
-HOMEPAGE="https://github.com/atheme/atheme";
-SRC_URI="https://github.com/atheme/atheme/releases/download/v${PV}/atheme-${PV}.tar.bz2
 -> ${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="cracklib largenet ldap nls +pcre perl profile ssl"
-S="${WORKDIR}/atheme-${PV}"
-
-RDEPEND=">=dev-libs/libmowgli-2.1.0:2
-       cracklib? ( sys-libs/cracklib )
-       ldap? ( net-nds/openldap )
-       perl? ( dev-lang/perl )
-       pcre? ( dev-libs/libpcre )
-       ssl? ( dev-libs/openssl:0= )"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/${P}-fix-docdir.patch
-       "${FILESDIR}"/${P}-configure-logdir.patch)
-
-pkg_setup() {
-       enewgroup ${PN}
-       enewuser ${PN} -1 -1 /var/lib/atheme ${PN}
-}
-
-src_configure() {
-       # perl scriping module support is also broken in 7.0.0. Yay for QA 
failures.
-       econf \
-               --sysconfdir="${EPREFIX}"/etc/${PN} \
-               --localstatedir="${EPREFIX}"/var \
-               --enable-fhs-paths \
-               --disable-warnings \
-               --enable-contrib \
-               $(use_enable largenet large-net) \
-               $(use_with cracklib) \
-               $(use_with ldap) \
-               $(use_enable nls) \
-               $(use_enable profile) \
-               $(use_with pcre) \
-               $(use_with perl) \
-               $(use_enable ssl)
-}
-
-src_compile() {
-       emake V=1
-}
-
-src_install() {
-       default
-
-       insinto /etc/${PN}
-       for conf in dist/*.example; do
-               # The .cron file isn't meant to live in /etc/${PN}, so only
-               # install a .example version.
-               [[ ${conf} == *cron* ]] && continue
-
-               local confdest=${conf##*/}
-               newins ${conf} ${confdest%.example}
-       done
-
-       fowners -R 0:${PN} /etc/${PN}
-       keepdir /var/{lib,log}/atheme
-       fowners ${PN}:${PN} /var/{lib,log}/atheme
-       fperms -R go-w,o-rx /etc/${PN}
-       fperms 750 /etc/${PN} /var/{lib,log}/atheme
-
-       newinitd "${FILESDIR}"/${PN}.initd ${PN}
-       mv "${ED}"/usr/bin/{,atheme-}dbverify || die
-
-       # contributed scripts and such:
-       docinto contrib
-       dodoc contrib/*.{c,pl,php,py,rb}
-
-       use perl && perl_domodule -r contrib/Atheme{,.pm}
-
-       rm "${ED%/}/usr/share/doc/${PF}/WINDOWS" || die
-
-       # Bug #454840 #520490
-       rm -rf "${ED%/}/var/run" || die
-}

diff --git 
a/net-irc/atheme-services/files/atheme-services-7.2.9-configure-logdir.patch 
b/net-irc/atheme-services/files/atheme-services-7.2.9-configure-logdir.patch
deleted file mode 100644
index d57af2d9f44..00000000000
--- a/net-irc/atheme-services/files/atheme-services-7.2.9-configure-logdir.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/dist/atheme.conf.example b/dist/atheme.conf.example
-index ac3ed54dd..be1c2db50 100644
---- a/dist/atheme.conf.example
-+++ b/dist/atheme.conf.example
-@@ -1909,17 +1909,17 @@ ldap {
-  * This block logs all account and channel registrations and drops,
-  * and account and channel setting changes to var/account.log.
-  */
--logfile "var/account.log" { register; set; };
-+logfile "/var/log/atheme/account.log" { register; set; };
- 
- /*
-  * This block logs all command use to var/commands.log.
-  */
--logfile "var/commands.log" { commands; };
-+logfile "/var/log/atheme/commands.log" { commands; };
- 
- /*
-  * This block logs all security auditing information.
-  */
--logfile "var/audit.log" { denycmd; };
-+logfile "/var/log/atheme/audit.log" { denycmd; };
- 
- /*
-  * You can log to IRC channels, and even split it by category, too.

diff --git 
a/net-irc/atheme-services/files/atheme-services-7.2.9-fix-docdir.patch 
b/net-irc/atheme-services/files/atheme-services-7.2.9-fix-docdir.patch
deleted file mode 100644
index e7d4bb2695f..00000000000
--- a/net-irc/atheme-services/files/atheme-services-7.2.9-fix-docdir.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/extra.mk.in b/extra.mk.in
-index 39053e48a..e47b27246 100644
---- a/extra.mk.in
-+++ b/extra.mk.in
-@@ -82,7 +82,7 @@ libdir ?= @libdir@
- CFLAGS ?= @CFLAGS@
- INSTALL_LIB ?= @INSTALL_LIB@
- RUNDIR ?= @RUNDIR@
--DOCDIR ?= @DOCDIR@
-+DOCDIR ?= @docdir@
- localstatedir ?= @localstatedir@
- docdir ?= @docdir@
- GREP ?= @GREP@

Reply via email to